From ca733c1c7034b03edcc51bbaf3153385e1b70d22 Mon Sep 17 00:00:00 2001 From: Plamen Ivanov Date: Fri, 1 Mar 2024 18:09:11 +0200 Subject: [PATCH] fix(ui5-breadcrumbs): fixed not working separators (#8383) It seems that in the context of our project backslashes in CSS need to be escaped twice. Presenting this fix as a temporary solution. --- packages/main/src/themes/Breadcrumbs.css | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/packages/main/src/themes/Breadcrumbs.css b/packages/main/src/themes/Breadcrumbs.css index 895a29bfd1f2..768084d182a4 100644 --- a/packages/main/src/themes/Breadcrumbs.css +++ b/packages/main/src/themes/Breadcrumbs.css @@ -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 {