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:
authorDaniel Calviño Sánchez <danxuliu@gmail.com>2020-01-10 08:29:46 +0300
committerDaniel Calviño Sánchez <danxuliu@gmail.com>2020-01-10 08:29:46 +0300
commita1d02c2f3e12648822540a6897969363949f9f42 (patch)
treebed9628cb2e242adb0160069e79cc4a040973f82 /css
parente27cfb5cee24405bce1c6ea992068a479a9df47d (diff)
Override conflicting rules from comments tab in Files app
Although the CSS rules for the candidate mentions of Talk no longer mess with other elements, some too broad rules of other elements still mess with the candidate mentions of Talk, so they need to be explicitly overriden. Signed-off-by: Daniel Calviño Sánchez <danxuliu@gmail.com>
Diffstat (limited to 'css')
-rw-r--r--css/At.scss8
1 files changed, 8 insertions, 0 deletions
diff --git a/css/At.scss b/css/At.scss
index b37b7a11d..afb2ebff2 100644
--- a/css/At.scss
+++ b/css/At.scss
@@ -140,3 +140,11 @@
color: var(--color-primary-text);
}
}
+
+// Override conflicting rules from the comments tab.
+.talk.candidate-mentions {
+ .atwho-view {
+ top: unset;
+ display: unset;
+ }
+}