Skip to content

Commit

Permalink
fix(primevue): fix primevue breadcrumb style
Browse files Browse the repository at this point in the history
  • Loading branch information
MCatherine1994 committed Feb 8, 2024
1 parent 1dee5eb commit e5ac8ef
Showing 1 changed file with 46 additions and 0 deletions.
46 changes: 46 additions & 0 deletions style-sheets/primevue-components-overrides.scss
Original file line number Diff line number Diff line change
Expand Up @@ -995,6 +995,39 @@ label {
align-items: center;
}

.#{variables.$primevue-prefix}-breadcrumb
.#{variables.$primevue-prefix}-breadcrumb-list
.#{variables.$primevue-prefix}-menuitem
a {
padding: 0.2rem;
border-radius: 0;
text-decoration: none;
}

.#{variables.$primevue-prefix}-breadcrumb
.#{variables.$primevue-prefix}-breadcrumb-list
.#{variables.$primevue-prefix}-menuitem
a {
box-shadow: inset 0 0px 0px 0.063rem
map.get(lightTheme.$light-theme, 'focus') !important;
}

.#{variables.$primevue-prefix}-breadcrumb
.#{variables.$primevue-prefix}-breadcrumb-list
.#{variables.$primevue-prefix}-menuitem:last-child
a {
box-shadow: none !important;
pointer-events: none;
}

.#{variables.$primevue-prefix}-breadcrumb
.#{variables.$primevue-prefix}-breadcrumb-list
.#{variables.$primevue-prefix}-menuitem
a
span:hover {
color: map.get(lightTheme.$light-theme, 'link-primary-hover') !important;
}

.#{variables.$primevue-prefix}-breadcrumb
.#{variables.$primevue-prefix}-breadcrumb-list
.#{variables.$primevue-prefix}-menuitem:not(:last-child)::after {
Expand All @@ -1003,6 +1036,19 @@ label {
margin: 0 0.5rem;
}

.#{variables.$primevue-prefix}-breadcrumb
.#{variables.$primevue-prefix}-breadcrumb-list
li
span {
color: map.get(lightTheme.$light-theme, 'link-primary') !important;
}

.#{variables.$primevue-prefix}-breadcrumb
.#{variables.$primevue-prefix}-breadcrumb-list
li:last-child
span {
color: map.get(lightTheme.$light-theme, 'text-primary') !important;
}

.#{variables.$primevue-prefix}-breadcrumb
.#{variables.$primevue-prefix}-breadcrumb-list
Expand Down

0 comments on commit e5ac8ef

Please sign in to comment.