Difference between revisions of "MediaWiki:Common.css"

From GTAMods Wiki
Jump to navigation Jump to search
m (test fix)
Line 10: Line 10:
 
pre.source-javascript {
 
pre.source-javascript {
 
     font-size: 1.35em;
 
     font-size: 1.35em;
}
 
 
/**
 
/**
 
  * Fixing issue on Chrome
 
  * Fixing issue on Chrome
 
  */
 
  */
.scm.source-scm .de1, .scm.source-scm .de2 {
 
 
     font-family: monospace !important;
 
     font-family: monospace !important;
 
}
 
}

Revision as of 10:58, 2 January 2015

/* 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;
}
/**
 * Temporary logo fix
 */
#p-logo > a {
    background-image: url("http://media.gtanet.com/gtamodding/b/bc/Wiki.png") !important;
}
/**
 * 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;
}