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

icons.scss « css - github.com/nextcloud/spreed.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 91c51e2cb14ca2826f3352da6e7bd030064cae31 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
@include icon-black-white('reply', 'spreed', 1);
@include icon-black-white('clip-add-file', 'spreed', 1);
@include icon-black-white('menu-people', 'spreed', 1);
@include icon-black-white('no-password', 'spreed', 1);
@include icon-black-white('share-window', 'spreed', 1);
@include icon-black-white('clip-add-file', 'spreed', 1);
@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');
  }
}