Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions src/components/CaptchaComponent.vue
Original file line number Diff line number Diff line change
Expand Up @@ -581,4 +581,8 @@ export default {
margin-left: 15px;
vertical-align: middle;
}

.error-message {
color: #d52a32 !important; /* Override Bootstrap class for passing accessibility tests. */
}
</style>
1 change: 1 addition & 0 deletions src/components/DateInput.vue
Original file line number Diff line number Diff line change
Expand Up @@ -63,6 +63,7 @@
@keypress="isNumber($event)"
/>
<div
v-if="disabled == false"
class="date-picker-icon"
:data-cy="getCypressValue('CalendarIcon')"
@click="openCloseDatePicker($event)"
Expand Down
4 changes: 2 additions & 2 deletions src/components/PrintPage.vue
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,10 @@
<div class="col-3 text-end">
<a
href="javascript:void(0)"
class="print-btn"
class="print-btn pe-3"
@click="printPage()"
>
<span class="print-link pe-2">Print or save as PDF</span>
<span class="print-link pe-3">Print or save as PDF</span>
<IconPrint
color="#1a5a96"
class="icon"
Expand Down
8 changes: 4 additions & 4 deletions src/components/ValidationMessage.vue
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,12 @@
<div class="col-md-1 pr-0 text-center">
<IconCheckCircle
v-if="isSuccess"
color="#2E8540"
color="#3c7b37"
class="check-circle-icon"
/>
<IconTimesCircle
v-if="isError"
color="#d93e45"
color="#d52a32"
class="check-circle-icon"
/>
</div>
Expand Down Expand Up @@ -66,11 +66,11 @@ export default {
padding: 10px;
}
.success-box {
border: 2px solid #2e8540;
border: 2px solid #3c7b37;
background-color: #ceebcc;
}
.error-box {
border: 2px solid #d93e45;
border: 2px solid #d52a32;
background-color: #fccece;
}
.check-circle-icon {
Expand Down
Loading