From 81c118608545ba0cd2027f038cd3d0aee2f34cd9 Mon Sep 17 00:00:00 2001 From: bmauger Date: Tue, 22 Mar 2022 13:46:37 -0400 Subject: [PATCH 1/2] CSR-436 attempted fix for button color issue. --- src/styles/common-error-styles.scss | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/styles/common-error-styles.scss b/src/styles/common-error-styles.scss index d4dc8244a..952760caf 100644 --- a/src/styles/common-error-styles.scss +++ b/src/styles/common-error-styles.scss @@ -76,9 +76,9 @@ &.btn.btn-primary:hover, &.btn.btn-primary:focus, &.btn.btn-primary:focus-visible { - color: $gray; - background: $gray-200; - box-shadow: none; + color: $gray !important; + background: $gray-200 !important; + box-shadow: none !important; } } From 3df813274308351d518c986eabb0a3d5423f60e9 Mon Sep 17 00:00:00 2001 From: bmauger Date: Tue, 22 Mar 2022 14:16:15 -0400 Subject: [PATCH 2/2] CSR-444 fix alert padding. --- src/ux-components/alert/alert.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ux-components/alert/alert.vue b/src/ux-components/alert/alert.vue index 56e97cb4d..5b27f385a 100644 --- a/src/ux-components/alert/alert.vue +++ b/src/ux-components/alert/alert.vue @@ -1,6 +1,6 @@