diff options
| author | Michaela Brückner <brueckner@data-quest.de> | 2024-03-20 15:08:15 +0000 |
|---|---|---|
| committer | Michaela Brückner <brueckner@data-quest.de> | 2024-03-20 16:22:22 +0100 |
| commit | e290e1a8fddae9d280d238ee73f5570563cc0441 (patch) | |
| tree | 93b6737032ba09b68f9ecc57f821b4ff01eeeed5 | |
| parent | 71e28f730e1bb5601786c62e0da0fce605a0ee38 (diff) | |
Resolve "Formularfelder haben im Hochkontrastmodus einen zu geringen Kontrast"issue-3871
Closes #3866
Merge request studip/studip!2718
| -rw-r--r-- | resources/assets/stylesheets/highcontrast.scss | 52 |
1 files changed, 52 insertions, 0 deletions
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; + } +} + |
