Difference between revisions of "MediaWiki:Common.css"

From Transit.Wiki
Line 82: Line 82:
  
 
table.smwtable{
 
table.smwtable{
        border-style: none;
+
background-color: #FFFFFF;/* Note: here and below, we use six digits, since some users had problems with the three digit short forms */
        padding: 0.5px;
 
 
}
 
}
  
 
table.smwtable th{
 
table.smwtable th{
        border-style: none;
+
background-color: #FFFFFF;
        text-align: left;
+
text-align: left;
 
}
 
}
  
 
table.smwtable td{
 
table.smwtable td{
        border-style: none;
+
background-color: #FFFFFF;
        text-align: left;
+
padding: 1px;
padding: 0px;
 
 
padding-left: 5px;
 
padding-left: 5px;
 
padding-right: 5px;
 
padding-right: 5px;
 +
text-align: left;
 
vertical-align: top;
 
vertical-align: top;
 
}
 
}
Line 102: Line 101:
 
table.smwtable tr.smwfooter td{
 
table.smwtable tr.smwfooter td{
 
font-size: 90%;
 
font-size: 90%;
        text-align: left;
 
 
line-height: 1;
 
line-height: 1;
 +
background-color: #FFFFFF;
 
padding: 0px;
 
padding: 0px;
 +
padding-left: 5px;
 +
padding-right: 5px;
 +
text-align: right;
 
vertical-align: top;
 
vertical-align: top;
 +
}
 +
 +
/*hide keys for sorting table entries*/
 +
span.smwsortkey{
 +
display: none;
 +
}
 +
 +
/* buttons for sort-arrows */
 +
a.sortheader:hover{
 +
text-decoration: none;
 
}
 
}

Revision as of 00:28, 7 February 2009

/* CSS placed here will be applied to all skins */

/* Copied from Mediawiki.org */

/* Wikitable (Prettytable) class for skinning normal tables */
table.wikitable,
table.prettytable {
  margin: 1em 1em 1em 0;
  background: #f9f9f9;
  border: 1px #aaaaaa solid;
  border-collapse: collapse;
  empty-cells:show;
}
table.wikitable th, table.wikitable td,
table.prettytable th, table.prettytable td {
  border: 1px #aaaaaa solid;
  padding: 0.2em 0.4em;
}
table.wikitable th, table.wikitable td.hl3, table.wikitable th.hl3,
table.prettytable th, table.prettytable td.hl3, table.wikitable th.hl3 {
  background: #8da7d6;
  text-align: center;
}
table.wikitable td.hl1, table.wikitable th.hl1,
table.prettytable td.hl1, table.wikitable th.hl1 {
  background: #c5d8fc;
  text-align: center;
}
table.wikitable td.hl2, table.wikitable th.hl2,
table.prettytable td.hl2, table.wikitable th.hl2 {
  background: #a7c1f2;
  text-align: center;
}
table.wikitable caption,
table.prettytable caption {
  margin-left: inherit;
  margin-right: inherit;
  font-weight: bold;
}

/* indenttable class for tables that are indented */
table.indenttable {
    margin: 0 1em 0 2em;
    background: #f9f9f9;
    border: 1px #aaa solid;
    border-collapse: collapse;
    empty-cells:show;
}
.indenttable th, .indenttable td {
    border: 1px #aaa solid;
    padding: 0.2em;
}
.indenttable th {
    background: #f2f2f2;
    text-align: center;
}
.indenttable caption {
    font-weight: bold;
}

/* mucolumns class to list items in multiple columns */
table.multicolumns {
    margin: 1em 1em 1em 0;
    empty-cells:show;
}
.mucolumns th, .mucolumns td {
    padding-right: 1em;
    vertical-align: top;
}

 
/* General purpose "pretty (data) tables" */
table.datatable { background-color: transparent; }
table.datatable th, table.datatable td { padding: 4px; }
table.datatable th { text-align: left; background-color: #999999; }
table.datatable tr { background-color: #cccccc; }
table.datatable tr:hover { background-color: #ffffcc; }


/* SMW tables */
/** tables for inline queries **/

table.smwtable{
	background-color: #FFFFFF;/* Note: here and below, we use six digits, since some users had problems with the three digit short forms */
}

table.smwtable th{
	background-color: #FFFFFF;
	text-align: left;
}

table.smwtable td{
	background-color: #FFFFFF;
	padding: 1px;
	padding-left: 5px;
	padding-right: 5px;
	text-align: left;
	vertical-align: top;
}

table.smwtable tr.smwfooter td{
	font-size: 90%;
	line-height: 1;
	background-color: #FFFFFF;
	padding: 0px;
	padding-left: 5px;
	padding-right: 5px;
	text-align: right;
	vertical-align: top;
}

/*hide keys for sorting table entries*/
span.smwsortkey{
	display: none;
}

/* buttons for sort-arrows */
a.sortheader:hover{
	text-decoration: none;
}