Difference between revisions of "MediaWiki:Common.css"
From GRFSpecs
Jump to navigationJump to searchPlanetmaker (talk | contribs) m (another fix) |
Planetmaker (talk | contribs) m (another change) |
||
| Line 8: | Line 8: | ||
table.wikitable td, table.wikitable th { |
table.wikitable td, table.wikitable th { |
||
| − | border: 1px; |
+ | border: 1px solid #ddd; |
| − | + | padding: 1px; |
|
| − | padding: 3px; |
||
cellpadding: 1px; |
cellpadding: 1px; |
||
| − | cellspacing: |
+ | cellspacing: 1px; |
} |
} |
||
Revision as of 23:42, 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 td, table.wikitable th {
border: 1px solid #ddd;
padding: 1px;
cellpadding: 1px;
cellspacing: 1px;
}
/* lists in data cells are always left-aligned */
.wikitable td ul,
.wikitable td ol,
.wikitable td dl {
text-align: left;
}