bfg-common 1.4.420 → 1.4.421
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -180,9 +180,11 @@ const onSubmit = (): void => {
|
|
|
180
180
|
:root {
|
|
181
181
|
--feedback-text-color: #4d5d69;
|
|
182
182
|
--feedback-tooltip-close-color: #213444;
|
|
183
|
+
--feedback-tab-active-bg-color: #008fd60f;
|
|
183
184
|
}
|
|
184
185
|
:root.dark-theme {
|
|
185
186
|
--feedback-text-color: #e9eaec;
|
|
186
187
|
--feedback-tooltip-close-color: #e9eaec;
|
|
188
|
+
--feedback-tab-active-bg-color: #2ba2de14;
|
|
187
189
|
}
|
|
188
190
|
</style>
|
package/components/common/layout/theHeader/feedback/new/additionalDetails/AdditionalDetails.vue
CHANGED
|
@@ -512,8 +512,9 @@ watch(
|
|
|
512
512
|
}
|
|
513
513
|
|
|
514
514
|
&.active {
|
|
515
|
-
|
|
515
|
+
background: var(--feedback-tab-active-bg-color);
|
|
516
516
|
color: var(--feedback-tab-active-text-color);
|
|
517
|
+
border: 1.4px solid var(--feedback-tab-active-text-color);
|
|
517
518
|
}
|
|
518
519
|
}
|
|
519
520
|
}
|