diff options
| author | Mark Otto <[email protected]> | 2013-06-18 19:16:42 -0700 |
|---|---|---|
| committer | Mark Otto <[email protected]> | 2013-06-18 19:16:50 -0700 |
| commit | 546d40a143539ecc4205ea4a9f5640572a2d6833 (patch) | |
| tree | 7f5b8ed51dc4af5dc377b7f7823fc03bcd42a555 /docs/assets/css/bootstrap.css | |
| parent | 112dabb3c2f8b75a15a7cc5445c7870d3bfbb85f (diff) | |
| download | bootstrap-546d40a143539ecc4205ea4a9f5640572a2d6833.tar.xz bootstrap-546d40a143539ecc4205ea4a9f5640572a2d6833.zip | |
Add support for `tr`, `th`, and `td` to responsive utilities
Diffstat (limited to 'docs/assets/css/bootstrap.css')
| -rw-r--r-- | docs/assets/css/bootstrap.css | 76 |
1 files changed, 76 insertions, 0 deletions
diff --git a/docs/assets/css/bootstrap.css b/docs/assets/css/bootstrap.css index d9d6e555d..d00b27b8e 100644 --- a/docs/assets/css/bootstrap.css +++ b/docs/assets/css/bootstrap.css @@ -5167,6 +5167,15 @@ a.list-group-item.active > .badge, display: block !important; } +tr.visible-sm { + display: table-row !important; +} + +th.visible-sm, +td.visible-sm { + display: table-cell !important; +} + .visible-md { display: none !important; } @@ -5183,10 +5192,28 @@ a.list-group-item.active > .badge, display: block !important; } +tr.hidden-md { + display: table-row !important; +} + +th.hidden-md, +td.hidden-md { + display: table-cell !important; +} + .hidden-lg { display: block !important; } +tr.hidden-lg { + display: table-row !important; +} + +th.hidden-lg, +td.hidden-lg { + display: table-cell !important; +} + @media (min-width: 768px) and (max-width: 991px) { .visible-sm { display: none !important; @@ -5194,18 +5221,39 @@ a.list-group-item.active > .badge, .visible-md { display: block !important; } + tr.visible-md { + display: table-row !important; + } + th.visible-md, + td.visible-md { + display: table-cell !important; + } .visible-lg { display: none !important; } .hidden-sm { display: block !important; } + tr.hidden-sm { + display: table-row !important; + } + th.hidden-sm, + td.hidden-sm { + display: table-cell !important; + } .hidden-md { display: none !important; } .hidden-lg { display: block !important; } + tr.hidden-lg { + display: table-row !important; + } + th.hidden-lg, + td.hidden-lg { + display: table-cell !important; + } } @media (min-width: 992px) { @@ -5218,12 +5266,33 @@ a.list-group-item.active > .badge, .visible-lg { display: block !important; } + tr.visible-lg { + display: table-row !important; + } + th.visible-lg, + td.visible-lg { + display: table-cell !important; + } .hidden-sm { display: block !important; } + tr.hidden-sm { + display: table-row !important; + } + th.hidden-sm, + td.hidden-sm { + display: table-cell !important; + } .hidden-md { display: block !important; } + tr.hidden-md { + display: table-row !important; + } + th.hidden-md, + td.hidden-md { + display: table-cell !important; + } .hidden-lg { display: none !important; } @@ -5237,6 +5306,13 @@ a.list-group-item.active > .badge, .visible-print { display: block !important; } + tr.visible-print { + display: table-row !important; + } + th.visible-print, + td.visible-print { + display: table-cell !important; + } .hidden-print { display: none !important; } |
