0
0
mirror of https://github.com/twbs/bootstrap.git synced 2025-02-19 16:54:24 +01:00

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

This commit is contained in:
Mark Otto 2013-10-28 21:19:48 -07:00
parent 67cab7fa05
commit c6e76d97ba
3 changed files with 1 additions and 9 deletions

View File

@ -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) {

File diff suppressed because one or more lines are too long

View File

@ -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%);
}
}
}