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: 1a2779f5895d309b9d7ff2cd8d1a8bc61650643c (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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
@include icon-black-white('no-password', 'spreed', 1);
@include icon-black-white('lobby', 'spreed', 1);
@include icon-black-white('folder-multiple-image', 'spreed', 1);

// Mention bubbles in the chat input and messages
.avatar-class-icon.icon-group-forced-white {
	background-image: url(../img/icon-contacts-white.svg);
}
.avatar-class-icon.icon-user-forced-white {
	background-image: url(../img/icon-contacts-white.svg);
}

.app-talk,
.talk-modal,
.talk-sidebar-callview,
#talk-panel,
#talk-sidebar,
#call-container,
.talkChatTab {
	// We always want to use the white icons, this is why we don't use var(--color-white) here.
	.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');
	}
}

// The atwho panel is a direct child of the body, so it is not affected by
// .app-Talk rules above.
// "forced-white" needs to be included in the class name as the Avatar does
// not accept several classes.
.talk.candidate-mentions.atwho-panel .icon-group-forced-white {
	background-image: url(../img/icon-contacts-white.svg);
}

// Needed to use white color also in dark mode.
.app-files .app-sidebar__close.forced-white {
	color: #ffffff;
}