Make CSSLint happy

This commit is contained in:
Nick Pack 2013-07-17 23:19:15 +01:00
parent cd5ddb99ae
commit bca6c011fd

View File

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