Commit 3fe96e8f authored by Mark Otto's avatar Mark Otto

fix border color on inverse tables

parent affd8912
...@@ -1846,7 +1846,7 @@ table td[class*="col-"], table th[class*="col-"] { ...@@ -1846,7 +1846,7 @@ table td[class*="col-"], table th[class*="col-"] {
.table-inverse.table-bordered { .table-inverse.table-bordered {
border: 0; border: 0;
} }
.table-inverse th, .table-inverse td { .table-inverse th, .table-inverse td, .table-inverse thead th {
border-color: #55595c; border-color: #55595c;
} }
......
This diff was suppressed by a .gitattributes entry.
This source diff could not be displayed because it is too large. You can view the blob instead.
This diff is collapsed.
This diff was suppressed by a .gitattributes entry.
...@@ -1846,7 +1846,7 @@ table td[class*="col-"], table th[class*="col-"] { ...@@ -1846,7 +1846,7 @@ table td[class*="col-"], table th[class*="col-"] {
.table-inverse.table-bordered { .table-inverse.table-bordered {
border: 0; border: 0;
} }
.table-inverse th, .table-inverse td { .table-inverse th, .table-inverse td, .table-inverse thead th {
border-color: #55595c; border-color: #55595c;
} }
......
This diff was suppressed by a .gitattributes entry.
This source diff could not be displayed because it is too large. You can view the blob instead.
...@@ -181,7 +181,8 @@ table { ...@@ -181,7 +181,8 @@ table {
} }
th, th,
td { td,
thead th {
border-color: $gray; border-color: $gray;
} }
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment