diff options
| author | Mark Otto <[email protected]> | 2012-06-19 13:52:07 -0700 |
|---|---|---|
| committer | Mark Otto <[email protected]> | 2012-06-19 13:52:07 -0700 |
| commit | 64ba423b6d06c98e95e23d8c34df62a47a421a03 (patch) | |
| tree | 1b9a2ea94ec7a59c6c87db0791b9aa0b59acd6bf /docs/assets/css/bootstrap.css | |
| parent | d14f06fc4ed3f4753de9ae5ef247c48629714935 (diff) | |
| download | bootstrap-64ba423b6d06c98e95e23d8c34df62a47a421a03.tar.xz bootstrap-64ba423b6d06c98e95e23d8c34df62a47a421a03.zip | |
#2764: add disabled styles to navs and dropdowns
Diffstat (limited to 'docs/assets/css/bootstrap.css')
| -rw-r--r-- | docs/assets/css/bootstrap.css | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/docs/assets/css/bootstrap.css b/docs/assets/css/bootstrap.css index 81fb023d9..3389eb403 100644 --- a/docs/assets/css/bootstrap.css +++ b/docs/assets/css/bootstrap.css @@ -2466,6 +2466,17 @@ table .span24 { outline: 0; } +.dropdown-menu .disabled > a, +.dropdown-menu .disabled > a:hover { + color: #999999; +} + +.dropdown-menu .disabled > a:hover { + text-decoration: none; + cursor: default; + background-color: transparent; +} + .open { *z-index: 1000; } @@ -3580,6 +3591,16 @@ input[type="submit"].btn.btn-mini { *border-left-color: #ffffff; } +.nav > .disabled > a { + color: #999999; +} + +.nav > .disabled > a:hover { + text-decoration: none; + cursor: default; + background-color: transparent; +} + .navbar { *position: relative; *z-index: 2; |
