diff options
| author | Mark Otto <[email protected]> | 2012-08-27 21:06:21 -0700 |
|---|---|---|
| committer | Mark Otto <[email protected]> | 2012-08-27 21:06:21 -0700 |
| commit | 1eaf1cf418c4b3595898346aeb32e0a1e5b31ea1 (patch) | |
| tree | 82b783f707d34848abb318f02fec7d56266e182c /docs/assets/css/bootstrap.css | |
| parent | 17d8c78e520c3207765d4c077336a589cf64a698 (diff) | |
| download | bootstrap-1eaf1cf418c4b3595898346aeb32e0a1e5b31ea1.tar.xz bootstrap-1eaf1cf418c4b3595898346aeb32e0a1e5b31ea1.zip | |
fixes #4653: add hover states to stateful table rows
Diffstat (limited to 'docs/assets/css/bootstrap.css')
| -rw-r--r-- | docs/assets/css/bootstrap.css | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/docs/assets/css/bootstrap.css b/docs/assets/css/bootstrap.css index 7603b7a1c..11db5415f 100644 --- a/docs/assets/css/bootstrap.css +++ b/docs/assets/css/bootstrap.css @@ -2102,6 +2102,22 @@ table .span24 { background-color: #d9edf7; } +.table-hover tbody tr.success:hover td { + background-color: #d0e9c6; +} + +.table-hover tbody tr.error:hover td { + background-color: #ebcccc; +} + +.table-hover tbody tr.warning:hover td { + background-color: #faf2cc; +} + +.table-hover tbody tr.info:hover td { + background-color: #c4e3f3; +} + [class^="icon-"], [class*=" icon-"] { display: inline-block; |
