diff options
| author | Matthias Krüger <matthias.krueger@famsik.de> | 2022-10-20 07:58:57 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-10-20 07:58:57 +0200 |
| commit | f8dfddb98cb6781ae9b6c7d144eb04bccb3e72f7 (patch) | |
| tree | 6c6e35cfdf8688500664a81e78a77c769c7a3849 | |
| parent | 56ff29484e0d7d0ab9ebafa5e9b1669c6eb68505 (diff) | |
| parent | 0dd329f687f2b3bb229d86f1df3341ea8976e565 (diff) | |
Rollup merge of #103268 - notriddle:notriddle/nav-sub-font-size, r=GuillaumeGomez
rustdoc: remove no-op CSS `nav.sub { font-size: 1rem }`
This rule originated as a `font-size: 16px`, when body had `font-size: 13px` set in 4fd061c426902b0904c65e64a3780b21f9ab3afb.
It remained even when body's font size was bumped up to 16px, 4d5f4ff5e9297dcad21612f9dd20ae4598b5b7e2, making the rule a no-op, and was carried forward when it was converted to 1rem in cc18120425a5c571a968d850c75cc935a8321136.
| -rw-r--r-- | src/librustdoc/html/static/css/rustdoc.css | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/librustdoc/html/static/css/rustdoc.css b/src/librustdoc/html/static/css/rustdoc.css index 1f4bb98f21b..746a510c488 100644 --- a/src/librustdoc/html/static/css/rustdoc.css +++ b/src/librustdoc/html/static/css/rustdoc.css @@ -697,7 +697,6 @@ pre, .rustdoc.source .example-wrap { nav.sub { position: relative; - font-size: 1rem; flex-grow: 1; margin-bottom: 25px; } |
