diff --git a/src/styles/client-customizations.scss b/src/styles/client-customizations.scss index d74a4911..b384870f 100644 --- a/src/styles/client-customizations.scss +++ b/src/styles/client-customizations.scss @@ -8,14 +8,9 @@ $accent-fill: #e6f1f3; // Calendar background $accent-color: #09748b; $link: #09748b; - $button-color: #a9e3e9; - $button-text-color: #181643; $svg-fill-color: '%2309748b'; // Color of calendar icon. Place HEX code *after* %23 $progress-bar-color: #181643; - //Variables - --iss-loader-color: #{$button-text-color}; - svg, .modal-text { fill: $accent-color; @@ -30,51 +25,6 @@ a.new-window-link { color: $link; } - - .btn { - &.btn-override[aria-disabled="false"]:not(.form-test-invalid) { - &.btn-primary { - background: $button-color; - color: $button-text-color; - } - - &:focus-visible { - background: $button-color; - color: $button-text-color; - box-shadow: 0 0 0 3px $white, 0 0 0 5.5px $button-color; - } - - } - } - } - - &.modal-open { - .modal { - .modal-body { - .btn { - &.btn-override[aria-disabled="false"]:not(.form-test-invalid) { - &.btn-primary { - background: $button-color; - color: $button-text-color; - } - - &:focus-visible { - background: $button-color; - color: $button-text-color; - box-shadow: 0 0 0 3px $white, 0 0 0 5.5px $button-color; - } - - } - } - } - - .modal-footer { - .btn:not(.navigation-link) { - background: $button-color; - color: $button-text-color; - } - } - } } .progress-bar-container { diff --git a/src/styles/common-error-styles.scss b/src/styles/common-error-styles.scss index a064052b..774cb05d 100644 --- a/src/styles/common-error-styles.scss +++ b/src/styles/common-error-styles.scss @@ -1,5 +1,5 @@ - @import "@/styles/ux-variables-svg-strings.scss"; + html { .has-error { @@ -202,24 +202,9 @@ html { } .form-test-invalid { - - // Disable Gray coloring to match Heritage &.btn.btn-primary { - //color: $gray-600; - //background: $gray-200; cursor: pointer; pointer-events: all; } - - //&.btn.btn-primary:hover, - //&.btn.btn-primary:focus { - //color: $gray-600; - //background: $gray-200; - //box-shadow: none; - //} - - //&.btn.btn-primary:focus-visible { - // box-shadow: 0 0 0 3px $white, 0 0 0 5.5px $gray-700; - //} } } \ No newline at end of file diff --git a/src/ux-components/button-main/button-main.vue b/src/ux-components/button-main/button-main.vue index 4ffa2f57..6000a9f2 100644 --- a/src/ux-components/button-main/button-main.vue +++ b/src/ux-components/button-main/button-main.vue @@ -5,25 +5,15 @@ :class="[ isPrimary ? 'btn-primary' : 'btn-secondary', isFloat ? 'float-end' : '', - isLoaderDisplayed ? 'has-loader' : '', ]" @click="clicked"> {{ buttonText }} -