Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/twbs/bootstrap.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMark Otto <markdotto@gmail.com>2012-10-10 20:51:13 +0400
committerMark Otto <markdotto@gmail.com>2012-10-10 21:29:22 +0400
commit31007c01d8e5a3ad87597e56e2240693347a2a2c (patch)
tree9f1359e1d9dc6f089d84ef09fe128e7dbb6f919b
parentb18c009051936e3dec86bf620da58847b321d307 (diff)
fixes #5478: remove double background color on dropdown links
-rw-r--r--docs/assets/css/bootstrap.css4
-rw-r--r--less/dropdowns.less2
2 files changed, 1 insertions, 5 deletions
diff --git a/docs/assets/css/bootstrap.css b/docs/assets/css/bootstrap.css
index bec35c7fd8..ab26695621 100644
--- a/docs/assets/css/bootstrap.css
+++ b/docs/assets/css/bootstrap.css
@@ -990,7 +990,7 @@ input[type="color"],
display: inline-block;
height: 20px;
padding: 4px 6px;
- margin-bottom: 9px;
+ margin-bottom: 10px;
font-size: 14px;
line-height: 20px;
color: #555555;
@@ -2823,7 +2823,6 @@ table th[class*="span"],
.dropdown-submenu:hover > a {
color: #ffffff;
text-decoration: none;
- background-color: #0088cc;
background-color: #0081c2;
background-image: -moz-linear-gradient(top, #0088cc, #0077b3);
background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#0088cc), to(#0077b3));
@@ -2838,7 +2837,6 @@ table th[class*="span"],
.dropdown-menu .active > a:hover {
color: #ffffff;
text-decoration: none;
- background-color: #0088cc;
background-color: #0081c2;
background-image: -moz-linear-gradient(top, #0088cc, #0077b3);
background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#0088cc), to(#0077b3));
diff --git a/less/dropdowns.less b/less/dropdowns.less
index 03efd6abf2..d4fdab47fc 100644
--- a/less/dropdowns.less
+++ b/less/dropdowns.less
@@ -90,7 +90,6 @@
.dropdown-submenu:hover > a {
text-decoration: none;
color: @dropdownLinkColorHover;
- background-color: @dropdownLinkBackgroundHover;
#gradient > .vertical(@dropdownLinkBackgroundHover, darken(@dropdownLinkBackgroundHover, 5%));
}
@@ -101,7 +100,6 @@
color: @dropdownLinkColorHover;
text-decoration: none;
outline: 0;
- background-color: @dropdownLinkBackgroundActive;
#gradient > .vertical(@dropdownLinkBackgroundActive, darken(@dropdownLinkBackgroundActive, 5%));
}