Skip to content

Commit

Permalink
fix: (CXSPA-9049) multiple UI elements theme visibility issues fix (#…
Browse files Browse the repository at this point in the history
  • Loading branch information
uroslates authored Jan 7, 2025
1 parent 7cab5e6 commit 0a03f61
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@
text-decoration: underline;
border: none;
background: none;
color: inherit;

@include forFeature('a11yVisibleFocusOverflows') {
padding-inline-start: 0;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -418,7 +418,7 @@ if (environment.cpq) {
a11yAddPaddingToCarouselPanel: true,
a11yHideConsentButtonWhenBannerVisible: true,
cmsBottomHeaderSlotUsingFlexStyles: true,
useSiteThemeService: false,
useSiteThemeService: true,
enableConsecutiveCharactersPasswordRequirement: true,
enablePasswordsCannotMatchInPasswordUpdateForm: true,
allPageMetaResolversEnabledInCsr: true,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -104,6 +104,7 @@
background-color: var(--cx-tab-btn-bg-color);
border: var(--cx-tab-btn-border);
border-radius: var(--cx-tab-btn-border-radius);
color: inherit;
}
}

Expand All @@ -119,6 +120,7 @@
text-align: start;
height: 63px;
position: relative;
color: inherit;

&:before {
margin: 0px 15px;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
var(--cx-color-primary) 0%,
var(--cx-color-primary)
calc((var(--star-fill, 0) - #{$i} + 1) * 100%),
var(--cx-color-medium) calc((var(--star-fill, 0) - #{$i} + 1) * 100%)
var(--cx-color-dark) calc((var(--star-fill, 0) - #{$i} + 1) * 100%)
);
// somehow we cannot move the text related clip and fill color outside this loop.
// most likely they cannot come before the definition of the background.
Expand Down

0 comments on commit 0a03f61

Please sign in to comment.