diff options
author | Joas Schilling <213943+nickvergessen@users.noreply.github.com> | 2020-01-30 09:33:02 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-01-30 09:33:02 +0100 |
commit | bcc3fbd3251a5a0b071120aab00f666e58746c40 (patch) | |
tree | 911c7152a250bd96e58f4b4e7ee2180d23f9c35c /apps | |
parent | a4a05ee03d4b563fec8a631908b1d797afa6df9f (diff) | |
parent | 7bfbae0aa1bb701c33c353c4b51bd76a1fa82d0f (diff) | |
download | nextcloud-server-bcc3fbd3251a5a0b071120aab00f666e58746c40.tar.gz nextcloud-server-bcc3fbd3251a5a0b071120aab00f666e58746c40.zip |
Merge pull request #19179 from nextcloud/followup/19113/fix-query-selector-for-inverted-icons
Fix query selector for inverted icons
Diffstat (limited to 'apps')
-rw-r--r-- | apps/accessibility/css/dark.scss | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/apps/accessibility/css/dark.scss b/apps/accessibility/css/dark.scss index 30d5163f8dc..e85b3cb393c 100644 --- a/apps/accessibility/css/dark.scss +++ b/apps/accessibility/css/dark.scss @@ -22,7 +22,8 @@ $color-border-dark: lighten($color-main-background, 14%); #contactsmenu-menu a, #expanddiv a, .activity-section .activity-icon.monochrome { - img :not(.avatardiv){ + & > img, + :not(.avatardiv) > img { filter: invert(100%); } } @@ -84,4 +85,4 @@ input[type=checkbox] { background-image: url('../../../core/img/actions/checkbox-mixed-dark.svg'); } } -}
\ No newline at end of file +} |