Skip to content
Snippets Groups Projects
Commit 2d88ad46 authored by Frank Duncan's avatar Frank Duncan
Browse files

Fix #131: Hide the printable version link

Instead of removing the link via editing the sidebar, just hides it via
css.  The sidebar edit proved too much of a hassle, in that it didn't
actually work correctly.

Issue #131: Remove 'Printable version' tool from all Torque wikis
parent bbd6b101
No related branches found
No related tags found
No related merge requests found
......@@ -60,6 +60,14 @@ body {
#p-View {
display:block;
}
/* Hides the "Printable version" tool.
* See https://github.com/OpenTechStrategies/torque-sites/issues/131
*/
#t-print {
display:none;
}
@media print {
.firstHeading {
display:none;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment