diff options
| author | Pascal Hertleif <killercup@gmail.com> | 2015-03-09 20:28:36 +0100 |
|---|---|---|
| committer | Pascal Hertleif <killercup@gmail.com> | 2015-03-09 20:34:20 +0100 |
| commit | c2fe7c4a036eccbdfb00e8609868f9a88d4596af (patch) | |
| tree | 24c4fec131db8aa45966638f872ff59e3bd66222 | |
| parent | 777f5d959930711acc321a50c493b984b780f156 (diff) | |
| download | rust-c2fe7c4a036eccbdfb00e8609868f9a88d4596af.tar.gz rust-c2fe7c4a036eccbdfb00e8609868f9a88d4596af.zip | |
Rustdoc: Add Headline Style for `tymethod`
Fixes #23230
| -rw-r--r-- | src/librustdoc/html/static/main.css | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/librustdoc/html/static/main.css b/src/librustdoc/html/static/main.css index 21b7de9ff7c..1f075566ad5 100644 --- a/src/librustdoc/html/static/main.css +++ b/src/librustdoc/html/static/main.css @@ -83,7 +83,7 @@ h2 { h3 { font-size: 1.3em; } -h1, h2, h3:not(.impl):not(.method):not(.type), h4:not(.method):not(.type) { +h1, h2, h3:not(.impl):not(.method):not(.type):not(.tymethod), h4:not(.method):not(.type):not(.tymethod) { color: black; font-weight: 500; margin: 20px 0 15px 0; @@ -93,7 +93,7 @@ h1.fqn { border-bottom: 1px dashed #D5D5D5; margin-top: 0; } -h2, h3:not(.impl):not(.method):not(.type), h4:not(.method):not(.type) { +h2, h3:not(.impl):not(.method):not(.type):not(.tymethod), h4:not(.method):not(.type):not(.tymethod) { border-bottom: 1px solid #DDDDDD; } h3.impl, h3.method, h4.method, h3.type, h4.type { |
