]> git.lizzy.rs Git - rust.git/blob - src/librustdoc/html/static/noscript.css
Rollup merge of #80039 - LeSeulArtichaut:rm-tyencoder-tcx, r=matthewjasper
[rust.git] / src / librustdoc / html / static / noscript.css
1 /*
2 This whole CSS file is used only in case rustdoc is rendered with javascript disabled. Since a lot
3 of content is hidden by default (depending on the settings too), we have to overwrite some of the
4 rules.
5 */
6
7 #main > h2 + div, #main > h2 + h3, #main > h3 + div {
8         display: block;
9 }
10
11 .loading-content {
12         display: none;
13 }
14
15 #main > h2 + div, #main > h3 + div {
16         display: block;
17 }
18
19 #main > h2 + h3 {
20         display: flex;
21 }
22
23 #main .impl-items .hidden {
24         display: block !important;
25 }