diff options
author | Jan-Christoph Borchardt <hey@jancborchardt.net> | 2019-01-16 14:49:03 +0100 |
---|---|---|
committer | Jan-Christoph Borchardt <hey@jancborchardt.net> | 2019-01-16 14:49:03 +0100 |
commit | a081096d32fd0c707dbe111fd8cc89f3c7196b8e (patch) | |
tree | 1d35d67f4785071e625c59d0e2404cce70865bbd /core/css/styles.scss | |
parent | dd3ed980310882961c2c6c85af1a7bace26427a0 (diff) | |
download | nextcloud-server-a081096d32fd0c707dbe111fd8cc89f3c7196b8e.tar.gz nextcloud-server-a081096d32fd0c707dbe111fd8cc89f3c7196b8e.zip |
Fix password change toggle position and visibility in dark theme
Signed-off-by: Jan-Christoph Borchardt <hey@jancborchardt.net>
Diffstat (limited to 'core/css/styles.scss')
-rw-r--r-- | core/css/styles.scss | 19 |
1 files changed, 10 insertions, 9 deletions
diff --git a/core/css/styles.scss b/core/css/styles.scss index 9ac41b3f023..f94108efef4 100644 --- a/core/css/styles.scss +++ b/core/css/styles.scss @@ -290,7 +290,7 @@ label.infield { position: absolute !important; height: 20px; width: 24px; - background-image: url('../img/actions/toggle.svg?v=1'); + background-image: var(--icon-toggle-000); background-repeat: no-repeat; background-position: center; opacity: .3; @@ -312,8 +312,9 @@ label.infield { #personal-show + label { display: block; right: 0; - margin-top: -36px; - padding: 6px 4px; + margin-top: -41px; + margin-right: -6px; + padding: 22px; } /* Warnings and errors are the same */ @@ -741,11 +742,12 @@ code { opacity: 1; } } + // keyboard focus #picker-showgridview:focus + #picker-view-toggle { opacity: 1; } - + .actions.creatable { flex-wrap: wrap; padding: 0px; @@ -759,14 +761,13 @@ code { border-radius: var(--border-radius-pill); position: absolute; top: 4px; - + .icon.icon-add{ background-image: var(--icon-add-000); background-size: 16px 16px; - max-height:36px; - width:36px; - margin:0px; - + max-height: 36px; + width: 36px; + margin: 0px; } a { |