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:
Diffstat (limited to 'css')
-rw-r--r--css/unified-search.scss23
1 files changed, 23 insertions, 0 deletions
diff --git a/css/unified-search.scss b/css/unified-search.scss
new file mode 100644
index 000000000..7dc9bec3c
--- /dev/null
+++ b/css/unified-search.scss
@@ -0,0 +1,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));
+ }
+ }
+}