diff options
-rw-r--r-- | cyborg/bootstrap.css | 33 | ||||
-rw-r--r-- | cyborg/bootstrap.min.css | 11 | ||||
-rwxr-xr-x | cyborg/bootswatch.less | 4 |
3 files changed, 28 insertions, 20 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; -} diff --git a/cyborg/bootstrap.min.css b/cyborg/bootstrap.min.css index fcb614a8..2226334a 100644 --- a/cyborg/bootstrap.min.css +++ b/cyborg/bootstrap.min.css @@ -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;} diff --git a/cyborg/bootswatch.less b/cyborg/bootswatch.less index df90c9e7..6c505489 100755 --- a/cyborg/bootswatch.less +++ b/cyborg/bootswatch.less @@ -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; |