2017-08-08 01:36:57 -04:00
|
|
|
// Common values
|
|
|
|
|
|
|
|
// Sass list not in variables since it's not intended for customization.
|
|
|
|
$positions: static, relative, absolute, fixed, sticky;
|
|
|
|
|
|
|
|
@each $position in $positions {
|
|
|
|
.position-#{$position} { position: $position !important; }
|
|
|
|
}
|
|
|
|
|
|
|
|
// Shorthand
|
2017-01-02 14:45:30 -05:00
|
|
|
|
|
|
|
.fixed-top {
|
|
|
|
position: fixed;
|
|
|
|
top: 0;
|
|
|
|
right: 0;
|
|
|
|
left: 0;
|
|
|
|
z-index: $zindex-fixed;
|
|
|
|
}
|
|
|
|
|
|
|
|
.fixed-bottom {
|
|
|
|
position: fixed;
|
|
|
|
right: 0;
|
|
|
|
bottom: 0;
|
|
|
|
left: 0;
|
|
|
|
z-index: $zindex-fixed;
|
|
|
|
}
|
|
|
|
|
|
|
|
.sticky-top {
|
2017-06-17 13:14:45 -04:00
|
|
|
@supports (position: sticky) {
|
|
|
|
position: sticky;
|
|
|
|
top: 0;
|
|
|
|
z-index: $zindex-sticky;
|
|
|
|
}
|
2017-01-02 14:45:30 -05:00
|
|
|
}
|