~ozonos/ozon-gtk-theme/master

« back to all changes in this revision

Viewing changes to gtk-3.0/scss/widgets/_calendar.scss

  • Committer: Satyajit Sahoo
  • Date: 2015-05-22 16:28:34 UTC
  • Revision ID: git-v1:f6ead24b69fe7c0a411b920131b84a9313ec7d43
Change indentation to spaces

Show diffs side-by-side

added added

removed removed

Lines of Context:
3
3
***********/
4
4
 
5
5
@include exports("calendar") {
6
 
        GtkCalendar {
7
 
                padding: $spacing;
8
 
                outline-offset: -1px;
9
 
 
10
 
                &:inconsistent { color: mix($fg_color, $bg_color, 0.5); }
11
 
 
12
 
                &.view, &.highlight, &.header, &.button {
13
 
                        &, &:focus, &:hover, &:insensitive {
14
 
                                border: none;
15
 
                                background-color: transparent;
16
 
                                background-image: none;
17
 
                        }
18
 
                }
19
 
 
20
 
                &.highlight { color: $selected_bg_color; }
21
 
        }
22
 
 
23
 
        /* gnome-calendar */
24
 
        .calendar-view {
25
 
                background-color: $base_color;
26
 
                color: $text_color;
27
 
        }
 
6
    GtkCalendar {
 
7
        padding: $spacing;
 
8
        outline-offset: -1px;
 
9
 
 
10
        &:inconsistent { color: mix($fg_color, $bg_color, 0.5); }
 
11
 
 
12
        &.view, &.highlight, &.header, &.button {
 
13
            &, &:focus, &:hover, &:insensitive {
 
14
                border: none;
 
15
                background-color: transparent;
 
16
                background-image: none;
 
17
            }
 
18
        }
 
19
 
 
20
        &.highlight { color: $selected_bg_color; }
 
21
    }
 
22
 
 
23
    /* gnome-calendar */
 
24
    .calendar-view {
 
25
        background-color: $base_color;
 
26
        color: $text_color;
 
27
    }
28
28
}
29
29