mirror of
https://github.com/twbs/bootstrap.git
synced 2024-12-03 15:24:19 +01:00
bring hover state back to the .brand element in the topbar to fix a bug
This commit is contained in:
parent
970c51dd99
commit
e025de9a83
4
bootstrap.css
vendored
4
bootstrap.css
vendored
@ -6,7 +6,7 @@
|
|||||||
* http://www.apache.org/licenses/LICENSE-2.0
|
* http://www.apache.org/licenses/LICENSE-2.0
|
||||||
*
|
*
|
||||||
* Designed and built with all the love in the world @twitter by @mdo and @fat.
|
* Designed and built with all the love in the world @twitter by @mdo and @fat.
|
||||||
* Date: Fri Oct 7 23:53:08 PDT 2011
|
* Date: Fri Oct 7 23:55:26 PDT 2011
|
||||||
*/
|
*/
|
||||||
/* Reset.less
|
/* Reset.less
|
||||||
* Props to Eric Meyer (meyerweb.com) for his CSS reset file. We're using an adapted version here that cuts out some of the reset HTML elements we will never need here (i.e., dfn, samp, etc).
|
* Props to Eric Meyer (meyerweb.com) for his CSS reset file. We're using an adapted version here that cuts out some of the reset HTML elements we will never need here (i.e., dfn, samp, etc).
|
||||||
@ -1261,7 +1261,7 @@ table .headerSortUp.purple, table .headerSortDown.purple {
|
|||||||
color: #bfbfbf;
|
color: #bfbfbf;
|
||||||
text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
|
text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
|
||||||
}
|
}
|
||||||
.topbar h3 a:hover, .topbar .brand a:hover, .topbar ul .active > a {
|
.topbar h3 a:hover, .topbar .brand:hover, .topbar ul .active > a {
|
||||||
background-color: #333;
|
background-color: #333;
|
||||||
background-color: rgba(255, 255, 255, 0.05);
|
background-color: rgba(255, 255, 255, 0.05);
|
||||||
color: #ffffff;
|
color: #ffffff;
|
||||||
|
2
bootstrap.min.css
vendored
2
bootstrap.min.css
vendored
@ -226,7 +226,7 @@ table .headerSortUp.orange,table .headerSortDown.orange{background-color:#fee9cc
|
|||||||
table .purple{color:#7a43b6;border-bottom-color:#7a43b6;}
|
table .purple{color:#7a43b6;border-bottom-color:#7a43b6;}
|
||||||
table .headerSortUp.purple,table .headerSortDown.purple{background-color:#e2d5f0;}
|
table .headerSortUp.purple,table .headerSortDown.purple{background-color:#e2d5f0;}
|
||||||
.topbar{height:40px;position:fixed;top:0;left:0;right:0;z-index:10000;overflow:visible;}.topbar a{color:#bfbfbf;text-shadow:0 -1px 0 rgba(0, 0, 0, 0.25);}
|
.topbar{height:40px;position:fixed;top:0;left:0;right:0;z-index:10000;overflow:visible;}.topbar a{color:#bfbfbf;text-shadow:0 -1px 0 rgba(0, 0, 0, 0.25);}
|
||||||
.topbar h3 a:hover,.topbar .brand a:hover,.topbar ul .active>a{background-color:#333;background-color:rgba(255, 255, 255, 0.05);color:#ffffff;text-decoration:none;}
|
.topbar h3 a:hover,.topbar .brand:hover,.topbar ul .active>a{background-color:#333;background-color:rgba(255, 255, 255, 0.05);color:#ffffff;text-decoration:none;}
|
||||||
.topbar h3{position:relative;}
|
.topbar h3{position:relative;}
|
||||||
.topbar h3 a,.topbar .brand{float:left;display:block;padding:8px 20px 12px;margin-left:-20px;color:#ffffff;font-size:20px;font-weight:200;line-height:1;}
|
.topbar h3 a,.topbar .brand{float:left;display:block;padding:8px 20px 12px;margin-left:-20px;color:#ffffff;font-size:20px;font-weight:200;line-height:1;}
|
||||||
.topbar p{margin:0;line-height:40px;}.topbar p a:hover{background-color:transparent;color:#ffffff;}
|
.topbar p{margin:0;line-height:40px;}.topbar p a:hover{background-color:transparent;color:#ffffff;}
|
||||||
|
@ -25,7 +25,7 @@
|
|||||||
// Hover and active states
|
// Hover and active states
|
||||||
// h3 for backwards compatibility
|
// h3 for backwards compatibility
|
||||||
h3 a:hover,
|
h3 a:hover,
|
||||||
.brand a:hover,
|
.brand:hover,
|
||||||
ul .active > a {
|
ul .active > a {
|
||||||
background-color: #333;
|
background-color: #333;
|
||||||
background-color: rgba(255,255,255,.05);
|
background-color: rgba(255,255,255,.05);
|
||||||
|
Loading…
Reference in New Issue
Block a user