_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 { 9background-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 { 17background-color: transparent; 18} 19 20// the login window 21#login_window, 22#shutdown_dialog, 23#restart_dialog { 24margin: 8px; 25border-radius: 2px; 26box-shadow: $z-depth-2, inset 0 1px $highlight_color; 27background-color: $lighter_bg_color; 28} 29 30// the top half of the login-window, in GtkDialog terms, the content 31#content_frame { 32padding-bottom: 20px; 33border-bottom: 1px solid $borders_color; 34} 35 36// the user-combobox 37#login_window #user_combobox button { @extend %combo_flat; } 38 39// the entries, one for the username, one for the password 40#login_window entry { @extend %entry.flat; } 41 42// the buttons, alternatively this could also be done with a simple ".lightdm-gtk-greeter .button" 43#login_window button, 44#shutdown_dialog button, 45#restart_dialog button { 46} 47 48.lightdm-gtk-greeter button { @extend %simple_flat_button; } 49 50// the user's avatar box 51#user_image { 52} 53 54// the border around the user's avatar box 55#user_image_border { 56} 57 58// the lower half of the login-window, in GtkDialog terms the buttonbox or action area 59#buttonbox_frame { 60padding-top: 24px; 61 62button { margin: -16px; } 63} 64 65// the shutdown button 66#shutdown_button { 67} 68 69// the restart button 70#restart_button { 71} 72 73// the warning, in case a wrong password is entered or something else goes wrong according to PAM 74#greeter_infobar { 75margin-top: -1px; 76// font-weight: bold; 77} 78