24 lines
533 B
SCSS
24 lines
533 B
SCSS
|
|
$include-html-table-classes: false;
|
||
|
|
@import 'foundation/components/tables';
|
||
|
|
|
||
|
|
// You can opt into Foundation-styled tables by adding class `table`, but
|
||
|
|
// turning them on by default makes a dumb mess (just due to the site's nature).
|
||
|
|
table.table {
|
||
|
|
@include table;
|
||
|
|
|
||
|
|
th[scope="row"] {
|
||
|
|
text-align: left;
|
||
|
|
}
|
||
|
|
|
||
|
|
th label {
|
||
|
|
color: $table-head-font-color;
|
||
|
|
}
|
||
|
|
}
|
||
|
|
|
||
|
|
// Alternately, here's the padding the old site skins used.
|
||
|
|
table:not(.table, .picker__table) {
|
||
|
|
td, th {
|
||
|
|
padding: 0.2em 0.8em;
|
||
|
|
}
|
||
|
|
}
|