Toggle menu
Toggle preferences menu
Toggle personal menu
Not logged in
Your IP address will be publicly visible if you make any edits.

MediaWiki:Common.css: Difference between revisions

MediaWiki interface page
Arin Mara (talk | contribs)
Added plainlist CSS for Template:Plainlist
Arin Mara (talk | contribs)
User:Evon R'al found nowrap and wrap were missing - added to make Navigational Template links look nice
Line 576: Line 576:
.plainlist ul li {
.plainlist ul li {
margin-bottom: 0;
margin-bottom: 0;
}
/**
* Style for Navigational Templates, both Navboxes and Sidebars.
* [[User:Arin Mara]]
*/
/* Prevent line breaks in silly places where desired (nowrap) and links when we don't want them to (nowraplinks a) */
.nowrap,
.nowraplinks a {
    white-space: nowrap;
}
/* But allow wrapping where desired: */
.wrap,
.wraplinks a {
    white-space: normal;
}
}