Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJulius Härtl <jus@bitgrid.net>2018-07-31 01:10:34 +0300
committerJulius Härtl <jus@bitgrid.net>2018-07-31 01:10:34 +0300
commit5d7c0b8cd2be74fb4b832486e9e72a7313bf31db (patch)
treeb13e1452b6e2ce60e9238e0db154bfd93aa09060 /apps/theming/css
parent1f610b4d1f33744a53162cb66b48a26f2c5ba970 (diff)
Use icon mixins for the theming scss
Signed-off-by: Julius Härtl <jus@bitgrid.net>
Diffstat (limited to 'apps/theming/css')
-rw-r--r--apps/theming/css/theming.scss13
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 {