From d9c36f6ac7e7fa5b2893f4ce4fecf802957aadff Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E2=80=9Cbhuvan-aot=E2=80=9D?= Date: Tue, 17 Dec 2024 13:45:30 -0800 Subject: [PATCH] changes to CSS to Improve error message contrast for accessibility. --- app/frontend/src/assets/scss/style.scss | 16 ++++++++++++++-- 1 file changed, 14 insertions(+), 2 deletions(-) diff --git a/app/frontend/src/assets/scss/style.scss b/app/frontend/src/assets/scss/style.scss index ce7071a95..6c3659e7f 100755 --- a/app/frontend/src/assets/scss/style.scss +++ b/app/frontend/src/assets/scss/style.scss @@ -210,6 +210,16 @@ a, word-break: break-word; } + /**FORMS-1640 - Remove the pink background entirely or change its colour to transparent across the entire CHEFS product + or specifically within the "form submitter" forms to Improve error message contrast for accessibility. **/ + .formio-error-wrapper { + background-color: transparent; + } + .formio-error-wrapper, + .formio-warning-wrapper { + padding: 0; + } + // tabs component .formio-component-simpletabs { & > .card { @@ -554,7 +564,9 @@ a, background-color: #eee !important; } -.v-data-table, .v-data-table-server, .v-table { +.v-data-table, +.v-data-table-server, +.v-table { font-size: 16px !important; } @@ -571,4 +583,4 @@ a, .vselect .v-label { opacity: 1 !important; -} \ No newline at end of file +}