summaryrefslogtreecommitdiff
path: root/cyborg/bootstrap.css
diff options
context:
space:
mode:
authorThomas Park <thomas@thomaspark.me>2012-02-17 16:50:37 -0500
committerThomas Park <thomas@thomaspark.me>2012-02-17 16:50:37 -0500
commit4f86f04aeae7b6e52e60c28d16d138ed9137ac87 (patch)
tree4661025249766c160fd5939b313639d181985270 /cyborg/bootstrap.css
parent53f00a54adcd899f75e166edf54d124d6fcf0b24 (diff)
Cyborg: fix hover on tables
Diffstat (limited to 'cyborg/bootstrap.css')
-rw-r--r--cyborg/bootstrap.css33
1 files changed, 18 insertions, 15 deletions
diff --git a/cyborg/bootstrap.css b/cyborg/bootstrap.css
index 434decd8..8809d712 100644
--- a/cyborg/bootstrap.css
+++ b/cyborg/bootstrap.css
@@ -3480,6 +3480,21 @@ a.thumbnail:hover {
font-weight: 200;
line-height: 27px;
}
+.pull-right {
+ float: right;
+}
+.pull-left {
+ float: left;
+}
+.hide {
+ display: none;
+}
+.show {
+ display: block;
+}
+.invisible {
+ visibility: hidden;
+}
h1,
h2,
h3,
@@ -3650,6 +3665,9 @@ div.subnav .nav .dropdown.open .dropdown-menu li > a:hover {
.table-striped tbody tr:nth-child(even) td, .table-striped tbody tr:nth-child(even) th {
background-color: transparent;
}
+.table tbody tr:hover th, .table tbody tr:hover td {
+ background-color: #282828;
+}
code, pre, pre.prettyprint {
background-color: #eeeeee;
}
@@ -3970,18 +3988,3 @@ legend, label {
.label-info:hover {
background-color: #004d66;
}
-.pull-right {
- float: right;
-}
-.pull-left {
- float: left;
-}
-.hide {
- display: none;
-}
-.show {
- display: block;
-}
-.invisible {
- visibility: hidden;
-}