2014-04-19 01:12:02 +00:00
|
|
|
/*
|
|
|
|
Generic Tables
|
|
|
|
*/
|
|
|
|
|
2014-04-05 16:26:11 +00:00
|
|
|
table {
|
|
|
|
border-collapse: collapse;
|
|
|
|
margin: ($base-line-height / 2) 0;
|
|
|
|
table-layout: fixed;
|
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
|
|
|
|
th {
|
|
|
|
border-bottom: 1px solid darken($base-border-color, 15%);
|
|
|
|
font-weight: bold;
|
2014-04-25 22:15:15 +00:00
|
|
|
padding: 0.5em 0;
|
2014-04-05 16:26:11 +00:00
|
|
|
text-align: left;
|
|
|
|
}
|
|
|
|
|
|
|
|
td {
|
|
|
|
border-bottom: 1px solid $base-border-color;
|
2014-04-25 22:15:15 +00:00
|
|
|
padding: 0.5em 0;
|
2014-04-05 16:26:11 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
tr, td, th {
|
|
|
|
vertical-align: middle;
|
|
|
|
}
|
2014-04-19 01:12:02 +00:00
|
|
|
|
2014-05-02 08:27:18 +00:00
|
|
|
/*
|
|
|
|
Striped Tables
|
|
|
|
*/
|
|
|
|
|
2014-05-02 16:43:23 +00:00
|
|
|
table.striped > tbody,
|
|
|
|
table.striped > thead {
|
2014-04-20 01:29:52 +00:00
|
|
|
> tr {
|
|
|
|
td:first-child,
|
|
|
|
th:first-child {
|
|
|
|
padding-left: ($base-line-height / 2);
|
|
|
|
}
|
2014-04-19 01:12:02 +00:00
|
|
|
|
2014-04-20 01:29:52 +00:00
|
|
|
td:last-child,
|
|
|
|
th:last-child {
|
|
|
|
padding-right: ($base-line-height / 2);
|
|
|
|
}
|
2014-04-19 01:12:02 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
> tr:nth-child(2n) td {
|
2014-05-02 08:27:18 +00:00
|
|
|
background-color: transparentize($light-blue, 0.9);
|
2014-04-19 01:12:02 +00:00
|
|
|
}
|
2014-04-27 01:46:11 +00:00
|
|
|
|
|
|
|
.actions {
|
|
|
|
text-align: right;
|
|
|
|
}
|
2014-04-25 22:15:15 +00:00
|
|
|
}
|