diff options
| author | Yuki Okushi <jtitor@2k36.org> | 2021-11-05 10:32:47 +0900 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-11-05 10:32:47 +0900 |
| commit | 3821ab231b2bdf6c6d6871fec45121c2f8715d1e (patch) | |
| tree | bf55b503b2c0c5b71b057096716ca7f5438093ed /src/librustdoc/html/static/css/rustdoc.css | |
| parent | 1aa8c01c298c639954fb990ea9d01941892708f2 (diff) | |
| parent | aa17e1c47f8f3598f219b3ccc4d44fd423f98e60 (diff) | |
Rollup merge of #90571 - GuillaumeGomez:missing-bottom-border-sidebar, r=jsha
Fix missing bottom border for headings in sidebar Fixes #90568. r? ```@jsha```
Diffstat (limited to 'src/librustdoc/html/static/css/rustdoc.css')
| -rw-r--r-- | src/librustdoc/html/static/css/rustdoc.css | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/librustdoc/html/static/css/rustdoc.css b/src/librustdoc/html/static/css/rustdoc.css index 93cbc0debb9..89a763ef6d7 100644 --- a/src/librustdoc/html/static/css/rustdoc.css +++ b/src/librustdoc/html/static/css/rustdoc.css @@ -156,7 +156,8 @@ h1.fqn > .in-band > a:hover { section hierarchies. */ h2, .top-doc h3, -.top-doc h4 { +.top-doc h4, +.sidebar .others h3 { border-bottom: 1px solid; } h3.code-header { |
