enhancement: use SVG icon for cascader expand instead of > (#81844)

* feature: use icon for cascader expand
This commit is contained in:
Darren Janeczek
2024-02-07 10:26:39 -05:00
committed by GitHub
parent 832eda7963
commit 9fb04be7ff

View File

@@ -125,13 +125,15 @@
position: relative; position: relative;
&:after { &:after {
content: '>'; background: $text-color-weak;
font-size: 12px; content: '';
color: $text-color-weak; height: 24px;
mask: url(../img/icons/unicons/angle-right.svg);
mask-type: luminance;
position: absolute; position: absolute;
right: 16px; right: 0px;
top: 0; top: calc((32px - 24px) / 2);
line-height: 32px; width: 24px;
} }
} }
} }