diff options
| author | Mark Otto <[email protected]> | 2013-12-07 11:56:35 -0800 |
|---|---|---|
| committer | Mark Otto <[email protected]> | 2013-12-07 11:56:35 -0800 |
| commit | fe58357df182b52f5905f432a3b2629c717656f1 (patch) | |
| tree | 16cab0c0bb942a69c600098e753e5cf373c46374 /dist/css/bootstrap.css | |
| parent | c07632e4e8398f55d796d00b520ca43df38dbf29 (diff) | |
| download | bootstrap-fe58357df182b52f5905f432a3b2629c717656f1.tar.xz bootstrap-fe58357df182b52f5905f432a3b2629c717656f1.zip | |
Fixes #10884: Adds .info variant to contextual table classes
Diffstat (limited to 'dist/css/bootstrap.css')
| -rw-r--r-- | dist/css/bootstrap.css | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/dist/css/bootstrap.css b/dist/css/bootstrap.css index 435c969d5..4d11858c7 100644 --- a/dist/css/bootstrap.css +++ b/dist/css/bootstrap.css @@ -1803,6 +1803,24 @@ table th[class*="col-"] { background-color: #ebcccc; } +.table > thead > tr > .info, +.table > tbody > tr > .info, +.table > tfoot > tr > .info, +.table > thead > .info > td, +.table > tbody > .info > td, +.table > tfoot > .info > td, +.table > thead > .info > th, +.table > tbody > .info > th, +.table > tfoot > .info > th { + background-color: #d9edf7; +} + +.table-hover > tbody > tr > .info:hover, +.table-hover > tbody > .info:hover > td, +.table-hover > tbody > .info:hover > th { + background-color: #c4e3f3; +} + @media (max-width: 767px) { .table-responsive { width: 100%; |
