diff options
author | Jan-Christoph Borchardt <hey@jancborchardt.net> | 2019-01-22 16:30:14 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-01-22 16:30:14 +0100 |
commit | ccc35d556632e1e62dd4b065c8b89f7906c1aab5 (patch) | |
tree | 9b4d686e9562c965bb45a3ce4b5c61195e4bdbf2 /core/css/styles.scss | |
parent | 90e985fe4f3df5174611490923b91457f6afc342 (diff) | |
parent | b8827ce64aa43c249f43f444c456f3e92f495861 (diff) | |
download | nextcloud-server-ccc35d556632e1e62dd4b065c8b89f7906c1aab5.tar.gz nextcloud-server-ccc35d556632e1e62dd4b065c8b89f7906c1aab5.zip |
Merge pull request #13648 from nextcloud/darktheme-fix
🕶 Dark theme fixes
Diffstat (limited to 'core/css/styles.scss')
-rw-r--r-- | core/css/styles.scss | 21 |
1 files changed, 11 insertions, 10 deletions
diff --git a/core/css/styles.scss b/core/css/styles.scss index a4610aba567..5f45b29cfde 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 */ @@ -709,7 +710,7 @@ code { box-sizing: border-box; div:first-child a { - background-image: url('../img/places/home.svg?v=1'); + background-image: var(--icon-home-000); background-repeat: no-repeat; background-position: left center; } @@ -743,11 +744,12 @@ code { opacity: 1; } } + // keyboard focus #picker-showgridview:focus + #picker-view-toggle { opacity: 1; } - + .actions.creatable { flex-wrap: wrap; padding: 0px; @@ -761,14 +763,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 { |