diff options
author | John Molakvoæ (skjnldsv) <skjnldsv@protonmail.com> | 2018-06-25 11:17:00 +0200 |
---|---|---|
committer | Julius Härtl <jus@bitgrid.net> | 2018-07-19 08:16:30 +0200 |
commit | 84e90e26c0a257c11ebdd05e01046e1a90e6c9bd (patch) | |
tree | e5f137e5dd41cfc49e02645dd9de872633676e36 /core/css/icons.scss | |
parent | b7e32df6603720c7f58b93a97b68cc841c0ad2ff (diff) | |
download | nextcloud-server-84e90e26c0a257c11ebdd05e01046e1a90e6c9bd.tar.gz nextcloud-server-84e90e26c0a257c11ebdd05e01046e1a90e6c9bd.zip |
Svg color api
Signed-off-by: John Molakvoæ (skjnldsv) <skjnldsv@protonmail.com>
Diffstat (limited to 'core/css/icons.scss')
-rw-r--r-- | core/css/icons.scss | 36 |
1 files changed, 20 insertions, 16 deletions
diff --git a/core/css/icons.scss b/core/css/icons.scss index 91a90abe27e..c78d8eba7cf 100644 --- a/core/css/icons.scss +++ b/core/css/icons.scss @@ -109,6 +109,9 @@ img, object, video, button, textarea, input, select, div[contenteditable='true'] .icon-address { background-image: url('../img/actions/address.svg?v=1'); } +.icon-address-white { + background-image: url('#{$webroot}/svg/address/fff?v=1'); +} .icon-audio { background-image: url('../img/actions/audio.svg?v=1'); @@ -140,14 +143,15 @@ img, object, video, button, textarea, input, select, div[contenteditable='true'] .icon-checkmark { background-image: url('../img/actions/checkmark.svg?v=1'); + } .icon-checkmark-white { - background-image: url('../img/actions/checkmark-white.svg?v=1'); + background-image: url('#{$webroot}/svg/icon-checkmark/fff?v=1'); } .icon-checkmark-color { - background-image: url('../img/actions/checkmark-color.svg?v=1'); + background-image: url('#{$webroot}/svg/icon-checkmark/#{$color-success}?v=1'); } .icon-clippy { @@ -159,7 +163,7 @@ img, object, video, button, textarea, input, select, div[contenteditable='true'] } .icon-close-white { - background-image: url('../img/actions/close-white.svg?v=1'); + background-image: url('#{$webroot}/svg/close/fff?v=1'); } .icon-comment { @@ -175,7 +179,7 @@ img, object, video, button, textarea, input, select, div[contenteditable='true'] } .icon-confirm-white { - background-image: url('../img/actions/confirm-white.svg?v=2'); + background-image: url('#{$webroot}/svg/icon-confirm/fff?v=1'); } .icon-delete { @@ -188,22 +192,22 @@ img, object, video, button, textarea, input, select, div[contenteditable='true'] } &:hover, &:focus { - background-image: url('../img/actions/delete-hover.svg?v=1'); + background-image: url('#{$webroot}/svg/icon-delete/d40000?v=1'); filter: initial; } } .icon-delete-white { - background-image: url('../img/actions/delete-white.svg?v=1'); + background-image: url('#{$webroot}/svg/icon-delete/fff?v=1'); &.no-permission { &:hover, &:focus { - background-image: url('../img/actions/delete-white.svg?v=1'); + background-image: url('#{$webroot}/svg/icon-delete/fff?v=1'); } } &:hover, &:focus { - background-image: url('../img/actions/delete-hover.svg?v=1'); + background-image: url('#{$webroot}/svg/icon-delete/d40000?v=1'); } } @@ -216,7 +220,7 @@ img, object, video, button, textarea, input, select, div[contenteditable='true'] } .icon-download-white { - background-image: url('../img/actions/download-white.svg?v=1'); + background-image: url('#{$webroot}/svg/icon-download/fff?v=1'); } .icon-edit { @@ -228,11 +232,11 @@ img, object, video, button, textarea, input, select, div[contenteditable='true'] } .icon-error-white { - background-image: url('../img/actions/error-white.svg?v=1'); + background-image: url('#{$webroot}/svg/icon-error/fff?v=1'); } .icon-error-color { - background-image: url('../img/actions/error-color.svg?v=1'); + background-image: url('#{$webroot}/svg/icon-error/d40000?v=1'); } .icon-external { @@ -258,7 +262,7 @@ img, object, video, button, textarea, input, select, div[contenteditable='true'] } .icon-info-white { - background-image: url('../img/actions/info-white.svg?v=1'); + background-image: url('#{$webroot}/svg/icon-info/fff?v=1'); } .icon-logout { @@ -278,7 +282,7 @@ img, object, video, button, textarea, input, select, div[contenteditable='true'] } .icon-more-white { - background-image: url('../img/actions/more-white.svg?v=1'); + background-image: url('#{$webroot}/svg/more/fff?v=1'); } .icon-password { @@ -342,7 +346,7 @@ img, object, video, button, textarea, input, select, div[contenteditable='true'] } .icon-search-white { - background-image: url('../img/actions/search-white.svg?v=1'); + background-image: url('#{$webroot}/svg/search/fff?v=1'); } .icon-settings { @@ -354,7 +358,7 @@ img, object, video, button, textarea, input, select, div[contenteditable='true'] } .icon-settings-white { - background-image: url('../img/actions/settings-white.svg?v=1'); + background-image: url('#{$webroot}/svg/settings-dark/fff?v=1'); } /* always use icon-shared, AdBlock blocks icon-share */ @@ -435,7 +439,7 @@ img, object, video, button, textarea, input, select, div[contenteditable='true'] } .icon-upload-white { - background-image: url('../img/actions/upload-white.svg?v=1'); + background-image: url('#{$webroot}/svg/upload/fff?v=1'); } .icon-user { |