Difference between revisions of "MediaWiki:Common.css"

From Industrial-Craft-Wiki
Jump to navigation Jump to search
m
Line 41: Line 41:
div.grid-input-slide > span.grid-input, div.grid-input-slide > span.grid-input-numbers, div.grid-output-slide > span.grid-output, div.grid-output-slide > span.grid-output-numbers {
div.grid-input-slide > span.grid-input, div.grid-input-slide > span.grid-input-numbers, div.grid-output-slide > span.grid-output, div.grid-output-slide > span.grid-output-numbers {
     display: none;
     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;
}
}

Revision as of 19:02, 24 October 2011

/* CSS placed here will be applied to all skins */
.pops a {
  background-color: #ffc !important;
}
.grid-input {
    left: 2px;
    position: absolute;
    top: 2px;
    z-index: 1;
}
.grid-output {
    left: 10px;
    position: absolute;
    top: 10px;
    z-index: 1;
}
.grid-input-number {
    left: 22px;
    position: absolute;
    top: 17px;
    z-index: 2;
}
.grid-input-number2 {
    left: 10px;
    position: absolute;
    top: 17px;
    z-index: 2;
}
.grid-output-number {
    left: 30px;
    position: absolute;
    top: 25px;
    z-index: 2;
}
.grid-output-number2 {
    left: 18px;
    position: absolute;
    top: 25px;
    z-index: 2;
}
div.grid-input-slide > span.grid-input, div.grid-input-slide > span.grid-input-numbers, div.grid-output-slide > span.grid-output, div.grid-output-slide > span.grid-output-numbers {
    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;
}