Fix inverted tag colors order. Resolve #4569
Some checks are pending
CI / Build, Upload, Test (push) Waiting to run
Some checks are pending
CI / Build, Upload, Test (push) Waiting to run
This commit is contained in:
parent
ca9508ebce
commit
596703b21b
1 changed files with 4 additions and 1 deletions
|
@ -103,8 +103,11 @@
|
||||||
|
|
||||||
.colored-tag-swatches {
|
.colored-tag-swatches {
|
||||||
direction: ltr;
|
direction: ltr;
|
||||||
transform: scaleX(-1);
|
|
||||||
display: flex;
|
display: flex;
|
||||||
|
|
||||||
|
:root:-moz-locale-dir(rtl) & {
|
||||||
|
transform: scaleX(-1);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
.icon-item-type + .tag-swatch,
|
.icon-item-type + .tag-swatch,
|
||||||
|
|
Loading…
Reference in a new issue