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 <213943+nickvergessen@users.noreply.github.com>2020-01-10 12:31:06 +0300
committerGitHub <noreply@github.com>2020-01-10 12:31:06 +0300
commit0d006641c250865aa39bd23ea56bda678b627add (patch)
tree09b11168659b7fab29eb0eaac23e56d3b43e4301 /css
parent2adb03af9951564070aae94d8b60666f24effb1c (diff)
parentb9e8a9a3da6ae4a5c76de872045ee501de16c62f (diff)
Merge pull request #2669 from nextcloud/add-call-view-to-sidebar-in-files-app
Add call view to sidebar in Files app
Diffstat (limited to 'css')
-rw-r--r--css/icons.scss10
1 files changed, 9 insertions, 1 deletions
diff --git a/css/icons.scss b/css/icons.scss
index f048bed32..493815bbb 100644
--- a/css/icons.scss
+++ b/css/icons.scss
@@ -8,7 +8,8 @@
@include icon-black-white('emoji-smile', 'spreed', 1);
@include icon-black-white('lobby', 'spreed', 1);
-.app-Talk {
+.app-Talk,
+#call-container {
// 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));
@@ -77,3 +78,10 @@
background-image: url(icon-color-path('group', 'actions', 'fff', 1, true));
}
}
+
+.app-files {
+ // Needed to use white color also in dark mode.
+ .app-sidebar__close.forced-white {
+ background-image: url(icon-color-path('close', 'actions', 'fff', 1, true));
+ }
+}