1
0
mirror of https://github.com/twbs/bootstrap.git synced 2025-08-20 04:11:39 +02:00

Changed Screen Notations on responsive-utilities.less and recompiled the stylesheet

This commit is contained in:
Vinay Raghu
2013-05-11 19:28:59 +05:30
parent 8051695c87
commit 5e13f57870
2 changed files with 348 additions and 1102 deletions

File diff suppressed because it is too large Load Diff

View File

@@ -36,35 +36,35 @@
// Visibility utilities
// For Phones
.visible-phone { display: inherit !important; }
.visible-tablet { display: none !important; }
.visible-desktop { display: none !important; }
.visible-sm { display: inherit !important; }
.visible-md { display: none !important; }
.visible-lg { display: none !important; }
.hidden-phone { display: none !important; }
.hidden-tablet { display: inherit !important; }
.hidden-desktop { display: inherit !important; }
.hidden-sm { display: none !important; }
.hidden-md { display: inherit !important; }
.hidden-lg { display: inherit !important; }
// Tablets & small desktops only
@media (min-width: @screen-tablet) and (max-width: @screen-tablet-max) {
.visible-phone { display: none !important; }
.visible-tablet { display: inherit !important; }
.visible-desktop { display: none !important; }
.visible-sm { display: none !important; }
.visible-md { display: inherit !important; }
.visible-lg { display: none !important; }
.hidden-phone { display: inherit !important; }
.hidden-tablet { display: none !important; }
.hidden-desktop { display: inherit !important; }
.hidden-sm { display: inherit !important; }
.hidden-md { display: none !important; }
.hidden-lg { display: inherit !important; }
}
// For desktops
@media (min-width: @screen-desktop) {
.visible-phone { display: none !important; }
.visible-tablet { display: none !important; }
.visible-desktop { display: inherit !important; }
.visible-sm { display: none !important; }
.visible-md { display: none !important; }
.visible-lg { display: inherit !important; }
.hidden-phone { display: inherit !important; }
.hidden-tablet { display: inherit !important; }
.hidden-desktop { display: none !important; }
.hidden-sm { display: inherit !important; }
.hidden-md { display: inherit !important; }
.hidden-lg { display: none !important; }
}
// Print utilities