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>2020-07-30 17:01:33 +0300
committerJoas Schilling <coding@schilljs.com>2020-08-03 16:43:37 +0300
commitf89c938663f0391968dd8e9fdadd62f43e66d3d3 (patch)
treed92a3d50af35d4528bb8cd5c3cf9f674d6361e70 /css
parent9f46cbd00afb136de66297d6beb292e338e6d799 (diff)
Conversations in Unified Search
Signed-off-by: Joas Schilling <coding@schilljs.com>
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));
+ }
+ }
+}