From 1de1707498056089ae91604a6800fec626d697b6 Mon Sep 17 00:00:00 2001 From: Ron Lucke <lucke@elan-ev.de> Date: Mon, 12 Feb 2024 11:03:36 +0000 Subject: [PATCH] fix #3537 Closes #3537 Merge request studip/studip!2427 --- .../assets/stylesheets/highcontrast.scss | 36 +++++++++++++++++++ 1 file changed, 36 insertions(+) diff --git a/resources/assets/stylesheets/highcontrast.scss b/resources/assets/stylesheets/highcontrast.scss index 47bfbf213b7..712db2b735e 100644 --- a/resources/assets/stylesheets/highcontrast.scss +++ b/resources/assets/stylesheets/highcontrast.scss @@ -1260,3 +1260,39 @@ button.as-link { text-decoration: underline; color: $contrast-blue; } + +.talk-bubble-wrapper { + .talk-bubble { + background-color: var(--white); + border-radius: 8px; + border: solid 2px #000; + + &::after { + top: -2px; + border-top-color: var(--black); + left: -18px; + } + .talk-bubble-content { + .talk-bubble-talktext { + .html { + .opengraph, + blockquote { + border: solid thin var(--black); + border-left: 3px solid var(--black); + } + } + } + } + } + + &.talk-bubble-own-post { + .talk-bubble { + background-color: var(--white); + + &::after { + border-top-color: var(--black); + right: -18px; + } + } + } +} \ No newline at end of file -- GitLab