element-call/src/SelectInput.module.css

43 lines
708 B
CSS
Raw Normal View History

2021-12-07 01:34:10 +00:00
.selectInput {
position: relative;
display: inline-block;
margin-bottom: 28px;
2021-12-14 23:28:54 +00:00
max-width: 444px;
2021-12-07 01:34:10 +00:00
}
.label {
font-weight: 600;
font-size: 18px;
margin-top: 0;
margin-bottom: 12px;
}
.selectTrigger {
display: flex;
align-items: center;
justify-content: space-between;
padding: 0 12px;
background-color: var(--bgColor1);
border-radius: 8px;
border: 1px solid var(--inputBorderColor);
font-size: 15px;
color: var(--textColor1);
height: 40px;
2021-12-10 18:54:18 +00:00
max-width: 100%;
2021-12-14 23:28:54 +00:00
width: 100%;
2021-12-07 01:34:10 +00:00
}
.selectedItem {
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
padding-right: 20px;
}
.popover {
2021-12-14 23:28:54 +00:00
position: absolute;
margin-top: 5px;
width: 100%;
z-index: 1;
2021-12-07 01:34:10 +00:00
}