36 lines
521 B
CSS
36 lines
521 B
CSS
.combobox-item-template {
|
|
display: flex;
|
|
align-items: center;
|
|
}
|
|
|
|
.combobox-item-template > img {
|
|
border-radius: 50%;
|
|
width: 2rem;
|
|
height: 2rem;
|
|
}
|
|
|
|
img + .combobox-item-template-text {
|
|
margin-left: 1rem;
|
|
}
|
|
|
|
.combobox-item-template-text {
|
|
display: flex;
|
|
flex-flow: column;
|
|
}
|
|
|
|
.combobox-item-template-employee-phone {
|
|
opacity: 0.65;
|
|
}
|
|
|
|
.icon {
|
|
margin-left: 0.5rem;
|
|
margin-right: 0.5rem;
|
|
}
|
|
|
|
.ok_green-icon {
|
|
--icon-mask-image: var(--icon-ok_green-mask-image);
|
|
}
|
|
|
|
.ismeasured-green {
|
|
color: green !important;
|
|
} |