:host {
.dropdown-width-container {
position: relative;
flex: 1 1 auto;
height: 100%;
font-size: 12px;
&:after {
content: attr(data-value) " ";
visibility: hidden;
white-space: nowrap;
padding-right: 20px;
}
select {
position: absolute;
left: 0px;
right: 4px;
top: 0px;
bottom: 0px;
cursor: pointer;
}
.select-arrow {
position: absolute;
pointer-events: none;
top: 50%;
right: 6px;
width: 6px;
height: 4px;
transform: translateY(-50%);
background-color: currentColor;
-webkit-mask-image: var(--psp-icon--select-arrow--mask-image);
mask-image: var(--psp-icon--select-arrow--mask-image);
-webkit-mask-repeat: no-repeat;
mask-repeat: no-repeat;
-webkit-mask-position: center;
mask-position: center;
-webkit-mask-size: contain;
mask-size: contain;
}
}
select {
border-radius: 0;
border-width: 0px;
outline: none;
-webkit-appearance: none;
appearance: none;
color: inherit;
padding: 0px 12px 0px 0px;
font-family: inherit;
background-color: transparent;
option {
color: var(--psp--color, inherit);
background: var(--psp--background-color, transparent);
}
}
}