From 67fa6b3209ba2c8912b34ab84345024ea7c55440 Mon Sep 17 00:00:00 2001 From: Iksas Date: Fri, 24 Dec 2021 02:03:00 +0100 Subject: [PATCH] fix invisible buttons in password fields Signed-off-by: Iksas --- style/themes/default-dark.css | 6 ++++++ style/themes/default-darker.css | 6 ++++++ style/themes/lcars.css | 8 ++++++++ 3 files changed, 20 insertions(+) diff --git a/style/themes/default-dark.css b/style/themes/default-dark.css index 8abb709a5..c0444ab48 100644 --- a/style/themes/default-dark.css +++ b/style/themes/default-dark.css @@ -485,6 +485,12 @@ fieldset[disabled] .form-control { background-color: #367fa9 !important; border: 1px solid #367fa9; } +input[type="password"]::-webkit-credentials-auto-fill-button { + background: #bfc5ca; +} +input[type="password"]::-webkit-caps-lock-indicator { + filter: invert(100%); +} .network-never { background-color: #661b02; diff --git a/style/themes/default-darker.css b/style/themes/default-darker.css index c6b1475ea..85eb263b5 100644 --- a/style/themes/default-darker.css +++ b/style/themes/default-darker.css @@ -3644,6 +3644,12 @@ a:focus { .register-box-body .form-control-feedback { color: rgb(157, 148, 136); } +input[type="password"]::-webkit-credentials-auto-fill-button { + background: #b1aca3; +} +input[type="password"]::-webkit-caps-lock-indicator { + filter: invert(100%); +} .invoice { background-color: rgb(24, 26, 27); background-image: none; diff --git a/style/themes/lcars.css b/style/themes/lcars.css index dee3b357f..90477623d 100644 --- a/style/themes/lcars.css +++ b/style/themes/lcars.css @@ -1709,6 +1709,14 @@ input[type="number"]::-webkit-outer-spin-button { margin: 0; } +input[type="password"]::-webkit-credentials-auto-fill-button { + background: white; +} + +input[type="password"]::-webkit-caps-lock-indicator { + filter: invert(100%); +} + /*** ----------------------------------------------------- ***/ .not-used { background-color: #222;