This repository has been archived on 2020-05-08. You can view files and clone it, but cannot push or open issues or pull requests.
2014-12-10 11:36:38 +00:00
|
|
|
// Responsive utilities
|
|
|
|
|
|
|
|
//
|
|
|
|
// More easily include all the states for responsive-utilities.less.
|
|
|
|
// [converter] $parent hack
|
|
|
|
@mixin responsive-visibility($parent) {
|
|
|
|
#{$parent} {
|
|
|
|
display: block !important;
|
|
|
|
}
|
2015-08-12 07:06:27 +00:00
|
|
|
table#{$parent} { display: table !important; }
|
2014-12-10 11:36:38 +00:00
|
|
|
tr#{$parent} { display: table-row !important; }
|
|
|
|
th#{$parent},
|
|
|
|
td#{$parent} { display: table-cell !important; }
|
|
|
|
}
|
|
|
|
|
|
|
|
// [converter] $parent hack
|
|
|
|
@mixin responsive-invisibility($parent) {
|
|
|
|
#{$parent} {
|
|
|
|
display: none !important;
|
|
|
|
}
|
|
|
|
}
|