mirror of
https://github.com/lensapp/lens.git
synced 2025-05-20 05:10:56 +00:00
Fixes #5132 #5133 - bundled 7 new monospaced fonts for terminal - fix: refresh terminal font after changing in the preferences / keep cluster iframe accessible in DOM while not active/focused - display terminal's custom font preview with font-name in the select-box + live-preload for current `fontSize`, fix lint * Fixes for <Input/>: - remove duplicated error messages for sync validators - don't propagate invalid values on change (uncontrolled components only) - more informative error message for numeric input with min/max info
62 lines
1.4 KiB
SCSS
Executable File
62 lines
1.4 KiB
SCSS
Executable File
/**
|
|
* Copyright (c) OpenLens Authors. All rights reserved.
|
|
* Licensed under MIT License. See LICENSE in root directory for more information.
|
|
*/
|
|
|
|
//-- 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: var(--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;
|
|
}
|
|
}
|
|
|
|
@mixin theme-light() {
|
|
$selector: "theme-light"; // keep in sync with class in `theme.store.ts`
|
|
|
|
body.#{$selector} {
|
|
@content;
|
|
}
|
|
:global(body.#{$selector}) {
|
|
@content; // css-modules (*.module.scss)
|
|
}
|
|
}
|