From b8ae7734b0041860129631e540d4ac0e9a2fccee Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20Ruiz=20de=20Alegr=C3=ADa?= Date: Thu, 9 Apr 2020 00:20:12 +0200 Subject: [PATCH] GTK3: fix lightdm lightdm password entry background --- share/themes/Kali-Dark/gtk-3.0/gtk.css | 2 +- share/themes/Kali-Light/gtk-3.0/gtk-dark.css | 2 +- share/themes/Kali-Light/gtk-3.0/gtk.css | 2 +- src/themes/Kali/sass/gtk-sass/_applications.scss | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/share/themes/Kali-Dark/gtk-3.0/gtk.css b/share/themes/Kali-Dark/gtk-3.0/gtk.css index 16a2ec70..e7b400de 100644 --- a/share/themes/Kali-Dark/gtk-3.0/gtk.css +++ b/share/themes/Kali-Dark/gtk-3.0/gtk.css @@ -5174,7 +5174,7 @@ wnck-pager { border-radius: 5px; box-shadow: inset 1px 1px rgba(255, 255, 255, 0.05); } .lightdm-gtk-greeter #login_window entry { - background: white; + background: rgba(0, 0, 0, 0.7); border-color: transparent; min-height: 32px; } .lightdm-gtk-greeter #login_window #buttonbox_frame { diff --git a/share/themes/Kali-Light/gtk-3.0/gtk-dark.css b/share/themes/Kali-Light/gtk-3.0/gtk-dark.css index 16a2ec70..e7b400de 100644 --- a/share/themes/Kali-Light/gtk-3.0/gtk-dark.css +++ b/share/themes/Kali-Light/gtk-3.0/gtk-dark.css @@ -5174,7 +5174,7 @@ wnck-pager { border-radius: 5px; box-shadow: inset 1px 1px rgba(255, 255, 255, 0.05); } .lightdm-gtk-greeter #login_window entry { - background: white; + background: rgba(0, 0, 0, 0.7); border-color: transparent; min-height: 32px; } .lightdm-gtk-greeter #login_window #buttonbox_frame { diff --git a/share/themes/Kali-Light/gtk-3.0/gtk.css b/share/themes/Kali-Light/gtk-3.0/gtk.css index 0b3a427b..a687fef0 100644 --- a/share/themes/Kali-Light/gtk-3.0/gtk.css +++ b/share/themes/Kali-Light/gtk-3.0/gtk.css @@ -5196,7 +5196,7 @@ wnck-pager { border-radius: 5px; box-shadow: inset 1px 1px rgba(255, 255, 255, 0.05); } .lightdm-gtk-greeter #login_window entry { - background: rgba(0, 0, 0, 0.7); + background: white; border-color: transparent; min-height: 32px; } .lightdm-gtk-greeter #login_window #buttonbox_frame { diff --git a/src/themes/Kali/sass/gtk-sass/_applications.scss b/src/themes/Kali/sass/gtk-sass/_applications.scss index fbc8663b..6d1371bf 100644 --- a/src/themes/Kali/sass/gtk-sass/_applications.scss +++ b/src/themes/Kali/sass/gtk-sass/_applications.scss @@ -71,7 +71,7 @@ wnck-pager { box-shadow: inset 1px 1px transparentize(white, .95); entry { - background: if($variant=='light', transparentize(black, .3), white); + background: if($variant=='light', white, transparentize(black, .3)); border-color: transparent; min-height: 32px; }