summaryrefslogtreecommitdiff
path: root/Redcore-nighttime/gtk-3.0/scss/widgets/_calendar.scss
diff options
context:
space:
mode:
Diffstat (limited to 'Redcore-nighttime/gtk-3.0/scss/widgets/_calendar.scss')
-rw-r--r--Redcore-nighttime/gtk-3.0/scss/widgets/_calendar.scss38
1 files changed, 38 insertions, 0 deletions
diff --git a/Redcore-nighttime/gtk-3.0/scss/widgets/_calendar.scss b/Redcore-nighttime/gtk-3.0/scss/widgets/_calendar.scss
new file mode 100644
index 0000000..5c7ca32
--- /dev/null
+++ b/Redcore-nighttime/gtk-3.0/scss/widgets/_calendar.scss
@@ -0,0 +1,38 @@
+/**********
+ ! Calendar
+***********/
+
+@include exports("calendar") {
+ GtkCalendar {
+ padding: 1px 3px;
+ outline-offset: -1px;
+
+ &:inconsistent { color: mix($fg_color, $bg_color, .5); }
+
+ &.view, &.highlight, &.header, &.button {
+ &, &:focus, &:hover, &:insensitive {
+ background-color: transparent;
+ background-image: none;
+ border-width: 0;
+ border-radius: 0;
+ }
+ }
+
+ &.button {
+ &, &:focus, &:hover, &:insensitive {
+ color: $white;
+ border-width: 0;
+ box-shadow: none;
+ }
+ }
+
+ &.highlight { color: $selected_bg_color; }
+ }
+
+ /* gnome-calendar */
+ .calendar-view {
+ background-color: $base_color;
+ color: $text_color;
+ }
+}
+