one-dark/gtk-3.0/sass/ui/calendar.scss

41 lines
678 B
SCSS
Raw Permalink Normal View History

2022-07-18 20:07:18 +08:00
//
// Calendar
//
calendar {
color: $fg_color;
2023-01-16 15:13:45 +08:00
border: 0;
border-radius: 0;
padding:6px 4px;
2022-07-18 20:07:18 +08:00
&:selected {
background-color: $selected_bg_color;
color: $selected_fg_color;
2023-01-16 15:13:45 +08:00
border-radius: 50%;
2022-07-18 20:07:18 +08:00
}
&.header {
color: $fg_color;
border: none;
border-radius: 0;
}
&.button,
&.button:focus {
2023-01-16 15:13:45 +08:00
color: $highlight_color;
2022-07-18 20:07:18 +08:00
@include button(undecorated);
&:hover {
color: $fg_color;
}
&:disabled {
color: $insensitive_fg_color;
background-color: transparent;
background-image: none;
}
}
&:indeterminate {
color: gtkalpha(currentColor, 0.55);
}
&.highlight {
2023-01-16 15:13:45 +08:00
color: $error_color;
2022-07-18 20:07:18 +08:00
}
}