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

unified-search.scss « css - github.com/nextcloud/spreed.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 7dc9bec3caff210ed679343679da565ecc1219e1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
.unified-search {
	.conversation-icon {
		background-color: var(--color-background-darker);
		background-size: 22px !important;

		// 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));
		}
	}
}