summaryrefslogtreecommitdiff
path: root/Redcore-daylight/gtk-3.20/scss/apps/_gnome-applications.scss
blob: dc20144886592978c22fae60c0e1bde274e603e5 (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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
/****************
 ! Gnome clocks *
*****************/

@include exports("gnome-clocks") {
    .clocks-analog-frame {
        &.trough { color: mix($fg_color, $bg_color, .85); }

        &.progress { color: mix($bg_color, $selected_bg_color, .5); }

        &.progress-fast { color: shade($selected_bg_color, .7); }
    }
}


/*****************
 ! Gnome Builder *
******************/

@include exports("gnome-builder") {
    workbench.csd > stack.titlebar:not(headerbar) {
        padding: 0;
        background: none;
        border: 0;
        box-shadow: none;

        headerbar {
            &, &:first-child, &:last-child { border-radius: $roundness $roundness 0 0; }
        }
    }
}


/************************
 ! Unity-Control-Center *
*************************/

@include exports("unity-control-center") {
    // Fixed: https://github.com/numixproject/numix-gtk-theme/issues/634
    .background:not(.csd):not(.solid-csd) > box.vertical > notebook.frame {
        // hide unwanted frames
        border: 0 none transparent;

        > stack > scrolledwindow > viewport > box.vertical > frame > box.vertical {
            // reset $base_color;
            iconview.view {
                &, &:backdrop {
                    background-color: transparent;
                }

                &:selected {
                    &:focus, & {
                        @extend %selected_items;
                    }
                }
            }
        }
    }
}