Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/contacts.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRichard Steinmetz <richard@steinmetz.cloud>2022-09-29 18:12:41 +0300
committerGitHub <noreply@github.com>2022-09-29 18:12:41 +0300
commite7c4a8bb393c6f5c51fabe649027aa542c399b9a (patch)
tree756c18fe3a0f282dbac7efdb969a1b8614ffb3e2
parent383459fb55d5b4421632e0c012e6b0ce11d789c7 (diff)
parentfc6e69159bb02bcb43794313d31dd85052d87bbd (diff)
Merge pull request #2989 from nextcloud/enh/noid/chart-more-button
Fix styling of org charts more button
-rw-r--r--src/components/OrgChart.vue9
1 files changed, 5 insertions, 4 deletions
diff --git a/src/components/OrgChart.vue b/src/components/OrgChart.vue
index d9a6a6cf..5ee199c1 100644
--- a/src/components/OrgChart.vue
+++ b/src/components/OrgChart.vue
@@ -182,10 +182,11 @@ export default {
background-color: var(--color-main-background);
}
- ::v-deep .node-button-div {
- color: var(--color-primary-element);
- div {
- background-color: var(--color-main-background) !important;
+ .node-button-div {
+ filter: var(--background-invert-if-dark);
+
+ & > div > div {
+ filter: var(--background-invert-if-dark);
}
}
}