diff options
author | Roeland Jago Douma <rullzer@users.noreply.github.com> | 2018-07-31 11:50:21 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-07-31 11:50:21 +0200 |
commit | b16f1093af73a26a994345afce189931a2550f6c (patch) | |
tree | 3ff9f5f28a0d93858310eeb60575f6a6e0ef5ac4 /apps | |
parent | eedfb0d8a419b121b655a2fa0957bdf2a0c30764 (diff) | |
parent | 5d7c0b8cd2be74fb4b832486e9e72a7313bf31db (diff) | |
download | nextcloud-server-b16f1093af73a26a994345afce189931a2550f6c.tar.gz nextcloud-server-b16f1093af73a26a994345afce189931a2550f6c.zip |
Merge pull request #10460 from nextcloud/bugfix/10443/theming-icons
Use icon mixins for the theming scss
Diffstat (limited to 'apps')
-rw-r--r-- | apps/theming/css/theming.scss | 13 |
1 files changed, 8 insertions, 5 deletions
diff --git a/apps/theming/css/theming.scss b/apps/theming/css/theming.scss index 4a32458d8a8..9e55680470c 100644 --- a/apps/theming/css/theming.scss +++ b/apps/theming/css/theming.scss @@ -27,16 +27,19 @@ filter: none; } .searchbox input[type="search"] { - background: transparent url('../../../core/img/actions/search.svg') no-repeat 6px center; + background-repeat: no-repeat; + background-position: 6px center; + background-color: transparent; + @include icon-color('search', 'actions', $color-black, 1, true); } #contactsmenu .icon-contacts { - background-image: url('../../../core/img/places/contacts-dark.svg'); + @include icon-color('contacts', 'places', $color-black, 1, true); } #settings .icon-settings-white { - background-image: url('../../../core/img/actions/settings-dark.svg'); + @include icon-color('settings', 'actions', $color-black, 1, true); } #appmenu .icon-more-white { - background-image: url('../../../core/img/actions/more.svg'); + @include icon-color('more', 'actions', $color-black, 1, true); } #body-login { @@ -64,8 +67,8 @@ } input[type='checkbox'].checkbox--white:checked + label:before { border-color: nc-darken($color-primary-element, 30%) !important; - background-image: url('../../../core/img/actions/checkbox-mark.svg'); background-color: nc-darken($color-primary-element, 30%) !important; + @include icon-color('checkbox-mark', 'actions', $color-white, 1, true); } } } @else { |