Refines unity-greeter

pull/267/head
Test User 2015-10-31 12:46:06 +01:00
parent 5cccc5b206
commit 5b81b2ddc2
1 changed files with 40 additions and 37 deletions

View File

@ -5,35 +5,38 @@
@include exports("unity-greeter") { @include exports("unity-greeter") {
.lightdm.menu { .lightdm.menu {
background-image: none; background-image: none;
background-color: alpha($black, 0.6); background-color: fade-out($black, .4);
border-color: alpha($white, 0.2); border-color: fade-out($white, .8);
border-radius: 4px; border-radius: 4px;
padding: 1px; padding: 1px;
color: $white; color: $white;
} }
.lightdm-combo .menu { .lightdm-combo .menu {
background-color: shade($dark_bg_color, 1.08); background-color: shade($dark_bg_color, 1.08);
border-radius: 0px; border-radius: 0;
padding: 0px; padding: 0;
color: $white;
}
color: $white; .lightdm.menu .menuitem *,
} .lightdm.menu .menuitem.check:active,
.lightdm.menu .menuitem.radio:active {
color: $white;
}
.lightdm.menu .menuitem *, .lightdm.menubar {
.lightdm.menu .menuitem.check:active, background-image: none;
.lightdm.menu .menuitem.radio:active { background-color: fade-out(#0f0, .5);
color: $white; }
}
.lightdm.menubar {
background-image: none;
background-color: alpha(#00ff00, 0.5);
}
.lightdm.menubar .menuitem {
color: $menubar_bg_color;
padding: 0 5px;
}
.lightdm-combo.combobox-entry .button, .lightdm-combo.combobox-entry .button,
.lightdm-combo .cell, .lightdm-combo .cell,
@ -42,16 +45,16 @@
.lightdm.button{ .lightdm.button{
background-image: none; background-image: none;
background-color: alpha($black, 0.3); background-color: fade-out($black, .7);
border-color: alpha($white, 0.9); border-color: fade-out($white, .1);
border-radius: 5px; border-radius: 5px;
padding: 5px; padding: 5px;
color: $white; color: $white;
} }
.lightdm.button:hover { .lightdm.button:hover {
background-image: none; background-image: none;
background-color: alpha($white, 0.3); background-color: fade-out($white, .7);
border-color: alpha($white, 0.6); border-color: fade-out($white, .4);
border-radius: 5px; border-radius: 5px;
padding: 5px; padding: 5px;
color: $white; color: $white;
@ -63,8 +66,8 @@
.lightdm.entry { .lightdm.entry {
background-image: none; background-image: none;
background-color: alpha($black, 0.3); background-color: fade-out($black, .7);
border-color: alpha($white, 0.6); border-color: fade-out($white, .4);
border-radius: 5px; border-radius: 5px;
padding: 7px; padding: 7px;
color: $white; color: $white;
@ -77,13 +80,13 @@
border-image: none; border-image: none;
} }
.lightdm.entry:focused { .lightdm.entry:focused {
border-color: alpha($white, 0.6); border-color: fade-out($white, .4);
border-width: 1px; border-width: 1px;
border-style: solid; border-style: solid;
color: $white; color: $white;
} }
.lightdm.entry:selected { .lightdm.entry:selected {
background-color: alpha($white, 0.2); background-color: fade-out($white, .8);
} }
@keyframes dashentry_spinner { @keyframes dashentry_spinner {
@ -106,13 +109,13 @@
border-width: 0; border-width: 0;
} }
.lightdm.toggle-button.selected:hover { .lightdm.toggle-button.selected:hover {
background-color: alpha($white, 0.3); background-color: fade-out($white, .7);
border-color: alpha($white, 0.3); border-color: fade-out($white, .7);
border-width: 1px; border-width: 1px;
} }
.lightdm.toggle-button.selected { .lightdm.toggle-button.selected {
background-color: alpha($black, 0.3); background-color: fade-out($black, .7);
border-color: alpha($white, 0.3); border-color: fade-out($white, .7);
border-width: 1px; border-width: 1px;
} }
} }