Commit c6e76d97 authored by Mark Otto's avatar Mark Otto
Browse files

Fixes #10341: don't change border color on contextual table classes

parent 67cab7fa
Showing with 1 addition and 9 deletions
+1 -9
......@@ -1705,7 +1705,6 @@ table th[class*="col-"] {
.table > tbody > tr.success > th,
.table > tfoot > tr.success > th {
background-color: #dff0d8;
border-color: #d6e9c6;
}
.table-hover > tbody > tr > td.success:hover,
......@@ -1713,7 +1712,6 @@ table th[class*="col-"] {
.table-hover > tbody > tr.success:hover > td,
.table-hover > tbody > tr.success:hover > th {
background-color: #d0e9c6;
border-color: #c9e2b3;
}
.table > thead > tr > td.danger,
......@@ -1729,7 +1727,6 @@ table th[class*="col-"] {
.table > tbody > tr.danger > th,
.table > tfoot > tr.danger > th {
background-color: #f2dede;
border-color: #ebccd1;
}
.table-hover > tbody > tr > td.danger:hover,
......@@ -1737,7 +1734,6 @@ table th[class*="col-"] {
.table-hover > tbody > tr.danger:hover > td,
.table-hover > tbody > tr.danger:hover > th {
background-color: #ebcccc;
border-color: #e4b9c0;
}
.table > thead > tr > td.warning,
......@@ -1753,7 +1749,6 @@ table th[class*="col-"] {
.table > tbody > tr.warning > th,
.table > tfoot > tr.warning > th {
background-color: #fcf8e3;
border-color: #faebcc;
}
.table-hover > tbody > tr > td.warning:hover,
......@@ -1761,7 +1756,6 @@ table th[class*="col-"] {
.table-hover > tbody > tr.warning:hover > td,
.table-hover > tbody > tr.warning:hover > th {
background-color: #faf2cc;
border-color: #f7e1b5;
}
@media (max-width: 767px) {
......
This source diff could not be displayed because it is too large. You can view the blob instead.
......@@ -441,7 +441,6 @@
&.@{state} > td,
&.@{state} > th {
background-color: @background;
border-color: @border;
}
}
......@@ -453,7 +452,6 @@
&.@{state}:hover > td,
&.@{state}:hover > th {
background-color: darken(@background, 5%);
border-color: darken(@border, 5%);
}
}
}
......
Supports Markdown
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