Add contributors to the doc + set visisted links to the same color as normal links

This commit is contained in:
Mathieu David 2015-12-30 15:59:18 +01:00
parent 5b9d8ee6ac
commit dc8f6cd5e9
3 changed files with 22 additions and 6 deletions

View File

@ -1 +1,13 @@
# Contributors # Contributors
Here is a list of the contributors who have helped improving mdBook. Big shout-out to them!
If you have contributed to mdBook and I forgot to add you, don't hesitate to add yourself to the list. If you are in the list, feel free to add your real name & contact information if you wish.
- [mdinger](https://github.com/mdinger)
- Kevin ([kbknapp](https://github.com/kbknapp))
- Steve Klabnik ([steveklabnik](https://github.com/steveklabnik))
- Adam Solove ([asolove](https://github.com/asolove))
- Wayne Nilsen ([waynenilsen](https://github.com/waynenilsen))
- [funnkill](https://github.com/funkill)
- Fu Gangqiang ([FuGangqiang](https://github.com/FuGangqiang))

View File

@ -343,7 +343,8 @@ h5 {
.light .mobile-nav-chapters { .light .mobile-nav-chapters {
background-color: #fafafa; background-color: #fafafa;
} }
.light .content a:link { .light .content a:link,
.light a:visited {
color: #4183c4; color: #4183c4;
} }
.light .theme-popup { .light .theme-popup {
@ -412,7 +413,8 @@ h5 {
.coal .mobile-nav-chapters { .coal .mobile-nav-chapters {
background-color: #292c2f; background-color: #292c2f;
} }
.coal .content a:link { .coal .content a:link,
.coal a:visited {
color: #2b79a2; color: #2b79a2;
} }
.coal .theme-popup { .coal .theme-popup {
@ -481,7 +483,8 @@ h5 {
.navy .mobile-nav-chapters { .navy .mobile-nav-chapters {
background-color: #282d3f; background-color: #282d3f;
} }
.navy .content a:link { .navy .content a:link,
.navy a:visited {
color: #2b79a2; color: #2b79a2;
} }
.navy .theme-popup { .navy .theme-popup {
@ -550,7 +553,8 @@ h5 {
.rust .mobile-nav-chapters { .rust .mobile-nav-chapters {
background-color: #3b2e2a; background-color: #3b2e2a;
} }
.rust .content a:link { .rust .content a:link,
.rust a:visited {
color: #2b79a2; color: #2b79a2;
} }
.rust .theme-popup { .rust .theme-popup {

View File

@ -37,7 +37,7 @@
a { color: $sidebar-fg } a { color: $sidebar-fg }
.active, .active,
a:hover { a:hover, {
/* Animate color change */ /* Animate color change */
color: $sidebar-active color: $sidebar-active
} }
@ -67,7 +67,7 @@
background-color: $sidebar-bg background-color: $sidebar-bg
} }
.content a:link { .content a:link, a:visited {
color: $links color: $links
} }