summaryrefslogtreecommitdiff
path: root/united
diff options
context:
space:
mode:
authorThomas Park <thomas@thomaspark.me>2012-11-24 14:44:27 -0500
committerThomas Park <thomas@thomaspark.me>2012-11-24 14:44:27 -0500
commit9ce4ea53cbe70decdc85d45734749e2ece2e5470 (patch)
tree8094e515d99201dca97ffa70d8542c48262d0d73 /united
parentde9b3c57183590db295af6bef856b9d1ce26bdf0 (diff)
united: bug fix on color for dropdown-menu .active > a
Diffstat (limited to 'united')
-rw-r--r--united/bootstrap.css2
-rw-r--r--united/bootstrap.min.css2
-rwxr-xr-xunited/variables.less2
3 files changed, 3 insertions, 3 deletions
diff --git a/united/bootstrap.css b/united/bootstrap.css
index b4b4c10e..d4c38c1b 100644
--- a/united/bootstrap.css
+++ b/united/bootstrap.css
@@ -2337,7 +2337,7 @@ table th[class*="span"],
}
.dropdown-menu .active > a,
.dropdown-menu .active > a:hover {
- color: #dd4814;
+ color: #ffffff;
text-decoration: none;
outline: 0;
background-color: #d44513;
diff --git a/united/bootstrap.min.css b/united/bootstrap.min.css
index a4e4c349..4d8dc303 100644
--- a/united/bootstrap.min.css
+++ b/united/bootstrap.min.css
@@ -458,7 +458,7 @@ table td[class*="span"],table th[class*="span"],.row-fluid table td[class*="span
.dropdown-menu .divider{*width:100%;height:1px;margin:9px 1px;*margin:-5px 0 5px;overflow:hidden;background-color:#e5e5e5;border-bottom:1px solid #ffffff;}
.dropdown-menu li>a{display:block;padding:3px 20px;clear:both;font-weight:normal;line-height:20px;color:#dd4814;white-space:nowrap;}
.dropdown-menu li>a:hover,.dropdown-menu li>a:focus,.dropdown-submenu:hover>a{text-decoration:none;color:#ffffff;background-color:#d44513;background-image:-moz-linear-gradient(top, #dd4814, #c64012);background-image:-webkit-gradient(linear, 0 0, 0 100%, from(#dd4814), to(#c64012));background-image:-webkit-linear-gradient(top, #dd4814, #c64012);background-image:-o-linear-gradient(top, #dd4814, #c64012);background-image:linear-gradient(to bottom, #dd4814, #c64012);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffdd4814', endColorstr='#ffc64012', GradientType=0);}
-.dropdown-menu .active>a,.dropdown-menu .active>a:hover{color:#dd4814;text-decoration:none;outline:0;background-color:#d44513;background-image:-moz-linear-gradient(top, #dd4814, #c64012);background-image:-webkit-gradient(linear, 0 0, 0 100%, from(#dd4814), to(#c64012));background-image:-webkit-linear-gradient(top, #dd4814, #c64012);background-image:-o-linear-gradient(top, #dd4814, #c64012);background-image:linear-gradient(to bottom, #dd4814, #c64012);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffdd4814', endColorstr='#ffc64012', GradientType=0);}
+.dropdown-menu .active>a,.dropdown-menu .active>a:hover{color:#ffffff;text-decoration:none;outline:0;background-color:#d44513;background-image:-moz-linear-gradient(top, #dd4814, #c64012);background-image:-webkit-gradient(linear, 0 0, 0 100%, from(#dd4814), to(#c64012));background-image:-webkit-linear-gradient(top, #dd4814, #c64012);background-image:-o-linear-gradient(top, #dd4814, #c64012);background-image:linear-gradient(to bottom, #dd4814, #c64012);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffdd4814', endColorstr='#ffc64012', GradientType=0);}
.dropdown-menu .disabled>a,.dropdown-menu .disabled>a:hover{color:#999999;}
.dropdown-menu .disabled>a:hover{text-decoration:none;background-color:transparent;background-image:none;cursor:default;}
.open{*z-index:1000;}.open >.dropdown-menu{display:block;}
diff --git a/united/variables.less b/united/variables.less
index d44118e5..38b0ed97 100755
--- a/united/variables.less
+++ b/united/variables.less
@@ -126,7 +126,7 @@
@dropdownLinkColor: @linkColor;
@dropdownLinkColorHover: @white;
-@dropdownLinkColorActive: @dropdownLinkColor;
+@dropdownLinkColorActive: @white;
@dropdownLinkBackgroundActive: @linkColor;
@dropdownLinkBackgroundHover: @dropdownLinkBackgroundActive;