Difference between revisions of "MediaWiki:Common.css"
From GRFSpecs
Jump to navigationJump to searchPlanetmaker (talk | contribs) m (test) |
Planetmaker (talk | contribs) m (cells shall have border) |
||
| Line 5: | Line 5: | ||
font-weight: normal; |
font-weight: normal; |
||
text-align: left; |
text-align: left; |
||
| + | } |
||
| + | |||
| + | table.wikitable { |
||
| + | border: 0px; |
||
} |
} |
||
table.wikitable td, table.wikitable th { |
table.wikitable td, table.wikitable th { |
||
| − | border: |
+ | border: 1px; |
border-style: solid #ddd; |
border-style: solid #ddd; |
||
| − | padding: |
+ | padding: 0px; |
cellpadding: 1px; |
cellpadding: 1px; |
||
cellspacing: 0px; |
cellspacing: 0px; |
||
Revision as of 23:39, 12 June 2011
/* CSS placed here will be applied to all skins */
/* Normal font styling for table row headers with scope="row" tag */
.wikitable.plainrowheaders th[scope=row] {
font-weight: normal;
text-align: left;
}
table.wikitable {
border: 0px;
}
table.wikitable td, table.wikitable th {
border: 1px;
border-style: solid #ddd;
padding: 0px;
cellpadding: 1px;
cellspacing: 0px;
}
/* lists in data cells are always left-aligned */
.wikitable td ul,
.wikitable td ol,
.wikitable td dl {
text-align: left;
}