From: Mark Otto Date: Sat, 12 Jan 2013 07:35:22 +0000 (-0800) Subject: Fixes #6528: Make .navbar a:hover .caret use @navbarlinkcolorhover and not -active X-Git-Tag: v2.3.0^2~43 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=6f894c62a57fd93e9ba41230d794cd8ad48c03d1;p=thirdparty%2Fbootstrap.git Fixes #6528: Make .navbar a:hover .caret use @navbarlinkcolorhover and not -active --- diff --git a/docs/assets/css/bootstrap.css b/docs/assets/css/bootstrap.css index 0114d4e2f7..c632f371eb 100644 --- a/docs/assets/css/bootstrap.css +++ b/docs/assets/css/bootstrap.css @@ -4659,8 +4659,8 @@ input[type="submit"].btn.btn-mini { } .navbar .nav li.dropdown > a:hover .caret { - border-top-color: #555555; - border-bottom-color: #555555; + border-top-color: #333333; + border-bottom-color: #333333; } .navbar .nav li.dropdown.open > .dropdown-toggle, diff --git a/less/navbar.less b/less/navbar.less index b5793beca8..1e488d8983 100644 --- a/less/navbar.less +++ b/less/navbar.less @@ -336,8 +336,8 @@ // Caret should match text color on hover .navbar .nav li.dropdown > a:hover .caret { - border-top-color: @navbarLinkColorActive; - border-bottom-color: @navbarLinkColorActive; + border-top-color: @navbarLinkColorHover; + border-bottom-color: @navbarLinkColorHover; } // Remove background color from open dropdown diff --git a/less/tables.less b/less/tables.less index 73522996c4..aa01e10259 100644 --- a/less/tables.less +++ b/less/tables.less @@ -122,7 +122,6 @@ table { .border-bottom-right-radius(0); } - // Special fixes to round the left border on the first td/th caption + thead tr:first-child th:first-child, caption + tbody tr:first-child td:first-child,