From 0b9a101ca3c693b7027327eee68d8821ede81c7e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Kyle=20=E2=98=B1=E2=98=B2=E2=98=B3=E2=98=B4=E2=98=B5?= =?UTF-8?q?=E2=98=B7=20=E2=98=B6=20Robinson=20=E2=98=B1=E2=98=B2=20?= =?UTF-8?q?=E2=98=B3=E2=98=B4=E2=98=B5=E2=98=B6=E2=98=B7=20Young?= Date: Thu, 5 Dec 2013 20:05:21 -0800 Subject: [PATCH] Fix white on white badge text color when nav-tab active --- index.less | 1 + stylesheets/nav.less | 25 +++++++++++++++++++++++++ 2 files changed, 26 insertions(+) create mode 100644 stylesheets/nav.less diff --git a/index.less b/index.less index 2c1a586..334ba2a 100644 --- a/index.less +++ b/index.less @@ -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"; diff --git a/stylesheets/nav.less b/stylesheets/nav.less new file mode 100644 index 0000000..7a94c13 --- /dev/null +++ b/stylesheets/nav.less @@ -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; + } + } +}