Improve CSS

Improving by merging same value selectors and aligning whitespace
This commit is contained in:
Volker E
2017-09-07 19:06:54 -07:00
committed by GitHub
parent 70eba564d8
commit 0ca0bd0e7b

View File

@@ -198,7 +198,6 @@
/* Very large display targeting */ /* Very large display targeting */
@media only screen and (min-width: 1441px) { @media only screen and (min-width: 1441px) {
.uls-mobile .hide-for-small, .uls-mobile .hide-for-small,
.uls-mobile .hide-for-medium, .uls-mobile .hide-for-medium,
.uls-mobile .hide-for-medium-down, .uls-mobile .hide-for-medium-down,
@@ -216,9 +215,9 @@
display: none !important; display: none !important;
} }
} }
/* Medium display targeting */ /* Medium display targeting */
@media only screen and (max-width: 1279px) and (min-width: 768px) { @media only screen and (max-width: 1279px) and (min-width: 768px) {
.uls-mobile .hide-for-small, .uls-mobile .hide-for-small,
.uls-mobile .show-for-medium, .uls-mobile .show-for-medium,
.uls-mobile .show-for-medium-down, .uls-mobile .show-for-medium-down,
@@ -237,9 +236,9 @@
display: none !important; display: none !important;
} }
} }
/* Small display targeting */ /* Small display targeting */
@media only screen and (max-width: 767px) { @media only screen and (max-width: 767px) {
.uls-mobile .show-for-small, .uls-mobile .show-for-small,
.uls-mobile .hide-for-medium, .uls-mobile .hide-for-medium,
.uls-mobile .show-for-medium-down, .uls-mobile .show-for-medium-down,
@@ -292,18 +291,12 @@
} }
/* Touch-enabled device targeting */ /* Touch-enabled device targeting */
.uls-mobile .show-for-touch { .uls-mobile .show-for-touch,
display: none !important;
}
.uls-mobile .hide-for-touch {
display: block !important;
}
.uls-mobile .touch .show-for-touch {
display: block !important;
}
.uls-mobile .touch .hide-for-touch { .uls-mobile .touch .hide-for-touch {
display: none !important; display: none !important;
} }
.uls-mobile .hide-for-touch,
.uls-mobile .touch .show-for-touch {
display: block !important;
}