diff --git a/resources/assets/stylesheets/highcontrast.scss b/resources/assets/stylesheets/highcontrast.scss index 47bfbf213b7cd63dfac2e54344f1ebc55ce6978b..712db2b735e52d7c6508840c5467caf9367694f1 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