aboutsummaryrefslogtreecommitdiff
path: root/docs/assets/css
diff options
context:
space:
mode:
authorMark Otto <[email protected]>2013-01-11 20:38:14 -0800
committerMark Otto <[email protected]>2013-01-11 20:38:14 -0800
commitd7c93fc647f38fb4baab9a2f95225600050dc1fe (patch)
tree4a4ec0e2e988391af8059c22899aaa83b16365ec /docs/assets/css
parent53f9e25150c0dcd8f2285691b0e74a7bde553fbe (diff)
downloadbootstrap-d7c93fc647f38fb4baab9a2f95225600050dc1fe.tar.xz
bootstrap-d7c93fc647f38fb4baab9a2f95225600050dc1fe.zip
Fixes #6478: scope table backgrounds to immediate td/th elements
Diffstat (limited to 'docs/assets/css')
-rw-r--r--docs/assets/css/bootstrap.css20
1 files changed, 10 insertions, 10 deletions
diff --git a/docs/assets/css/bootstrap.css b/docs/assets/css/bootstrap.css
index 2e2f06160..4ff2a3539 100644
--- a/docs/assets/css/bootstrap.css
+++ b/docs/assets/css/bootstrap.css
@@ -2115,8 +2115,8 @@ table {
background-color: #f9f9f9;
}
-.table-hover tbody tr:hover td,
-.table-hover tbody tr:hover th {
+.table-hover tbody tr:hover > td,
+.table-hover tbody tr:hover > th {
background-color: #f5f5f5;
}
@@ -2213,35 +2213,35 @@ table th[class*="span"],
margin-left: 0;
}
-.table tbody tr.success td {
+.table tbody tr.success > td {
background-color: #dff0d8;
}
-.table tbody tr.error td {
+.table tbody tr.error > td {
background-color: #f2dede;
}
-.table tbody tr.warning td {
+.table tbody tr.warning > td {
background-color: #fcf8e3;
}
-.table tbody tr.info td {
+.table tbody tr.info > td {
background-color: #d9edf7;
}
-.table-hover tbody tr.success:hover td {
+.table-hover tbody tr.success:hover > td {
background-color: #d0e9c6;
}
-.table-hover tbody tr.error:hover td {
+.table-hover tbody tr.error:hover > td {
background-color: #ebcccc;
}
-.table-hover tbody tr.warning:hover td {
+.table-hover tbody tr.warning:hover > td {
background-color: #faf2cc;
}
-.table-hover tbody tr.info:hover td {
+.table-hover tbody tr.info:hover > td {
background-color: #c4e3f3;
}