about summary refs log tree commit diff
path: root/src/librustdoc/html/static/css/noscript.css
blob: 0a196edd53b1dd063900a27a45a598e8e49be2f8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
/*
This whole CSS file is used only in case rustdoc is rendered with javascript disabled. Since a lot
of content is hidden by default (depending on the settings too), we have to overwrite some of the
rules.
*/

#main .attributes {
	/* Since there is no toggle (the "[-]") when JS is disabled, no need for this margin either. */
	margin-left: 0 !important;
}

#copy-path {
	/* It requires JS to work so no need to display it in this case. */
	display: none;
}