Hide interactive elements when printing rustdoc

Hide the search form and expand/collapse buttons, since they aren't useful when printed.
This commit is contained in:
Corey Ford 2014-11-14 11:44:40 -08:00
parent 1bf0649544
commit ccbda288d2

@ -584,3 +584,9 @@ pre.rust { position: relative; }
height: 1.5em;
}
}
@media print {
nav.sub, .content .out-of-band, .collapse-toggle {
display: none;
}
}