numix-gtk-theme/gtk-3.0/scss/apps/_unity-greeter.scss

116 lines
2.8 KiB
SCSS
Raw Normal View History

2015-08-10 10:49:19 +00:00
/***********************
! Unity Greeter *
***********************/
@include exports("unity-greeter") {
2015-10-31 11:46:06 +00:00
.lightdm.menu {
background-image: none;
background-color: fade-out($black, .4);
border-color: fade-out($white, .8);
border-radius: 4px;
padding: 1px;
2015-08-10 17:24:38 +00:00
2015-10-31 11:46:06 +00:00
color: $white;
}
2015-08-10 17:24:38 +00:00
2015-10-31 11:46:06 +00:00
.lightdm-combo .menu {
background-color: shade($dark_bg_color, 1.08);
border-radius: 0;
padding: 0;
color: $white;
}
2015-08-10 17:24:38 +00:00
2015-10-31 11:46:06 +00:00
.lightdm.menu .menuitem *,
.lightdm.menu .menuitem.check:active,
.lightdm.menu .menuitem.radio:active {
color: $white;
}
2015-08-10 10:49:19 +00:00
2015-10-31 13:04:20 +00:00
.lightdm.menubar *,
2015-10-31 11:46:06 +00:00
.lightdm.menubar .menuitem {
2015-10-31 13:09:05 +00:00
padding: 2px;
2015-10-31 11:46:06 +00:00
}
2015-08-10 10:49:19 +00:00
.lightdm-combo.combobox-entry .button,
.lightdm-combo .cell,
.lightdm-combo .button,
.lightdm-combo .entry,
2015-08-10 17:24:38 +00:00
.lightdm.button{
background-image: none;
2015-10-31 11:46:06 +00:00
background-color: fade-out($black, .7);
border-color: fade-out($white, .1);
2015-08-10 17:24:38 +00:00
border-radius: 5px;
padding: 5px;
color: $white;
}
.lightdm.button:hover {
background-image: none;
2015-10-31 11:46:06 +00:00
background-color: fade-out($white, .7);
border-color: fade-out($white, .4);
2015-08-10 17:24:38 +00:00
border-radius: 5px;
padding: 5px;
color: $white;
text-shadow: none;
}
.lightdm.button:active,
.lightdm.button:active:focused,
.lightdm.button:focused,
2015-08-10 10:49:19 +00:00
.lightdm.entry {
background-image: none;
2015-10-31 11:46:06 +00:00
background-color: fade-out($black, .7);
border-color: fade-out($white, .4);
2015-08-10 10:49:19 +00:00
border-radius: 5px;
2015-12-28 13:09:23 +00:00
padding: 6px;
2015-08-10 17:24:38 +00:00
color: $white;
2015-08-10 10:49:19 +00:00
text-shadow: none;
}
.lightdm.entry:hover,
.lightdm.entry:active,
.lightdm.entry:active:focused {
background-image: none;
border-image: none;
}
.lightdm.entry:focused {
2015-10-31 11:46:06 +00:00
border-color: fade-out($white, .4);
2015-08-10 10:49:19 +00:00
border-width: 1px;
border-style: solid;
2015-08-10 17:24:38 +00:00
color: $white;
2015-08-10 10:49:19 +00:00
}
.lightdm.entry:selected {
2015-10-31 11:46:06 +00:00
background-color: fade-out($white, .8);
2015-08-10 10:49:19 +00:00
}
@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;
2015-12-28 13:09:23 +00:00
border-width: 0;
2015-08-10 10:49:19 +00:00
}
.lightdm.toggle-button {
background: none;
border-width: 0;
}
2015-08-10 17:24:38 +00:00
.lightdm.toggle-button.selected:hover {
2015-10-31 11:46:06 +00:00
background-color: fade-out($white, .7);
border-color: fade-out($white, .7);
2015-08-10 17:24:38 +00:00
border-width: 1px;
}
2015-08-10 10:49:19 +00:00
.lightdm.toggle-button.selected {
2015-10-31 11:46:06 +00:00
background-color: fade-out($black, .7);
border-color: fade-out($white, .7);
2015-08-10 10:49:19 +00:00
border-width: 1px;
}
}