feat(design): correct colors on advanced settings view, simplify scss

This commit is contained in:
Jason Dreyzehner 2016-10-12 22:15:59 -04:00
commit 55a6021fe1
2 changed files with 3 additions and 21 deletions

View file

@ -1,10 +1,3 @@
.settings {
.item {
color: #444;
border-color: rgba(221, 221, 221, 0.3);
}
}
#advanced-settings { #advanced-settings {
.list { .list {
.item { .item {
@ -19,20 +12,10 @@
content: ''; content: '';
} }
&.item-divider { &.item-divider {
color: rgba(74, 74, 74, .8); color: $dark-gray;
}
&.item-heading {
&:before {
top: 99%
}
}
&:nth-child(2) {
&:before {
width: 0;
}
} }
.item-note { .item-note {
color: rgb(58, 58, 58); color: $dark-gray;
} }
} }
.has-comment { .has-comment {
@ -41,7 +24,7 @@
.comment { .comment {
padding: 15px; padding: 15px;
background-color: #fff; background-color: #fff;
color: rgba(74, 74, 74, 0.8); color: $mid-gray;
} }
} }
} }

View file

@ -41,7 +41,6 @@
.settings-list { .settings-list {
.item { .item {
color: $dark-gray; color: $dark-gray;
border-top: none;
padding-top: 1.3rem; padding-top: 1.3rem;
padding-bottom: 1.3rem; padding-bottom: 1.3rem;
&.item-divider { &.item-divider {