MediaWiki:Common.css: Difference between revisions

From Step Mods | Change The Game
No edit summary
No edit summary
Line 4: Line 4:
body.page-Main_Page h1.firstHeading { display:none; }
body.page-Main_Page h1.firstHeading { display:none; }


/* Default tables are white; white is bad. */
/** Collapsible tables *********************************************************
table { background-color: transparent; }
*
 
*  Description: Allows tables to be collapsed, showing only the header. See
/* Changes logo parameters */
*                         http://www.mediawiki.org/wiki/Manual:Collapsible_tables.
/* img.a{width:142px;height:625px;} */
* Maintainers: [[en:User:R. Koot]]
/*  
*/
#p-logo a,
#p-logo a:hover {
table.collapsed tr.collapsible {
        display: block;
         display: none;
        height: 100px;
        width: 10em;
        background-repeat: no-repeat;
        background-position: 50% 65% !important;
         text-decoration: none;
}
}
 
#p-logo {
.collapseButton {               /* 'show'/'hide' buttons created dynamically by the             */
        z-index: 3;
        float: right;          /* CollapsibleTables JavaScript in [[MediaWiki:Common.js]] */
        position: absolute; /*needed to use z-index */
        font-weight: normal;   /* are styled here so they can be customised.             */
        top: 0;
        text-align: right;
        left: 10;
        width: auto;
        height: 100px;
        width: 10em;
        overflow: visible;
}
*/
 
/* 'show'/'hide' buttons created dynamically by the CollapsibleTables javascript
  in [[MediaWiki:Common.js]] are styled here so they can be customised. */
.collapseButton {     
    /* @noflip */
    float: right;
    font-weight: normal;
    /* @noflip */
    margin-left: 0.5em;
    /* @noflip */
    text-align: right;
    width: auto;
}
}

Revision as of 00:06, July 25, 2012

/* CSS placed here will be applied to all skins */

/* Hides the Main Page's title */
body.page-Main_Page h1.firstHeading { display:none; }

/** Collapsible tables *********************************************************
 *
 *  Description: Allows tables to be collapsed, showing only the header. See
 *                         http://www.mediawiki.org/wiki/Manual:Collapsible_tables.
 *  Maintainers: [[en:User:R. Koot]]
 */
 
table.collapsed tr.collapsible {
        display: none;
}
 
.collapseButton {               /* 'show'/'hide' buttons created dynamically by the             */
        float: right;           /* CollapsibleTables JavaScript in [[MediaWiki:Common.js]] */
        font-weight: normal;    /* are styled here so they can be customised.             */
        text-align: right;
        width: auto;
}