diff options
| author | Mark Otto <[email protected]> | 2013-03-17 12:10:58 -0700 |
|---|---|---|
| committer | Mark Otto <[email protected]> | 2013-03-17 12:10:58 -0700 |
| commit | 3aee2adb4b4802c2e16dfe5693db9e79de4e851a (patch) | |
| tree | 6e71bc94a3011210fc4bc012ccff347a0cdf2694 /docs | |
| parent | 28cdc8dc5f816bd2edde7d9c15f1540f0fc37914 (diff) | |
| download | bootstrap-3aee2adb4b4802c2e16dfe5693db9e79de4e851a.tar.xz bootstrap-3aee2adb4b4802c2e16dfe5693db9e79de4e851a.zip | |
Fixes #7297: add support for .success, .error, and .warning on td and th elements in tables
Diffstat (limited to 'docs')
| -rw-r--r-- | docs/assets/css/bootstrap.css | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/docs/assets/css/bootstrap.css b/docs/assets/css/bootstrap.css index e902cdaf7..c92bd7f36 100644 --- a/docs/assets/css/bootstrap.css +++ b/docs/assets/css/bootstrap.css @@ -1076,26 +1076,38 @@ table th[class^="span"] { float: none; } +.table > tbody > tr > td.success, +.table > tbody > tr > th.success, .table > tbody > tr.success > td { background-color: #dff0d8; } +.table > tbody > tr > td.error, +.table > tbody > tr > th.error, .table > tbody > tr.error > td { background-color: #f2dede; } +.table > tbody > tr > td.warning, +.table > tbody > tr > th.warning, .table > tbody > tr.warning > td { background-color: #fcf8e3; } +.table-hover > tbody > tr > td.success:hover, +.table-hover > tbody > tr > th.success:hover, .table-hover > tbody > tr.success:hover > td { background-color: #d0e9c6; } +.table-hover > tbody > tr > td.error:hover, +.table-hover > tbody > tr > th.error:hover, .table-hover > tbody > tr.error:hover > td { background-color: #ebcccc; } +.table-hover > tbody > tr > td.warning:hover, +.table-hover > tbody > tr > th.warning:hover, .table-hover > tbody > tr.warning:hover > td { background-color: #faf2cc; } |
