mirror of
https://github.com/Prowlarr/Prowlarr
synced 2026-01-06 07:47:17 +01:00
21 lines
451 B
Text
21 lines
451 B
Text
.selectable() {
|
|
-moz-user-select : all;
|
|
-webkit-user-select : all;
|
|
-ms-user-select : all;
|
|
}
|
|
|
|
.not-selectable() {
|
|
-moz-user-select : none;
|
|
-webkit-user-select : none;
|
|
-ms-user-select : none;
|
|
}
|
|
|
|
.color-impaired-background-gradient(@angle, @color) {
|
|
.color-impaired-mode & {
|
|
background : repeating-linear-gradient(@angle,
|
|
darken(@color, 3%),
|
|
darken(@color, 3%) 6px,
|
|
@color 6px,
|
|
@color 12px);
|
|
}
|
|
}
|