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-24 16:50:46 +0300
committerJoas Schilling <coding@schilljs.com>2019-10-29 13:47:46 +0300
commitb90754359f6d9113e9ba2d7d852f2ac42e638ea2 (patch)
tree82ff37055b197f6a8c54ac3be184ca9e0f23d8cc /css
parent88e830fdcb74609b75bf1b169b618967eb56b750 (diff)
Author avatar component with bots and guest support
Signed-off-by: Joas Schilling <coding@schilljs.com>
Diffstat (limited to 'css')
-rw-r--r--css/icons.scss36
1 files changed, 17 insertions, 19 deletions
diff --git a/css/icons.scss b/css/icons.scss
index b683a8570..64ef05e9f 100644
--- a/css/icons.scss
+++ b/css/icons.scss
@@ -8,25 +8,23 @@
@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');
- }
+&.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');
}