summaryrefslogtreecommitdiff
path: root/Redcore-daylight/gtk-3.0/scss/apps/_unity-greeter.scss
diff options
context:
space:
mode:
authorV3n3RiX <venerix@redcorelinux.org>2017-07-18 18:20:40 +0100
committerV3n3RiX <venerix@redcorelinux.org>2017-07-18 18:20:40 +0100
commita8ddb5d8e40547675e7eeee73a1685d98e9dcf1d (patch)
tree01c147bff11033474dd0b25e9847f5fe8a204bf1 /Redcore-daylight/gtk-3.0/scss/apps/_unity-greeter.scss
parent51afec664aa937c421d042b0e48e7e9fc4c5d217 (diff)
rebase Redcore gtk theme on Numix
Diffstat (limited to 'Redcore-daylight/gtk-3.0/scss/apps/_unity-greeter.scss')
-rw-r--r--Redcore-daylight/gtk-3.0/scss/apps/_unity-greeter.scss119
1 files changed, 119 insertions, 0 deletions
diff --git a/Redcore-daylight/gtk-3.0/scss/apps/_unity-greeter.scss b/Redcore-daylight/gtk-3.0/scss/apps/_unity-greeter.scss
new file mode 100644
index 0000000..f0c7da7
--- /dev/null
+++ b/Redcore-daylight/gtk-3.0/scss/apps/_unity-greeter.scss
@@ -0,0 +1,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;
+ }
+}