mirror of
https://github.com/twbs/bootstrap.git
synced 2024-12-01 13:24:25 +01:00
Merge pull request #9211 from zacwasielewski/responsive-visibility-utilities-as-less-mixins
Make visibility utility classes responsive when used as LESS mixins
This commit is contained in:
commit
32f6cbf9d0
@ -35,70 +35,58 @@
|
|||||||
|
|
||||||
// Visibility utilities
|
// Visibility utilities
|
||||||
|
|
||||||
// For Phones
|
|
||||||
.visible-sm {
|
.visible-sm {
|
||||||
.responsive-visibility();
|
.responsive-visibility();
|
||||||
|
@media (min-width: @screen-tablet) and (max-width: @screen-tablet-max) {
|
||||||
|
.responsive-invisibility();
|
||||||
|
}
|
||||||
|
@media (min-width: @screen-desktop) {
|
||||||
|
.responsive-invisibility();
|
||||||
|
}
|
||||||
}
|
}
|
||||||
.visible-md {
|
.visible-md {
|
||||||
.responsive-invisibility();
|
.responsive-invisibility();
|
||||||
|
@media (min-width: @screen-tablet) and (max-width: @screen-tablet-max) {
|
||||||
|
.responsive-visibility();
|
||||||
|
}
|
||||||
|
@media (min-width: @screen-desktop) {
|
||||||
|
.responsive-invisibility();
|
||||||
|
}
|
||||||
}
|
}
|
||||||
.visible-lg {
|
.visible-lg {
|
||||||
.responsive-invisibility();
|
.responsive-invisibility();
|
||||||
|
@media (min-width: @screen-tablet) and (max-width: @screen-tablet-max) {
|
||||||
|
.responsive-invisibility();
|
||||||
|
}
|
||||||
|
@media (min-width: @screen-desktop) {
|
||||||
|
.responsive-visibility();
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
.hidden-sm {
|
.hidden-sm {
|
||||||
.responsive-invisibility();
|
.responsive-invisibility();
|
||||||
|
@media (min-width: @screen-tablet) and (max-width: @screen-tablet-max) {
|
||||||
|
.responsive-visibility();
|
||||||
|
}
|
||||||
|
@media (min-width: @screen-desktop) {
|
||||||
|
.responsive-visibility();
|
||||||
|
}
|
||||||
}
|
}
|
||||||
.hidden-md {
|
.hidden-md {
|
||||||
.responsive-visibility();
|
.responsive-visibility();
|
||||||
|
@media (min-width: @screen-tablet) and (max-width: @screen-tablet-max) {
|
||||||
|
.responsive-invisibility();
|
||||||
|
}
|
||||||
|
@media (min-width: @screen-desktop) {
|
||||||
|
.responsive-visibility();
|
||||||
|
}
|
||||||
}
|
}
|
||||||
.hidden-lg {
|
.hidden-lg {
|
||||||
.responsive-visibility();
|
.responsive-visibility();
|
||||||
}
|
@media (min-width: @screen-tablet) and (max-width: @screen-tablet-max) {
|
||||||
|
|
||||||
|
|
||||||
// Tablets & small desktops only
|
|
||||||
@media (min-width: @screen-tablet) and (max-width: @screen-tablet-max) {
|
|
||||||
.visible-sm {
|
|
||||||
.responsive-invisibility();
|
|
||||||
}
|
|
||||||
.visible-md {
|
|
||||||
.responsive-visibility();
|
.responsive-visibility();
|
||||||
}
|
}
|
||||||
.visible-lg {
|
@media (min-width: @screen-desktop) {
|
||||||
.responsive-invisibility();
|
|
||||||
}
|
|
||||||
|
|
||||||
.hidden-sm {
|
|
||||||
.responsive-visibility();
|
|
||||||
}
|
|
||||||
.hidden-md {
|
|
||||||
.responsive-invisibility();
|
|
||||||
}
|
|
||||||
.hidden-lg {
|
|
||||||
.responsive-visibility();
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
// For desktops
|
|
||||||
@media (min-width: @screen-desktop) {
|
|
||||||
.visible-sm {
|
|
||||||
.responsive-invisibility();
|
|
||||||
}
|
|
||||||
.visible-md {
|
|
||||||
.responsive-invisibility();
|
|
||||||
}
|
|
||||||
.visible-lg {
|
|
||||||
.responsive-visibility();
|
|
||||||
}
|
|
||||||
|
|
||||||
.hidden-sm {
|
|
||||||
.responsive-visibility();
|
|
||||||
}
|
|
||||||
.hidden-md {
|
|
||||||
.responsive-visibility();
|
|
||||||
}
|
|
||||||
.hidden-lg {
|
|
||||||
.responsive-invisibility();
|
.responsive-invisibility();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user