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

View File

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