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/src
diff options
context:
space:
mode:
authorVincent Petry <vincent@nextcloud.com>2020-10-19 16:10:35 +0300
committerVincent Petry <vincent@nextcloud.com>2020-10-19 18:20:05 +0300
commit4e50dfe157a0907c6c8a50b6244046b85529f1a4 (patch)
treee749afef3187211248b867a2167c28a8b810f30c /src
parenteb0b351e25d43c12363a143fd24965b023229c3b (diff)
Fix empty call background color
Make the background grey and adjust text color to be readable. Signed-off-by: Vincent Petry <vincent@nextcloud.com>
Diffstat (limited to 'src')
-rw-r--r--src/components/CallView/shared/EmptyCallView.vue9
1 files changed, 7 insertions, 2 deletions
diff --git a/src/components/CallView/shared/EmptyCallView.vue b/src/components/CallView/shared/EmptyCallView.vue
index 329b51a05..faee0e0d7 100644
--- a/src/components/CallView/shared/EmptyCallView.vue
+++ b/src/components/CallView/shared/EmptyCallView.vue
@@ -147,7 +147,7 @@ export default {
}
</script>
-<style lang="scss">
+<style lang="scss" scoped>
.empty-call-view {
height: 100%;
@@ -157,7 +157,7 @@ export default {
flex-direction: column;
align-content: center;
justify-content: center;
- color: var(--color-text-maxcontrast);
+ background-color: var(--color-loading-dark);
text-align: center;
.icon {
background-size: 64px;
@@ -168,5 +168,10 @@ export default {
button {
margin: 4px auto;
}
+
+ h2, p {
+ color: var(--color-primary-text);
+ }
}
+
</style>