Commit de00b6eb authored by Noel Gordon's avatar Noel Gordon Committed by Commit Bot

[breadcrumb] Flip caret image in RTL with transform scaleX

Change caret image RTL transform CSS rotate(-180deg) to scaleX(-1) for
the same visual result.

Bug: 1035691
Change-Id: I3140cc2356118b27cced786fbad335bab2d6ea6e
Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2094903Reviewed-by: default avatarLuciano Pacheco <lucmult@chromium.org>
Reviewed-by: default avatarAlex Danilo <adanilo@chromium.org>
Commit-Queue: Noel Gordon <noel@chromium.org>
Cr-Commit-Position: refs/heads/master@{#748459}
parent b1a97f68
...@@ -33,7 +33,7 @@ const breadCrumbTemplate = ` ...@@ -33,7 +33,7 @@ const breadCrumbTemplate = `
} }
:host-context(html[dir='rtl']) span.caret { :host-context(html[dir='rtl']) span.caret {
transform: rotate(-180deg); transform: scaleX(-1);
} }
button { button {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment