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

github.com/nextcloud/spreed.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/css
diff options
context:
space:
mode:
authorJoas Schilling <coding@schilljs.com>2019-10-10 13:37:39 +0300
committerJoas Schilling <coding@schilljs.com>2019-10-14 10:20:48 +0300
commit3250e06a181e3caa373083391551c2920ee0e3ca (patch)
tree437d1a46e401bf5f00f2394c61fbf6bddee01e82 /css
parent4d3356ec972366abc4be2bcd2a3e555ad198866d (diff)
Fix the conversations icon
Signed-off-by: Joas Schilling <coding@schilljs.com>
Diffstat (limited to 'css')
-rw-r--r--css/icons.scss21
1 files changed, 21 insertions, 0 deletions
diff --git a/css/icons.scss b/css/icons.scss
index 16dabeae2..91c51e2cb 100644
--- a/css/icons.scss
+++ b/css/icons.scss
@@ -7,3 +7,24 @@
@include icon-black-white('bell-outline', 'spreed', 1);
@include icon-black-white('emoji-smile', 'spreed', 1);
+// We always want to use the white icons, this is why we don't use var(--color-white) here.
+.avatar.icon {
+ &.icon-public {
+ background-image: url(icon-color-path('public', 'actions', 'fff', 1, true));
+ }
+ &.icon-contacts {
+ background-image: url(icon-color-path('contacts', 'places', 'fff', 1, true));
+ }
+ &.icon-password {
+ background-image: url(icon-color-path('password', 'actions', 'fff', 1, true));
+ }
+ &.icon-file {
+ background-image: url(icon-color-path('text', 'filetypes', 'fff', 1, true));
+ }
+ &.icon-mail {
+ background-image: url(icon-color-path('mail', 'actions', 'fff', 1, true));
+ }
+ &.icon-changelog {
+ background-image: url('../img/changelog.svg');
+ }
+}