diff options
| author | Mark Otto <[email protected]> | 2013-08-06 18:42:10 -0700 |
|---|---|---|
| committer | Mark Otto <[email protected]> | 2013-08-06 18:42:10 -0700 |
| commit | 2af9cf10ce2e93fe0ac07651d405abc484e4c608 (patch) | |
| tree | bf7ab55f7f868e351f8ca7c98d24a074d8e10d0e /less | |
| parent | 402dbfb6171e18aa44e19429e796169f02b0adf7 (diff) | |
| download | bootstrap-2af9cf10ce2e93fe0ac07651d405abc484e4c608.tar.xz bootstrap-2af9cf10ce2e93fe0ac07651d405abc484e4c608.zip | |
more twerks to the theme
Diffstat (limited to 'less')
| -rw-r--r-- | less/theme.less | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/less/theme.less b/less/theme.less index 6befcc0c1..0ad042204 100644 --- a/less/theme.less +++ b/less/theme.less @@ -30,7 +30,7 @@ } // Apply the mixin to the buttons -.btn-default { .btn-styles(@btn-default-bg); } +.btn-default { .btn-styles(@btn-default-bg); text-shadow: 0 1px 0 #fff; border-color: #ccc; } .btn-primary { .btn-styles(@btn-primary-bg); } .btn-success { .btn-styles(@btn-success-bg); } .btn-warning { .btn-styles(@btn-warning-bg); } @@ -47,9 +47,17 @@ // Basic navbar .navbar { #gradient > .vertical(@start-color: lighten(@navbar-bg, 10%); @end-color: @navbar-bg;); + + .navbar-nav > .active > a { + background-color: @navbar-bg; + } } // Inverted navbar .navbar-inverse { #gradient > .vertical(@start-color: lighten(@navbar-inverse-bg, 10%); @end-color: @navbar-inverse-bg;); + + .navbar-nav > .active > a { + background-color: @navbar-inverse-bg; + } } |
