1
0
mirror of https://github.com/Rnhmjoj/solarized-dark-ui synced 2025-01-25 11:44:19 +01:00

Fix white on white badge text color when nav-tab active

This commit is contained in:
Kyle ☱☲☳☴☵☷ ☶ Robinson ☱☲ ☳☴☵☶☷ Young 2013-12-05 20:05:21 -08:00 committed by Kyle Robinson Young
parent d26a039f1c
commit 0b9a101ca3
2 changed files with 26 additions and 0 deletions

View File

@ -3,6 +3,7 @@
@import "stylesheets/editor";
@import "stylesheets/git";
@import "stylesheets/lists";
@import "stylesheets/nav";
@import "stylesheets/overlays";
@import "stylesheets/panels";
@import "stylesheets/panes";

25
stylesheets/nav.less Normal file
View File

@ -0,0 +1,25 @@
@import "ui-variables";
.nav-tabs {
border-bottom: 1px solid @base-border-color;
li {
a,
&.active a {
border: none;
margin-right: 0px;
margin-bottom: 1px;
}
a:hover,
&.active a,
&.active a:hover {
background-color: @background-color-highlight;
border: none;
color: @text-color-selected;
border-bottom-left-radius: 0px;
border-bottom-right-radius: 0px;
}
&.active a {
background-color: @tab-background-color-active;
}
}
}