BUGFIX: fix selected & unread notifications dropdown background color

This commit is contained in:
Régis Hanol 2014-05-06 12:34:50 +02:00
parent 7870afbfd4
commit 8cf937cdcb
2 changed files with 8 additions and 8 deletions

View File

@ -1,7 +1,7 @@
$primary: #333 !default; $primary: #333333 !default;
$secondary: #fff !default; $secondary: #ffffff !default;
$tertiary: #0088cc !default; $tertiary: #0088cc !default;
$highlight: #ffff4d !default; $highlight: #ffff4d !default;
$danger: #e45735 !default; $danger: #e45735 !default;
$success: #009900 !default; $success: #009900 !default;
$love: #fa6c8d !default; $love: #fa6c8d !default;

View File

@ -183,7 +183,7 @@
line-height: 15px; line-height: 15px;
} }
.selected { .selected {
background-color: $tertiary; background-color: scale-color($tertiary, $lightness: 75%);
} }
// Notifications // Notifications
@ -193,7 +193,7 @@
color: scale-color($primary, $lightness: 50%); color: scale-color($primary, $lightness: 50%);
} }
li { li {
background-color: $tertiary; background-color: scale-color($tertiary, $lightness: 75%);
} }
.read { .read {
background-color: $secondary; background-color: $secondary;