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>2019-06-11 18:26:48 +0300
committerDaniel Calviño Sánchez <danxuliu@gmail.com>2019-07-12 22:16:36 +0300
commitc2e9cb650e3f7483c1d4dbbb03f9386e6fcd297c (patch)
tree218a96b468bf202511375cbe0508a526547beb14 /css
parent87387138fa6dec052f039a67efabb2a60e249bfb (diff)
Remove "not" CSS pseudo-class that always matches
The ".systemMessage" class is set on ".comment" elements, but not on ".comments" elements, so ".comments:not(.systemMessage)" is always the same as ".comments". Signed-off-by: Daniel Calviño Sánchez <danxuliu@gmail.com>
Diffstat (limited to 'css')
-rw-r--r--css/chatview.scss2
1 files changed, 1 insertions, 1 deletions
diff --git a/css/chatview.scss b/css/chatview.scss
index 1525df979..1c4a00f75 100644
--- a/css/chatview.scss
+++ b/css/chatview.scss
@@ -216,7 +216,7 @@ body:not(#body-public) #chatView .comment .authorRow:not(.currentUser):not(.gues
display: none;
}
-#chatView .comments:not(.systemMessage) li .message {
+#chatView .comments li .message {
padding-left: 40px;
display: inline-block;
width: calc(100% - 80px);