
Add static instances of FontAwesome, Bootstrap, and theme resources to more fully move to NPM/Browserify package management. Change-Id: I4ceb0cd44f1e54207fde9c6645931e3a29705894
22 lines
514 B
SCSS
22 lines
514 B
SCSS
// Responsive utilities
|
|
|
|
//
|
|
// More easily include all the states for responsive-utilities.less.
|
|
// [converter] $parent hack
|
|
@mixin responsive-visibility($parent) {
|
|
#{$parent} {
|
|
display: block !important;
|
|
}
|
|
table#{$parent} { display: table !important; }
|
|
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;
|
|
}
|
|
}
|