2025-08-22 11:57:56 +02:00
|
|
|
@use '../../src/styles/variables';
|
|
|
|
|
|
|
|
.input-box {
|
|
|
|
margin-left: -1rem;
|
|
|
|
|
2025-09-02 13:58:35 +02:00
|
|
|
.d-none {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
2025-08-22 11:57:56 +02:00
|
|
|
i {
|
2025-09-02 13:58:35 +02:00
|
|
|
|
|
|
|
top: 10px;
|
|
|
|
left: 1rem;
|
|
|
|
|
|
|
|
&::before {
|
|
|
|
left: 10px;
|
|
|
|
top: 10px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.disabled & {
|
|
|
|
color: #525668;
|
|
|
|
fill: #525668;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.search-placeholder,
|
|
|
|
.selector-button {
|
2025-08-22 11:57:56 +02:00
|
|
|
position: relative;
|
2025-09-02 13:58:35 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.search-placeholder {
|
|
|
|
top: 30px;
|
|
|
|
left: 16px;
|
|
|
|
}
|
2025-08-22 11:57:56 +02:00
|
|
|
|
2025-09-02 13:58:35 +02:00
|
|
|
.selector-button {
|
|
|
|
top: -30px;
|
|
|
|
right: -177px;
|
2025-08-22 11:57:56 +02:00
|
|
|
}
|
|
|
|
|
2025-09-02 13:58:35 +02:00
|
|
|
|
2025-08-22 11:57:56 +02:00
|
|
|
input {
|
|
|
|
|
|
|
|
border-radius: 8px;
|
|
|
|
border: 1px solid #8D91A4;
|
|
|
|
background: var(--color-background-card-on-base, #FFF);
|
|
|
|
|
|
|
|
|
2025-09-02 13:58:35 +02:00
|
|
|
padding: 10px 40px;
|
|
|
|
|
|
|
|
width: 210px;
|
|
|
|
height: 42px;
|
2025-08-22 11:57:56 +02:00
|
|
|
|
|
|
|
overflow: hidden;
|
|
|
|
color: var(--color-text-secondary, #525668);
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
font-size: var(--Font-Base, 14px);
|
|
|
|
|
2025-09-02 13:58:35 +02:00
|
|
|
|
|
|
|
.disabled & {
|
|
|
|
border-color: #525668;
|
|
|
|
}
|
2025-08-22 11:57:56 +02:00
|
|
|
}
|
|
|
|
}
|