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
diff options
context:
space:
mode:
authorJoas Schilling <coding@schilljs.com>2020-05-14 14:33:21 +0300
committerJoas Schilling <coding@schilljs.com>2020-05-18 15:00:04 +0300
commite9b5e47192174e956900dda1d44daa1a9de62853 (patch)
tree64b738031257af715c9db3b0ddeedbbe89d2b146
parentbf5b15a5a6aeee188cc811e737eccf6abe686763 (diff)
Add drop shadow again on icons in the topbar too
Signed-off-by: Joas Schilling <coding@schilljs.com>
-rw-r--r--css/icons.scss5
-rw-r--r--src/components/CallView/shared/Video.vue1
2 files changed, 5 insertions, 1 deletions
diff --git a/css/icons.scss b/css/icons.scss
index e32c37777..8008453d4 100644
--- a/css/icons.scss
+++ b/css/icons.scss
@@ -46,11 +46,14 @@
&.in-call {
.app-navigation-toggle,
.action-item__menutoggle {
- color: #fff;
+ color: #ffffff;
+ filter: drop-shadow(1px 1px 4px var(--color-box-shadow));
}
}
.forced-white {
+ filter: drop-shadow(1px 1px 4px var(--color-box-shadow));
+
&.icon-menu-people {
background-image: url(icon-color-path('menu-people', 'spreed', 'fff', 1));
}
diff --git a/src/components/CallView/shared/Video.vue b/src/components/CallView/shared/Video.vue
index 2ade6234b..98f98df4c 100644
--- a/src/components/CallView/shared/Video.vue
+++ b/src/components/CallView/shared/Video.vue
@@ -450,6 +450,7 @@ export default {
color: white;
position: relative;
font-size: 20px;
+ filter: drop-shadow(1px 1px 4px var(--color-box-shadow));
&--promoted {
font-weight: bold;
}