FIX: Unread post circle colors in dark theme

This commit is contained in:
Kane York 2015-08-21 11:19:02 -07:00
parent aa0b2d74c1
commit e2e7e6df44
1 changed files with 4 additions and 4 deletions

View File

@ -236,16 +236,16 @@
font-size: 11px;
line-height: 1;
text-align: center;
background-color: dark-light-choose(scale-color($primary, $lightness: 70%), scale-color($secondary, $lightness: 30%));
background-color: dark-light-choose(scale-color($primary, $lightness: 70%), scale-color($secondary, $lightness: 70%));
&[href] {
color: $secondary;
color: $secondary;
}
// New posts
&.new-posts, &.unread-posts {
background-color: dark-light-choose(scale-color($tertiary, $lightness: 50%), scale-color($tertiary, $lightness: 20%));
color: $secondary;
background-color: dark-light-choose(scale-color($tertiary, $lightness: 50%), $tertiary);
color: dark-light-choose($secondary, $secondary);
font-weight: dark-light-choose(normal, bold);
}