mirror of
https://forge.chapril.org/tykayn/libre-charge-map
synced 2025-10-09 17:02:46 +02:00
up styles, add access in station popup
This commit is contained in:
parent
756d997e06
commit
04207eef13
5 changed files with 29 additions and 26 deletions
|
|
@ -1,3 +1,13 @@
|
|||
@use "sass:color";
|
||||
|
||||
|
||||
// Variables
|
||||
$primary-color: #28a745;
|
||||
$text-color: #495057;
|
||||
$border-color: #6c757d;
|
||||
$hover-bg: #e9ecef;
|
||||
$disabled-color: #adb5bd;
|
||||
|
||||
#filter_max_output_slider {
|
||||
width: 100%;
|
||||
height: 10px;
|
||||
|
|
@ -9,13 +19,6 @@
|
|||
font-size: 0.8rem;
|
||||
color: #666;
|
||||
}
|
||||
// Variables
|
||||
$primary-color: #28a745;
|
||||
$border-color: #6c757d;
|
||||
$hover-bg: #e9ecef;
|
||||
$text-color: #495057;
|
||||
$disabled-color: #adb5bd;
|
||||
|
||||
// Mixins
|
||||
@mixin flex-center {
|
||||
display: flex;
|
||||
|
|
@ -73,7 +76,7 @@ $disabled-color: #adb5bd;
|
|||
@include transition;
|
||||
|
||||
label:hover & {
|
||||
border-color: darken($border-color, 10%);
|
||||
border-color: color.adjust($border-color, $lightness: -10%);
|
||||
}
|
||||
}
|
||||
|
||||
|
|
@ -109,7 +112,7 @@ $disabled-color: #adb5bd;
|
|||
}
|
||||
|
||||
label:hover span {
|
||||
color: darken($text-color, 10%);
|
||||
color: color.adjust($text-color, $lightness: -10%);
|
||||
}
|
||||
|
||||
input[type="checkbox"]:disabled {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue