2018-11-23 07:04:42 +00:00
|
|
|
.enhancedSelect {
|
2019-04-13 03:25:58 +00:00
|
|
|
composes: input from '~Components/Form/Input.css';
|
2018-11-23 07:04:42 +00:00
|
|
|
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
}
|
|
|
|
|
2020-11-21 04:33:10 +00:00
|
|
|
.editableContainer {
|
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
|
2018-11-23 07:04:42 +00:00
|
|
|
.hasError {
|
2019-04-13 03:25:58 +00:00
|
|
|
composes: hasError from '~Components/Form/Input.css';
|
2018-11-23 07:04:42 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.hasWarning {
|
2019-04-13 03:25:58 +00:00
|
|
|
composes: hasWarning from '~Components/Form/Input.css';
|
2018-11-23 07:04:42 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.isDisabled {
|
|
|
|
opacity: 0.7;
|
2024-03-14 12:31:09 +00:00
|
|
|
cursor: not-allowed !important;
|
2018-11-23 07:04:42 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.dropdownArrowContainer {
|
|
|
|
margin-left: 12px;
|
|
|
|
}
|
|
|
|
|
2020-11-21 04:33:10 +00:00
|
|
|
.dropdownArrowContainerEditable {
|
|
|
|
position: absolute;
|
|
|
|
top: 0;
|
|
|
|
right: 0;
|
|
|
|
padding-right: 17px;
|
|
|
|
width: 30%;
|
|
|
|
height: 35px;
|
|
|
|
text-align: right;
|
|
|
|
}
|
|
|
|
|
2018-11-23 07:04:42 +00:00
|
|
|
.dropdownArrowContainerDisabled {
|
|
|
|
composes: dropdownArrowContainer;
|
|
|
|
|
2022-09-10 21:29:38 +00:00
|
|
|
color: var(--disabledInputColor);
|
2018-11-23 07:04:42 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.optionsContainer {
|
2019-06-14 03:54:25 +00:00
|
|
|
z-index: $popperZIndex;
|
2018-11-23 07:04:42 +00:00
|
|
|
width: auto;
|
|
|
|
}
|
|
|
|
|
|
|
|
.options {
|
2019-06-14 03:54:25 +00:00
|
|
|
composes: scroller from '~Components/Scroller/Scroller.css';
|
|
|
|
|
2022-09-10 21:29:38 +00:00
|
|
|
border: 1px solid var(--inputBorderColor);
|
2018-11-23 07:04:42 +00:00
|
|
|
border-radius: 4px;
|
2022-09-10 21:29:38 +00:00
|
|
|
background-color: var(--inputBackgroundColor);
|
2018-11-23 07:04:42 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.optionsModal {
|
|
|
|
display: flex;
|
|
|
|
justify-content: center;
|
|
|
|
max-width: 90%;
|
2020-04-09 01:24:10 +00:00
|
|
|
max-height: 100%;
|
2018-11-23 07:04:42 +00:00
|
|
|
width: 350px !important;
|
|
|
|
height: auto !important;
|
|
|
|
}
|
|
|
|
|
|
|
|
.optionsModalBody {
|
2019-04-13 03:25:58 +00:00
|
|
|
composes: modalBody from '~Components/Modal/ModalBody.css';
|
2018-11-23 07:04:42 +00:00
|
|
|
|
|
|
|
display: flex;
|
|
|
|
justify-content: center;
|
|
|
|
flex-direction: column;
|
|
|
|
padding: 10px 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.optionsModalScroller {
|
2019-04-13 03:25:58 +00:00
|
|
|
composes: scroller from '~Components/Scroller/Scroller.css';
|
2018-11-23 07:04:42 +00:00
|
|
|
|
2022-09-10 21:29:38 +00:00
|
|
|
border: 1px solid var(--inputBorderColor);
|
2018-11-23 07:04:42 +00:00
|
|
|
border-radius: 4px;
|
2022-09-10 21:29:38 +00:00
|
|
|
background-color: var(--inputBackgroundColor);
|
2018-11-23 07:04:42 +00:00
|
|
|
}
|
2020-11-21 04:33:10 +00:00
|
|
|
|
|
|
|
.loading {
|
|
|
|
display: inline-block;
|
|
|
|
margin: 5px -5px 5px 0;
|
|
|
|
}
|
2021-02-10 01:32:41 +00:00
|
|
|
|
|
|
|
.mobileCloseButtonContainer {
|
|
|
|
display: flex;
|
|
|
|
justify-content: flex-end;
|
|
|
|
height: 40px;
|
2022-09-10 21:29:38 +00:00
|
|
|
border-bottom: 1px solid var(--borderColor);
|
2021-02-10 01:32:41 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.mobileCloseButton {
|
|
|
|
width: 40px;
|
|
|
|
height: 40px;
|
|
|
|
text-align: center;
|
|
|
|
line-height: 40px;
|
|
|
|
|
|
|
|
&:hover {
|
2022-09-10 21:29:38 +00:00
|
|
|
color: var(--modalCloseButtonHoverColor);
|
2021-02-10 01:32:41 +00:00
|
|
|
}
|
|
|
|
}
|