1
0
mirror of https://github.com/lensapp/lens.git synced 2025-05-20 05:10:56 +00:00

Cleaning up mixins

Signed-off-by: Alex Andreev <alex.andreev.email@gmail.com>
This commit is contained in:
Alex Andreev 2020-08-21 09:26:02 +03:00
parent 11375f737e
commit 329c3af71b

View File

@ -8,8 +8,8 @@
@mixin custom-scrollbar($theme: light, $size: 7px, $borderSpacing: 5px) {
$themes: (
light: rgba(255, 255, 255, .25),
dark: rgba(0, 0, 0, .25),
light: #5f6064,
dark: #bbb,
);
$scrollBarColor: if(map_has_key($themes, $theme), map_get($themes, $theme), none);
@ -34,10 +34,6 @@
&::-webkit-scrollbar-corner {
background-color: transparent;
}
// Firefox
scrollbar-color: $scrollBarColor transparent;
//scrollbar-width: thin;
}
// Hide scrollbar but keep the element scrollable
@ -49,27 +45,6 @@
height: 0;
background: transparent;
}
scrollbar-width: none; // Firefox 65+
-ms-overflow-style: none; // IE (10,11?), Edge(?)
}
// Cross-browser hacks
@mixin safariOnly {
@media not all and (min-resolution: .001dpcm) {
@content;
}
}
@mixin firefoxOnly {
@-moz-document url-prefix() {
@content;
}
}
@mixin edgeOnly {
@supports (-ms-accelerator: true) {
@content;
}
}
@mixin stripeLinesAnimation($color1: #ccc, $color2: transparent, $spacing: 1rem) {