aboutsummaryrefslogtreecommitdiff
path: root/less/responsive-utilities.less
diff options
context:
space:
mode:
authorMark Otto <[email protected]>2013-08-17 15:21:38 -0700
committerMark Otto <[email protected]>2013-08-17 15:21:38 -0700
commit61caed21e2553e1be29d98bd83c8e6ac06565ecd (patch)
tree5919c94a42b48841b75eff0f1f25df44a2d90dd6 /less/responsive-utilities.less
parent5ba19dc8849b1b87836404acfa8bbb336db1e496 (diff)
downloadbootstrap-61caed21e2553e1be29d98bd83c8e6ac06565ecd.tar.xz
bootstrap-61caed21e2553e1be29d98bd83c8e6ac06565ecd.zip
More consistent naming with screen size variables using xs, sm, md, and lg
Diffstat (limited to 'less/responsive-utilities.less')
-rw-r--r--less/responsive-utilities.less48
1 files changed, 24 insertions, 24 deletions
diff --git a/less/responsive-utilities.less b/less/responsive-utilities.less
index 529152032..062d6820c 100644
--- a/less/responsive-utilities.less
+++ b/less/responsive-utilities.less
@@ -37,98 +37,98 @@
.visible-xs {
.responsive-visibility();
- @media (min-width: @screen-tablet) and (max-width: @screen-tablet-max) {
+ @media (min-width: @screen-sm) and (max-width: @screen-sm-max) {
.responsive-invisibility();
}
- @media (min-width: @screen-desktop) and (max-width: @screen-desktop-max) {
+ @media (min-width: @screen-md) and (max-width: @screen-md-max) {
.responsive-invisibility();
}
- @media (min-width: @screen-large-desktop) {
+ @media (min-width: @screen-lg) {
.responsive-invisibility();
}
}
.visible-sm {
.responsive-invisibility();
- @media (min-width: @screen-tablet) and (max-width: @screen-tablet-max) {
+ @media (min-width: @screen-sm) and (max-width: @screen-sm-max) {
.responsive-visibility();
}
- @media (min-width: @screen-desktop) and (max-width: @screen-desktop-max) {
+ @media (min-width: @screen-md) and (max-width: @screen-md-max) {
.responsive-invisibility();
}
- @media (min-width: @screen-large-desktop) {
+ @media (min-width: @screen-lg) {
.responsive-invisibility();
}
}
.visible-md {
.responsive-invisibility();
- @media (min-width: @screen-tablet) and (max-width: @screen-tablet-max) {
+ @media (min-width: @screen-sm) and (max-width: @screen-sm-max) {
.responsive-invisibility();
}
- @media (min-width: @screen-desktop) and (max-width: @screen-desktop-max) {
+ @media (min-width: @screen-md) and (max-width: @screen-md-max) {
.responsive-visibility();
}
- @media (min-width: @screen-large-desktop) {
+ @media (min-width: @screen-lg) {
.responsive-invisibility();
}
}
.visible-lg {
.responsive-invisibility();
- @media (min-width: @screen-tablet) and (max-width: @screen-tablet-max) {
+ @media (min-width: @screen-sm) and (max-width: @screen-sm-max) {
.responsive-invisibility();
}
- @media (min-width: @screen-desktop) and (max-width: @screen-desktop-max) {
+ @media (min-width: @screen-md) and (max-width: @screen-md-max) {
.responsive-invisibility();
}
- @media (min-width: @screen-large-desktop) {
+ @media (min-width: @screen-lg) {
.responsive-visibility();
}
}
.hidden-xs {
.responsive-invisibility();
- @media (min-width: @screen-tablet) and (max-width: @screen-tablet-max) {
+ @media (min-width: @screen-sm) and (max-width: @screen-sm-max) {
.responsive-visibility();
}
- @media (min-width: @screen-desktop) and (max-width: @screen-desktop-max) {
+ @media (min-width: @screen-md) and (max-width: @screen-md-max) {
.responsive-visibility();
}
- @media (min-width: @screen-large-desktop) {
+ @media (min-width: @screen-lg) {
.responsive-visibility();
}
}
.hidden-sm {
.responsive-visibility();
- @media (min-width: @screen-tablet) and (max-width: @screen-tablet-max) {
+ @media (min-width: @screen-sm) and (max-width: @screen-sm-max) {
.responsive-invisibility();
}
- @media (min-width: @screen-desktop) and (max-width: @screen-desktop-max) {
+ @media (min-width: @screen-md) and (max-width: @screen-md-max) {
.responsive-visibility();
}
- @media (min-width: @screen-large-desktop) {
+ @media (min-width: @screen-lg) {
.responsive-visibility();
}
}
.hidden-md {
.responsive-visibility();
- @media (min-width: @screen-tablet) and (max-width: @screen-tablet-max) {
+ @media (min-width: @screen-sm) and (max-width: @screen-sm-max) {
.responsive-visibility();
}
- @media (min-width: @screen-desktop) and (max-width: @screen-desktop-max) {
+ @media (min-width: @screen-md) and (max-width: @screen-md-max) {
.responsive-invisibility();
}
- @media (min-width: @screen-large-desktop) {
+ @media (min-width: @screen-lg) {
.responsive-visibility();
}
}
.hidden-lg {
.responsive-visibility();
- @media (min-width: @screen-tablet) and (max-width: @screen-tablet-max) {
+ @media (min-width: @screen-sm) and (max-width: @screen-sm-max) {
.responsive-visibility();
}
- @media (min-width: @screen-desktop) and (max-width: @screen-desktop-max) {
+ @media (min-width: @screen-md) and (max-width: @screen-md-max) {
.responsive-visibility();
}
- @media (min-width: @screen-large-desktop) {
+ @media (min-width: @screen-lg) {
.responsive-invisibility();
}
}