We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 99baddb + 9b09dc0 commit 275599dCopy full SHA for 275599d
src/librustdoc/html/static/noscript.css
@@ -1,3 +1,9 @@
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
}
@@ -13,3 +19,7 @@
13
19
#main > h2 + h3 {
14
20
display: flex;
15
21
22
23
+#main .impl-items .hidden {
24
+ display: block !important;
25
+}
0 commit comments