1
0
mirror of https://github.com/lensapp/lens.git synced 2025-05-20 05:10:56 +00:00
lens/src/renderer/components/mixins.scss
Alex Andreev 2da598b66e
Set scrollbar colors as global styles (#1484)
* Setting global webkit-scrollbar styles

Signed-off-by: Alex Andreev <alex.andreev.email@gmail.com>

* Removing usage of custom-scrollbar mixin

Signed-off-by: Alex Andreev <alex.andreev.email@gmail.com>

* Set overflow:auto on .Table

Signed-off-by: Alex Andreev <alex.andreev.email@gmail.com>

* Fixing .drawer-content paddings

Signed-off-by: Alex Andreev <alex.andreev.email@gmail.com>

* Cleaning up

Signed-off-by: Alex Andreev <alex.andreev.email@gmail.com>
2020-11-25 10:25:37 +03:00

46 lines
1.1 KiB
SCSS
Executable File

//-- Mixins
@import "+workloads/workloads-mixins";
@import "+storage/storage-mixins";
@import "+nodes/nodes-mixins";
@import "+namespaces/namespaces-mixins";
@import "table/table.mixins";
@import "+network/network-mixins";
// Hide scrollbar but keep the element scrollable
@mixin hidden-scrollbar {
overflow: auto;
// Chrome, Safari
&::-webkit-scrollbar {
width: 0;
height: 0;
background: transparent;
}
}
@mixin stripeLinesAnimation($color1: #ccc, $color2: transparent, $spacing: 1rem) {
background: repeating-linear-gradient(-45deg, $color2, $color2, $spacing, $color1 $spacing, $color1 $spacing * 2);
background-size: 200% 200%;
animation: stripeLines 10s linear infinite;
@keyframes stripeLines {
100% {
background-position: 100% 100%;
}
}
}
@mixin pseudo-link($color: $primary) {
color: $color;
text-decoration: underline;
cursor: pointer;
}
@mixin set-draggable($is-draggable: true) {
@if ($is-draggable) {
-webkit-user-select: none;
-webkit-app-region: drag;
} @else {
-webkit-app-region: no-drag;
}
}