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:
authorJoas Schilling <coding@schilljs.com>2020-01-09 23:34:10 +0300
committerJoas Schilling <coding@schilljs.com>2020-01-09 23:34:10 +0300
commit003207b68eba4f52b471bb9654b1a9685002d829 (patch)
tree7d77d9890f59edb519faa8e0e4df495aafef481f /src
parentafad3154a4a25e8f43f45b655f4c01be5a703dcb (diff)
Dark theme fixes for vue-at
Signed-off-by: Joas Schilling <coding@schilljs.com>
Diffstat (limited to 'src')
-rw-r--r--src/components/NewMessageForm/AdvancedInput/AdvancedInput.vue4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/components/NewMessageForm/AdvancedInput/AdvancedInput.vue b/src/components/NewMessageForm/AdvancedInput/AdvancedInput.vue
index dc4ee164f..ecfe4271c 100644
--- a/src/components/NewMessageForm/AdvancedInput/AdvancedInput.vue
+++ b/src/components/NewMessageForm/AdvancedInput/AdvancedInput.vue
@@ -305,10 +305,10 @@ export default {
margin: 0;
}
-//Support for the placehoder text in the div contenteditable
+// Support for the placeholder text in the div contenteditable
[contenteditable]:empty:before{
content: attr(placeholder);
display: block;
- color: gray;
+ color: var(--color-text-maxcontrast);
}
</style>