Cyborg: fix hover on tables
authorThomas Park <thomas@thomaspark.me>
Fri, 17 Feb 2012 21:50:37 +0000 (16:50 -0500)
committerThomas Park <thomas@thomaspark.me>
Fri, 17 Feb 2012 21:50:37 +0000 (16:50 -0500)
cyborg/bootstrap.css
cyborg/bootstrap.min.css
cyborg/bootswatch.less

index 434decd..8809d71 100644 (file)
@@ -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;
-}
index fcb614a..2226334 100644 (file)
@@ -626,6 +626,11 @@ a.thumbnail:hover{border-color:#33b5e5;-webkit-box-shadow:0 1px 4px rgba(0, 105,
 .carousel-caption h4,.carousel-caption p{color:#ffffff;}
 .hero-unit{padding:60px;margin-bottom:30px;background-color:#f5f5f5;-webkit-border-radius:6px;-moz-border-radius:6px;border-radius:6px;}.hero-unit h1{margin-bottom:0;font-size:60px;line-height:1;letter-spacing:-1px;}
 .hero-unit p{font-size:18px;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,h4,h5,.navbar .brand,.navbar .nav-collapse.collapse .nav li>a{color:#eeeeee;font-weight:normal;text-shadow:none;}
 .navbar{font-size:16px;}
 label,input,button,select,textarea{font-family:'Droid Sans',sans-serif;color:#999999;}
@@ -657,6 +662,7 @@ div.subnav .nav .dropdown.open .dropdown-menu{background-color:#020202;border-le
 .table th,.table td{border-top:1px solid #222;}
 .breadcrumb,.table-striped tbody tr:nth-child(odd) td,.table-striped tbody tr:nth-child(odd) th{background-color:rgba(40, 40, 40, 0.5);}
 .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;}
 .well{background-color:rgba(40, 40, 40, 0.5);background-color:#131517;border-top:solid 1px rgba(256, 256, 256, 0.1);-webkit-box-shadow:0 2px 4px rgba(0, 0, 0, 0.8);-moz-box-shadow:0 2px 4px rgba(0, 0, 0, 0.8);box-shadow:0 2px 4px rgba(0, 0, 0, 0.8);}
 .table,.well,.prettyprint,input,textarea,select{-webkit-border-radius:1px;-moz-border-radius:1px;border-radius:1px;}
@@ -705,8 +711,3 @@ legend,label{color:#999999;border-bottom:0px solid #222;}
 .label-success:hover{background-color:#3a5700;}
 .label-info{background-color:#007399;}
 .label-info:hover{background-color:#004d66;}
-.pull-right{float:right;}
-.pull-left{float:left;}
-.hide{display:none;}
-.show{display:block;}
-.invisible{visibility:hidden;}
index df90c9e..6c50548 100755 (executable)
@@ -217,6 +217,10 @@ div.subnav .nav .dropdown.open {
        background-color: transparent;
 }
 
+.table tbody tr:hover th,
+.table tbody tr:hover td {
+       background-color: @grayDark;
+}
 
 code, pre, pre.prettyprint {
        background-color: @grayLighter;