diff options
| author | Guillaume Gomez <guillaume1.gomez@gmail.com> | 2018-08-15 15:07:07 +0200 |
|---|---|---|
| committer | Guillaume Gomez <guillaume1.gomez@gmail.com> | 2018-08-15 15:07:07 +0200 |
| commit | cf5ee8f59bc2d79bb7ddf23005ab951277cda255 (patch) | |
| tree | 95f97fda5582945ec5a1a23a9817c9f6b0a6b282 /src/librustdoc | |
| parent | afd0a2f2499ff66e74236c5b06d3ab9ab87dd3d3 (diff) | |
| download | rust-cf5ee8f59bc2d79bb7ddf23005ab951277cda255.tar.gz rust-cf5ee8f59bc2d79bb7ddf23005ab951277cda255.zip | |
Fix links' color
Diffstat (limited to 'src/librustdoc')
| -rw-r--r-- | src/librustdoc/Cargo.toml | 2 | ||||
| -rw-r--r-- | src/librustdoc/html/static/themes/dark.css | 4 | ||||
| -rw-r--r-- | src/librustdoc/html/static/themes/light.css | 4 |
3 files changed, 5 insertions, 5 deletions
diff --git a/src/librustdoc/Cargo.toml b/src/librustdoc/Cargo.toml index f0c40d1d491..e163fc68cbd 100644 --- a/src/librustdoc/Cargo.toml +++ b/src/librustdoc/Cargo.toml @@ -9,5 +9,5 @@ path = "lib.rs" [dependencies] pulldown-cmark = { version = "0.1.2", default-features = false } -minifier = "0.0.14" +minifier = "0.0.19" tempfile = "3" diff --git a/src/librustdoc/html/static/themes/dark.css b/src/librustdoc/html/static/themes/dark.css index a2cb79582a1..2ed7f7a926a 100644 --- a/src/librustdoc/html/static/themes/dark.css +++ b/src/librustdoc/html/static/themes/dark.css @@ -165,8 +165,8 @@ a { color: #ddd; } -.docblock:not(.type-decl) a:not(.srclink):not(.test-arrow), .docblock-short -a:not(.srclink):not(.test-arrow), .stability a { +.docblock:not(.type-decl) a:not(.srclink):not(.test-arrow), +.docblock-short a:not(.srclink):not(.test-arrow), .stability a { color: #D2991D; } diff --git a/src/librustdoc/html/static/themes/light.css b/src/librustdoc/html/static/themes/light.css index 6a3c1988977..f7cb51163ec 100644 --- a/src/librustdoc/html/static/themes/light.css +++ b/src/librustdoc/html/static/themes/light.css @@ -165,8 +165,8 @@ a { color: #000; } -.docblock:not(.type-decl) a:not(.srclink):not(.test-arrow), .docblock-short -a:not(.srclink):not(.test-arrow), .stability a { +.docblock:not(.type-decl) a:not(.srclink):not(.test-arrow), +.docblock-short a:not(.srclink):not(.test-arrow), .stability a { color: #3873AD; } |
