summaryrefslogtreecommitdiff
path: root/Redcore-daylight/gtk-3.0/scss/apps/_unity-greeter.scss
blob: f0c7da7fd4da4b00323389316107a9e2079d523f (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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
/***********************
 ! Unity Greeter *
 ***********************/

@include exports("unity-greeter") {


    .lightdm.menu {
        background-image: none;
        background-color: fade-out($black, .4);
        border-color: fade-out($white, .8);
        border-radius: 4px;
        padding: 1px;

        color: $white;
    }

    .lightdm-combo .menu {
        background-color: shade($dark_bg_color, 1.08);
        border-radius: 0;
        padding: 0;
        color: $white;
    }

    .lightdm.menu .menuitem *,
    .lightdm.menu .menuitem.check:active,
    .lightdm.menu .menuitem.radio:active {
        color: $white;
    }

    .lightdm.menubar *,    
    .lightdm.menubar .menuitem {
        padding: 2px;
    }

    .lightdm-combo.combobox-entry .button,
    .lightdm-combo .cell,
    .lightdm-combo .button,
    .lightdm-combo .entry,
    
    .lightdm.button{
        background-image: none;
        background-color: fade-out($black, .7);
        border-color: fade-out($white, .1);
        border-radius: 5px;
        padding: 5px;
        color: $white;
        }
    .lightdm.button:hover {
        background-image: none;
        background-color: fade-out($white, .7);
        border-color: fade-out($white, .4);
        border-radius: 5px;
        padding: 5px;
        color: $white;
        text-shadow: none;
        }
    .lightdm.button:active,
    .lightdm.button:active:focus,
    .lightdm.button:focus,

    .lightdm.entry {
        background-image: none;
        background-color: fade-out($black, .7);
        border-color: fade-out($white, .4);
        border-radius: 5px;
        padding: 6px;
        color: $white;
        text-shadow: none;
    }
    .lightdm.entry:hover,
    .lightdm.entry:active,
    .lightdm.entry:active:focus {
        background-image: none;
        border-image: none;
    }
    .lightdm.entry:focus {
        border-color: fade-out($white, .4);
        border-width: 1px;
        border-style: solid;
        color: $white;
    }
    .lightdm.entry:selected {
        background-color: fade-out($white, .8);
    }

    @keyframes dashentry_spinner {
        to { -gtk-icon-transform: rotate(1turn); }
    }

    .lightdm.entry:active {
        -gtk-icon-source: -gtk-icontheme("process-working-symbolic");
        animation: dashentry_spinner 1s infinite linear;
    }

    .lightdm.option-button {
        background: none;
        border-width: 0;
    }

    .lightdm.option-button:insensitive:insensitive {
        background: none;
    }

    .lightdm.toggle-button {
        background: none;
        border-width: 0;
    }
    .lightdm.toggle-button.selected:hover {
        background-color: fade-out($white, .7);
        border-color: fade-out($white, .7);
        border-width: 1px;
    }
    .lightdm.toggle-button.selected {
        background-color: fade-out($black, .7);
        border-color: fade-out($white, .7);
        border-width: 1px;
    }
}