MediaWiki:Common.css: Unterschied zwischen den Versionen

Aus GaretienWiki
Zur Navigation springen Zur Suche springen
K (Sortable Tables Extension Test)
K
Zeile 1: Zeile 1:
 
/** CSS an dieser Stelle wirkt sich auf alle Skins aus */
 
/** CSS an dieser Stelle wirkt sich auf alle Skins aus */
  
table.sortable {
+
table.sorttable {
 
   margin: 1em 1em 1em 0;
 
   margin: 1em 1em 1em 0;
 
   background: #f9f9f9;
 
   background: #f9f9f9;
Zeile 8: Zeile 8:
 
}
 
}
  
table.sortable td{
+
table.sorttable td{
 
   border: 1px #aaaaaa solid;
 
   border: 1px #aaaaaa solid;
 
   padding: 0.2em;
 
   padding: 0.2em;
 
}
 
}
  
table.sortable th{
+
table.sorttable th{
 
   background: #E6E6FA; /* lavender; wikimedia: #f2f2f2 */
 
   background: #E6E6FA; /* lavender; wikimedia: #f2f2f2 */
 
   border: 1px #aaaaaa solid;
 
   border: 1px #aaaaaa solid;
Zeile 19: Zeile 19:
 
}
 
}
  
table.sortable caption{
+
table.sorttable caption{
 
   margin-left: inherit;
 
   margin-left: inherit;
 
   margin-right: inherit;
 
   margin-right: inherit;
 
}
 
}

Version vom 11. Juni 2007, 11:21 Uhr

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

table.sorttable {
  margin: 1em 1em 1em 0;
  background: #f9f9f9;
  border: 1px #aaaaaa solid;
  border-collapse: collapse;
}

table.sorttable td{
  border: 1px #aaaaaa solid;
  padding: 0.2em;
}

table.sorttable th{
  background: #E6E6FA; /* lavender; wikimedia: #f2f2f2 */
  border: 1px #aaaaaa solid;
  text-align: center;
}

table.sorttable caption{
  margin-left: inherit;
  margin-right: inherit;
}