I Reeeaallly need some sleep - last commit was total bollocks.

This commit is contained in:
Nick Pack
2013-07-17 23:26:30 +01:00
parent 1519987805
commit a9ed96e539
4 changed files with 17 additions and 17 deletions

View File

@ -8,7 +8,7 @@ table {
max-width: 100%;
background: $table_background;
border-collapse: collapse;
border-spacing: none;
border-spacing: 0;
width: 100%;
margin: $table_margin;
th,
@ -55,7 +55,7 @@ table {
.table-bordered {
border: 1px solid $table_border_colour;
border-collapse: separate;
border-left: none;
border-left: 0;
@include border-radius($table_border_radius);
th,
td {
@ -71,7 +71,7 @@ table {
thead:first-child tr:first-child th,
tbody:first-child tr:first-child th,
tbody:first-child tr:first-child td {
border-top: none;
border-top: 0;
}
thead:first-child tr:first-child > th:first-child,
@ -103,10 +103,10 @@ table {
}
tfoot tbody:last-child tr:last-child td:first-child {
@include border-bottom-left-radius(0px);
@include border-bottom-left-radius(0);
}
tfoot tbody:last-child tr:last-child td:last-child {
@include border-bottom-right-radius(0px);
@include border-bottom-right-radius(0);
}
caption thead tr:first-child th:first-child,

View File

@ -139,7 +139,7 @@ $list_item_paragraph_line_height: 21px;
$fallback_hex_gradient_bg: #CCC;
$table_background: #FFF;
$table_margin: 10px 0px;
$table_margin: 10px 0;
$table_td_th_padding: 8px;
$table_td_th_line_height: 21px;
$table_border_colour: #CCC;