From e290e1a8fddae9d280d238ee73f5570563cc0441 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Michaela=20Br=C3=BCckner?= Date: Wed, 20 Mar 2024 15:08:15 +0000 Subject: Resolve "Formularfelder haben im Hochkontrastmodus einen zu geringen Kontrast" Closes #3866 Merge request studip/studip!2718 --- resources/assets/stylesheets/highcontrast.scss | 52 ++++++++++++++++++++++++++ 1 file changed, 52 insertions(+) diff --git a/resources/assets/stylesheets/highcontrast.scss b/resources/assets/stylesheets/highcontrast.scss index 85c5159..b3bae83 100644 --- a/resources/assets/stylesheets/highcontrast.scss +++ b/resources/assets/stylesheets/highcontrast.scss @@ -1552,3 +1552,55 @@ button.as-link { text-decoration: underline; color: $contrast-blue; } + +.talk-bubble-wrapper { + .talk-bubble { + background-color: $white; + border-radius: 8px; + border: solid 2px #000; + + &::after { + top: -2px; + border-top-color: $black; + left: -18px; + } + .talk-bubble-content { + .talk-bubble-talktext { + .html { + .opengraph, + blockquote { + border: solid thin $black; + border-left: 3px solid $black; + } + } + } + } + } + + &.talk-bubble-own-post { + .talk-bubble { + background-color: $white; + + &::after { + border-top-color: $black; + right: -18px; + } + } + } +} +form.default { + input[type=date], + input[type=datetime-local], + input[type=email], + input[type=number], + input[type=password], + input[type=tel], + input[type=text], + input[type=time], + input[type=url], + select, + textarea { + border: 1px solid $black; + } +} + -- cgit v1.0