MediaWiki:Print.css: Difference between revisions
Jump to navigation
Jump to search
No edit summary |
No edit summary |
||
| Line 14: | Line 14: | ||
table.wikitable{ | table.wikitable{ | ||
width:800px !important; | width:800px !important; | ||
} | |||
/* We don't want very long URLs (that are added to the content in print) to widen the canvas */ | |||
#content a.external.text:after, | |||
#content a.external.autonumber:after { | |||
word-wrap: break-word; | |||
} | } | ||
Revision as of 13:15, 7 June 2016
/* CSS placed here will affect the print output */
/* Uncollapse collapsible tables/divs.
The proper way to do this for tables is to use display:table-row,
but this is not supported by all browsers, so use display:block as fallback.
*/
table.collapsible tr, div.NavPic, div.NavContent {
display: block !important;
}
table.collapsible tr {
display: table-row !important;
}
table.wikitable{
width:800px !important;
}
/* We don't want very long URLs (that are added to the content in print) to widen the canvas */
#content a.external.text:after,
#content a.external.autonumber:after {
word-wrap: break-word;
}