|
@@ -3,9 +3,9 @@
|
|
|
|
|
|
|
|
button {
|
|
button {
|
|
|
@include input-colors;
|
|
@include input-colors;
|
|
|
- background-color: $bg_elements;
|
|
|
|
|
- color: $fg_color;
|
|
|
|
|
- border: 1px solid $accent_border;
|
|
|
|
|
|
|
+ background-color: var(--bg_elements);
|
|
|
|
|
+ color: var(--fg_color);
|
|
|
|
|
+ border: 1px solid var(--accent_border);
|
|
|
padding: 3px 6px;
|
|
padding: 3px 6px;
|
|
|
font-size: 14px;
|
|
font-size: 14px;
|
|
|
cursor: pointer;
|
|
cursor: pointer;
|
|
@@ -15,10 +15,10 @@ button {
|
|
|
input[type="text"],
|
|
input[type="text"],
|
|
|
input[type="date"] {
|
|
input[type="date"] {
|
|
|
@include input-colors;
|
|
@include input-colors;
|
|
|
- background-color: $bg_elements;
|
|
|
|
|
|
|
+ background-color: var(--bg_elements);
|
|
|
padding: 1px 4px;
|
|
padding: 1px 4px;
|
|
|
- color: $fg_color;
|
|
|
|
|
- border: 1px solid $accent_border;
|
|
|
|
|
|
|
+ color: var(--fg_color);
|
|
|
|
|
+ border: 1px solid var(--accent_border);
|
|
|
border-radius: 0;
|
|
border-radius: 0;
|
|
|
font-size: 14px;
|
|
font-size: 14px;
|
|
|
}
|
|
}
|
|
@@ -40,8 +40,8 @@ input::-webkit-calendar-picker-indicator {
|
|
|
input::-webkit-datetime-edit-day-field:focus,
|
|
input::-webkit-datetime-edit-day-field:focus,
|
|
|
input::-webkit-datetime-edit-month-field:focus,
|
|
input::-webkit-datetime-edit-month-field:focus,
|
|
|
input::-webkit-datetime-edit-year-field:focus {
|
|
input::-webkit-datetime-edit-year-field:focus {
|
|
|
- background-color: $accent;
|
|
|
|
|
- color: $fg_color;
|
|
|
|
|
|
|
+ background-color: var(--accent);
|
|
|
|
|
+ color: var(--fg_color);
|
|
|
outline: none;
|
|
outline: none;
|
|
|
}
|
|
}
|
|
|
|
|
|
|
@@ -64,7 +64,7 @@ input::-webkit-datetime-edit-year-field:focus {
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
.icon-button button {
|
|
.icon-button button {
|
|
|
- color: $accent;
|
|
|
|
|
|
|
+ color: var(--accent);
|
|
|
text-decoration: none;
|
|
text-decoration: none;
|
|
|
background: none;
|
|
background: none;
|
|
|
border: none;
|
|
border: none;
|
|
@@ -73,7 +73,7 @@ input::-webkit-datetime-edit-year-field:focus {
|
|
|
padding-left: 4px;
|
|
padding-left: 4px;
|
|
|
|
|
|
|
|
&:hover {
|
|
&:hover {
|
|
|
- color: $accent_light;
|
|
|
|
|
|
|
+ color: var(--accent_light);
|
|
|
}
|
|
}
|
|
|
}
|
|
}
|
|
|
|
|
|
|
@@ -83,8 +83,8 @@ input::-webkit-datetime-edit-year-field:focus {
|
|
|
right: 0;
|
|
right: 0;
|
|
|
height: 17px;
|
|
height: 17px;
|
|
|
width: 17px;
|
|
width: 17px;
|
|
|
- background-color: $bg_elements;
|
|
|
|
|
- border: 1px solid $accent_border;
|
|
|
|
|
|
|
+ background-color: var(--bg_elements);
|
|
|
|
|
+ border: 1px solid var(--accent_border);
|
|
|
|
|
|
|
|
&:after {
|
|
&:after {
|
|
|
content: "";
|
|
content: "";
|
|
@@ -114,11 +114,11 @@ input::-webkit-datetime-edit-year-field:focus {
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
&:hover input ~ .checkbox {
|
|
&:hover input ~ .checkbox {
|
|
|
- border-color: $accent;
|
|
|
|
|
|
|
+ border-color: var(--accent);
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
&:active input ~ .checkbox {
|
|
&:active input ~ .checkbox {
|
|
|
- border-color: $accent_light;
|
|
|
|
|
|
|
+ border-color: var(--accent_light);
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
.checkbox:after {
|
|
.checkbox:after {
|