http://examine.com/v5x/creatine.html#summary - 将鼠标悬停在摘要上。
控制它的 CSS 是什么?我似乎找不到它。
http://examine.com/v5x/creatine.html#summary - 将鼠标悬停在摘要上。
控制它的 CSS 是什么?我似乎找不到它。
活动:active
类(对于大多数 Bootstrap 功能都是如此)
徘徊:
.navbar .nav > li > a:focus,
.navbar .nav > li > a:hover {
color: #333333;
text-decoration: none;
background-color: transparent;
}
编辑
您的 CSS 的第 3804 行:
.nav-list > .active > a,
.nav-list > .active > a:hover {
color: #ffffff;
text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.2);
background-color: #0088cc;
}
background-color
这是导致你的蓝色背景。只需将其更改为所需的值,然后更改color
为color: #00A5B5;
.
解决方案是这样的:
编辑docs.css,注释掉
background:none; //line 728 under .bs-docs-sidenav > .active > a {
并编辑bootstrap.css,注释掉
background-color: #0088cc;//line 3807 under .nav-list > .active > a:hover {
和改变
color: #ffffff;//line 3805 under .nav-list > .active > a:hover {
到
color: #00A5B5;
并且不要忘记在检查更改之前清除浏览器的缓存..