Fixed issues
This commit is contained in:
parent
dd02b4a27a
commit
cac7de32a1
6 changed files with 44 additions and 8 deletions
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
|
@ -285,7 +285,7 @@ $popover_bubble_bg: if($variant == 'light', rgba(white, 0.95), rgba(lighten($bas
|
|||
.events-button {
|
||||
@extend %popover_bubble;
|
||||
padding: $base_padding * 3 !important;
|
||||
// margin: 3px 4px !important;
|
||||
margin-top: $base_padding !important;
|
||||
}
|
||||
|
||||
// Events
|
||||
|
|
|
@ -23,11 +23,29 @@
|
|||
}
|
||||
|
||||
.quick-toggle {
|
||||
background-color: $fill_color;
|
||||
background-color: $fill_color !important;
|
||||
|
||||
&:hover {
|
||||
background-color: $divider_color !important;
|
||||
}
|
||||
|
||||
&:active {
|
||||
background-color: $visit_color !important;
|
||||
}
|
||||
|
||||
&:checked {
|
||||
background-color: $selected_bg_color;
|
||||
color: $selected_fg_color;
|
||||
background-color: $primary_color !important;
|
||||
color: $light_fg_color;
|
||||
|
||||
&:hover {
|
||||
background-color: mix($text_color, $primary_color, 6%) !important;
|
||||
color: $light_fg_color;
|
||||
}
|
||||
|
||||
&:active {
|
||||
background-color: mix($text_color, $primary_color, 15%) !important;
|
||||
color: $light_fg_color;
|
||||
}
|
||||
}
|
||||
|
||||
& > StBoxLayout { spacing: $base_padding * 1.5; }
|
||||
|
@ -64,13 +82,31 @@
|
|||
}
|
||||
|
||||
& .quick-toggle-arrow {
|
||||
padding: $base_padding $base_padding * 1.75;
|
||||
padding: $base_padding $base_padding * 2;
|
||||
border: none;
|
||||
background-color: $divider_color;
|
||||
background-color: $fill_color !important;
|
||||
|
||||
&:hover {
|
||||
background-color: $divider_color !important;
|
||||
}
|
||||
|
||||
&:active {
|
||||
background-color: $visit_color !important;
|
||||
}
|
||||
|
||||
&:checked {
|
||||
background-color: $selected_bg_color;
|
||||
color: $selected_fg_color;
|
||||
background-color: $primary_color !important;
|
||||
color: $light_fg_color;
|
||||
|
||||
&:hover {
|
||||
background-color: mix($text_color, $primary_color, 6%) !important;
|
||||
color: $light_fg_color;
|
||||
}
|
||||
|
||||
&:active {
|
||||
background-color: mix($text_color, $primary_color, 15%) !important;
|
||||
color: $light_fg_color;
|
||||
}
|
||||
}
|
||||
|
||||
&:ltr {
|
||||
|
|
Loading…
Reference in a new issue