diff options
| author | Mark Otto <[email protected]> | 2012-10-07 21:45:16 -0700 |
|---|---|---|
| committer | Mark Otto <[email protected]> | 2012-10-07 21:45:16 -0700 |
| commit | 7e534ce98acf03229e09b8ae478cb3598d3882cd (patch) | |
| tree | 1b32439b5700207dc412b0f9d116ea7f9058d07e | |
| parent | e4f522990e8cbab988650a52c8af19a738d74183 (diff) | |
| download | bootstrap-7e534ce98acf03229e09b8ae478cb3598d3882cd.tar.xz bootstrap-7e534ce98acf03229e09b8ae478cb3598d3882cd.zip | |
fixes #5443: reset background gradient on disabled dropdown links
| -rw-r--r-- | docs/assets/css/bootstrap.css | 1 | ||||
| -rw-r--r-- | less/dropdowns.less | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/docs/assets/css/bootstrap.css b/docs/assets/css/bootstrap.css index 60fb43bf9..bec35c7fd 100644 --- a/docs/assets/css/bootstrap.css +++ b/docs/assets/css/bootstrap.css @@ -2859,6 +2859,7 @@ table th[class*="span"], text-decoration: none; cursor: default; background-color: transparent; + background-image: none; } .open { diff --git a/less/dropdowns.less b/less/dropdowns.less index a33fe71e2..03efd6abf 100644 --- a/less/dropdowns.less +++ b/less/dropdowns.less @@ -116,6 +116,7 @@ .dropdown-menu .disabled > a:hover { text-decoration: none; background-color: transparent; + background-image: none; // Remove CSS gradient cursor: default; } |
