Facebook Social Icon Twitter Social Icon YouTube Social Icon

MediaWiki:Common.css: Difference between revisions

From M.Eng. René Schwarz, Bremen/Merseburg
Jump to: navigation, search
No edit summary
No edit summary
Line 9: Line 9:
{
{
   vertical-align: top;
   vertical-align: top;
}
/* Make the list of references smaller */
div.references {
    font-size: 90%;
}
/* Highlight clicked reference in blue to help navigation */
div.references li:target,
sup.reference:target,
span.citation:target {
    background-color: #DEF;
}
/* Ensure refs in table headers and the like aren't bold or italic */
sup.reference {
    font-weight: normal;
    font-style: normal;
}
/* Styling for citations */
span.citation, cite {
    font-style: normal;
    word-wrap: break-word;
}
/* For linked citation numbers and document IDs, where
  the number need not be shown on a screen or a handheld,
  but should be included in the printed version
*/
@media screen, handheld {
    span.citation *.printonly {
        display: none;
    }
}
}

Revision as of 16:38, 2 March 2011

/* CSS an dieser Stelle wirkt sich auf alle Skins aus */

table.wikitable tr td
{
   vertical-align: top;
}

table tbody tr td
{
   vertical-align: top;
}

/* Make the list of references smaller */
div.references {
    font-size: 90%;
}
 
/* Highlight clicked reference in blue to help navigation */
div.references li:target,
sup.reference:target,
span.citation:target { 
    background-color: #DEF;
}
 
/* Ensure refs in table headers and the like aren't bold or italic */
sup.reference {
    font-weight: normal;
    font-style: normal;
}
 
/* Styling for citations */
span.citation, cite {
    font-style: normal;
    word-wrap: break-word;
}
 
/* For linked citation numbers and document IDs, where
   the number need not be shown on a screen or a handheld,
   but should be included in the printed version
*/
@media screen, handheld {
    span.citation *.printonly {
        display: none;
    }
}