_lightdm.scss
ASCII text
1
// based css:
2
// http://bazaar.launchpad.net/~lightdm-gtk-greeter-team/lightdm-gtk-greeter/trunk/view/head:/data/sample-lightdm-gtk-greeter.css
3
4
/************************
5
* LightDM GTK+ Greeter *
6
************************/
7
// the panel widget at the top
8
#panel_window {
9
background-color: scale-alpha(black, $lower_opacity);
10
// color: white;
11
// font-weight: bold;
12
}
13
14
// the menubars/menus of the panel, i.e. indicators
15
#panel_window menubar,
16
#panel_window separator {
17
background-color: transparent;
18
}
19
20
#panel_window menubar {
21
> menuitem {
22
color: $secondary_inversed_fg_color;
23
24
&:hover { color: $inversed_fg_color; }
25
26
&:disabled { color: $disabled_secondary_inversed_fg_color; }
27
}
28
}
29
30
// the login window
31
#login_window,
32
#shutdown_dialog,
33
#restart_dialog {
34
margin: 8px;
35
border-radius: 2px;
36
box-shadow: $z-depth-2, inset 0 1px $highlight_color;
37
background-color: $lighter_bg_color;
38
}
39
40
// the top half of the login-window, in GtkDialog terms, the content
41
#content_frame {
42
padding-bottom: 20px;
43
border-bottom: 1px solid $borders_color;
44
}
45
46
// the user-combobox
47
#login_window #user_combobox button { @extend %combo_flat; }
48
49
// the entries, one for the username, one for the password
50
#login_window entry { @extend %entry.flat; }
51
52
// the buttons, alternatively this could also be done with a simple ".lightdm-gtk-greeter .button"
53
#login_window button,
54
#shutdown_dialog button,
55
#restart_dialog button {
56
}
57
58
.lightdm-gtk-greeter button { @extend %simple_flat_button; }
59
60
// the user's avatar box
61
#user_image {
62
}
63
64
// the border around the user's avatar box
65
#user_image_border {
66
}
67
68
// the lower half of the login-window, in GtkDialog terms the buttonbox or action area
69
#buttonbox_frame {
70
padding-top: 24px;
71
72
button { margin: -16px; }
73
}
74
75
// the shutdown button
76
#shutdown_button {
77
}
78
79
// the restart button
80
#restart_button {
81
}
82
83
// the warning, in case a wrong password is entered or something else goes wrong according to PAM
84
#greeter_infobar {
85
margin-top: -1px;
86
// font-weight: bold;
87
}
88