MediaWiki:Common.css: Difference between revisions

From Deutsche Bromelien-Gesellschaft e. V.
Jump to navigation Jump to search
(Created page with "→‎CSS placed here will be applied to all skins: →‎removes the footer "This page was last modified on xxxx": #footer-info-lastmod { display: none; } /* removes the foote...")
 
(Avoid superscript and subscript text from breaking the line-spacing)
Line 8: Line 8:
/* removes the tab "read" in the upper corner left of the "search"-field */
/* removes the tab "read" in the upper corner left of the "search"-field */
li#ca-view {display:none}
li#ca-view {display:none}
/* No change of line height by references */
.reference, .references sup {
    font-size: 91%;
    vertical-align: text-top;
    position: relative;
    top: -0.3em;
}
/* Avoid superscript and subscript text from breaking the line-spacing */
sup, sub {
    vertical-align: baseline;
    _vertical-align: bottom; /* IE6 hack */
    position: relative;
}
sub {
    bottom: -0.25em;
}
sup {
    bottom: 0.33em;
}

Revision as of 15:23, 2 July 2013

/* CSS placed here will be applied to all skins */
/* removes the footer "This page was last modified on xxxx" */
#footer-info-lastmod { display: none; }

/* removes the footer "This page has been accessed xxxx times." */
#footer-info-viewcount { display: none; }

/* removes the tab "read" in the upper corner left of the "search"-field */
li#ca-view {display:none}

/* No change of line height by references */
.reference, .references sup {
     font-size: 91%;
     vertical-align: text-top;
     position: relative;
     top: -0.3em;
}
/* Avoid superscript and subscript text from breaking the line-spacing */
sup, sub {
    vertical-align: baseline;
    _vertical-align: bottom; /* IE6 hack */
    position: relative;
}
sub {
    bottom: -0.25em;
}
sup {
    bottom: 0.33em;
}