Skip to content

Commit

Permalink
fix(ui5-breadcrumbs): fixed not working separators (#8383)
Browse files Browse the repository at this point in the history
It seems that in the context of our project backslashes in CSS need to
be escaped twice. Presenting this fix as a temporary solution.
  • Loading branch information
plamenivanov91 authored Mar 1, 2024
1 parent 8ea2ab9 commit ca733c1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/main/src/themes/Breadcrumbs.css
Original file line number Diff line number Diff line change
Expand Up @@ -81,11 +81,11 @@
}

:host([separator-style="BackSlash"]) .ui5-breadcrumbs-separator::after {
content: "\\";
content: "\\\\";
}

:host([separator-style="DoubleBackSlash"]) .ui5-breadcrumbs-separator::after {
content: "\\\\";
content: "\\\\\\\\";
}

:host([separator-style="GreaterThan"]) .ui5-breadcrumbs-separator::after {
Expand Down

0 comments on commit ca733c1

Please sign in to comment.