more updates

This commit is contained in:
Andy Miller
2016-03-30 21:00:17 -06:00
parent bf8dcec7b4
commit 496a63dc26
2 changed files with 8 additions and 2 deletions

File diff suppressed because one or more lines are too long

View File

@@ -67,6 +67,7 @@ $element-map: (
button: $button-bg $button-text, button: $button-bg $button-text,
notice: $notice-bg $notice-text, notice: $notice-bg $notice-text,
content: $content-bg $content-text, content: $content-bg $content-text,
tabs: $content-tabs-bg $content-tabs-text,
update: $update-bg $update-text, update: $update-bg $update-text,
critical: $critical-bg $critical-text, critical: $critical-bg $critical-text,
page: $page-bg $page-text, page: $page-bg $page-text,
@@ -320,7 +321,12 @@ tr {
.badges { .badges {
.count { .count {
color: $nav-link; color: $nav-link;
background-color: lighten($nav-bg, 10%); @if (lightness($nav-bg) < 50) {
background-color: lighten($nav-bg, 10%);
} @else {
background-color: darken($nav-bg, 10%);
}
} }
.updates { .updates {