mirror of
https://github.com/squidfunk/mkdocs-material.git
synced 2024-06-14 11:52:32 +03:00
Fixed #7: Better colors for links inside admonition notes and warnings
This commit is contained in:
parent
32a14cbb12
commit
0eb02a0d10
@ -1,6 +1,7 @@
|
||||
mkdocs-material-0.2.0 (2016-xx-xx)
|
||||
|
||||
* Fixed #6: Include multiple color palettes via mkdocs.yml
|
||||
* Fixed #7: Better colors for links inside admonition notes and warnings
|
||||
* Fixed #9: Text for prev/next footer navigation should be customizable
|
||||
* Refactored templates (replaced if/else with modifiers where possible)
|
||||
|
||||
|
1
material/assets/stylesheets/application-bebd96117e.css
Normal file
1
material/assets/stylesheets/application-bebd96117e.css
Normal file
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
@ -53,7 +53,7 @@
|
||||
font-style: normal;
|
||||
}
|
||||
</style>
|
||||
<link rel="stylesheet" href="{{ base_url }}/assets/stylesheets/application-eaf860cca2.css">
|
||||
<link rel="stylesheet" href="{{ base_url }}/assets/stylesheets/application-bebd96117e.css">
|
||||
{% if config.extra.palette %}
|
||||
<link rel="stylesheet" href="{{ base_url }}/assets/stylesheets/palettes-05ab2406df.css">
|
||||
{% endif %}
|
||||
|
@ -2,6 +2,6 @@
|
||||
"assets/images/favicon.ico": "assets/images/favicon-e565ddfa3b.ico",
|
||||
"assets/javascripts/application.js": "assets/javascripts/application-a10a824a49.js",
|
||||
"assets/javascripts/modernizr.js": "assets/javascripts/modernizr-4ab42b99fd.js",
|
||||
"assets/stylesheets/application.css": "assets/stylesheets/application-eaf860cca2.css",
|
||||
"assets/stylesheets/application.css": "assets/stylesheets/application-bebd96117e.css",
|
||||
"assets/stylesheets/palettes.css": "assets/stylesheets/palettes-05ab2406df.css"
|
||||
}
|
@ -57,11 +57,17 @@
|
||||
border-bottom: 1px solid $black-lightest;
|
||||
}
|
||||
|
||||
/*
|
||||
* Underline links
|
||||
*/
|
||||
a {
|
||||
border-bottom: 1px dotted;
|
||||
}
|
||||
|
||||
/*
|
||||
* Hovered and focused links
|
||||
*/
|
||||
a:hover,
|
||||
a:focus {
|
||||
a:hover, a:focus {
|
||||
color: $accent;
|
||||
}
|
||||
|
||||
@ -166,4 +172,11 @@
|
||||
&.warning {
|
||||
background: $red-400;
|
||||
}
|
||||
|
||||
/*
|
||||
* Headlines, chapters, links and inline code
|
||||
*/
|
||||
a, a:hover {
|
||||
color: $white;
|
||||
}
|
||||
}
|
Loading…
Reference in New Issue
Block a user