[IMP] links:hover, replace color

This commit is contained in:
stefanorigano 2015-10-14 15:57:03 +02:00 committed by Martin Trigaux
parent fc707ce800
commit 158f5adbc9
2 changed files with 8 additions and 4 deletions

View File

@ -290,7 +290,7 @@ a {
} }
a:hover, a:hover,
a:focus { a:focus {
color: #393f4f; color: #9e588b;
text-decoration: underline; text-decoration: underline;
} }
a:focus { a:focus {
@ -2513,7 +2513,7 @@ fieldset[disabled] .btn-link {
} }
.btn-link:hover, .btn-link:hover,
.btn-link:focus { .btn-link:focus {
color: #393f4f; color: #9e588b;
text-decoration: underline; text-decoration: underline;
background-color: transparent; background-color: transparent;
} }
@ -3821,7 +3821,7 @@ fieldset[disabled] .navbar-inverse .btn-link:focus {
.pagination > li > span:hover, .pagination > li > span:hover,
.pagination > li > a:focus, .pagination > li > a:focus,
.pagination > li > span:focus { .pagination > li > span:focus {
color: #393f4f; color: #9e588b;
background-color: #eeeeee; background-color: #eeeeee;
border-color: #dddddd; border-color: #dddddd;
} }
@ -8611,6 +8611,10 @@ main.has_code_col article.doc-body section {
min-height: 420px; min-height: 420px;
} }
} }
article.doc-toc .toctree-wrapper > ul > li > span {
display: block;
font-size: 28px;
}
.code-fields { .code-fields {
display: table; display: table;
width: 100%; width: 100%;

View File

@ -13,7 +13,7 @@
//** Global textual link color. //** Global textual link color.
a {.transition(color 0.1s linear); } a {.transition(color 0.1s linear); }
@link-color: darken(@doc_accent,10%); @link-color: darken(@doc_accent,10%);
@link-hover-color: @doc_heading; @link-hover-color: @doc_violet;
@link-hover-decoration: underline; @link-hover-decoration: underline;