From 17d8c78e520c3207765d4c077336a589cf64a698 Mon Sep 17 00:00:00 2001 From: Mark Otto Date: Mon, 27 Aug 2012 20:32:42 -0700 Subject: fix docs horizontal scroll on tablet viewports --- docs/assets/css/docs.css | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'docs/assets/css') diff --git a/docs/assets/css/docs.css b/docs/assets/css/docs.css index d52d6cd1c..679322562 100644 --- a/docs/assets/css/docs.css +++ b/docs/assets/css/docs.css @@ -887,7 +887,7 @@ form.bs-docs-example { /* Tablet ------------------------- */ -@media (max-width: 768px) { +@media (max-width: 767px) { /* Remove any padding from the body */ body { padding-top: 0; -- cgit v1.2.3 From 1eaf1cf418c4b3595898346aeb32e0a1e5b31ea1 Mon Sep 17 00:00:00 2001 From: Mark Otto Date: Mon, 27 Aug 2012 21:06:21 -0700 Subject: fixes #4653: add hover states to stateful table rows --- docs/assets/css/bootstrap.css | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) (limited to 'docs/assets/css') 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; -- cgit v1.2.3