Difference between revisions of "MediaWiki:Common.css"

From GTAMods Wiki
Jump to navigation Jump to search
m (recent update seems to have fixed issues)
Line 1: Line 1:
 
/* CSS placed here will be applied to all skins */
 
/* CSS placed here will be applied to all skins */
/**
 
* Fix so <syntaxhighlight> tags and .css and .js pages get normal text size.
 
* [[bugzilla:26204]]
 
*/
 
div.mw-geshi div,
 
div.mw-geshi div pre,
 
span.mw-geshi,
 
pre.source-css,
 
pre.source-javascript {
 
    font-size: 1.35em;
 
/**
 
* Fixing issue on Chrome
 
*/
 
    font-family: monospace !important;
 
}
 
 
/**
 
/**
 
  * Lowercase usernames (only works in some places)
 
  * Lowercase usernames (only works in some places)

Revision as of 10:30, 3 January 2015

/* CSS placed here will be applied to all skins */
/**
 * Lowercase usernames (only works in some places)
 */
.mw-userlink[href*="User:Spaceeinstein"] {
    text-transform: lowercase;
}
/**
 * For [[Saves (GTA VC)/visual]]
 */
.save_table td {
    width: 3em;
    height: 3em;
    text-align: center;
}