From 3c82ccaa2bf7738b41f8805232f3a96aec522655 Mon Sep 17 00:00:00 2001 From: Mark Otto Date: Sun, 17 Mar 2013 17:26:02 -0700 Subject: color border in table contextual classes --- docs/assets/css/bootstrap.css | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'docs/assets/css/bootstrap.css') diff --git a/docs/assets/css/bootstrap.css b/docs/assets/css/bootstrap.css index c92bd7f36..37e89e3d6 100644 --- a/docs/assets/css/bootstrap.css +++ b/docs/assets/css/bootstrap.css @@ -1080,36 +1080,42 @@ table th[class^="span"] { .table > tbody > tr > th.success, .table > tbody > tr.success > td { background-color: #dff0d8; + border-color: #d6e9c6; } .table > tbody > tr > td.error, .table > tbody > tr > th.error, .table > tbody > tr.error > td { background-color: #f2dede; + border-color: #eed3d7; } .table > tbody > tr > td.warning, .table > tbody > tr > th.warning, .table > tbody > tr.warning > td { background-color: #fcf8e3; + border-color: #fbeed5; } .table-hover > tbody > tr > td.success:hover, .table-hover > tbody > tr > th.success:hover, .table-hover > tbody > tr.success:hover > td { background-color: #d0e9c6; + border-color: #c9e2b3; } .table-hover > tbody > tr > td.error:hover, .table-hover > tbody > tr > th.error:hover, .table-hover > tbody > tr.error:hover > td { background-color: #ebcccc; + border-color: #e6c1c7; } .table-hover > tbody > tr > td.warning:hover, .table-hover > tbody > tr > th.warning:hover, .table-hover > tbody > tr.warning:hover > td { background-color: #faf2cc; + border-color: #f8e5be; } form { -- cgit v1.2.3