summaryrefslogtreecommitdiff
path: root/Redcore-daylight/gtk-3.0/scss/widgets/_calendar.scss
blob: 5c7ca3289baa2e459d373cca4fd12bc02d6024c4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
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;
    }
}