2024-08-20 15:57:58 +02:00
|
|
|
.inputGroup-element {
|
|
|
|
|
display: flex;
|
|
|
|
|
align-items: flex-end;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.inputGroup-container {
|
|
|
|
|
flex-grow: 1;
|
|
|
|
|
}
|
|
|
|
|
|
2024-09-20 11:03:04 +02:00
|
|
|
.inputGroup-helper {
|
|
|
|
|
height: 15px;
|
|
|
|
|
display: inline-block;
|
|
|
|
|
}
|
|
|
|
|
|
2024-08-20 15:57:58 +02:00
|
|
|
input.inputGroup-input {
|
|
|
|
|
border-top-right-radius: 0;
|
|
|
|
|
border-bottom-right-radius: 0;
|
|
|
|
|
border-right: none;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
select.inputGroup-select {
|
|
|
|
|
border-top-left-radius: 0;
|
|
|
|
|
border-bottom-left-radius: 0;
|
|
|
|
|
min-width: 110px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.inputGroup-unit {
|
|
|
|
|
display: flex;
|
|
|
|
|
align-items: center;
|
|
|
|
|
border: 1px solid var(--codex-border-color);
|
|
|
|
|
border-top-right-radius: var(--codex-border-radius);
|
|
|
|
|
border-bottom-right-radius: var(--codex-border-radius);
|
|
|
|
|
background-color: var(--codex-border-color);
|
2024-08-22 20:04:24 +02:00
|
|
|
padding: calc(0.5rem + 0.5px);
|
2024-08-21 17:14:40 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.inputGroup-inputContainer {
|
|
|
|
|
flex: 1;
|
2024-08-20 15:57:58 +02:00
|
|
|
}
|
2024-10-04 18:38:54 +02:00
|
|
|
|
|
|
|
|
.inputGroup-helpers {
|
|
|
|
|
display: flex;
|
|
|
|
|
justify-content: space-between;
|
|
|
|
|
align-items: center;
|
|
|
|
|
}
|