2
0
mirror of https://github.com/tenrok/bootstrap.git synced 2026-05-30 15:24:08 +03:00

Redo the responsive utilities stuff

* Update docs language
* Enforce display: block; on all utilities for now
* Fix up docs CSS for the tests
This commit is contained in:
Mark Otto
2013-05-16 19:13:58 -07:00
parent bdd5022833
commit e5d6a40a77
5 changed files with 44 additions and 42 deletions
+10 -10
View File
@@ -5094,7 +5094,7 @@ a.list-group-item.active > .badge,
}
.visible-sm {
display: inherit !important;
display: block !important;
}
.visible-md {
@@ -5110,11 +5110,11 @@ a.list-group-item.active > .badge,
}
.hidden-md {
display: inherit !important;
display: block !important;
}
.hidden-lg {
display: inherit !important;
display: block !important;
}
@media (min-width: 768px) and (max-width: 991px) {
@@ -5122,19 +5122,19 @@ a.list-group-item.active > .badge,
display: none !important;
}
.visible-md {
display: inherit !important;
display: block !important;
}
.visible-lg {
display: none !important;
}
.hidden-sm {
display: inherit !important;
display: block !important;
}
.hidden-md {
display: none !important;
}
.hidden-lg {
display: inherit !important;
display: block !important;
}
}
@@ -5146,13 +5146,13 @@ a.list-group-item.active > .badge,
display: none !important;
}
.visible-lg {
display: inherit !important;
display: block !important;
}
.hidden-sm {
display: inherit !important;
display: block !important;
}
.hidden-md {
display: inherit !important;
display: block !important;
}
.hidden-lg {
display: none !important;
@@ -5165,7 +5165,7 @@ a.list-group-item.active > .badge,
@media print {
.visible-print {
display: inherit !important;
display: block !important;
}
.hidden-print {
display: none !important;