@ncds/ui-admin 1.3.0 → 1.4.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/cjs/assets/scripts/comboBox.js +262 -0
- package/dist/cjs/assets/scripts/datePicker.js +178 -60
- package/dist/cjs/assets/scripts/featuredIcon.js +95 -0
- package/dist/cjs/assets/scripts/fileInput/FileInput.js +183 -0
- package/dist/cjs/assets/scripts/fileInput/FileInputModel.js +246 -0
- package/dist/cjs/assets/scripts/fileInput/FileInputView.js +455 -0
- package/dist/cjs/assets/scripts/fileInput/const/classNames.js +35 -0
- package/dist/cjs/assets/scripts/fileInput/const/index.js +27 -0
- package/dist/cjs/assets/scripts/fileInput/const/types.js +13 -0
- package/dist/cjs/assets/scripts/fileInput/index.js +44 -0
- package/dist/cjs/assets/scripts/imageFileInput/ImageFileInput.js +187 -0
- package/dist/cjs/assets/scripts/imageFileInput/ImageFileInputModel.js +268 -0
- package/dist/cjs/assets/scripts/imageFileInput/ImageFileInputView.js +354 -0
- package/dist/cjs/assets/scripts/imageFileInput/const/classNames.js +41 -0
- package/dist/cjs/assets/scripts/imageFileInput/const/index.js +27 -0
- package/dist/cjs/assets/scripts/imageFileInput/const/types.js +13 -0
- package/dist/cjs/assets/scripts/imageFileInput/index.js +44 -0
- package/dist/cjs/assets/scripts/index.js +21 -1
- package/dist/cjs/assets/scripts/modal/Modal.js +116 -0
- package/dist/cjs/assets/scripts/modal/ModalActions.js +128 -0
- package/dist/cjs/assets/scripts/modal/ModalContent.js +46 -0
- package/dist/cjs/assets/scripts/modal/ModalHeader.js +115 -0
- package/dist/cjs/assets/scripts/modal/const/classNames.js +41 -0
- package/dist/cjs/assets/scripts/modal/const/index.js +27 -0
- package/dist/cjs/assets/scripts/modal/const/types.js +5 -0
- package/dist/cjs/assets/scripts/modal/index.js +61 -0
- package/dist/cjs/assets/scripts/modal/utils/contentUtils.js +35 -0
- package/dist/cjs/assets/scripts/notification/FloatingNotification.js +180 -0
- package/dist/cjs/assets/scripts/notification/FullWidthNotification.js +120 -0
- package/dist/cjs/assets/scripts/notification/Notification.js +113 -0
- package/dist/cjs/assets/scripts/notification/const/classNames.js +36 -0
- package/dist/cjs/assets/scripts/notification/const/icons.js +45 -0
- package/dist/cjs/assets/scripts/notification/const/index.js +74 -0
- package/dist/cjs/assets/scripts/notification/const/sizes.js +48 -0
- package/dist/cjs/assets/scripts/notification/const/types.js +5 -0
- package/dist/cjs/assets/scripts/notification/index.js +84 -0
- package/dist/cjs/assets/scripts/notification/utils.js +92 -0
- package/dist/cjs/assets/scripts/progress-bar/ProgressBar.js +272 -0
- package/dist/cjs/assets/scripts/progress-bar/index.js +12 -0
- package/dist/cjs/assets/scripts/selectBox.js +319 -0
- package/dist/cjs/assets/scripts/shared/ButtonCloseX.js +46 -0
- package/dist/cjs/assets/scripts/tag/Tag.js +268 -0
- package/dist/cjs/assets/scripts/tag/const/classNames.js +24 -0
- package/dist/cjs/assets/scripts/tag/const/index.js +38 -0
- package/dist/cjs/assets/scripts/tag/const/sizes.js +13 -0
- package/dist/cjs/assets/scripts/tag/const/types.js +5 -0
- package/dist/cjs/assets/scripts/tag/index.js +44 -0
- package/dist/cjs/assets/scripts/tooltip/Tooltip.js +380 -0
- package/dist/cjs/assets/scripts/tooltip/TooltipLayerManager.js +84 -0
- package/dist/cjs/assets/scripts/tooltip/const/classNames.js +29 -0
- package/dist/cjs/assets/scripts/tooltip/const/constants.js +56 -0
- package/dist/cjs/assets/scripts/tooltip/const/icons.js +15 -0
- package/dist/cjs/assets/scripts/tooltip/const/index.js +123 -0
- package/dist/cjs/assets/scripts/tooltip/const/templates.js +49 -0
- package/dist/cjs/assets/scripts/tooltip/const/types.js +5 -0
- package/dist/cjs/assets/scripts/tooltip/index.js +57 -0
- package/dist/cjs/assets/scripts/tooltip/utils.js +41 -0
- package/dist/cjs/assets/scripts/utils/selectbox/DOMRenderer.js +384 -0
- package/dist/cjs/assets/scripts/utils/selectbox/DropdownModel.js +361 -0
- package/dist/cjs/assets/scripts/utils/selectbox/SelectBoxController.js +681 -0
- package/dist/cjs/assets/scripts/utils/selectbox/UnifiedSelectBox.js +677 -0
- package/dist/cjs/constant/color.js +2 -0
- package/dist/cjs/src/components/button/Button.js +9 -35
- package/dist/cjs/src/components/button/ButtonGroup.js +9 -10
- package/dist/cjs/src/components/checkbox/Checkbox.js +20 -19
- package/dist/cjs/src/components/checkbox/CheckboxInput.js +22 -45
- package/dist/cjs/src/components/combobox/ComboBox.js +337 -0
- package/dist/cjs/src/components/combobox/index.js +12 -0
- package/dist/cjs/src/components/date-picker/CustomInput.js +52 -0
- package/dist/cjs/src/components/date-picker/DatePicker.js +86 -23
- package/dist/cjs/src/components/date-picker/RangeDatePicker.js +1 -1
- package/dist/cjs/src/components/{input → file-upload}/FileInput.js +17 -9
- package/dist/cjs/src/components/file-upload/index.js +16 -0
- package/dist/cjs/src/components/image-file-input/ImageFileInput.js +263 -0
- package/dist/cjs/src/components/image-file-input/components/ImagePreview.js +44 -0
- package/dist/cjs/src/components/image-file-input/index.js +16 -0
- package/dist/cjs/src/components/index.js +44 -0
- package/dist/cjs/src/components/input/InputBase.js +54 -10
- package/dist/cjs/src/components/input/Textarea.js +12 -20
- package/dist/cjs/src/components/input/index.js +0 -11
- package/dist/cjs/src/components/modal/Modal.js +7 -3
- package/dist/cjs/src/components/notification/FloatingNotification.js +34 -3
- package/dist/cjs/src/components/notification/FullWidthNotification.js +54 -5
- package/dist/cjs/src/components/pagination/NavButton.js +1 -13
- package/dist/cjs/src/components/pagination/Pagination.js +6 -20
- package/dist/cjs/src/components/progress-bar/ProgressBar.js +89 -20
- package/dist/cjs/src/components/progress-bar/components/SegmentBar.js +25 -0
- package/dist/cjs/src/components/progress-bar/components/SegmentLabels.js +74 -0
- package/dist/cjs/src/components/progress-bar/hooks/useProgressBar.js +119 -0
- package/dist/cjs/src/components/progress-bar/index.js +11 -0
- package/dist/cjs/src/components/progress-bar/types.js +5 -0
- package/dist/cjs/src/components/progress-bar/utils.js +31 -0
- package/dist/cjs/src/components/radio/Radio.js +5 -6
- package/dist/cjs/src/components/select/Select.js +7 -4
- package/dist/cjs/src/components/select-dropdown/SelectDropdown.js +146 -0
- package/dist/cjs/src/components/select-dropdown/index.js +12 -0
- package/dist/cjs/src/components/selectbox/SelectBox.js +283 -0
- package/dist/cjs/src/components/selectbox/index.js +12 -0
- package/dist/cjs/src/components/shared/hintText/HintText.js +1 -1
- package/dist/cjs/src/components/switch/Switch.js +123 -0
- package/dist/cjs/src/components/switch/index.js +12 -0
- package/dist/cjs/src/components/tab/HorizontalTab.js +8 -20
- package/dist/cjs/src/components/tab/TabButton.js +33 -16
- package/dist/cjs/src/components/tab/VerticalTab.js +15 -30
- package/dist/cjs/src/components/tag/Tag.js +92 -3
- package/dist/cjs/src/components/tooltip/Tooltip.js +125 -28
- package/dist/cjs/src/hooks/dropdown/index.js +47 -0
- package/dist/cjs/src/hooks/dropdown/useDropdown.js +109 -0
- package/dist/cjs/src/hooks/dropdown/useDropdownKeyboard.js +131 -0
- package/dist/cjs/src/hooks/dropdown/useDropdownPosition.js +27 -0
- package/dist/cjs/src/hooks/dropdown/useOutsideClick.js +33 -0
- package/dist/cjs/src/hooks/dropdown/useScrollLock.js +78 -0
- package/dist/cjs/src/hooks/dropdown/useWindowResize.js +52 -0
- package/dist/cjs/src/hooks/index.js +18 -1
- package/dist/cjs/src/types/dropdown/dropdown.js +5 -0
- package/dist/cjs/src/types/dropdown/index.js +27 -0
- package/dist/cjs/src/types/dropdown/option.js +5 -0
- package/dist/cjs/src/types/index.js +16 -0
- package/dist/cjs/src/utils/date-picker.js +37 -1
- package/dist/cjs/src/utils/dropdown/dropdownUtils.js +107 -0
- package/dist/cjs/src/utils/dropdown/index.js +27 -0
- package/dist/cjs/src/utils/dropdown/multiSelect.js +100 -0
- package/dist/cjs/src/utils/index.js +27 -0
- package/dist/esm/assets/scripts/comboBox.js +257 -0
- package/dist/esm/assets/scripts/datePicker.js +175 -59
- package/dist/esm/assets/scripts/featuredIcon.js +90 -0
- package/dist/esm/assets/scripts/fileInput/FileInput.js +178 -0
- package/dist/esm/assets/scripts/fileInput/FileInputModel.js +241 -0
- package/dist/esm/assets/scripts/fileInput/FileInputView.js +450 -0
- package/dist/esm/assets/scripts/fileInput/const/classNames.js +25 -0
- package/dist/esm/assets/scripts/fileInput/const/index.js +2 -0
- package/dist/esm/assets/scripts/fileInput/const/types.js +7 -0
- package/dist/esm/assets/scripts/fileInput/index.js +9 -0
- package/dist/esm/assets/scripts/imageFileInput/ImageFileInput.js +182 -0
- package/dist/esm/assets/scripts/imageFileInput/ImageFileInputModel.js +263 -0
- package/dist/esm/assets/scripts/imageFileInput/ImageFileInputView.js +349 -0
- package/dist/esm/assets/scripts/imageFileInput/const/classNames.js +30 -0
- package/dist/esm/assets/scripts/imageFileInput/const/index.js +2 -0
- package/dist/esm/assets/scripts/imageFileInput/const/types.js +7 -0
- package/dist/esm/assets/scripts/imageFileInput/index.js +9 -0
- package/dist/esm/assets/scripts/index.js +21 -1
- package/dist/esm/assets/scripts/modal/Modal.js +110 -0
- package/dist/esm/assets/scripts/modal/ModalActions.js +123 -0
- package/dist/esm/assets/scripts/modal/ModalContent.js +41 -0
- package/dist/esm/assets/scripts/modal/ModalHeader.js +110 -0
- package/dist/esm/assets/scripts/modal/const/classNames.js +31 -0
- package/dist/esm/assets/scripts/modal/const/index.js +2 -0
- package/dist/esm/assets/scripts/modal/const/types.js +1 -0
- package/dist/esm/assets/scripts/modal/index.js +15 -0
- package/dist/esm/assets/scripts/modal/utils/contentUtils.js +28 -0
- package/dist/esm/assets/scripts/notification/FloatingNotification.js +176 -0
- package/dist/esm/assets/scripts/notification/FullWidthNotification.js +115 -0
- package/dist/esm/assets/scripts/notification/Notification.js +108 -0
- package/dist/esm/assets/scripts/notification/const/classNames.js +30 -0
- package/dist/esm/assets/scripts/notification/const/icons.js +39 -0
- package/dist/esm/assets/scripts/notification/const/index.js +3 -0
- package/dist/esm/assets/scripts/notification/const/sizes.js +42 -0
- package/dist/esm/assets/scripts/notification/const/types.js +1 -0
- package/dist/esm/assets/scripts/notification/index.js +10 -0
- package/dist/esm/assets/scripts/notification/utils.js +79 -0
- package/dist/esm/assets/scripts/progress-bar/ProgressBar.js +267 -0
- package/dist/esm/assets/scripts/progress-bar/index.js +1 -0
- package/dist/esm/assets/scripts/selectBox.js +314 -0
- package/dist/esm/assets/scripts/shared/ButtonCloseX.js +38 -0
- package/dist/esm/assets/scripts/tag/Tag.js +263 -0
- package/dist/esm/assets/scripts/tag/const/classNames.js +16 -0
- package/dist/esm/assets/scripts/tag/const/index.js +3 -0
- package/dist/esm/assets/scripts/tag/const/sizes.js +7 -0
- package/dist/esm/assets/scripts/tag/const/types.js +1 -0
- package/dist/esm/assets/scripts/tag/index.js +9 -0
- package/dist/esm/assets/scripts/tooltip/Tooltip.js +375 -0
- package/dist/esm/assets/scripts/tooltip/TooltipLayerManager.js +79 -0
- package/dist/esm/assets/scripts/tooltip/const/classNames.js +23 -0
- package/dist/esm/assets/scripts/tooltip/const/constants.js +50 -0
- package/dist/esm/assets/scripts/tooltip/const/icons.js +9 -0
- package/dist/esm/assets/scripts/tooltip/const/index.js +4 -0
- package/dist/esm/assets/scripts/tooltip/const/templates.js +42 -0
- package/dist/esm/assets/scripts/tooltip/const/types.js +1 -0
- package/dist/esm/assets/scripts/tooltip/index.js +10 -0
- package/dist/esm/assets/scripts/tooltip/utils.js +35 -0
- package/dist/esm/assets/scripts/utils/selectbox/DOMRenderer.js +379 -0
- package/dist/esm/assets/scripts/utils/selectbox/DropdownModel.js +356 -0
- package/dist/esm/assets/scripts/utils/selectbox/SelectBoxController.js +676 -0
- package/dist/esm/assets/scripts/utils/selectbox/UnifiedSelectBox.js +672 -0
- package/dist/esm/constant/color.js +2 -0
- package/dist/esm/src/components/button/Button.js +10 -36
- package/dist/esm/src/components/button/ButtonGroup.js +9 -10
- package/dist/esm/src/components/checkbox/Checkbox.js +21 -19
- package/dist/esm/src/components/checkbox/CheckboxInput.js +24 -47
- package/dist/esm/src/components/combobox/ComboBox.js +330 -0
- package/dist/esm/src/components/combobox/index.js +1 -0
- package/dist/esm/src/components/date-picker/CustomInput.js +45 -0
- package/dist/esm/src/components/date-picker/DatePicker.js +87 -24
- package/dist/esm/src/components/date-picker/RangeDatePicker.js +1 -1
- package/dist/esm/src/components/{input → file-upload}/FileInput.js +17 -9
- package/dist/esm/src/components/file-upload/index.js +1 -0
- package/dist/esm/src/components/image-file-input/ImageFileInput.js +256 -0
- package/dist/esm/src/components/image-file-input/components/ImagePreview.js +37 -0
- package/dist/esm/src/components/image-file-input/index.js +1 -0
- package/dist/esm/src/components/index.js +4 -0
- package/dist/esm/src/components/input/InputBase.js +55 -11
- package/dist/esm/src/components/input/Textarea.js +12 -20
- package/dist/esm/src/components/input/index.js +1 -2
- package/dist/esm/src/components/modal/Modal.js +7 -3
- package/dist/esm/src/components/notification/FloatingNotification.js +35 -4
- package/dist/esm/src/components/notification/FullWidthNotification.js +55 -6
- package/dist/esm/src/components/pagination/NavButton.js +1 -13
- package/dist/esm/src/components/pagination/Pagination.js +6 -20
- package/dist/esm/src/components/progress-bar/ProgressBar.js +89 -20
- package/dist/esm/src/components/progress-bar/components/SegmentBar.js +18 -0
- package/dist/esm/src/components/progress-bar/components/SegmentLabels.js +66 -0
- package/dist/esm/src/components/progress-bar/hooks/useProgressBar.js +112 -0
- package/dist/esm/src/components/progress-bar/index.js +2 -1
- package/dist/esm/src/components/progress-bar/types.js +1 -0
- package/dist/esm/src/components/progress-bar/utils.js +22 -0
- package/dist/esm/src/components/radio/Radio.js +5 -5
- package/dist/esm/src/components/select/Select.js +7 -4
- package/dist/esm/src/components/select-dropdown/SelectDropdown.js +139 -0
- package/dist/esm/src/components/select-dropdown/index.js +1 -0
- package/dist/esm/src/components/selectbox/SelectBox.js +276 -0
- package/dist/esm/src/components/selectbox/index.js +1 -0
- package/dist/esm/src/components/shared/hintText/HintText.js +1 -1
- package/dist/esm/src/components/switch/Switch.js +116 -0
- package/dist/esm/src/components/switch/index.js +1 -0
- package/dist/esm/src/components/tab/HorizontalTab.js +7 -19
- package/dist/esm/src/components/tab/TabButton.js +34 -17
- package/dist/esm/src/components/tab/VerticalTab.js +15 -30
- package/dist/esm/src/components/tag/Tag.js +92 -3
- package/dist/esm/src/components/tooltip/Tooltip.js +125 -28
- package/dist/esm/src/hooks/dropdown/index.js +6 -0
- package/dist/esm/src/hooks/dropdown/useDropdown.js +102 -0
- package/dist/esm/src/hooks/dropdown/useDropdownKeyboard.js +124 -0
- package/dist/esm/src/hooks/dropdown/useDropdownPosition.js +20 -0
- package/dist/esm/src/hooks/dropdown/useOutsideClick.js +26 -0
- package/dist/esm/src/hooks/dropdown/useScrollLock.js +71 -0
- package/dist/esm/src/hooks/dropdown/useWindowResize.js +45 -0
- package/dist/esm/src/hooks/index.js +4 -1
- package/dist/esm/src/types/dropdown/dropdown.js +1 -0
- package/dist/esm/src/types/dropdown/index.js +2 -0
- package/dist/esm/src/types/dropdown/option.js +1 -0
- package/dist/esm/src/types/index.js +2 -0
- package/dist/esm/src/utils/date-picker.js +33 -1
- package/dist/esm/src/utils/dropdown/dropdownUtils.js +97 -0
- package/dist/esm/src/utils/dropdown/index.js +2 -0
- package/dist/esm/src/utils/dropdown/multiSelect.js +88 -0
- package/dist/esm/src/utils/index.js +4 -0
- package/dist/types/assets/scripts/comboBox.d.ts +79 -0
- package/dist/types/assets/scripts/datePicker.d.ts +16 -13
- package/dist/types/assets/scripts/featuredIcon.d.ts +23 -0
- package/dist/types/assets/scripts/fileInput/FileInput.d.ts +67 -0
- package/dist/types/assets/scripts/fileInput/FileInputModel.d.ts +70 -0
- package/dist/types/assets/scripts/fileInput/FileInputView.d.ts +77 -0
- package/dist/types/assets/scripts/fileInput/const/classNames.d.ts +17 -0
- package/dist/types/assets/scripts/fileInput/const/index.d.ts +3 -0
- package/dist/types/assets/scripts/fileInput/const/types.d.ts +132 -0
- package/dist/types/assets/scripts/fileInput/index.d.ts +4 -0
- package/dist/types/assets/scripts/imageFileInput/ImageFileInput.d.ts +64 -0
- package/dist/types/assets/scripts/imageFileInput/ImageFileInputModel.d.ts +74 -0
- package/dist/types/assets/scripts/imageFileInput/ImageFileInputView.d.ts +80 -0
- package/dist/types/assets/scripts/imageFileInput/const/classNames.d.ts +20 -0
- package/dist/types/assets/scripts/imageFileInput/const/index.d.ts +3 -0
- package/dist/types/assets/scripts/imageFileInput/const/types.d.ts +126 -0
- package/dist/types/assets/scripts/imageFileInput/index.d.ts +4 -0
- package/dist/types/assets/scripts/index.d.ts +28 -2
- package/dist/types/assets/scripts/modal/Modal.d.ts +28 -0
- package/dist/types/assets/scripts/modal/ModalActions.d.ts +19 -0
- package/dist/types/assets/scripts/modal/ModalContent.d.ts +14 -0
- package/dist/types/assets/scripts/modal/ModalHeader.d.ts +16 -0
- package/dist/types/assets/scripts/modal/const/classNames.d.ts +23 -0
- package/dist/types/assets/scripts/modal/const/index.d.ts +3 -0
- package/dist/types/assets/scripts/modal/const/types.d.ts +62 -0
- package/dist/types/assets/scripts/modal/index.d.ts +8 -0
- package/dist/types/assets/scripts/modal/utils/contentUtils.d.ts +11 -0
- package/dist/types/assets/scripts/notification/FloatingNotification.d.ts +25 -0
- package/dist/types/assets/scripts/notification/FullWidthNotification.d.ts +22 -0
- package/dist/types/assets/scripts/notification/Notification.d.ts +22 -0
- package/dist/types/assets/scripts/notification/const/classNames.d.ts +30 -0
- package/dist/types/assets/scripts/notification/const/icons.d.ts +26 -0
- package/dist/types/assets/scripts/notification/const/index.d.ts +5 -0
- package/dist/types/assets/scripts/notification/const/sizes.d.ts +28 -0
- package/dist/types/assets/scripts/notification/const/types.d.ts +19 -0
- package/dist/types/assets/scripts/notification/index.d.ts +7 -0
- package/dist/types/assets/scripts/notification/utils.d.ts +9 -0
- package/dist/types/assets/scripts/progress-bar/ProgressBar.d.ts +68 -0
- package/dist/types/assets/scripts/progress-bar/index.d.ts +2 -0
- package/dist/types/assets/scripts/selectBox.d.ts +77 -0
- package/dist/types/assets/scripts/shared/ButtonCloseX.d.ts +6 -0
- package/dist/types/assets/scripts/tag/Tag.d.ts +28 -0
- package/dist/types/assets/scripts/tag/const/classNames.d.ts +12 -0
- package/dist/types/assets/scripts/tag/const/index.d.ts +4 -0
- package/dist/types/assets/scripts/tag/const/sizes.d.ts +8 -0
- package/dist/types/assets/scripts/tag/const/types.d.ts +34 -0
- package/dist/types/assets/scripts/tag/index.d.ts +4 -0
- package/dist/types/assets/scripts/tooltip/Tooltip.d.ts +55 -0
- package/dist/types/assets/scripts/tooltip/TooltipLayerManager.d.ts +22 -0
- package/dist/types/assets/scripts/tooltip/const/classNames.d.ts +18 -0
- package/dist/types/assets/scripts/tooltip/const/constants.d.ts +34 -0
- package/dist/types/assets/scripts/tooltip/const/icons.d.ts +5 -0
- package/dist/types/assets/scripts/tooltip/const/index.d.ts +6 -0
- package/dist/types/assets/scripts/tooltip/const/templates.d.ts +17 -0
- package/dist/types/assets/scripts/tooltip/const/types.d.ts +15 -0
- package/dist/types/assets/scripts/tooltip/index.d.ts +7 -0
- package/dist/types/assets/scripts/tooltip/utils.d.ts +3 -0
- package/dist/types/assets/scripts/utils/selectbox/DOMRenderer.d.ts +108 -0
- package/dist/types/assets/scripts/utils/selectbox/DropdownModel.d.ts +154 -0
- package/dist/types/assets/scripts/utils/selectbox/SelectBoxController.d.ts +171 -0
- package/dist/types/assets/scripts/utils/selectbox/UnifiedSelectBox.d.ts +80 -0
- package/dist/types/constant/color.d.ts +3 -1
- package/dist/types/src/components/button/Button.d.ts +14 -12
- package/dist/types/src/components/button/ButtonGroup.d.ts +4 -289
- package/dist/types/src/components/checkbox/Checkbox.d.ts +2 -3
- package/dist/types/src/components/combobox/ComboBox.d.ts +28 -0
- package/dist/types/src/components/combobox/index.d.ts +3 -0
- package/dist/types/src/components/date-picker/CustomInput.d.ts +12 -0
- package/dist/types/src/components/date-picker/DatePicker.d.ts +2 -0
- package/dist/types/src/components/{input → file-upload}/FileInput.d.ts +1 -1
- package/dist/types/src/components/file-upload/index.d.ts +2 -0
- package/dist/types/src/components/image-file-input/ImageFileInput.d.ts +78 -0
- package/dist/types/src/components/image-file-input/components/ImagePreview.d.ts +6 -0
- package/dist/types/src/components/image-file-input/index.d.ts +2 -0
- package/dist/types/src/components/index.d.ts +4 -0
- package/dist/types/src/components/input/InputBase.d.ts +2 -0
- package/dist/types/src/components/input/index.d.ts +0 -1
- package/dist/types/src/components/modal/Modal.d.ts +3 -2
- package/dist/types/src/components/notification/FloatingNotification.d.ts +5 -0
- package/dist/types/src/components/notification/FullWidthNotification.d.ts +15 -1
- package/dist/types/src/components/notification/Notification.d.ts +8 -2
- package/dist/types/src/components/pagination/NavButton.d.ts +1 -4
- package/dist/types/src/components/pagination/Pagination.d.ts +2 -13
- package/dist/types/src/components/progress-bar/ProgressBar.d.ts +2 -6
- package/dist/types/src/components/progress-bar/components/SegmentBar.d.ts +8 -0
- package/dist/types/src/components/progress-bar/components/SegmentLabels.d.ts +16 -0
- package/dist/types/src/components/progress-bar/hooks/useProgressBar.d.ts +14 -0
- package/dist/types/src/components/progress-bar/index.d.ts +1 -0
- package/dist/types/src/components/progress-bar/types.d.ts +16 -0
- package/dist/types/src/components/progress-bar/utils.d.ts +13 -0
- package/dist/types/src/components/radio/Radio.d.ts +2 -3
- package/dist/types/src/components/select/Select.d.ts +1 -4
- package/dist/types/src/components/select-dropdown/SelectDropdown.d.ts +28 -0
- package/dist/types/src/components/select-dropdown/index.d.ts +2 -0
- package/dist/types/src/components/selectbox/SelectBox.d.ts +25 -0
- package/dist/types/src/components/selectbox/index.d.ts +2 -0
- package/dist/types/src/components/switch/Switch.d.ts +22 -0
- package/dist/types/src/components/switch/index.d.ts +3 -0
- package/dist/types/src/components/tab/HorizontalTab.d.ts +1 -2
- package/dist/types/src/components/tab/TabButton.d.ts +9 -12
- package/dist/types/src/components/tab/VerticalTab.d.ts +2 -2
- package/dist/types/src/components/tag/Tag.d.ts +3 -1
- package/dist/types/src/components/tooltip/Tooltip.d.ts +4 -2
- package/dist/types/src/hooks/dropdown/index.d.ts +7 -0
- package/dist/types/src/hooks/dropdown/useDropdown.d.ts +30 -0
- package/dist/types/src/hooks/dropdown/useDropdownKeyboard.d.ts +11 -0
- package/dist/types/src/hooks/dropdown/useDropdownPosition.d.ts +10 -0
- package/dist/types/src/hooks/dropdown/useOutsideClick.d.ts +6 -0
- package/dist/types/src/hooks/dropdown/useScrollLock.d.ts +5 -0
- package/dist/types/src/hooks/dropdown/useWindowResize.d.ts +8 -0
- package/dist/types/src/hooks/index.d.ts +2 -1
- package/dist/types/src/types/dropdown/dropdown.d.ts +40 -0
- package/dist/types/src/types/dropdown/index.d.ts +3 -0
- package/dist/types/src/types/dropdown/option.d.ts +20 -0
- package/dist/types/src/types/index.d.ts +2 -0
- package/dist/types/src/utils/date-picker.d.ts +3 -0
- package/dist/types/src/utils/dropdown/dropdownUtils.d.ts +18 -0
- package/dist/types/src/utils/dropdown/index.d.ts +3 -0
- package/dist/types/src/utils/dropdown/multiSelect.d.ts +32 -0
- package/dist/types/src/utils/index.d.ts +3 -0
- package/dist/ui-admin/assets/styles/style.css +1744 -358
- package/package.json +8 -4
|
@@ -51,6 +51,14 @@
|
|
|
51
51
|
--orange-500: #e4501e;
|
|
52
52
|
--orange-600: #b93815;
|
|
53
53
|
--orange-700: #772917;
|
|
54
|
+
--violet-50: #fbfaff;
|
|
55
|
+
--violet-100: #ece9fe;
|
|
56
|
+
--violet-200: #ddd6fe;
|
|
57
|
+
--violet-300: #c3b5fd;
|
|
58
|
+
--violet-400: #a48afb;
|
|
59
|
+
--violet-500: #6927da;
|
|
60
|
+
--violet-600: #5720b7;
|
|
61
|
+
--violet-700: #491c96;
|
|
54
62
|
--focus-ring-4px-primary-100: 0px 0px 0px 3px #ffeaee;
|
|
55
63
|
--focus-ring-4px-gray-100: 0px 0px 0px 3px #f2f4f7;
|
|
56
64
|
--focus-ring-4px-error-100: 0px 0px 0px 3px #fee4e2;
|
|
@@ -69,7 +77,21 @@
|
|
|
69
77
|
--shadow-xl: 0px 20px 24px -4px #10182814, 0px 8px 8px -4px #10182808;
|
|
70
78
|
--shadow-2xl: 0px 24px 48px -12px #1018282e;
|
|
71
79
|
--shadow-3xl: 0px 32px 64px -12px #10182824;
|
|
72
|
-
--
|
|
80
|
+
--shadow-tooltip: 0px 12px 16px -4px rgba(16, 24, 40, 0.08), 0px 0px 1px 0px rgba(0, 0, 0, 0.5),
|
|
81
|
+
0px 4px 6px -2px rgba(16, 24, 40, 0.03);
|
|
82
|
+
--spacing-xxs: 3px;
|
|
83
|
+
--spacing-xs: 4px;
|
|
84
|
+
--spacing-sm: 6px;
|
|
85
|
+
--spacing-md: 8px;
|
|
86
|
+
--spacing-lg: 12px;
|
|
87
|
+
--spacing-xl: 16px;
|
|
88
|
+
--border-radius-xxs: 3px;
|
|
89
|
+
--border-radius-xs: 4px;
|
|
90
|
+
--border-radius-sm: 6px;
|
|
91
|
+
--border-radius-md: 8px;
|
|
92
|
+
--border-radius-lg: 12px;
|
|
93
|
+
--max-width-tooltip: 400px;
|
|
94
|
+
--font-families-commerce-sans: CommerceSans;
|
|
73
95
|
--line-heights-display-xl: 76px;
|
|
74
96
|
--line-heights-display-lg: 60px;
|
|
75
97
|
--line-heights-display-md: 46px;
|
|
@@ -283,25 +305,25 @@ button {
|
|
|
283
305
|
}
|
|
284
306
|
.ncua-btn--secondary {
|
|
285
307
|
box-shadow: var(--shadow-xs);
|
|
286
|
-
background-color: var(--
|
|
287
|
-
border: 1px solid var(--
|
|
288
|
-
color: var(--
|
|
308
|
+
background-color: var(--gray-500);
|
|
309
|
+
border: 1px solid var(--gray-600);
|
|
310
|
+
color: var(--base-white);
|
|
289
311
|
}
|
|
290
312
|
.ncua-btn--secondary:hover:not([disabled], .is-disable) {
|
|
291
|
-
background-color: var(--
|
|
292
|
-
border: 1px solid var(--
|
|
293
|
-
color: var(--
|
|
313
|
+
background-color: var(--gray-600);
|
|
314
|
+
border: 1px solid var(--gray-700);
|
|
315
|
+
color: var(--base-white);
|
|
294
316
|
}
|
|
295
317
|
.ncua-btn--secondary:focus:not([disabled], .is-disabled) {
|
|
296
|
-
background-color: var(--
|
|
297
|
-
border: 1px solid var(--
|
|
298
|
-
color: var(--
|
|
299
|
-
box-shadow: var(--shadow-xs-focused-
|
|
318
|
+
background-color: var(--gray-500);
|
|
319
|
+
border: 1px solid var(--gray-600);
|
|
320
|
+
color: var(--base-white);
|
|
321
|
+
box-shadow: var(--shadow-xs-focused-3px-gray-100);
|
|
300
322
|
}
|
|
301
323
|
.ncua-btn--secondary:disabled, .ncua-btn--secondary.is-disable {
|
|
302
|
-
background-color: var(--
|
|
303
|
-
border: 1px solid var(--
|
|
304
|
-
color: var(--
|
|
324
|
+
background-color: var(--gray-100);
|
|
325
|
+
border: 1px solid var(--gray-200);
|
|
326
|
+
color: var(--gray-200);
|
|
305
327
|
cursor: default;
|
|
306
328
|
}
|
|
307
329
|
.ncua-btn--secondary-gray {
|
|
@@ -331,6 +353,7 @@ button {
|
|
|
331
353
|
color: var(--blue-500);
|
|
332
354
|
}
|
|
333
355
|
.ncua-btn--tertiary:hover:not([disabled], .is-disable) {
|
|
356
|
+
background-color: var(--blue-100);
|
|
334
357
|
color: var(--blue-600);
|
|
335
358
|
}
|
|
336
359
|
.ncua-btn--tertiary:disabled, .ncua-btn--tertiary.is-disable {
|
|
@@ -341,53 +364,64 @@ button {
|
|
|
341
364
|
color: var(--gray-700);
|
|
342
365
|
}
|
|
343
366
|
.ncua-btn--tertiary-gray:hover:not([disabled], .is-disable) {
|
|
367
|
+
background-color: var(--gray-100);
|
|
344
368
|
color: var(--gray-700);
|
|
345
369
|
}
|
|
346
370
|
.ncua-btn--tertiary-gray:disabled, .ncua-btn--tertiary-gray.is-disable {
|
|
347
371
|
color: var(--gray-200);
|
|
348
372
|
cursor: default;
|
|
349
373
|
}
|
|
350
|
-
.ncua-btn--
|
|
374
|
+
.ncua-btn--text {
|
|
351
375
|
color: var(--blue-500);
|
|
352
376
|
}
|
|
353
|
-
.ncua-btn--
|
|
377
|
+
.ncua-btn--text:hover:not([disabled], .is-disable) {
|
|
354
378
|
color: var(--blue-600);
|
|
355
379
|
}
|
|
356
|
-
.ncua-btn--
|
|
380
|
+
.ncua-btn--text:disabled, .ncua-btn--text.is-disable {
|
|
357
381
|
color: var(--gray-200);
|
|
358
382
|
cursor: default;
|
|
359
383
|
}
|
|
360
|
-
.ncua-btn--
|
|
384
|
+
.ncua-btn--text-gray {
|
|
361
385
|
color: var(--gray-500);
|
|
362
386
|
}
|
|
363
|
-
.ncua-btn--
|
|
387
|
+
.ncua-btn--text-gray:hover:not([disabled], .is-disable) {
|
|
364
388
|
color: var(--gray-700);
|
|
365
389
|
}
|
|
366
|
-
.ncua-btn--
|
|
390
|
+
.ncua-btn--text-gray:disabled, .ncua-btn--text-gray.is-disable {
|
|
391
|
+
color: var(--gray-200);
|
|
392
|
+
cursor: default;
|
|
393
|
+
}
|
|
394
|
+
.ncua-btn--text-red {
|
|
395
|
+
color: var(--primary-red-600);
|
|
396
|
+
}
|
|
397
|
+
.ncua-btn--text-red:hover:not([disabled], .is-disable) {
|
|
398
|
+
color: var(--primary-red-700);
|
|
399
|
+
}
|
|
400
|
+
.ncua-btn--text-red:disabled, .ncua-btn--text-red.is-disable {
|
|
367
401
|
color: var(--gray-200);
|
|
368
402
|
cursor: default;
|
|
369
403
|
}
|
|
370
404
|
.ncua-btn--destructive {
|
|
371
405
|
box-shadow: var(--shadow-xs);
|
|
372
|
-
background-color: var(--
|
|
406
|
+
background-color: var(--base-white);
|
|
373
407
|
border: 1px solid var(--primary-red-600);
|
|
374
|
-
color: var(--
|
|
408
|
+
color: var(--primary-red-600);
|
|
375
409
|
}
|
|
376
410
|
.ncua-btn--destructive:hover:not([disabled], .is-disable) {
|
|
377
|
-
background-color: var(--primary-red-
|
|
411
|
+
background-color: var(--primary-red-100);
|
|
378
412
|
border: 1px solid var(--primary-red-700);
|
|
379
|
-
color: var(--
|
|
413
|
+
color: var(--primary-red-700);
|
|
380
414
|
}
|
|
381
415
|
.ncua-btn--destructive:focus:not([disabled], .is-disabled) {
|
|
382
|
-
background-color: var(--
|
|
416
|
+
background-color: var(--base-white);
|
|
383
417
|
border: 1px solid var(--primary-red-600);
|
|
384
|
-
color: var(--
|
|
385
|
-
box-shadow: var(--shadow-xs-focused-
|
|
418
|
+
color: var(--primary-red-600);
|
|
419
|
+
box-shadow: var(--shadow-xs-focused-3px-error-100);
|
|
386
420
|
}
|
|
387
421
|
.ncua-btn--destructive:disabled, .ncua-btn--destructive.is-disable {
|
|
388
|
-
background-color: var(--
|
|
389
|
-
border: 1px solid var(--primary-red-
|
|
390
|
-
color: var(--primary-red-
|
|
422
|
+
background-color: var(--base-white);
|
|
423
|
+
border: 1px solid var(--primary-red-200);
|
|
424
|
+
color: var(--primary-red-200);
|
|
391
425
|
cursor: default;
|
|
392
426
|
}
|
|
393
427
|
.ncua-btn--xxs {
|
|
@@ -463,7 +497,7 @@ button {
|
|
|
463
497
|
z-index: 0;
|
|
464
498
|
}
|
|
465
499
|
|
|
466
|
-
[class*=ncua-btn--
|
|
500
|
+
[class*=ncua-btn--text] {
|
|
467
501
|
padding: 0;
|
|
468
502
|
height: auto !important;
|
|
469
503
|
background-color: transparent !important;
|
|
@@ -518,25 +552,13 @@ button {
|
|
|
518
552
|
line-height: var(--line-heights-xs);
|
|
519
553
|
font-weight: var(--font-weights-commerce-sans-1);
|
|
520
554
|
}
|
|
521
|
-
.ncua-button-group__item
|
|
522
|
-
text-decoration: none;
|
|
523
|
-
}
|
|
524
|
-
.ncua-button-group__item[href]:hover {
|
|
525
|
-
text-decoration: none;
|
|
526
|
-
}
|
|
527
|
-
.ncua-button-group__item:first-child {
|
|
555
|
+
:where(.ncua-button-group__item):first-child {
|
|
528
556
|
padding-left: 0;
|
|
529
557
|
}
|
|
530
|
-
.ncua-button-group__item:last-child {
|
|
558
|
+
:where(.ncua-button-group__item):last-child {
|
|
531
559
|
padding-right: 0;
|
|
532
560
|
}
|
|
533
|
-
.ncua-button-group__item
|
|
534
|
-
color: var(--gray-600);
|
|
535
|
-
}
|
|
536
|
-
.ncua-button-group__item:disabled, .ncua-button-group__item:disabled:hover, .ncua-button-group__item:disabled:focus, .ncua-button-group__item.is-disabled, .ncua-button-group__item.is-disabled:hover, .ncua-button-group__item.is-disabled:focus {
|
|
537
|
-
color: var(--gray-200);
|
|
538
|
-
}
|
|
539
|
-
.ncua-button-group__item + .ncua-button-group__item::after {
|
|
561
|
+
:where(.ncua-button-group__item + .ncua-button-group__item)::after {
|
|
540
562
|
content: "";
|
|
541
563
|
position: absolute;
|
|
542
564
|
left: 0;
|
|
@@ -546,92 +568,146 @@ button {
|
|
|
546
568
|
height: 12px;
|
|
547
569
|
background-color: var(--gray-200);
|
|
548
570
|
}
|
|
549
|
-
.ncua-button-group__item:where(.
|
|
550
|
-
|
|
571
|
+
:where(.ncua-button-group__item).is-current, :where(.ncua-button-group__item):hover {
|
|
572
|
+
color: var(--gray-600);
|
|
551
573
|
}
|
|
552
|
-
:where(.ncua-button-
|
|
553
|
-
|
|
574
|
+
:is(:where(.ncua-button-group__item):disabled, :where(.ncua-button-group__item:disabled):hover, :where(.ncua-button-group__item:disabled):focus) {
|
|
575
|
+
color: var(--gray-200);
|
|
576
|
+
background-color: var(--gray-50);
|
|
554
577
|
}
|
|
555
|
-
|
|
556
|
-
.ncua-button-group--xxs .ncua-button-group__item {
|
|
578
|
+
:where(.ncua-button-group--xxs) .ncua-button-group__item {
|
|
557
579
|
padding: 4px 12px;
|
|
558
580
|
font-size: var(--font-size-xxxs);
|
|
559
581
|
line-height: var(--line-heights-xxxs);
|
|
560
582
|
font-weight: var(--font-weights-commerce-sans-1);
|
|
561
583
|
}
|
|
562
|
-
:where(.ncua-button-group--xxs .ncua-button-group__item.is-current, .ncua-button-group--xxs .ncua-button-group__item:hover, .ncua-button-group--xxs .ncua-button-group__item:focus) {
|
|
563
|
-
font-weight: var(--font-weights-commerce-sans-1);
|
|
564
|
-
}
|
|
565
|
-
.ncua-button-group--xxs .ncua-button-group__item:where(.is-only-icon) {
|
|
566
|
-
padding: 6px;
|
|
567
|
-
}
|
|
568
|
-
:where(.ncua-button-group--xxs.has-border) {
|
|
569
|
-
border-radius: 4px;
|
|
570
|
-
}
|
|
571
584
|
|
|
572
|
-
.ncua-button-group--xs .ncua-button-group__item {
|
|
585
|
+
:where(.ncua-button-group--xs) .ncua-button-group__item {
|
|
573
586
|
padding: 4px 16px;
|
|
574
587
|
font-size: var(--font-size-xs);
|
|
575
588
|
line-height: var(--line-heights-xs);
|
|
576
589
|
font-weight: var(--font-weights-commerce-sans-1);
|
|
577
590
|
}
|
|
578
|
-
:where(.ncua-button-group--xs .ncua-button-group__item.is-current, .ncua-button-group--xs .ncua-button-group__item:hover, .ncua-button-group--xs .ncua-button-group__item:focus) {
|
|
579
|
-
font-weight: var(--font-weights-commerce-sans-1);
|
|
580
|
-
}
|
|
581
|
-
.ncua-button-group--xs .ncua-button-group__item:where(.is-only-icon) {
|
|
582
|
-
padding: 6px;
|
|
583
|
-
}
|
|
584
|
-
:where(.ncua-button-group--xs.has-border) {
|
|
585
|
-
border-radius: 6px;
|
|
586
|
-
}
|
|
587
591
|
|
|
588
|
-
.ncua-button-group--sm .ncua-button-group__item {
|
|
592
|
+
:where(.ncua-button-group--sm) .ncua-button-group__item {
|
|
589
593
|
padding: 6px 16px;
|
|
590
594
|
font-size: var(--font-size-sm);
|
|
591
595
|
line-height: var(--line-heights-sm);
|
|
592
596
|
font-weight: var(--font-weights-commerce-sans-1);
|
|
593
597
|
}
|
|
594
|
-
:where(.ncua-button-group--sm .ncua-button-group__item.is-current, .ncua-button-group--sm .ncua-button-group__item:hover, .ncua-button-group--sm .ncua-button-group__item:focus) {
|
|
595
|
-
font-weight: var(--font-weights-commerce-sans-1);
|
|
596
|
-
}
|
|
597
|
-
.ncua-button-group--sm .ncua-button-group__item:where(.is-only-icon) {
|
|
598
|
-
padding: 10px;
|
|
599
|
-
}
|
|
600
|
-
:where(.ncua-button-group--sm.has-border) {
|
|
601
|
-
border-radius: 6px;
|
|
602
|
-
}
|
|
603
598
|
|
|
604
|
-
.ncua-button-group--md .ncua-button-group__item {
|
|
599
|
+
:where(.ncua-button-group--md) .ncua-button-group__item {
|
|
605
600
|
padding: 8px 16px;
|
|
606
601
|
font-size: var(--font-size-sm);
|
|
607
602
|
line-height: var(--line-heights-sm);
|
|
608
603
|
font-weight: var(--font-weights-commerce-sans-2);
|
|
609
604
|
}
|
|
610
|
-
|
|
611
|
-
|
|
605
|
+
|
|
606
|
+
:where(.ncua-button-group--xxs:has(.is-only-icon), .ncua-button-group--xs:has(.is-only-icon)) .ncua-button-group__item {
|
|
607
|
+
padding: 6px;
|
|
612
608
|
}
|
|
613
|
-
|
|
609
|
+
|
|
610
|
+
:where(.ncua-button-group--sm:has(.is-only-icon), .ncua-button-group--md:has(.is-only-icon)) .ncua-button-group__item {
|
|
614
611
|
padding: 10px;
|
|
615
612
|
}
|
|
616
|
-
:where(.ncua-button-group--md.has-border) {
|
|
617
|
-
border-radius: 8px;
|
|
618
|
-
}
|
|
619
613
|
|
|
620
614
|
:where(.ncua-button-group.has-border) {
|
|
621
615
|
box-shadow: var(--shadow-xs);
|
|
616
|
+
}
|
|
617
|
+
:where(.ncua-button-group.has-border) .ncua-button-group__item {
|
|
622
618
|
border: 1px solid var(--gray-200);
|
|
623
619
|
}
|
|
624
|
-
:where(.ncua-button-group.has-border) .ncua-button-group__item
|
|
620
|
+
:where(.ncua-button-group.has-border) .ncua-button-group__item svg {
|
|
621
|
+
display: block;
|
|
622
|
+
}
|
|
623
|
+
|
|
624
|
+
:where(.ncua-button-group.has-border .ncua-button-group__item + .ncua-button-group__item)::after {
|
|
625
625
|
content: none;
|
|
626
626
|
}
|
|
627
|
-
|
|
628
|
-
|
|
627
|
+
|
|
628
|
+
:where(.ncua-button-group.has-border .ncua-button-group__item):not(:last-child) {
|
|
629
|
+
border-width: 1px 0 1px 1px;
|
|
629
630
|
}
|
|
630
|
-
|
|
631
|
-
|
|
631
|
+
|
|
632
|
+
:where(.ncua-button-group.has-border .ncua-button-group__item):hover {
|
|
633
|
+
background: var(--gray-50);
|
|
632
634
|
}
|
|
633
|
-
|
|
634
|
-
|
|
635
|
+
|
|
636
|
+
:where(.ncua-button-group.has-border:has(.is-current)) .ncua-button-group__item {
|
|
637
|
+
background: var(--gray-50);
|
|
638
|
+
}
|
|
639
|
+
|
|
640
|
+
:where(.ncua-button-group.has-border:has(.is-current)) svg {
|
|
641
|
+
color: inherit;
|
|
642
|
+
}
|
|
643
|
+
|
|
644
|
+
:where(.ncua-button-group.has-border) .is-current {
|
|
645
|
+
background: var(--base-white);
|
|
646
|
+
border-color: var(--gray-300);
|
|
647
|
+
}
|
|
648
|
+
|
|
649
|
+
:where(.ncua-button-group.has-border .is-current) svg, :where(.ncua-button-group.has-border .ncua-button-group__item:hover) svg {
|
|
650
|
+
color: var(--icon-color);
|
|
651
|
+
}
|
|
652
|
+
|
|
653
|
+
:where(.ncua-button-group.has-border .is-current) + .ncua-button-group__item {
|
|
654
|
+
border-inline-start-color: var(--gray-300);
|
|
655
|
+
}
|
|
656
|
+
|
|
657
|
+
:where(.ncua-button-group.has-border:has(.is-current) .ncua-button-group__item):hover {
|
|
658
|
+
background: var(--base-white);
|
|
659
|
+
}
|
|
660
|
+
|
|
661
|
+
:where(.ncua-button-group--xxs.has-border) {
|
|
662
|
+
border-radius: 4px;
|
|
663
|
+
}
|
|
664
|
+
|
|
665
|
+
:where(.ncua-button-group--xxs.has-border .ncua-button-group__item):first-child {
|
|
666
|
+
border-top-left-radius: 4px;
|
|
667
|
+
border-bottom-left-radius: 4px;
|
|
668
|
+
}
|
|
669
|
+
:where(.ncua-button-group--xxs.has-border .ncua-button-group__item):last-child {
|
|
670
|
+
border-top-right-radius: 4px;
|
|
671
|
+
border-bottom-right-radius: 4px;
|
|
672
|
+
}
|
|
673
|
+
|
|
674
|
+
:where(.ncua-button-group--xs.has-border) {
|
|
675
|
+
border-radius: 6px;
|
|
676
|
+
}
|
|
677
|
+
|
|
678
|
+
:where(.ncua-button-group--xs.has-border .ncua-button-group__item):first-child {
|
|
679
|
+
border-top-left-radius: 6px;
|
|
680
|
+
border-bottom-left-radius: 6px;
|
|
681
|
+
}
|
|
682
|
+
:where(.ncua-button-group--xs.has-border .ncua-button-group__item):last-child {
|
|
683
|
+
border-top-right-radius: 6px;
|
|
684
|
+
border-bottom-right-radius: 6px;
|
|
685
|
+
}
|
|
686
|
+
|
|
687
|
+
:where(.ncua-button-group--sm.has-border) {
|
|
688
|
+
border-radius: 6px;
|
|
689
|
+
}
|
|
690
|
+
|
|
691
|
+
:where(.ncua-button-group--sm.has-border .ncua-button-group__item):first-child {
|
|
692
|
+
border-top-left-radius: 6px;
|
|
693
|
+
border-bottom-left-radius: 6px;
|
|
694
|
+
}
|
|
695
|
+
:where(.ncua-button-group--sm.has-border .ncua-button-group__item):last-child {
|
|
696
|
+
border-top-right-radius: 6px;
|
|
697
|
+
border-bottom-right-radius: 6px;
|
|
698
|
+
}
|
|
699
|
+
|
|
700
|
+
:where(.ncua-button-group--md.has-border) {
|
|
701
|
+
border-radius: 8px;
|
|
702
|
+
}
|
|
703
|
+
|
|
704
|
+
:where(.ncua-button-group--md.has-border .ncua-button-group__item):first-child {
|
|
705
|
+
border-top-left-radius: 8px;
|
|
706
|
+
border-bottom-left-radius: 8px;
|
|
707
|
+
}
|
|
708
|
+
:where(.ncua-button-group--md.has-border .ncua-button-group__item):last-child {
|
|
709
|
+
border-top-right-radius: 8px;
|
|
710
|
+
border-bottom-right-radius: 8px;
|
|
635
711
|
}
|
|
636
712
|
|
|
637
713
|
.ncua-button-close-x {
|
|
@@ -679,6 +755,10 @@ button {
|
|
|
679
755
|
}
|
|
680
756
|
|
|
681
757
|
.ncua-checkbox-input {
|
|
758
|
+
--check-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12' fill='none'%3E%3Cpath d='M10 3L4.5 8.5L2 6' stroke='%23171818' stroke-width='1.6666' stroke-linecap='round' stroke-linejoin='round' /%3E%3C/svg%3E");
|
|
759
|
+
--check-icon-disabled: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12' fill='none'%3E%3Cpath d='M10 3L4.5 8.5L2 6' stroke='%23d3d4d8' stroke-width='1.6666' stroke-linecap='round' stroke-linejoin='round' /%3E%3C/svg%3E");
|
|
760
|
+
--indeterminate-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12' fill='none'%3E%3Cpath d='M2.5 6H9.5' stroke='%232f2f30' stroke-width='1.66666' stroke-linecap='round' stroke-linejoin='round' /%3E%3C/svg%3E");
|
|
761
|
+
--indeterminate-icon-disabled: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12' fill='none'%3E%3Cpath d='M2.5 6H9.5' stroke='%23d3d4d8' stroke-width='1.66666' stroke-linecap='round' stroke-linejoin='round' /%3E%3C/svg%3E");
|
|
682
762
|
position: relative;
|
|
683
763
|
flex: none;
|
|
684
764
|
display: inline-block;
|
|
@@ -728,22 +808,30 @@ button {
|
|
|
728
808
|
background-color: var(--gray-100);
|
|
729
809
|
border-radius: 4px;
|
|
730
810
|
}
|
|
731
|
-
.ncua-checkbox-
|
|
811
|
+
.ncua-checkbox-input:has(input:checked)::before, .ncua-checkbox-input.has-indeterminate::before {
|
|
732
812
|
position: absolute;
|
|
733
|
-
top:
|
|
734
|
-
left:
|
|
735
|
-
|
|
736
|
-
|
|
737
|
-
|
|
738
|
-
width:
|
|
739
|
-
height:
|
|
740
|
-
|
|
813
|
+
top: 50%;
|
|
814
|
+
left: 50%;
|
|
815
|
+
transform: translate(-50%, -50%);
|
|
816
|
+
content: "";
|
|
817
|
+
z-index: 5;
|
|
818
|
+
width: 12px;
|
|
819
|
+
height: 12px;
|
|
820
|
+
background-repeat: no-repeat;
|
|
821
|
+
background-position: center center;
|
|
822
|
+
background-size: 100% 100%;
|
|
741
823
|
}
|
|
742
|
-
.ncua-checkbox-input
|
|
743
|
-
|
|
824
|
+
.ncua-checkbox-input:has(input:checked)::before {
|
|
825
|
+
background-image: var(--check-icon);
|
|
744
826
|
}
|
|
745
|
-
.ncua-checkbox-input
|
|
746
|
-
|
|
827
|
+
.ncua-checkbox-input:has(input:disabled:checked)::before {
|
|
828
|
+
background-image: var(--check-icon-disabled);
|
|
829
|
+
}
|
|
830
|
+
.ncua-checkbox-input.has-indeterminate::before {
|
|
831
|
+
background-image: var(--indeterminate-icon);
|
|
832
|
+
}
|
|
833
|
+
.ncua-checkbox-input.has-indeterminate:has(input:disabled)::before {
|
|
834
|
+
background-image: var(--indeterminate-icon-disabled);
|
|
747
835
|
}
|
|
748
836
|
|
|
749
837
|
.ncua-checkbox-field {
|
|
@@ -1188,67 +1276,12 @@ button {
|
|
|
1188
1276
|
color: var(--primary-red-600);
|
|
1189
1277
|
}
|
|
1190
1278
|
|
|
1191
|
-
.ncua-file-input {
|
|
1192
|
-
display: inline-flex;
|
|
1193
|
-
flex-direction: column;
|
|
1194
|
-
align-items: flex-start;
|
|
1195
|
-
gap: 6px;
|
|
1196
|
-
}
|
|
1197
|
-
.ncua-file-input__input-container {
|
|
1198
|
-
display: flex;
|
|
1199
|
-
flex-direction: column;
|
|
1200
|
-
align-items: flex-start;
|
|
1201
|
-
gap: 4px;
|
|
1202
|
-
}
|
|
1203
|
-
.ncua-file-input__label {
|
|
1204
|
-
display: flex;
|
|
1205
|
-
align-items: center;
|
|
1206
|
-
gap: 4px;
|
|
1207
|
-
}
|
|
1208
|
-
.ncua-file-input__file-tags {
|
|
1209
|
-
display: flex;
|
|
1210
|
-
padding: 12px 8px;
|
|
1211
|
-
flex-direction: column;
|
|
1212
|
-
align-items: flex-start;
|
|
1213
|
-
gap: 6px;
|
|
1214
|
-
align-self: stretch;
|
|
1215
|
-
background: var(--gray-50);
|
|
1216
|
-
}
|
|
1217
|
-
.ncua-file-input__hint-list {
|
|
1218
|
-
margin: 0;
|
|
1219
|
-
list-style: disc;
|
|
1220
|
-
color: var(--gray-400);
|
|
1221
|
-
}
|
|
1222
|
-
.ncua-file-input--xs {
|
|
1223
|
-
font-size: var(--font-size-xxs);
|
|
1224
|
-
line-height: var(--line-heights-xxs);
|
|
1225
|
-
}
|
|
1226
|
-
.ncua-file-input--sm {
|
|
1227
|
-
font-size: var(--font-size-xs);
|
|
1228
|
-
line-height: var(--line-heights-xs);
|
|
1229
|
-
}
|
|
1230
|
-
.ncua-file-input--xs .ncua-file-input__input-container {
|
|
1231
|
-
gap: 4px;
|
|
1232
|
-
}
|
|
1233
|
-
.ncua-file-input--sm .ncua-file-input__input-container {
|
|
1234
|
-
gap: 6px;
|
|
1235
|
-
}
|
|
1236
|
-
.ncua-file-input--xs .ncua-file-input__hint-list {
|
|
1237
|
-
font-size: var(--font-size-xxxs);
|
|
1238
|
-
line-height: var(--line-heights-xxxs);
|
|
1239
|
-
}
|
|
1240
|
-
.ncua-file-input--md .ncua-file-input__hint-list {
|
|
1241
|
-
font-size: inherit;
|
|
1242
|
-
line-height: inherit;
|
|
1243
|
-
}
|
|
1244
|
-
|
|
1245
1279
|
.ncua-input {
|
|
1246
1280
|
display: inline-flex;
|
|
1247
1281
|
flex-direction: column;
|
|
1248
1282
|
line-height: normal;
|
|
1249
1283
|
vertical-align: top;
|
|
1250
1284
|
gap: 4px;
|
|
1251
|
-
font-size: var(--font-size-xxs);
|
|
1252
1285
|
}
|
|
1253
1286
|
.ncua-input > *:last-child {
|
|
1254
1287
|
margin-bottom: 0;
|
|
@@ -1266,6 +1299,7 @@ button {
|
|
|
1266
1299
|
.ncua-input__content {
|
|
1267
1300
|
box-shadow: var(--shadow-xs);
|
|
1268
1301
|
border-radius: 6px;
|
|
1302
|
+
align-items: center;
|
|
1269
1303
|
}
|
|
1270
1304
|
.ncua-input:where(:not([class*=textarea])) .ncua-input__content {
|
|
1271
1305
|
display: flex;
|
|
@@ -1330,9 +1364,20 @@ button {
|
|
|
1330
1364
|
.ncua-input textarea:focus {
|
|
1331
1365
|
outline: none;
|
|
1332
1366
|
}
|
|
1367
|
+
.ncua-input .ncua-input__content-wrap {
|
|
1368
|
+
display: flex;
|
|
1369
|
+
align-items: center;
|
|
1370
|
+
}
|
|
1333
1371
|
.ncua-input .ncua-input__field {
|
|
1334
1372
|
border-radius: 6px;
|
|
1335
1373
|
}
|
|
1374
|
+
.ncua-input .ncua-input__field-text-count {
|
|
1375
|
+
color: var(--gray-300);
|
|
1376
|
+
padding-left: 8px;
|
|
1377
|
+
}
|
|
1378
|
+
.ncua-input .ncua-input__field-text-count-current {
|
|
1379
|
+
color: var(--gray-400);
|
|
1380
|
+
}
|
|
1336
1381
|
.ncua-input--xs {
|
|
1337
1382
|
gap: 4px;
|
|
1338
1383
|
}
|
|
@@ -1347,6 +1392,9 @@ button {
|
|
|
1347
1392
|
font-size: var(--font-size-sm);
|
|
1348
1393
|
line-height: var(--line-heights-sm);
|
|
1349
1394
|
}
|
|
1395
|
+
.ncua-input {
|
|
1396
|
+
font-size: var(--font-size-xxs);
|
|
1397
|
+
}
|
|
1350
1398
|
.ncua-input--xs {
|
|
1351
1399
|
font-size: var(--font-size-xxs);
|
|
1352
1400
|
}
|
|
@@ -1367,6 +1415,7 @@ button {
|
|
|
1367
1415
|
.ncua-input__clear {
|
|
1368
1416
|
border-radius: 10px;
|
|
1369
1417
|
background: var(--gray-100);
|
|
1418
|
+
cursor: pointer;
|
|
1370
1419
|
}
|
|
1371
1420
|
.ncua-input__clear-icon {
|
|
1372
1421
|
padding: 2px;
|
|
@@ -1456,10 +1505,6 @@ button {
|
|
|
1456
1505
|
background-color: var(--base-white);
|
|
1457
1506
|
border: 1px solid var(--gray-200);
|
|
1458
1507
|
padding: 4px 10px;
|
|
1459
|
-
padding: 5px 10px;
|
|
1460
|
-
font-size: var(--font-size-xs);
|
|
1461
|
-
line-height: var(--line-heights-xs);
|
|
1462
|
-
font-weight: var(--font-weights-commerce-sans-1);
|
|
1463
1508
|
}
|
|
1464
1509
|
.ncua-input__trailing-button .ncua-input__button--xs {
|
|
1465
1510
|
padding: 4px 10px;
|
|
@@ -1476,6 +1521,12 @@ button {
|
|
|
1476
1521
|
.ncua-input__trailing-button .ncua-input__button:not(:disabled) {
|
|
1477
1522
|
cursor: pointer;
|
|
1478
1523
|
}
|
|
1524
|
+
.ncua-input__trailing-button .ncua-input__button {
|
|
1525
|
+
padding: 5px 10px;
|
|
1526
|
+
font-size: var(--font-size-xs);
|
|
1527
|
+
line-height: var(--line-heights-xs);
|
|
1528
|
+
font-weight: var(--font-weights-commerce-sans-1);
|
|
1529
|
+
}
|
|
1479
1530
|
.ncua-input__trailing-button .ncua-input__button--xs {
|
|
1480
1531
|
padding: 5px 10px;
|
|
1481
1532
|
font-size: var(--font-size-xs);
|
|
@@ -1500,9 +1551,33 @@ button {
|
|
|
1500
1551
|
font-size: var(--font-size-xxs);
|
|
1501
1552
|
}
|
|
1502
1553
|
.ncua-input--textarea textarea {
|
|
1554
|
+
resize: block;
|
|
1503
1555
|
font-size: var(--font-size-xs);
|
|
1504
1556
|
line-height: var(--line-heights-xs);
|
|
1557
|
+
height: 100%;
|
|
1558
|
+
word-wrap: break-word;
|
|
1559
|
+
min-height: 120px;
|
|
1560
|
+
padding: 12px;
|
|
1561
|
+
border: 1px solid var(--gray-200);
|
|
1562
|
+
border-radius: 8px;
|
|
1563
|
+
box-shadow: var(--shadow-xs);
|
|
1564
|
+
}
|
|
1565
|
+
.ncua-input--textarea textarea:disabled {
|
|
1566
|
+
white-space: pre-wrap;
|
|
1567
|
+
background-color: var(--gray-50);
|
|
1568
|
+
border-color: var(--gray-200);
|
|
1569
|
+
}
|
|
1570
|
+
.ncua-input--textarea textarea:focus {
|
|
1571
|
+
border-color: var(--gray-400);
|
|
1572
|
+
box-shadow: var(--shadow-xs-focused-3px-gray-100);
|
|
1573
|
+
}
|
|
1574
|
+
.ncua-input--textarea.destructive textarea {
|
|
1575
|
+
border-color: var(--primary-red-600);
|
|
1505
1576
|
}
|
|
1577
|
+
.ncua-input--textarea.destructive textarea:focus {
|
|
1578
|
+
box-shadow: var(--shadow-xs-focused-4px-error-100);
|
|
1579
|
+
}
|
|
1580
|
+
|
|
1506
1581
|
.ncua-input--textarea--xs textarea {
|
|
1507
1582
|
font-size: var(--font-size-xs);
|
|
1508
1583
|
line-height: var(--line-heights-xs);
|
|
@@ -1517,24 +1592,6 @@ button {
|
|
|
1517
1592
|
.ncua-input--textarea--sm {
|
|
1518
1593
|
font-size: var(--font-size-xs);
|
|
1519
1594
|
}
|
|
1520
|
-
.ncua-input--textarea .ncua-input__content {
|
|
1521
|
-
flex-direction: column;
|
|
1522
|
-
align-items: flex-start;
|
|
1523
|
-
height: 126px;
|
|
1524
|
-
}
|
|
1525
|
-
.ncua-input--textarea .ncua-input__field {
|
|
1526
|
-
padding: 12px;
|
|
1527
|
-
height: 100%;
|
|
1528
|
-
border-radius: 8px;
|
|
1529
|
-
}
|
|
1530
|
-
.ncua-input--textarea textarea {
|
|
1531
|
-
height: 100%;
|
|
1532
|
-
resize: none;
|
|
1533
|
-
word-wrap: break-word;
|
|
1534
|
-
}
|
|
1535
|
-
.ncua-input--textarea textarea:disabled {
|
|
1536
|
-
white-space: pre-wrap;
|
|
1537
|
-
}
|
|
1538
1595
|
|
|
1539
1596
|
.ncua-input__text-count-wrap {
|
|
1540
1597
|
width: 100%;
|
|
@@ -1557,6 +1614,54 @@ button {
|
|
|
1557
1614
|
color: var(--primary-red-600);
|
|
1558
1615
|
}
|
|
1559
1616
|
|
|
1617
|
+
.ncua-combobox {
|
|
1618
|
+
display: inline-block;
|
|
1619
|
+
min-width: 320px;
|
|
1620
|
+
}
|
|
1621
|
+
.ncua-combobox__content {
|
|
1622
|
+
position: relative;
|
|
1623
|
+
}
|
|
1624
|
+
.ncua-combobox .ncua-input {
|
|
1625
|
+
width: 100%;
|
|
1626
|
+
}
|
|
1627
|
+
.ncua-combobox .ncua-input__content {
|
|
1628
|
+
width: 100%;
|
|
1629
|
+
}
|
|
1630
|
+
.ncua-combobox .ncua-input.is-disabled .ncua-btn--text {
|
|
1631
|
+
color: var(--gray-200);
|
|
1632
|
+
}
|
|
1633
|
+
.ncua-combobox .ncua-input__icon-wrap .ncua-btn__label {
|
|
1634
|
+
min-width: 20px;
|
|
1635
|
+
}
|
|
1636
|
+
.ncua-combobox__tags {
|
|
1637
|
+
display: flex;
|
|
1638
|
+
flex-wrap: wrap;
|
|
1639
|
+
gap: 4px;
|
|
1640
|
+
margin-top: 8px;
|
|
1641
|
+
}
|
|
1642
|
+
.ncua-combobox.ncua-combobox--xs .ncua-hint-text {
|
|
1643
|
+
margin-block-start: 4px;
|
|
1644
|
+
font-size: var(--font-size-xxs);
|
|
1645
|
+
line-height: var(--line-heights-xxs);
|
|
1646
|
+
}
|
|
1647
|
+
.ncua-combobox.ncua-combobox--sm .ncua-hint-text {
|
|
1648
|
+
margin-block-start: 6px;
|
|
1649
|
+
font-size: var(--font-size-xs);
|
|
1650
|
+
line-height: var(--line-heights-xs);
|
|
1651
|
+
}
|
|
1652
|
+
|
|
1653
|
+
.ncua-select-dropdown__no-results {
|
|
1654
|
+
padding: 21px 0;
|
|
1655
|
+
color: var(--gray-700);
|
|
1656
|
+
font-size: var(--font-size-xs);
|
|
1657
|
+
text-align: center;
|
|
1658
|
+
cursor: default;
|
|
1659
|
+
user-select: none;
|
|
1660
|
+
}
|
|
1661
|
+
.ncua-select-dropdown__no-results:hover {
|
|
1662
|
+
background-color: transparent;
|
|
1663
|
+
}
|
|
1664
|
+
|
|
1560
1665
|
.ncua-label {
|
|
1561
1666
|
display: flex;
|
|
1562
1667
|
gap: 4px;
|
|
@@ -1568,6 +1673,10 @@ button {
|
|
|
1568
1673
|
color: var(--primary-red-500);
|
|
1569
1674
|
}
|
|
1570
1675
|
|
|
1676
|
+
.ncua-modal-open {
|
|
1677
|
+
overflow: hidden !important;
|
|
1678
|
+
}
|
|
1679
|
+
|
|
1571
1680
|
.ncua-modal-backdrop {
|
|
1572
1681
|
position: fixed;
|
|
1573
1682
|
top: 0;
|
|
@@ -1591,6 +1700,7 @@ button {
|
|
|
1591
1700
|
display: flex;
|
|
1592
1701
|
flex-direction: column;
|
|
1593
1702
|
box-shadow: var(--shadow-xl);
|
|
1703
|
+
padding: 16px 0px;
|
|
1594
1704
|
}
|
|
1595
1705
|
.ncua-modal--sm {
|
|
1596
1706
|
max-width: 400px;
|
|
@@ -1604,6 +1714,9 @@ button {
|
|
|
1604
1714
|
.ncua-modal--xl {
|
|
1605
1715
|
max-width: 760px;
|
|
1606
1716
|
}
|
|
1717
|
+
.ncua-modal--2xl {
|
|
1718
|
+
max-width: 1000px;
|
|
1719
|
+
}
|
|
1607
1720
|
@media (max-width: 768px) {
|
|
1608
1721
|
.ncua-modal {
|
|
1609
1722
|
max-height: calc(100vh - 160px);
|
|
@@ -1611,7 +1724,7 @@ button {
|
|
|
1611
1724
|
}
|
|
1612
1725
|
|
|
1613
1726
|
.ncua-modal__header {
|
|
1614
|
-
padding:
|
|
1727
|
+
padding: 0px 20px 16px;
|
|
1615
1728
|
border-bottom: none;
|
|
1616
1729
|
position: relative;
|
|
1617
1730
|
display: flex;
|
|
@@ -1624,6 +1737,9 @@ button {
|
|
|
1624
1737
|
background-color: var(--gray-100);
|
|
1625
1738
|
margin: 0 0 16px;
|
|
1626
1739
|
}
|
|
1740
|
+
.ncua-modal__header:has(.ncua-modal__close-button) {
|
|
1741
|
+
padding-right: 48px;
|
|
1742
|
+
}
|
|
1627
1743
|
.ncua-modal__header--left {
|
|
1628
1744
|
align-items: flex-start;
|
|
1629
1745
|
}
|
|
@@ -1651,7 +1767,7 @@ button {
|
|
|
1651
1767
|
flex: 1;
|
|
1652
1768
|
}
|
|
1653
1769
|
.ncua-modal__header--close-button.ncua-modal__header--left {
|
|
1654
|
-
padding:
|
|
1770
|
+
padding: 0px 56px 16px 20px;
|
|
1655
1771
|
}
|
|
1656
1772
|
|
|
1657
1773
|
.ncua-modal__title {
|
|
@@ -1665,6 +1781,7 @@ button {
|
|
|
1665
1781
|
font-size: var(--font-size-sm);
|
|
1666
1782
|
line-height: var(--line-heights-sm);
|
|
1667
1783
|
color: var(--gray-700);
|
|
1784
|
+
word-break: break-all;
|
|
1668
1785
|
}
|
|
1669
1786
|
.ncua-modal__title .ncua-modal__title-subtitle {
|
|
1670
1787
|
font-weight: var(--font-weights-commerce-sans-0);
|
|
@@ -1675,7 +1792,7 @@ button {
|
|
|
1675
1792
|
|
|
1676
1793
|
.ncua-modal__close-button {
|
|
1677
1794
|
position: absolute;
|
|
1678
|
-
top:
|
|
1795
|
+
top: -6px;
|
|
1679
1796
|
right: 16px;
|
|
1680
1797
|
}
|
|
1681
1798
|
|
|
@@ -1691,7 +1808,7 @@ button {
|
|
|
1691
1808
|
}
|
|
1692
1809
|
|
|
1693
1810
|
.ncua-modal__actions-wrapper {
|
|
1694
|
-
padding: 16px 20px
|
|
1811
|
+
padding: 16px 20px 0px;
|
|
1695
1812
|
}
|
|
1696
1813
|
.ncua-modal__actions-wrapper--checkbox {
|
|
1697
1814
|
display: flex;
|
|
@@ -1754,6 +1871,9 @@ button {
|
|
|
1754
1871
|
.ncua-modal__actions--stretch button {
|
|
1755
1872
|
flex: 1;
|
|
1756
1873
|
}
|
|
1874
|
+
.ncua-modal__actions--full-width button {
|
|
1875
|
+
flex: 1;
|
|
1876
|
+
}
|
|
1757
1877
|
|
|
1758
1878
|
@media (max-width: 768px) {
|
|
1759
1879
|
.ncua-modal__actions-checkbox {
|
|
@@ -1777,7 +1897,7 @@ button {
|
|
|
1777
1897
|
position: relative;
|
|
1778
1898
|
width: 100%;
|
|
1779
1899
|
padding: 16px;
|
|
1780
|
-
max-width:
|
|
1900
|
+
max-width: 430px;
|
|
1781
1901
|
border: 1px solid var(--gray-200);
|
|
1782
1902
|
background-color: var(--base-white);
|
|
1783
1903
|
border-radius: 12px;
|
|
@@ -1810,10 +1930,12 @@ button {
|
|
|
1810
1930
|
flex-direction: column;
|
|
1811
1931
|
gap: 4px;
|
|
1812
1932
|
padding-right: 32px;
|
|
1933
|
+
align-self: center;
|
|
1813
1934
|
}
|
|
1814
1935
|
@media (max-width: 768px) {
|
|
1815
1936
|
.ncua-floating-notification__text-container {
|
|
1816
1937
|
padding-right: 0;
|
|
1938
|
+
align-self: flex-start;
|
|
1817
1939
|
}
|
|
1818
1940
|
}
|
|
1819
1941
|
.ncua-floating-notification__title-wrapper {
|
|
@@ -1865,10 +1987,10 @@ button {
|
|
|
1865
1987
|
border-radius: 6px;
|
|
1866
1988
|
padding: 5px 10px;
|
|
1867
1989
|
}
|
|
1868
|
-
.ncua-floating-notification .ncua-notification__action-button--
|
|
1990
|
+
.ncua-floating-notification .ncua-notification__action-button--text-gray {
|
|
1869
1991
|
color: var(--gray-700);
|
|
1870
1992
|
}
|
|
1871
|
-
.ncua-floating-notification .ncua-notification__action-button--
|
|
1993
|
+
.ncua-floating-notification .ncua-notification__action-button--text {
|
|
1872
1994
|
color: var(--blue-500);
|
|
1873
1995
|
font-weight: var(--font-weights-commerce-sans-1);
|
|
1874
1996
|
}
|
|
@@ -1926,7 +2048,7 @@ button {
|
|
|
1926
2048
|
gap: 4px;
|
|
1927
2049
|
}
|
|
1928
2050
|
}
|
|
1929
|
-
.ncua-full-width-notification__title, .ncua-full-width-notification__supporting-text {
|
|
2051
|
+
.ncua-full-width-notification__title, .ncua-full-width-notification__supporting-text, .ncua-full-width-notification__link {
|
|
1930
2052
|
font-size: var(--font-size-sm);
|
|
1931
2053
|
line-height: var(--line-heights-sm);
|
|
1932
2054
|
}
|
|
@@ -1936,6 +2058,11 @@ button {
|
|
|
1936
2058
|
.ncua-full-width-notification__supporting-text {
|
|
1937
2059
|
font-weight: var(--font-weights-commerce-sans-0);
|
|
1938
2060
|
}
|
|
2061
|
+
.ncua-full-width-notification__link, .ncua-full-width-notification__link:hover {
|
|
2062
|
+
color: inherit;
|
|
2063
|
+
text-decoration: underline;
|
|
2064
|
+
cursor: pointer;
|
|
2065
|
+
}
|
|
1939
2066
|
.ncua-full-width-notification__actions-container {
|
|
1940
2067
|
display: flex;
|
|
1941
2068
|
align-items: center;
|
|
@@ -1977,7 +2104,7 @@ button {
|
|
|
1977
2104
|
.ncua-full-width-notification--neutral .ncua-notification__action-button {
|
|
1978
2105
|
color: var(--gray-500);
|
|
1979
2106
|
}
|
|
1980
|
-
.ncua-full-width-notification--neutral .ncua-notification__action-button--secondary-gray, .ncua-full-width-notification--neutral .ncua-notification__action-button--
|
|
2107
|
+
.ncua-full-width-notification--neutral .ncua-notification__action-button--secondary-gray, .ncua-full-width-notification--neutral .ncua-notification__action-button--text {
|
|
1981
2108
|
color: var(--gray-600);
|
|
1982
2109
|
}
|
|
1983
2110
|
@media (max-width: 768px) {
|
|
@@ -1996,7 +2123,7 @@ button {
|
|
|
1996
2123
|
.ncua-full-width-notification--error .ncua-notification__action-button {
|
|
1997
2124
|
color: var(--primary-red-500);
|
|
1998
2125
|
}
|
|
1999
|
-
.ncua-full-width-notification--error .ncua-notification__action-button--secondary-gray, .ncua-full-width-notification--error .ncua-notification__action-button--
|
|
2126
|
+
.ncua-full-width-notification--error .ncua-notification__action-button--secondary-gray, .ncua-full-width-notification--error .ncua-notification__action-button--text {
|
|
2000
2127
|
color: var(--primary-red-600);
|
|
2001
2128
|
}
|
|
2002
2129
|
@media (max-width: 768px) {
|
|
@@ -2015,7 +2142,7 @@ button {
|
|
|
2015
2142
|
.ncua-full-width-notification--warning .ncua-notification__action-button {
|
|
2016
2143
|
color: var(--orange-500);
|
|
2017
2144
|
}
|
|
2018
|
-
.ncua-full-width-notification--warning .ncua-notification__action-button--secondary-gray, .ncua-full-width-notification--warning .ncua-notification__action-button--
|
|
2145
|
+
.ncua-full-width-notification--warning .ncua-notification__action-button--secondary-gray, .ncua-full-width-notification--warning .ncua-notification__action-button--text {
|
|
2019
2146
|
color: var(--orange-600);
|
|
2020
2147
|
}
|
|
2021
2148
|
@media (max-width: 768px) {
|
|
@@ -2034,7 +2161,7 @@ button {
|
|
|
2034
2161
|
.ncua-full-width-notification--success .ncua-notification__action-button {
|
|
2035
2162
|
color: var(--green-500);
|
|
2036
2163
|
}
|
|
2037
|
-
.ncua-full-width-notification--success .ncua-notification__action-button--secondary-gray, .ncua-full-width-notification--success .ncua-notification__action-button--
|
|
2164
|
+
.ncua-full-width-notification--success .ncua-notification__action-button--secondary-gray, .ncua-full-width-notification--success .ncua-notification__action-button--text {
|
|
2038
2165
|
color: var(--green-600);
|
|
2039
2166
|
}
|
|
2040
2167
|
@media (max-width: 768px) {
|
|
@@ -2043,6 +2170,25 @@ button {
|
|
|
2043
2170
|
border-style: solid;
|
|
2044
2171
|
}
|
|
2045
2172
|
}
|
|
2173
|
+
.ncua-full-width-notification--info {
|
|
2174
|
+
color: var(--violet-600);
|
|
2175
|
+
background-color: var(--violet-50);
|
|
2176
|
+
border-style: solid;
|
|
2177
|
+
border-width: 0 0 1px 0;
|
|
2178
|
+
border-color: var(--violet-200);
|
|
2179
|
+
}
|
|
2180
|
+
.ncua-full-width-notification--info .ncua-notification__action-button {
|
|
2181
|
+
color: var(--violet-500);
|
|
2182
|
+
}
|
|
2183
|
+
.ncua-full-width-notification--info .ncua-notification__action-button--secondary-gray, .ncua-full-width-notification--info .ncua-notification__action-button--text {
|
|
2184
|
+
color: var(--violet-600);
|
|
2185
|
+
}
|
|
2186
|
+
@media (max-width: 768px) {
|
|
2187
|
+
.ncua-full-width-notification--info {
|
|
2188
|
+
border-width: 1px 0 0 0;
|
|
2189
|
+
border-style: solid;
|
|
2190
|
+
}
|
|
2191
|
+
}
|
|
2046
2192
|
.ncua-full-width-notification .ncua-notification__action-button {
|
|
2047
2193
|
background: transparent;
|
|
2048
2194
|
border: none;
|
|
@@ -2052,7 +2198,7 @@ button {
|
|
|
2052
2198
|
line-height: var(--line-heights-xs);
|
|
2053
2199
|
font-weight: var(--font-weights-commerce-sans-0);
|
|
2054
2200
|
}
|
|
2055
|
-
.ncua-full-width-notification .ncua-notification__action-button--secondary-gray, .ncua-full-width-notification .ncua-notification__action-button--
|
|
2201
|
+
.ncua-full-width-notification .ncua-notification__action-button--secondary-gray, .ncua-full-width-notification .ncua-notification__action-button--text {
|
|
2056
2202
|
font-weight: var(--font-weights-commerce-sans-1);
|
|
2057
2203
|
}
|
|
2058
2204
|
@media (max-width: 768px) {
|
|
@@ -2173,14 +2319,14 @@ button {
|
|
|
2173
2319
|
.ncua-tag--sm {
|
|
2174
2320
|
font-size: var(--font-size-xxxs);
|
|
2175
2321
|
padding: 2px 8px;
|
|
2176
|
-
line-height:
|
|
2177
|
-
border-radius:
|
|
2322
|
+
line-height: var(--line-heights-xxxs);
|
|
2323
|
+
border-radius: var(--border-radius-xs);
|
|
2178
2324
|
}
|
|
2179
2325
|
.ncua-tag--md {
|
|
2180
2326
|
font-size: var(--font-size-sm);
|
|
2181
2327
|
padding: 1px 9px;
|
|
2182
|
-
line-height:
|
|
2183
|
-
border-radius:
|
|
2328
|
+
line-height: var(--line-heights-sm);
|
|
2329
|
+
border-radius: var(--border-radius-sm);
|
|
2184
2330
|
}
|
|
2185
2331
|
.ncua-tag__text {
|
|
2186
2332
|
overflow: hidden;
|
|
@@ -2190,28 +2336,28 @@ button {
|
|
|
2190
2336
|
word-wrap: break-word;
|
|
2191
2337
|
}
|
|
2192
2338
|
.ncua-tag > svg, .ncua-tag > .ncua-dot {
|
|
2193
|
-
margin-right:
|
|
2339
|
+
margin-right: var(--spacing-xs);
|
|
2194
2340
|
}
|
|
2195
2341
|
.ncua-tag__count {
|
|
2196
2342
|
display: inline-flex;
|
|
2197
2343
|
align-items: center;
|
|
2198
2344
|
min-width: 16px;
|
|
2199
2345
|
height: 14px;
|
|
2200
|
-
margin-left:
|
|
2346
|
+
margin-left: var(--spacing-sm);
|
|
2201
2347
|
margin-right: -5px;
|
|
2202
2348
|
padding: 0 5px;
|
|
2203
2349
|
background-color: var(--gray-100);
|
|
2204
|
-
border-radius:
|
|
2350
|
+
border-radius: var(--border-radius-xxs);
|
|
2205
2351
|
text-align: center;
|
|
2206
2352
|
}
|
|
2207
2353
|
.ncua-tag__count + .ncua-tag__close {
|
|
2208
|
-
margin-left:
|
|
2354
|
+
margin-left: var(--spacing-sm);
|
|
2209
2355
|
}
|
|
2210
2356
|
.ncua-tag--md .ncua-tag__count {
|
|
2211
2357
|
height: 16px;
|
|
2212
2358
|
}
|
|
2213
2359
|
.ncua-tag__close {
|
|
2214
|
-
margin-left:
|
|
2360
|
+
margin-left: var(--spacing-xxs);
|
|
2215
2361
|
margin-right: -5px;
|
|
2216
2362
|
padding: 0;
|
|
2217
2363
|
display: inline-flex;
|
|
@@ -2220,6 +2366,84 @@ button {
|
|
|
2220
2366
|
background-color: transparent;
|
|
2221
2367
|
border: none;
|
|
2222
2368
|
}
|
|
2369
|
+
.ncua-tag--truncated {
|
|
2370
|
+
position: relative;
|
|
2371
|
+
overflow: visible;
|
|
2372
|
+
}
|
|
2373
|
+
.ncua-tag__tooltip {
|
|
2374
|
+
position: absolute;
|
|
2375
|
+
z-index: 1000;
|
|
2376
|
+
pointer-events: none;
|
|
2377
|
+
}
|
|
2378
|
+
.ncua-tag__tooltip:not([class*="--top-"]):not([class*="--bottom-"]):not([class*="--left"]):not([class*="--right"]) {
|
|
2379
|
+
bottom: 100%;
|
|
2380
|
+
left: 50%;
|
|
2381
|
+
transform: translateX(-50%);
|
|
2382
|
+
margin-bottom: var(--spacing-md);
|
|
2383
|
+
}
|
|
2384
|
+
.ncua-tag__tooltip--top {
|
|
2385
|
+
bottom: 100%;
|
|
2386
|
+
left: 50%;
|
|
2387
|
+
transform: translateX(-50%);
|
|
2388
|
+
margin-bottom: var(--spacing-md);
|
|
2389
|
+
}
|
|
2390
|
+
.ncua-tag__tooltip--bottom {
|
|
2391
|
+
top: 100%;
|
|
2392
|
+
left: 50%;
|
|
2393
|
+
transform: translateX(-50%);
|
|
2394
|
+
margin-top: var(--spacing-md);
|
|
2395
|
+
}
|
|
2396
|
+
.ncua-tag__tooltip--left {
|
|
2397
|
+
right: 100%;
|
|
2398
|
+
top: 50%;
|
|
2399
|
+
transform: translateY(-50%);
|
|
2400
|
+
margin-right: var(--spacing-md);
|
|
2401
|
+
}
|
|
2402
|
+
.ncua-tag__tooltip--right {
|
|
2403
|
+
left: 100%;
|
|
2404
|
+
top: 50%;
|
|
2405
|
+
transform: translateY(-50%);
|
|
2406
|
+
margin-left: var(--spacing-md);
|
|
2407
|
+
}
|
|
2408
|
+
.ncua-tag__tooltip--top-left {
|
|
2409
|
+
bottom: 100%;
|
|
2410
|
+
right: 0;
|
|
2411
|
+
margin-bottom: var(--spacing-md);
|
|
2412
|
+
}
|
|
2413
|
+
.ncua-tag__tooltip--top-right {
|
|
2414
|
+
bottom: 100%;
|
|
2415
|
+
left: 0;
|
|
2416
|
+
margin-bottom: var(--spacing-md);
|
|
2417
|
+
}
|
|
2418
|
+
.ncua-tag__tooltip--bottom-left {
|
|
2419
|
+
top: 100%;
|
|
2420
|
+
right: 0;
|
|
2421
|
+
margin-top: var(--spacing-md);
|
|
2422
|
+
}
|
|
2423
|
+
.ncua-tag__tooltip--bottom-right {
|
|
2424
|
+
top: 100%;
|
|
2425
|
+
left: 0;
|
|
2426
|
+
margin-top: var(--spacing-md);
|
|
2427
|
+
}
|
|
2428
|
+
.ncua-tag__tooltip--measuring {
|
|
2429
|
+
opacity: 0;
|
|
2430
|
+
visibility: hidden;
|
|
2431
|
+
}
|
|
2432
|
+
.ncua-tag__tooltip-content {
|
|
2433
|
+
display: block;
|
|
2434
|
+
padding: var(--spacing-md) var(--spacing-lg);
|
|
2435
|
+
background-color: var(--base-white);
|
|
2436
|
+
color: var(--gray-500);
|
|
2437
|
+
font-size: var(--font-size-xxs);
|
|
2438
|
+
font-weight: var(--font-weights-commerce-sans-1);
|
|
2439
|
+
line-height: 1.33;
|
|
2440
|
+
border-radius: var(--border-radius-sm);
|
|
2441
|
+
border: 1px solid var(--gray-100);
|
|
2442
|
+
white-space: nowrap;
|
|
2443
|
+
text-align: center;
|
|
2444
|
+
max-width: var(--max-width-tooltip);
|
|
2445
|
+
box-shadow: var(--shadow-tooltip);
|
|
2446
|
+
}
|
|
2223
2447
|
|
|
2224
2448
|
.ncua-tooltip {
|
|
2225
2449
|
position: relative;
|
|
@@ -2230,6 +2454,10 @@ button {
|
|
|
2230
2454
|
.ncua-tooltip svg {
|
|
2231
2455
|
cursor: pointer;
|
|
2232
2456
|
}
|
|
2457
|
+
.ncua-tooltip__icon {
|
|
2458
|
+
display: inline-block;
|
|
2459
|
+
cursor: pointer;
|
|
2460
|
+
}
|
|
2233
2461
|
.ncua-tooltip__bg {
|
|
2234
2462
|
position: absolute;
|
|
2235
2463
|
border-radius: 6px;
|
|
@@ -2237,7 +2465,7 @@ button {
|
|
|
2237
2465
|
display: flex;
|
|
2238
2466
|
flex-direction: column;
|
|
2239
2467
|
gap: 4px;
|
|
2240
|
-
box-shadow:
|
|
2468
|
+
box-shadow: 0 0 1px 0 rgba(0, 0, 0, 0.5), 0 12px 16px -4px rgba(16, 24, 40, 0.08), 0 4px 6px -2px rgba(16, 24, 40, 0.03);
|
|
2241
2469
|
}
|
|
2242
2470
|
.ncua-tooltip__bg::after {
|
|
2243
2471
|
position: absolute;
|
|
@@ -2247,6 +2475,31 @@ button {
|
|
|
2247
2475
|
.ncua-tooltip__content {
|
|
2248
2476
|
line-height: 14px;
|
|
2249
2477
|
width: max-content;
|
|
2478
|
+
font-weight: 100;
|
|
2479
|
+
}
|
|
2480
|
+
.ncua-tooltip__close-button {
|
|
2481
|
+
position: absolute;
|
|
2482
|
+
top: 4px;
|
|
2483
|
+
right: 8px;
|
|
2484
|
+
background: none;
|
|
2485
|
+
border: none;
|
|
2486
|
+
cursor: pointer;
|
|
2487
|
+
padding: 4px;
|
|
2488
|
+
border-radius: 4px;
|
|
2489
|
+
display: flex;
|
|
2490
|
+
align-items: center;
|
|
2491
|
+
justify-content: center;
|
|
2492
|
+
color: inherit;
|
|
2493
|
+
opacity: 0.7;
|
|
2494
|
+
transition: opacity 0.2s ease;
|
|
2495
|
+
}
|
|
2496
|
+
.ncua-tooltip__close-button:hover {
|
|
2497
|
+
opacity: 1;
|
|
2498
|
+
background-color: transparent;
|
|
2499
|
+
}
|
|
2500
|
+
.ncua-tooltip__close-button svg {
|
|
2501
|
+
width: 14px;
|
|
2502
|
+
height: 14px;
|
|
2250
2503
|
}
|
|
2251
2504
|
.ncua-tooltip__bg--black {
|
|
2252
2505
|
background-color: var(--gray-700);
|
|
@@ -2254,6 +2507,21 @@ button {
|
|
|
2254
2507
|
.ncua-tooltip__bg--black::after {
|
|
2255
2508
|
border-color: var(--gray-700);
|
|
2256
2509
|
}
|
|
2510
|
+
.ncua-tooltip__bg--black .ncua-tooltip__close-button {
|
|
2511
|
+
color: var(--base-white);
|
|
2512
|
+
}
|
|
2513
|
+
.ncua-tooltip__bg--black.ncua-tooltip__bg--left::after {
|
|
2514
|
+
border-left-color: var(--gray-700);
|
|
2515
|
+
border-top-color: transparent;
|
|
2516
|
+
border-bottom-color: transparent;
|
|
2517
|
+
border-right-color: transparent;
|
|
2518
|
+
}
|
|
2519
|
+
.ncua-tooltip__bg--black.ncua-tooltip__bg--right::after {
|
|
2520
|
+
border-right-color: var(--gray-700);
|
|
2521
|
+
border-top-color: transparent;
|
|
2522
|
+
border-bottom-color: transparent;
|
|
2523
|
+
border-left-color: transparent;
|
|
2524
|
+
}
|
|
2257
2525
|
.ncua-tooltip__bg--black .ncua-tooltip__title {
|
|
2258
2526
|
font-weight: 500;
|
|
2259
2527
|
color: var(--base-white);
|
|
@@ -2267,6 +2535,21 @@ button {
|
|
|
2267
2535
|
.ncua-tooltip__bg--white::after {
|
|
2268
2536
|
border-color: var(--base-white);
|
|
2269
2537
|
}
|
|
2538
|
+
.ncua-tooltip__bg--white .ncua-tooltip__close-button {
|
|
2539
|
+
color: var(--gray-600);
|
|
2540
|
+
}
|
|
2541
|
+
.ncua-tooltip__bg--white.ncua-tooltip__bg--left::after {
|
|
2542
|
+
border-left-color: var(--base-white);
|
|
2543
|
+
border-top-color: transparent;
|
|
2544
|
+
border-bottom-color: transparent;
|
|
2545
|
+
border-right-color: transparent;
|
|
2546
|
+
}
|
|
2547
|
+
.ncua-tooltip__bg--white.ncua-tooltip__bg--right::after {
|
|
2548
|
+
border-right-color: var(--base-white);
|
|
2549
|
+
border-top-color: transparent;
|
|
2550
|
+
border-bottom-color: transparent;
|
|
2551
|
+
border-left-color: transparent;
|
|
2552
|
+
}
|
|
2270
2553
|
.ncua-tooltip__bg--white .ncua-tooltip__title {
|
|
2271
2554
|
font-weight: 500;
|
|
2272
2555
|
color: var(--gray-500);
|
|
@@ -2353,6 +2636,34 @@ button {
|
|
|
2353
2636
|
.ncua-tooltip__bg--bottom-right::after {
|
|
2354
2637
|
right: 15px;
|
|
2355
2638
|
}
|
|
2639
|
+
.ncua-tooltip__bg--left {
|
|
2640
|
+
top: 50%;
|
|
2641
|
+
right: calc(100% + 6px);
|
|
2642
|
+
transform: translateY(-50%);
|
|
2643
|
+
}
|
|
2644
|
+
.ncua-tooltip__bg--left::after {
|
|
2645
|
+
left: 100%;
|
|
2646
|
+
top: 50%;
|
|
2647
|
+
transform: translateY(-50%);
|
|
2648
|
+
border-top: 6px solid transparent;
|
|
2649
|
+
border-bottom: 6px solid transparent;
|
|
2650
|
+
border-left: 6px solid;
|
|
2651
|
+
border-right: 0;
|
|
2652
|
+
}
|
|
2653
|
+
.ncua-tooltip__bg--right {
|
|
2654
|
+
top: 50%;
|
|
2655
|
+
left: calc(100% + 6px);
|
|
2656
|
+
transform: translateY(-50%);
|
|
2657
|
+
}
|
|
2658
|
+
.ncua-tooltip__bg--right::after {
|
|
2659
|
+
right: 100%;
|
|
2660
|
+
top: 50%;
|
|
2661
|
+
transform: translateY(-50%);
|
|
2662
|
+
border-top: 6px solid transparent;
|
|
2663
|
+
border-bottom: 6px solid transparent;
|
|
2664
|
+
border-right: 6px solid;
|
|
2665
|
+
border-left: 0;
|
|
2666
|
+
}
|
|
2356
2667
|
.ncua-tooltip--hidden-arrow .ncua-tooltip__bg::after {
|
|
2357
2668
|
content: none;
|
|
2358
2669
|
}
|
|
@@ -2362,9 +2673,58 @@ button {
|
|
|
2362
2673
|
.ncua-tooltip:not(:hover) .ncua-tooltip__bg {
|
|
2363
2674
|
display: none;
|
|
2364
2675
|
}
|
|
2676
|
+
.ncua-tooltip:hover .ncua-tooltip__bg {
|
|
2677
|
+
display: flex;
|
|
2678
|
+
}
|
|
2679
|
+
.ncua-tooltip--long:not(:hover) .ncua-tooltip__bg--visible {
|
|
2680
|
+
display: flex;
|
|
2681
|
+
}
|
|
2682
|
+
.ncua-tooltip--auto .ncua-tooltip__bg {
|
|
2683
|
+
display: none;
|
|
2684
|
+
}
|
|
2685
|
+
.ncua-tooltip--auto .ncua-tooltip__bg--visible {
|
|
2686
|
+
display: flex;
|
|
2687
|
+
}
|
|
2688
|
+
.ncua-tooltip--auto .ncua-tooltip__bg--measuring {
|
|
2689
|
+
display: flex !important;
|
|
2690
|
+
visibility: hidden !important;
|
|
2691
|
+
}
|
|
2692
|
+
.ncua-tooltip--auto .ncua-tooltip__bg--force-hidden {
|
|
2693
|
+
display: none !important;
|
|
2694
|
+
}
|
|
2365
2695
|
.ncua-tooltip:has(.ncua-tooltip__title) .ncua-tooltip__bg {
|
|
2366
2696
|
padding: 12px;
|
|
2367
2697
|
}
|
|
2698
|
+
.ncua-tooltip__bg:has(.ncua-tooltip__close-button) {
|
|
2699
|
+
padding-right: 35px;
|
|
2700
|
+
}
|
|
2701
|
+
.ncua-tooltip--long .ncua-tooltip__bg {
|
|
2702
|
+
padding: 12px;
|
|
2703
|
+
padding-right: 36px;
|
|
2704
|
+
}
|
|
2705
|
+
.ncua-tooltip--short .ncua-tooltip__bg {
|
|
2706
|
+
white-space: nowrap;
|
|
2707
|
+
}
|
|
2708
|
+
|
|
2709
|
+
.ncua-tooltip-global-layer {
|
|
2710
|
+
position: fixed;
|
|
2711
|
+
inset: 0;
|
|
2712
|
+
pointer-events: none;
|
|
2713
|
+
z-index: 2000;
|
|
2714
|
+
display: block;
|
|
2715
|
+
}
|
|
2716
|
+
|
|
2717
|
+
.ncua-tooltip-panel {
|
|
2718
|
+
position: fixed;
|
|
2719
|
+
left: -99999px;
|
|
2720
|
+
top: -99999px;
|
|
2721
|
+
opacity: 0;
|
|
2722
|
+
transition: opacity 0.18s ease;
|
|
2723
|
+
pointer-events: auto;
|
|
2724
|
+
right: auto;
|
|
2725
|
+
bottom: auto;
|
|
2726
|
+
transform: none;
|
|
2727
|
+
}
|
|
2368
2728
|
|
|
2369
2729
|
:root {
|
|
2370
2730
|
--select-height-xs: 28px;
|
|
@@ -2385,6 +2745,7 @@ button {
|
|
|
2385
2745
|
border: 1px solid var(--gray-200);
|
|
2386
2746
|
background-color: var(--base-white);
|
|
2387
2747
|
overflow: hidden;
|
|
2748
|
+
box-shadow: var(--shadow-xs);
|
|
2388
2749
|
}
|
|
2389
2750
|
.ncua-select__tag {
|
|
2390
2751
|
-webkit-appearance: none;
|
|
@@ -2394,63 +2755,76 @@ button {
|
|
|
2394
2755
|
flex: 1;
|
|
2395
2756
|
outline: none;
|
|
2396
2757
|
color: var(--gray-700);
|
|
2397
|
-
background:
|
|
2758
|
+
background: var(--base-white) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 14 14' fill='none'%3E%3Cpath d='M3.5 5.25L7 8.75L10.5 5.25' stroke='%23757678' stroke-width='1.16667' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") no-repeat right 8px center;
|
|
2759
|
+
background-size: var(--icon-size) var(--icon-size);
|
|
2760
|
+
}
|
|
2761
|
+
.ncua-select__tag:disabled {
|
|
2762
|
+
background: var(--gray-50) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 14 14' fill='none'%3E%3Cpath d='M3.5 5.25L7 8.75L10.5 5.25' stroke='%23757678' stroke-width='1.16667' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") no-repeat right 8px center;
|
|
2398
2763
|
background-size: var(--icon-size) var(--icon-size);
|
|
2764
|
+
cursor: not-allowed;
|
|
2765
|
+
color: var(--gray-300);
|
|
2399
2766
|
}
|
|
2400
2767
|
.ncua-select__content:focus-within {
|
|
2401
2768
|
border-color: var(--gray-400);
|
|
2402
2769
|
box-shadow: var(--shadow-xs-focused-3px-gray-100);
|
|
2403
2770
|
}
|
|
2771
|
+
.ncua-select__content:has(.ncua-select__tag:disabled) {
|
|
2772
|
+
border-color: var(--gray-200);
|
|
2773
|
+
}
|
|
2404
2774
|
.ncua-select.destructive .ncua-select__content {
|
|
2405
2775
|
border-color: var(--primary-red-600);
|
|
2406
2776
|
}
|
|
2407
2777
|
.ncua-select.destructive .ncua-select__content:focus-within {
|
|
2408
2778
|
box-shadow: var(--shadow-xs-focused-4px-error-100);
|
|
2409
2779
|
}
|
|
2410
|
-
.ncua-select--xs {
|
|
2780
|
+
.ncua-select--xs .ncua-select__content {
|
|
2411
2781
|
height: var(--select-height-xs);
|
|
2412
2782
|
border-radius: 6px;
|
|
2413
2783
|
}
|
|
2414
|
-
.ncua-select--xs
|
|
2784
|
+
.ncua-select--xs .ncua-select__tag {
|
|
2415
2785
|
padding-inline: 10px 28px;
|
|
2416
2786
|
font-size: var(--font-size-xs);
|
|
2417
2787
|
font-weight: var(--font-weights-commerce-sans-0);
|
|
2418
2788
|
line-height: var(--line-heights-xs);
|
|
2419
2789
|
}
|
|
2420
|
-
.ncua-select--xs
|
|
2790
|
+
.ncua-select--xs .ncua-hint-text {
|
|
2421
2791
|
margin-block-start: 4px;
|
|
2422
2792
|
font-size: var(--font-size-xxs);
|
|
2423
2793
|
line-height: var(--line-heights-xxs);
|
|
2424
2794
|
}
|
|
2425
2795
|
.ncua-select--sm {
|
|
2796
|
+
--icon-size: 16px;
|
|
2797
|
+
}
|
|
2798
|
+
.ncua-select--sm .ncua-select__content {
|
|
2426
2799
|
height: var(--select-height-sm);
|
|
2427
2800
|
border-radius: 6px;
|
|
2428
|
-
--icon-size: 16px;
|
|
2429
2801
|
}
|
|
2430
|
-
.ncua-select--sm
|
|
2802
|
+
.ncua-select--sm .ncua-select__tag {
|
|
2431
2803
|
padding-inline: 12px 30px;
|
|
2432
2804
|
font-size: var(--font-size-sm);
|
|
2433
2805
|
font-weight: var(--font-weights-commerce-sans-0);
|
|
2434
2806
|
line-height: var(--line-heights-sm);
|
|
2435
2807
|
}
|
|
2436
|
-
.ncua-select--sm
|
|
2808
|
+
.ncua-select--sm .ncua-hint-text {
|
|
2437
2809
|
margin-block-start: 6px;
|
|
2438
2810
|
font-size: var(--font-size-xs);
|
|
2439
2811
|
line-height: var(--line-heights-xs);
|
|
2440
2812
|
}
|
|
2441
2813
|
.ncua-select--md {
|
|
2814
|
+
--icon-size: 16px;
|
|
2815
|
+
}
|
|
2816
|
+
.ncua-select--md .ncua-select__content {
|
|
2442
2817
|
min-width: 132px;
|
|
2443
2818
|
height: var(--select-height-md);
|
|
2444
2819
|
border-radius: 8px;
|
|
2445
|
-
--icon-size: 16px;
|
|
2446
2820
|
}
|
|
2447
|
-
.ncua-select--md
|
|
2821
|
+
.ncua-select--md .ncua-select__tag {
|
|
2448
2822
|
padding-inline: 12px 30px;
|
|
2449
2823
|
font-size: var(--font-size-sm);
|
|
2450
2824
|
font-weight: var(--font-weights-commerce-sans-1);
|
|
2451
2825
|
line-height: var(--line-heights-sm);
|
|
2452
2826
|
}
|
|
2453
|
-
.ncua-select--md
|
|
2827
|
+
.ncua-select--md .ncua-hint-text {
|
|
2454
2828
|
margin-block-start: 6px;
|
|
2455
2829
|
font-size: var(--font-size-xs);
|
|
2456
2830
|
line-height: var(--line-heights-xs);
|
|
@@ -2475,51 +2849,339 @@ button {
|
|
|
2475
2849
|
border-radius: 0;
|
|
2476
2850
|
}
|
|
2477
2851
|
|
|
2478
|
-
|
|
2479
|
-
|
|
2480
|
-
align-items: center;
|
|
2481
|
-
}
|
|
2482
|
-
.ncua-pagination__before {
|
|
2483
|
-
margin-inline: 4px 8px;
|
|
2484
|
-
}
|
|
2485
|
-
.ncua-pagination__item + .ncua-pagination__item {
|
|
2486
|
-
margin-inline-start: 4px;
|
|
2852
|
+
:root {
|
|
2853
|
+
--select-dropdown-shadow: 0px 12px 16px -4px rgba(16, 24, 40, 0.08), 0px 4px 6px -2px rgba(16, 24, 40, 0.03);
|
|
2487
2854
|
}
|
|
2488
|
-
|
|
2489
|
-
|
|
2490
|
-
|
|
2491
|
-
|
|
2492
|
-
|
|
2493
|
-
|
|
2494
|
-
|
|
2495
|
-
|
|
2496
|
-
|
|
2855
|
+
|
|
2856
|
+
.ncua-select-dropdown {
|
|
2857
|
+
position: absolute;
|
|
2858
|
+
left: 0;
|
|
2859
|
+
z-index: 1;
|
|
2860
|
+
overflow: hidden;
|
|
2861
|
+
min-width: 100%;
|
|
2862
|
+
width: max-content;
|
|
2863
|
+
background-color: var(--base-white);
|
|
2864
|
+
border: 1px solid var(--gray-100);
|
|
2497
2865
|
border-radius: 8px;
|
|
2498
|
-
|
|
2499
|
-
background-color: transparent;
|
|
2500
|
-
color: var(--gray-500);
|
|
2501
|
-
cursor: pointer;
|
|
2866
|
+
box-shadow: var(--shadow-lg);
|
|
2502
2867
|
}
|
|
2503
|
-
.ncua-
|
|
2504
|
-
|
|
2505
|
-
background-color: var(--gray-50);
|
|
2506
|
-
font-weight: 700;
|
|
2507
|
-
outline: none;
|
|
2868
|
+
.ncua-select-dropdown--down {
|
|
2869
|
+
top: calc(100% + 4px);
|
|
2508
2870
|
}
|
|
2509
|
-
.ncua-
|
|
2510
|
-
|
|
2871
|
+
.ncua-select-dropdown--up {
|
|
2872
|
+
bottom: calc(100% + 4px);
|
|
2511
2873
|
}
|
|
2512
|
-
.ncua-
|
|
2513
|
-
|
|
2874
|
+
.ncua-select-dropdown__content {
|
|
2875
|
+
padding: 8px 6px;
|
|
2514
2876
|
}
|
|
2515
|
-
.ncua-
|
|
2516
|
-
display: flex;
|
|
2517
|
-
align-items: center;
|
|
2877
|
+
.ncua-select-dropdown__options {
|
|
2518
2878
|
margin: 0;
|
|
2519
2879
|
padding: 0;
|
|
2880
|
+
list-style: none;
|
|
2881
|
+
overflow-y: auto;
|
|
2882
|
+
overscroll-behavior: contain;
|
|
2883
|
+
scrollbar-width: thin;
|
|
2884
|
+
scrollbar-color: #eaecf0 transparent;
|
|
2520
2885
|
}
|
|
2521
|
-
.ncua-
|
|
2522
|
-
|
|
2886
|
+
.ncua-select-dropdown__options::-webkit-scrollbar {
|
|
2887
|
+
width: 6px;
|
|
2888
|
+
}
|
|
2889
|
+
.ncua-select-dropdown__options::-webkit-scrollbar-track {
|
|
2890
|
+
background: transparent;
|
|
2891
|
+
border-radius: 8px;
|
|
2892
|
+
}
|
|
2893
|
+
.ncua-select-dropdown__options::-webkit-scrollbar-thumb {
|
|
2894
|
+
background: #eaecf0;
|
|
2895
|
+
border-radius: 8px;
|
|
2896
|
+
}
|
|
2897
|
+
.ncua-select-dropdown__options::-webkit-scrollbar-thumb:hover {
|
|
2898
|
+
background: #d0d5dd;
|
|
2899
|
+
}
|
|
2900
|
+
.ncua-select-dropdown__option {
|
|
2901
|
+
min-width: 84px;
|
|
2902
|
+
padding: 8px 26px 8px 12px;
|
|
2903
|
+
cursor: pointer;
|
|
2904
|
+
transition: background-color 0.15s ease, color 0.15s ease;
|
|
2905
|
+
position: relative;
|
|
2906
|
+
border-radius: 6px;
|
|
2907
|
+
}
|
|
2908
|
+
.ncua-select-dropdown__option:hover, .ncua-select-dropdown__option--focused {
|
|
2909
|
+
background-color: var(--gray-50);
|
|
2910
|
+
}
|
|
2911
|
+
.ncua-select-dropdown__option--selected {
|
|
2912
|
+
background: #fff url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' fill='none' viewBox='0 0 24 24' stroke='none'%3E%3Cpath fill='currentColor' fill-rule='evenodd' d='M20.707 5.293a1 1 0 0 1 0 1.414l-11 11a1 1 0 0 1-1.414 0l-5-5a1 1 0 1 1 1.414-1.414L9 15.586 19.293 5.293a1 1 0 0 1 1.414 0' clip-rule='evenodd'/%3E%3C/svg%3E") no-repeat right 8px center;
|
|
2913
|
+
}
|
|
2914
|
+
.ncua-select-dropdown__option__option-text {
|
|
2915
|
+
display: inline-block;
|
|
2916
|
+
max-width: 327px;
|
|
2917
|
+
color: var(--gray-600);
|
|
2918
|
+
white-space: nowrap;
|
|
2919
|
+
overflow: hidden;
|
|
2920
|
+
text-overflow: ellipsis;
|
|
2921
|
+
}
|
|
2922
|
+
.ncua-select-dropdown--xs .ncua-select-dropdown__option {
|
|
2923
|
+
font-size: var(--font-size-xs);
|
|
2924
|
+
line-height: var(--line-heights-xs);
|
|
2925
|
+
}
|
|
2926
|
+
.ncua-select-dropdown--sm .ncua-select-dropdown__option {
|
|
2927
|
+
font-size: var(--font-size-xs);
|
|
2928
|
+
line-height: var(--line-heights-xs);
|
|
2929
|
+
}
|
|
2930
|
+
.ncua-select-dropdown--md .ncua-select-dropdown__option {
|
|
2931
|
+
font-size: var(--font-size-sm);
|
|
2932
|
+
line-height: var(--line-heights-sm);
|
|
2933
|
+
}
|
|
2934
|
+
.ncua-select-dropdown__footer {
|
|
2935
|
+
border-top: 1px solid var(--gray-100);
|
|
2936
|
+
background-color: var(--color-white);
|
|
2937
|
+
border-radius: 0 0 8px 8px;
|
|
2938
|
+
}
|
|
2939
|
+
.ncua-select-dropdown__footer-buttons {
|
|
2940
|
+
display: flex;
|
|
2941
|
+
justify-content: space-between;
|
|
2942
|
+
align-items: center;
|
|
2943
|
+
padding: 8px 12px;
|
|
2944
|
+
}
|
|
2945
|
+
.ncua-select-dropdown__footer-left {
|
|
2946
|
+
display: flex;
|
|
2947
|
+
align-items: center;
|
|
2948
|
+
}
|
|
2949
|
+
.ncua-select-dropdown__footer-right {
|
|
2950
|
+
display: flex;
|
|
2951
|
+
align-items: center;
|
|
2952
|
+
gap: 4px;
|
|
2953
|
+
}
|
|
2954
|
+
|
|
2955
|
+
:root {
|
|
2956
|
+
--selectbox-simple-height-xs: 18px;
|
|
2957
|
+
--selectbox-simple-height-sm: 22px;
|
|
2958
|
+
--selectbox-simple-height-md: 22px;
|
|
2959
|
+
}
|
|
2960
|
+
|
|
2961
|
+
.ncua-selectbox {
|
|
2962
|
+
position: relative;
|
|
2963
|
+
display: inline-block;
|
|
2964
|
+
}
|
|
2965
|
+
.ncua-selectbox__content {
|
|
2966
|
+
position: relative;
|
|
2967
|
+
display: flex;
|
|
2968
|
+
align-items: center;
|
|
2969
|
+
background-color: var(--base-white);
|
|
2970
|
+
border: 1px solid var(--gray-200);
|
|
2971
|
+
cursor: pointer;
|
|
2972
|
+
transition: all 0.15s ease-in-out;
|
|
2973
|
+
}
|
|
2974
|
+
.ncua-selectbox__content:hover:not(.ncua-selectbox--disabled .ncua-selectbox__content) {
|
|
2975
|
+
border-color: var(--gray-300);
|
|
2976
|
+
}
|
|
2977
|
+
.ncua-selectbox__content:focus {
|
|
2978
|
+
outline: none;
|
|
2979
|
+
border-color: var(--gray-400);
|
|
2980
|
+
box-shadow: var(--shadow-xs-focused-3px-gray-100);
|
|
2981
|
+
}
|
|
2982
|
+
.ncua-selectbox__value {
|
|
2983
|
+
flex: 1;
|
|
2984
|
+
overflow: hidden;
|
|
2985
|
+
text-overflow: ellipsis;
|
|
2986
|
+
white-space: nowrap;
|
|
2987
|
+
color: var(--gray-700);
|
|
2988
|
+
}
|
|
2989
|
+
.ncua-selectbox__value:empty::before {
|
|
2990
|
+
content: attr(data-placeholder);
|
|
2991
|
+
color: var(--gray-400);
|
|
2992
|
+
}
|
|
2993
|
+
.ncua-selectbox__chevron {
|
|
2994
|
+
position: absolute;
|
|
2995
|
+
right: 8px;
|
|
2996
|
+
top: 50%;
|
|
2997
|
+
transform: translateY(-50%);
|
|
2998
|
+
transition: transform 0.2s ease-in-out;
|
|
2999
|
+
pointer-events: none;
|
|
3000
|
+
display: flex;
|
|
3001
|
+
align-items: center;
|
|
3002
|
+
justify-content: center;
|
|
3003
|
+
color: var(--gray-500);
|
|
3004
|
+
}
|
|
3005
|
+
.ncua-selectbox__chevron svg {
|
|
3006
|
+
width: var(--icon-size);
|
|
3007
|
+
height: var(--icon-size);
|
|
3008
|
+
}
|
|
3009
|
+
.ncua-selectbox__chevron--up {
|
|
3010
|
+
transform: translateY(-50%) rotate(180deg);
|
|
3011
|
+
}
|
|
3012
|
+
.ncua-selectbox__arrow {
|
|
3013
|
+
position: absolute;
|
|
3014
|
+
right: 8px;
|
|
3015
|
+
top: 50%;
|
|
3016
|
+
transform: translateY(-50%);
|
|
3017
|
+
transition: transform 0.2s ease-in-out;
|
|
3018
|
+
pointer-events: none;
|
|
3019
|
+
display: flex;
|
|
3020
|
+
align-items: center;
|
|
3021
|
+
justify-content: center;
|
|
3022
|
+
color: var(--gray-400);
|
|
3023
|
+
}
|
|
3024
|
+
.ncua-selectbox__arrow svg {
|
|
3025
|
+
width: var(--icon-size);
|
|
3026
|
+
height: var(--icon-size);
|
|
3027
|
+
}
|
|
3028
|
+
.ncua-selectbox__arrow--up {
|
|
3029
|
+
transform: translateY(-50%) rotate(180deg);
|
|
3030
|
+
}
|
|
3031
|
+
.ncua-selectbox--open .ncua-selectbox__content {
|
|
3032
|
+
border-color: var(--gray-400);
|
|
3033
|
+
box-shadow: var(--shadow-xs-focused-3px-gray-100);
|
|
3034
|
+
}
|
|
3035
|
+
.ncua-selectbox--disabled .ncua-selectbox__content {
|
|
3036
|
+
background-color: var(--gray-50);
|
|
3037
|
+
border-color: var(--gray-200);
|
|
3038
|
+
cursor: not-allowed;
|
|
3039
|
+
}
|
|
3040
|
+
.ncua-selectbox--disabled .ncua-selectbox__value {
|
|
3041
|
+
color: var(--gray-400);
|
|
3042
|
+
}
|
|
3043
|
+
.ncua-selectbox--disabled .ncua-selectbox__arrow {
|
|
3044
|
+
color: var(--gray-300);
|
|
3045
|
+
}
|
|
3046
|
+
.ncua-selectbox.destructive .ncua-selectbox__content {
|
|
3047
|
+
border-color: var(--primary-red-600);
|
|
3048
|
+
}
|
|
3049
|
+
.ncua-selectbox.destructive .ncua-selectbox__content:focus {
|
|
3050
|
+
box-shadow: var(--shadow-xs-focused-4px-error-100);
|
|
3051
|
+
}
|
|
3052
|
+
.ncua-selectbox--xs .ncua-selectbox__content {
|
|
3053
|
+
height: var(--select-height-xs);
|
|
3054
|
+
border-radius: 6px;
|
|
3055
|
+
}
|
|
3056
|
+
.ncua-selectbox--xs .ncua-selectbox__value {
|
|
3057
|
+
padding-inline: 10px 28px;
|
|
3058
|
+
font-size: var(--font-size-xs);
|
|
3059
|
+
font-weight: var(--font-weights-commerce-sans-0);
|
|
3060
|
+
line-height: var(--line-heights-xs);
|
|
3061
|
+
}
|
|
3062
|
+
.ncua-selectbox--xs .ncua-hint-text {
|
|
3063
|
+
margin-block-start: 4px;
|
|
3064
|
+
font-size: var(--font-size-xxs);
|
|
3065
|
+
line-height: var(--line-heights-xxs);
|
|
3066
|
+
}
|
|
3067
|
+
.ncua-selectbox--sm {
|
|
3068
|
+
--icon-size: 16px;
|
|
3069
|
+
}
|
|
3070
|
+
.ncua-selectbox--sm .ncua-selectbox__content {
|
|
3071
|
+
height: var(--select-height-sm);
|
|
3072
|
+
border-radius: 6px;
|
|
3073
|
+
}
|
|
3074
|
+
.ncua-selectbox--sm .ncua-selectbox__value {
|
|
3075
|
+
padding-inline: 12px 30px;
|
|
3076
|
+
font-size: var(--font-size-sm);
|
|
3077
|
+
font-weight: var(--font-weights-commerce-sans-0);
|
|
3078
|
+
line-height: var(--line-heights-sm);
|
|
3079
|
+
}
|
|
3080
|
+
.ncua-selectbox--sm .ncua-hint-text {
|
|
3081
|
+
margin-block-start: 6px;
|
|
3082
|
+
font-size: var(--font-size-xs);
|
|
3083
|
+
line-height: var(--line-heights-xs);
|
|
3084
|
+
}
|
|
3085
|
+
.ncua-selectbox--md {
|
|
3086
|
+
min-width: 132px;
|
|
3087
|
+
--icon-size: 16px;
|
|
3088
|
+
}
|
|
3089
|
+
.ncua-selectbox--md .ncua-selectbox__content {
|
|
3090
|
+
height: var(--select-height-md);
|
|
3091
|
+
border-radius: 8px;
|
|
3092
|
+
}
|
|
3093
|
+
.ncua-selectbox--md .ncua-selectbox__value {
|
|
3094
|
+
padding-inline: 12px 30px;
|
|
3095
|
+
font-size: var(--font-size-sm);
|
|
3096
|
+
font-weight: var(--font-weights-commerce-sans-1);
|
|
3097
|
+
line-height: var(--line-heights-sm);
|
|
3098
|
+
}
|
|
3099
|
+
.ncua-selectbox--md .ncua-hint-text {
|
|
3100
|
+
margin-block-start: 6px;
|
|
3101
|
+
font-size: var(--font-size-xs);
|
|
3102
|
+
line-height: var(--line-heights-xs);
|
|
3103
|
+
}
|
|
3104
|
+
.ncua-selectbox--simple .ncua-selectbox__content {
|
|
3105
|
+
border: 0;
|
|
3106
|
+
background-color: transparent;
|
|
3107
|
+
}
|
|
3108
|
+
.ncua-selectbox--simple .ncua-selectbox__content:hover:not(.ncua-selectbox--disabled .ncua-selectbox--simple .ncua-selectbox__content) {
|
|
3109
|
+
border-color: transparent;
|
|
3110
|
+
}
|
|
3111
|
+
.ncua-selectbox--simple .ncua-selectbox__content:focus {
|
|
3112
|
+
border-color: transparent;
|
|
3113
|
+
box-shadow: none;
|
|
3114
|
+
}
|
|
3115
|
+
.ncua-selectbox--simple.ncua-selectbox--xs .ncua-selectbox__content {
|
|
3116
|
+
min-width: auto;
|
|
3117
|
+
height: var(--selectbox-simple-height-xs);
|
|
3118
|
+
border-radius: 0;
|
|
3119
|
+
}
|
|
3120
|
+
.ncua-selectbox--simple.ncua-selectbox--sm .ncua-selectbox__content {
|
|
3121
|
+
min-width: auto;
|
|
3122
|
+
height: var(--selectbox-simple-height-sm);
|
|
3123
|
+
border-radius: 0;
|
|
3124
|
+
}
|
|
3125
|
+
.ncua-selectbox--simple.ncua-selectbox--md .ncua-selectbox__content {
|
|
3126
|
+
min-width: auto;
|
|
3127
|
+
height: var(--selectbox-simple-height-md);
|
|
3128
|
+
border-radius: 0;
|
|
3129
|
+
}
|
|
3130
|
+
.ncua-selectbox--multiple {
|
|
3131
|
+
min-width: 320px;
|
|
3132
|
+
}
|
|
3133
|
+
.ncua-selectbox__tags {
|
|
3134
|
+
display: flex;
|
|
3135
|
+
flex-wrap: wrap;
|
|
3136
|
+
gap: 4px;
|
|
3137
|
+
margin-top: 8px;
|
|
3138
|
+
}
|
|
3139
|
+
|
|
3140
|
+
.ncua-pagination {
|
|
3141
|
+
display: flex;
|
|
3142
|
+
align-items: center;
|
|
3143
|
+
}
|
|
3144
|
+
.ncua-pagination__before {
|
|
3145
|
+
margin-inline: 4px 8px;
|
|
3146
|
+
}
|
|
3147
|
+
.ncua-pagination__item + .ncua-pagination__item {
|
|
3148
|
+
margin-inline-start: 4px;
|
|
3149
|
+
}
|
|
3150
|
+
.ncua-pagination__page-num {
|
|
3151
|
+
font-size: 14px;
|
|
3152
|
+
font-weight: 500;
|
|
3153
|
+
display: inline-flex;
|
|
3154
|
+
justify-content: center;
|
|
3155
|
+
align-items: center;
|
|
3156
|
+
padding-inline: 10px;
|
|
3157
|
+
min-width: 32px;
|
|
3158
|
+
height: 32px;
|
|
3159
|
+
border-radius: 8px;
|
|
3160
|
+
border: 0;
|
|
3161
|
+
background-color: transparent;
|
|
3162
|
+
color: var(--gray-500);
|
|
3163
|
+
cursor: pointer;
|
|
3164
|
+
}
|
|
3165
|
+
.ncua-pagination__page-num:hover, .ncua-pagination__page-num:focus, .ncua-pagination__page-num.is-current {
|
|
3166
|
+
color: var(--gray-600);
|
|
3167
|
+
background-color: var(--gray-50);
|
|
3168
|
+
font-weight: 700;
|
|
3169
|
+
outline: none;
|
|
3170
|
+
}
|
|
3171
|
+
.ncua-pagination__next {
|
|
3172
|
+
margin-inline: 8px 4px;
|
|
3173
|
+
}
|
|
3174
|
+
.ncua-pagination--pc {
|
|
3175
|
+
justify-content: center;
|
|
3176
|
+
}
|
|
3177
|
+
.ncua-pagination--pc .ncua-pagination__list {
|
|
3178
|
+
display: flex;
|
|
3179
|
+
align-items: center;
|
|
3180
|
+
margin: 0;
|
|
3181
|
+
padding: 0;
|
|
3182
|
+
}
|
|
3183
|
+
.ncua-pagination--pc .ncua-pagination__page-info {
|
|
3184
|
+
display: none;
|
|
2523
3185
|
}
|
|
2524
3186
|
.ncua-pagination--mo {
|
|
2525
3187
|
justify-content: space-between;
|
|
@@ -2580,31 +3242,237 @@ button {
|
|
|
2580
3242
|
cursor: pointer;
|
|
2581
3243
|
box-shadow: var(--shadow-md);
|
|
2582
3244
|
}
|
|
2583
|
-
.ncua-slider__handle.is-active {
|
|
2584
|
-
border-color: var(--gray-500);
|
|
3245
|
+
.ncua-slider__handle.is-active {
|
|
3246
|
+
border-color: var(--gray-500);
|
|
3247
|
+
}
|
|
3248
|
+
.ncua-slider__label {
|
|
3249
|
+
position: absolute;
|
|
3250
|
+
top: calc(50% + 18px);
|
|
3251
|
+
left: 50%;
|
|
3252
|
+
transform: translate(-50%, 0);
|
|
3253
|
+
font-size: var(--font-size-xxxs);
|
|
3254
|
+
font-weight: var(--font-weights-commerce-sans-1);
|
|
3255
|
+
color: var(--gray-500);
|
|
3256
|
+
white-space: nowrap;
|
|
3257
|
+
}
|
|
3258
|
+
.ncua-slider__label--tooltip {
|
|
3259
|
+
top: calc(50% - 8px);
|
|
3260
|
+
color: var(--gray-500);
|
|
3261
|
+
background-color: var(--base-white);
|
|
3262
|
+
transform: translate(-50%, -100%);
|
|
3263
|
+
padding: 8px 12px;
|
|
3264
|
+
border-radius: 6px;
|
|
3265
|
+
font-size: var(--font-size-xxs);
|
|
3266
|
+
line-height: var(--line-heights-xxs);
|
|
3267
|
+
font-weight: var(--font-weights-commerce-sans-1);
|
|
3268
|
+
border: 1px solid var(--gray-200);
|
|
3269
|
+
box-shadow: var(--shadow-lg);
|
|
3270
|
+
}
|
|
3271
|
+
|
|
3272
|
+
:root {
|
|
3273
|
+
--switch-xxs-height: 24px;
|
|
3274
|
+
--switch-xxs-line-height: 14px;
|
|
3275
|
+
--switch-xxs-padding: 5px 12px;
|
|
3276
|
+
--switch-xxs-border-radius: 4px;
|
|
3277
|
+
--switch-xxs-gap: 0px;
|
|
3278
|
+
--switch-xs-height: 28px;
|
|
3279
|
+
--switch-xs-line-height: 18px;
|
|
3280
|
+
--switch-xs-padding: 5px 12px;
|
|
3281
|
+
--switch-xs-border-radius: 6px;
|
|
3282
|
+
--switch-xs-gap: 0px;
|
|
3283
|
+
--switch-sm-height: 32px;
|
|
3284
|
+
--switch-sm-line-height: 22px;
|
|
3285
|
+
--switch-sm-padding: 5px 12px;
|
|
3286
|
+
--switch-sm-border-radius: 6px;
|
|
3287
|
+
--switch-sm-gap: 0px;
|
|
3288
|
+
--switch-md-height: 36px;
|
|
3289
|
+
--switch-md-line-height: 22px;
|
|
3290
|
+
--switch-md-padding: 5px 12px;
|
|
3291
|
+
--switch-md-border-radius: 8px;
|
|
3292
|
+
--switch-md-gap: 0px;
|
|
3293
|
+
}
|
|
3294
|
+
|
|
3295
|
+
.ncua-switch {
|
|
3296
|
+
position: relative;
|
|
3297
|
+
display: inline-grid;
|
|
3298
|
+
grid-template-columns: 1fr 1fr;
|
|
3299
|
+
gap: 2px;
|
|
3300
|
+
align-items: center;
|
|
3301
|
+
background-color: var(--gray-100);
|
|
3302
|
+
padding: 2px;
|
|
3303
|
+
user-select: none;
|
|
3304
|
+
vertical-align: top;
|
|
3305
|
+
cursor: pointer;
|
|
3306
|
+
margin: 0;
|
|
3307
|
+
font-weight: inherit;
|
|
3308
|
+
height: var(--switch-xs-height);
|
|
3309
|
+
border-radius: var(--switch-xs-border-radius);
|
|
3310
|
+
gap: var(--switch-xs-gap);
|
|
3311
|
+
}
|
|
3312
|
+
.ncua-switch__radio {
|
|
3313
|
+
display: none;
|
|
3314
|
+
position: absolute;
|
|
3315
|
+
opacity: 0;
|
|
3316
|
+
width: 0;
|
|
3317
|
+
height: 0;
|
|
3318
|
+
margin: 0;
|
|
3319
|
+
padding: 0;
|
|
3320
|
+
pointer-events: none;
|
|
3321
|
+
}
|
|
3322
|
+
.ncua-switch__option {
|
|
3323
|
+
position: relative;
|
|
3324
|
+
display: flex;
|
|
3325
|
+
align-items: center;
|
|
3326
|
+
justify-content: center;
|
|
3327
|
+
min-width: 0;
|
|
3328
|
+
background-color: var(--gray-100);
|
|
3329
|
+
border: none;
|
|
3330
|
+
cursor: pointer;
|
|
3331
|
+
transition: all 0.15s cubic-bezier(0.4, 0, 0.2, 1);
|
|
3332
|
+
font-family: inherit;
|
|
3333
|
+
font-weight: var(--font-weights-medium);
|
|
3334
|
+
color: var(--gray-300);
|
|
3335
|
+
outline: none;
|
|
3336
|
+
white-space: nowrap;
|
|
3337
|
+
text-align: center;
|
|
3338
|
+
height: calc(var(--switch-xs-height) - 4px);
|
|
3339
|
+
padding: var(--switch-xs-padding);
|
|
3340
|
+
font-size: var(--font-size-xs);
|
|
3341
|
+
line-height: var(--switch-xs-line-height);
|
|
3342
|
+
border-radius: calc(var(--switch-xs-border-radius) - 2px);
|
|
3343
|
+
}
|
|
3344
|
+
.ncua-switch__option--active {
|
|
3345
|
+
background-color: var(--base-white);
|
|
3346
|
+
color: var(--gray-600);
|
|
3347
|
+
box-shadow: var(--shadow-sm);
|
|
3348
|
+
z-index: 1;
|
|
3349
|
+
}
|
|
3350
|
+
.ncua-switch__option--inactive {
|
|
3351
|
+
background-color: var(--gray-100);
|
|
3352
|
+
color: var(--gray-300);
|
|
3353
|
+
}
|
|
3354
|
+
.ncua-switch__option:not(:disabled):hover:not(.ncua-switch__option--active) {
|
|
3355
|
+
background-color: var(--gray-100);
|
|
3356
|
+
color: var(--gray-400);
|
|
3357
|
+
}
|
|
3358
|
+
.ncua-switch__label {
|
|
3359
|
+
display: flex;
|
|
3360
|
+
align-items: center;
|
|
3361
|
+
justify-content: center;
|
|
3362
|
+
gap: 3px;
|
|
3363
|
+
margin: 0;
|
|
3364
|
+
line-height: 1;
|
|
3365
|
+
}
|
|
3366
|
+
.ncua-switch__label > * {
|
|
3367
|
+
display: inline-flex;
|
|
3368
|
+
align-items: center;
|
|
3369
|
+
}
|
|
3370
|
+
.ncua-switch__label svg,
|
|
3371
|
+
.ncua-switch__label img {
|
|
3372
|
+
flex-shrink: 0;
|
|
3373
|
+
vertical-align: middle;
|
|
3374
|
+
max-height: 14px;
|
|
3375
|
+
object-fit: contain;
|
|
3376
|
+
}
|
|
3377
|
+
.ncua-switch__label img {
|
|
3378
|
+
max-width: none;
|
|
3379
|
+
height: auto;
|
|
3380
|
+
}
|
|
3381
|
+
.ncua-switch__text {
|
|
3382
|
+
font-size: var(--font-size-xs);
|
|
3383
|
+
line-height: var(--switch-xs-line-height);
|
|
3384
|
+
}
|
|
3385
|
+
.ncua-switch--xxs {
|
|
3386
|
+
height: var(--switch-xxs-height);
|
|
3387
|
+
border-radius: var(--switch-xxs-border-radius);
|
|
3388
|
+
gap: var(--switch-xxs-gap);
|
|
2585
3389
|
}
|
|
2586
|
-
.ncua-
|
|
2587
|
-
|
|
2588
|
-
|
|
2589
|
-
left: 50%;
|
|
2590
|
-
transform: translate(-50%, 0);
|
|
3390
|
+
.ncua-switch--xxs .ncua-switch__option {
|
|
3391
|
+
height: calc(var(--switch-xxs-height) - 4px);
|
|
3392
|
+
padding: var(--switch-xxs-padding);
|
|
2591
3393
|
font-size: var(--font-size-xxxs);
|
|
3394
|
+
line-height: var(--switch-xxs-line-height);
|
|
3395
|
+
border-radius: calc(var(--switch-xxs-border-radius) - 2px);
|
|
2592
3396
|
font-weight: var(--font-weights-commerce-sans-1);
|
|
2593
|
-
color: var(--gray-500);
|
|
2594
|
-
white-space: nowrap;
|
|
2595
3397
|
}
|
|
2596
|
-
.ncua-
|
|
2597
|
-
|
|
2598
|
-
|
|
2599
|
-
|
|
2600
|
-
|
|
2601
|
-
|
|
2602
|
-
|
|
2603
|
-
|
|
2604
|
-
|
|
3398
|
+
.ncua-switch--xxs .ncua-switch__label {
|
|
3399
|
+
gap: 2px;
|
|
3400
|
+
}
|
|
3401
|
+
.ncua-switch--xxs .ncua-switch__label svg,
|
|
3402
|
+
.ncua-switch--xxs .ncua-switch__label img {
|
|
3403
|
+
max-height: 12px;
|
|
3404
|
+
}
|
|
3405
|
+
.ncua-switch--xs {
|
|
3406
|
+
height: var(--switch-xs-height);
|
|
3407
|
+
border-radius: var(--switch-xs-border-radius);
|
|
3408
|
+
gap: var(--switch-xs-gap);
|
|
3409
|
+
}
|
|
3410
|
+
.ncua-switch--xs .ncua-switch__option {
|
|
3411
|
+
height: calc(var(--switch-xs-height) - 4px);
|
|
3412
|
+
padding: var(--switch-xs-padding);
|
|
3413
|
+
font-size: var(--font-size-xs);
|
|
3414
|
+
line-height: var(--switch-xs-line-height);
|
|
3415
|
+
border-radius: calc(var(--switch-xs-border-radius) - 2px);
|
|
2605
3416
|
font-weight: var(--font-weights-commerce-sans-1);
|
|
2606
|
-
|
|
2607
|
-
|
|
3417
|
+
}
|
|
3418
|
+
.ncua-switch--xs .ncua-switch__label {
|
|
3419
|
+
gap: 3px;
|
|
3420
|
+
}
|
|
3421
|
+
.ncua-switch--xs .ncua-switch__label svg,
|
|
3422
|
+
.ncua-switch--xs .ncua-switch__label img {
|
|
3423
|
+
max-height: 14px;
|
|
3424
|
+
}
|
|
3425
|
+
.ncua-switch--sm {
|
|
3426
|
+
height: var(--switch-sm-height);
|
|
3427
|
+
border-radius: var(--switch-sm-border-radius);
|
|
3428
|
+
gap: var(--switch-sm-gap);
|
|
3429
|
+
}
|
|
3430
|
+
.ncua-switch--sm .ncua-switch__option {
|
|
3431
|
+
height: calc(var(--switch-sm-height) - 4px);
|
|
3432
|
+
padding: var(--switch-sm-padding);
|
|
3433
|
+
font-size: var(--font-size-sm);
|
|
3434
|
+
line-height: var(--switch-sm-line-height);
|
|
3435
|
+
border-radius: calc(var(--switch-sm-border-radius) - 2px);
|
|
3436
|
+
font-weight: var(--font-weights-commerce-sans-1);
|
|
3437
|
+
}
|
|
3438
|
+
.ncua-switch--sm .ncua-switch__label {
|
|
3439
|
+
gap: 4px;
|
|
3440
|
+
}
|
|
3441
|
+
.ncua-switch--sm .ncua-switch__label svg,
|
|
3442
|
+
.ncua-switch--sm .ncua-switch__label img {
|
|
3443
|
+
max-height: 16px;
|
|
3444
|
+
}
|
|
3445
|
+
.ncua-switch--md {
|
|
3446
|
+
height: var(--switch-md-height);
|
|
3447
|
+
border-radius: var(--switch-md-border-radius);
|
|
3448
|
+
gap: var(--switch-md-gap);
|
|
3449
|
+
}
|
|
3450
|
+
.ncua-switch--md .ncua-switch__option {
|
|
3451
|
+
height: calc(var(--switch-md-height) - 4px);
|
|
3452
|
+
padding: var(--switch-md-padding);
|
|
3453
|
+
font-size: var(--font-size-sm);
|
|
3454
|
+
line-height: var(--switch-md-line-height);
|
|
3455
|
+
border-radius: calc(var(--switch-md-border-radius) - 2px);
|
|
3456
|
+
font-weight: var(--font-weights-commerce-sans-2);
|
|
3457
|
+
}
|
|
3458
|
+
.ncua-switch--md .ncua-switch__label {
|
|
3459
|
+
gap: 5px;
|
|
3460
|
+
}
|
|
3461
|
+
.ncua-switch--md .ncua-switch__label svg,
|
|
3462
|
+
.ncua-switch--md .ncua-switch__label img {
|
|
3463
|
+
max-height: 18px;
|
|
3464
|
+
}
|
|
3465
|
+
.ncua-switch--disabled {
|
|
3466
|
+
cursor: not-allowed;
|
|
3467
|
+
}
|
|
3468
|
+
.ncua-switch--disabled .ncua-switch__option {
|
|
3469
|
+
cursor: not-allowed;
|
|
3470
|
+
color: var(--gray-300);
|
|
3471
|
+
}
|
|
3472
|
+
.ncua-switch--disabled .ncua-switch__option--active {
|
|
3473
|
+
background-color: var(--gray-50);
|
|
3474
|
+
color: var(--gray-300);
|
|
3475
|
+
box-shadow: var(--shadow-sm);
|
|
2608
3476
|
}
|
|
2609
3477
|
|
|
2610
3478
|
@keyframes ncua-spinner-rotate {
|
|
@@ -2815,7 +3683,6 @@ button {
|
|
|
2815
3683
|
|
|
2816
3684
|
.ncua-date-picker {
|
|
2817
3685
|
position: relative;
|
|
2818
|
-
display: inline-flex;
|
|
2819
3686
|
width: 138px;
|
|
2820
3687
|
height: 28px;
|
|
2821
3688
|
}
|
|
@@ -2836,7 +3703,7 @@ button {
|
|
|
2836
3703
|
.ncua-date-picker__input {
|
|
2837
3704
|
width: 100%;
|
|
2838
3705
|
height: 100%;
|
|
2839
|
-
padding: 0;
|
|
3706
|
+
padding: 0 3px 0 0;
|
|
2840
3707
|
border: 0;
|
|
2841
3708
|
outline: none;
|
|
2842
3709
|
color: inherit;
|
|
@@ -2844,7 +3711,8 @@ button {
|
|
|
2844
3711
|
font: inherit;
|
|
2845
3712
|
}
|
|
2846
3713
|
.ncua-date-picker__input::placeholder {
|
|
2847
|
-
color: var(--gray-
|
|
3714
|
+
color: var(--gray-300, #a4a5a8);
|
|
3715
|
+
font-size: var(--font-size-xxs, 12px);
|
|
2848
3716
|
}
|
|
2849
3717
|
.ncua-date-picker__input:disabled {
|
|
2850
3718
|
background-color: var(--gray-50);
|
|
@@ -2876,12 +3744,19 @@ button {
|
|
|
2876
3744
|
.ncua-date-picker .flatpickr-calendar::before, .ncua-date-picker .flatpickr-calendar::after {
|
|
2877
3745
|
content: none;
|
|
2878
3746
|
}
|
|
3747
|
+
.ncua-date-picker .flatpickr-calendar.static {
|
|
3748
|
+
top: calc(100% + 6px);
|
|
3749
|
+
}
|
|
2879
3750
|
.ncua-date-picker .numInputWrapper .cur-year {
|
|
2880
3751
|
margin-inline-start: 4px;
|
|
2881
3752
|
transform: translateY(2px);
|
|
2882
3753
|
}
|
|
2883
3754
|
.ncua-date-picker .numInputWrapper span {
|
|
2884
3755
|
opacity: 1;
|
|
3756
|
+
width: 12px;
|
|
3757
|
+
height: 12px;
|
|
3758
|
+
border: 0;
|
|
3759
|
+
padding: 0;
|
|
2885
3760
|
}
|
|
2886
3761
|
.ncua-date-picker .flatpickr-months {
|
|
2887
3762
|
justify-content: space-between;
|
|
@@ -2919,6 +3794,21 @@ button {
|
|
|
2919
3794
|
overflow: visible;
|
|
2920
3795
|
flex: none;
|
|
2921
3796
|
}
|
|
3797
|
+
.ncua-date-picker .flatpickr-months .numInputWrapper span::after {
|
|
3798
|
+
top: 0;
|
|
3799
|
+
width: 12px;
|
|
3800
|
+
height: 12px;
|
|
3801
|
+
border: 0;
|
|
3802
|
+
background-size: 12px 12px;
|
|
3803
|
+
background-repeat: no-repeat;
|
|
3804
|
+
}
|
|
3805
|
+
.ncua-date-picker .flatpickr-months .numInputWrapper span.arrowUp::after {
|
|
3806
|
+
background-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2213%22%20height%3D%2212%22%20viewBox%3D%220%200%2013%2012%22%20fill%3D%22none%22%3E%3Cpath%20d%3D%22M9.5%207.5L6.5%204.5L3.5%207.5%22%20stroke%3D%22%23171818%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%2F%3E%3C%2Fsvg%3E");
|
|
3807
|
+
}
|
|
3808
|
+
.ncua-date-picker .flatpickr-months .numInputWrapper span.arrowDown::after {
|
|
3809
|
+
background-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2213%22%20height%3D%2212%22%20viewBox%3D%220%200%2013%2012%22%20fill%3D%22none%22%3E%3Cpath%20d%3D%22M9.5%207.5L6.5%204.5L3.5%207.5%22%20stroke%3D%22%23171818%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%2F%3E%3C%2Fsvg%3E");
|
|
3810
|
+
transform: rotate(180deg);
|
|
3811
|
+
}
|
|
2922
3812
|
.ncua-date-picker .flatpickr-current-month {
|
|
2923
3813
|
position: initial;
|
|
2924
3814
|
width: auto;
|
|
@@ -2932,6 +3822,10 @@ button {
|
|
|
2932
3822
|
font-size: var(--font-size-lg);
|
|
2933
3823
|
color: inherit;
|
|
2934
3824
|
}
|
|
3825
|
+
.ncua-date-picker .flatpickr-current-month .flatpickr-monthDropdown-months:hover,
|
|
3826
|
+
.ncua-date-picker .flatpickr-current-month .numInputWrapper:hover {
|
|
3827
|
+
border-radius: 6px;
|
|
3828
|
+
}
|
|
2935
3829
|
.ncua-date-picker .flatpickr-monthDropdown-months {
|
|
2936
3830
|
margin: 0;
|
|
2937
3831
|
padding: 0;
|
|
@@ -2943,6 +3837,9 @@ button {
|
|
|
2943
3837
|
font-weight: 700;
|
|
2944
3838
|
line-height: 22px;
|
|
2945
3839
|
}
|
|
3840
|
+
.ncua-date-picker .flatpickr-current-month .flatpickr-monthDropdown-months {
|
|
3841
|
+
margin-block-start: 0;
|
|
3842
|
+
}
|
|
2946
3843
|
.ncua-date-picker .flatpickr-innerContainer {
|
|
2947
3844
|
justify-content: center;
|
|
2948
3845
|
}
|
|
@@ -3056,17 +3953,129 @@ button {
|
|
|
3056
3953
|
.ncua-date-picker--disabled .ncua-date-picker__input {
|
|
3057
3954
|
color: var(--gray-300);
|
|
3058
3955
|
}
|
|
3956
|
+
.ncua-date-picker--disabled .ncua-date-picker__ico path {
|
|
3957
|
+
stroke: var(--gray-300);
|
|
3958
|
+
}
|
|
3959
|
+
.ncua-date-picker--destructive .flatpickr-wrapper {
|
|
3960
|
+
border-color: var(--primary-red-500);
|
|
3961
|
+
}
|
|
3962
|
+
.ncua-date-picker--destructive .ncua-date-picker__destructive {
|
|
3963
|
+
color: var(--primary-red-500);
|
|
3964
|
+
font-size: var(--font-size-xxs);
|
|
3965
|
+
}
|
|
3966
|
+
.ncua-date-picker--has-time {
|
|
3967
|
+
width: auto;
|
|
3968
|
+
}
|
|
3969
|
+
.ncua-date-picker--has-time .flatpickr-calendar.hasTime .flatpickr-time,
|
|
3970
|
+
.ncua-date-picker--has-time .flatpickr-calendar.hasTime.noCalendar .flatpickr-time {
|
|
3971
|
+
align-items: center;
|
|
3972
|
+
padding: 8px 16px;
|
|
3973
|
+
max-height: 112px;
|
|
3974
|
+
height: 112px;
|
|
3975
|
+
line-height: 1;
|
|
3976
|
+
}
|
|
3977
|
+
.ncua-date-picker--has-time .flatpickr-calendar.hasTime .flatpickr-time .numInputWrapper,
|
|
3978
|
+
.ncua-date-picker--has-time .flatpickr-calendar.hasTime.noCalendar .flatpickr-time .numInputWrapper {
|
|
3979
|
+
height: 100%;
|
|
3980
|
+
display: flex;
|
|
3981
|
+
align-items: center;
|
|
3982
|
+
justify-content: center;
|
|
3983
|
+
}
|
|
3984
|
+
.ncua-date-picker--has-time .flatpickr-calendar.hasTime .flatpickr-time .numInputWrapper:hover,
|
|
3985
|
+
.ncua-date-picker--has-time .flatpickr-calendar.hasTime.noCalendar .flatpickr-time .numInputWrapper:hover {
|
|
3986
|
+
background-color: transparent;
|
|
3987
|
+
}
|
|
3988
|
+
.ncua-date-picker--has-time .flatpickr-calendar.hasTime .flatpickr-time input,
|
|
3989
|
+
.ncua-date-picker--has-time .flatpickr-calendar.hasTime .flatpickr-time .flatpickr-am-pm,
|
|
3990
|
+
.ncua-date-picker--has-time .flatpickr-calendar.hasTime.noCalendar .flatpickr-time input,
|
|
3991
|
+
.ncua-date-picker--has-time .flatpickr-calendar.hasTime.noCalendar .flatpickr-time .flatpickr-am-pm {
|
|
3992
|
+
color: var(--gray-700, #171818);
|
|
3993
|
+
font-weight: var(--font-weights-commerce-sans-2, 700);
|
|
3994
|
+
height: 40px;
|
|
3995
|
+
width: 50px;
|
|
3996
|
+
border-radius: 6px;
|
|
3997
|
+
}
|
|
3998
|
+
.ncua-date-picker--has-time .flatpickr-calendar.hasTime .flatpickr-time .flatpickr-time-separator,
|
|
3999
|
+
.ncua-date-picker--has-time .flatpickr-calendar.hasTime .flatpickr-time .flatpickr-am-pm,
|
|
4000
|
+
.ncua-date-picker--has-time .flatpickr-calendar.hasTime.noCalendar .flatpickr-time .flatpickr-time-separator,
|
|
4001
|
+
.ncua-date-picker--has-time .flatpickr-calendar.hasTime.noCalendar .flatpickr-time .flatpickr-am-pm {
|
|
4002
|
+
display: flex;
|
|
4003
|
+
align-items: center;
|
|
4004
|
+
justify-content: center;
|
|
4005
|
+
}
|
|
4006
|
+
.ncua-date-picker--has-time .flatpickr-calendar.hasTime .flatpickr-time .flatpickr-time-separator,
|
|
4007
|
+
.ncua-date-picker--has-time .flatpickr-calendar.hasTime.noCalendar .flatpickr-time .flatpickr-time-separator {
|
|
4008
|
+
height: 100%;
|
|
4009
|
+
}
|
|
4010
|
+
.ncua-date-picker--has-time .flatpickr-calendar.hasTime .flatpickr-time .arrowUp,
|
|
4011
|
+
.ncua-date-picker--has-time .flatpickr-calendar.hasTime .flatpickr-time .arrowDown,
|
|
4012
|
+
.ncua-date-picker--has-time .flatpickr-calendar.hasTime.noCalendar .flatpickr-time .arrowUp,
|
|
4013
|
+
.ncua-date-picker--has-time .flatpickr-calendar.hasTime.noCalendar .flatpickr-time .arrowDown {
|
|
4014
|
+
left: 50%;
|
|
4015
|
+
transform: translateX(-50%);
|
|
4016
|
+
display: flex;
|
|
4017
|
+
align-items: center;
|
|
4018
|
+
justify-content: center;
|
|
4019
|
+
height: 24px;
|
|
4020
|
+
width: 24px;
|
|
4021
|
+
padding: 0;
|
|
4022
|
+
}
|
|
4023
|
+
.ncua-date-picker--has-time .flatpickr-calendar.hasTime .flatpickr-time .arrowUp::after,
|
|
4024
|
+
.ncua-date-picker--has-time .flatpickr-calendar.hasTime .flatpickr-time .arrowDown::after,
|
|
4025
|
+
.ncua-date-picker--has-time .flatpickr-calendar.hasTime.noCalendar .flatpickr-time .arrowUp::after,
|
|
4026
|
+
.ncua-date-picker--has-time .flatpickr-calendar.hasTime.noCalendar .flatpickr-time .arrowDown::after {
|
|
4027
|
+
border: 0;
|
|
4028
|
+
width: 14px;
|
|
4029
|
+
height: 14px;
|
|
4030
|
+
}
|
|
4031
|
+
.ncua-date-picker--has-time .flatpickr-calendar.hasTime .flatpickr-time .arrowUp:hover,
|
|
4032
|
+
.ncua-date-picker--has-time .flatpickr-calendar.hasTime .flatpickr-time .arrowDown:hover,
|
|
4033
|
+
.ncua-date-picker--has-time .flatpickr-calendar.hasTime.noCalendar .flatpickr-time .arrowUp:hover,
|
|
4034
|
+
.ncua-date-picker--has-time .flatpickr-calendar.hasTime.noCalendar .flatpickr-time .arrowDown:hover {
|
|
4035
|
+
background-color: var(--gray-50);
|
|
4036
|
+
border-radius: 4px;
|
|
4037
|
+
}
|
|
4038
|
+
.ncua-date-picker--has-time .flatpickr-calendar.hasTime .flatpickr-time .arrowUp,
|
|
4039
|
+
.ncua-date-picker--has-time .flatpickr-calendar.hasTime.noCalendar .flatpickr-time .arrowUp {
|
|
4040
|
+
top: 0;
|
|
4041
|
+
}
|
|
4042
|
+
.ncua-date-picker--has-time .flatpickr-calendar.hasTime .flatpickr-time .arrowUp::after,
|
|
4043
|
+
.ncua-date-picker--has-time .flatpickr-calendar.hasTime.noCalendar .flatpickr-time .arrowUp::after {
|
|
4044
|
+
top: 50%;
|
|
4045
|
+
transform: translateY(-50%);
|
|
4046
|
+
background-image: url("data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 14 14' fill='none'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M6.58736 4.83736C6.81516 4.60955 7.18451 4.60955 7.41232 4.83736L10.9123 8.33736C11.1401 8.56516 11.1401 8.93451 10.9123 9.16232C10.6845 9.39012 10.3152 9.39012 10.0874 9.16232L6.99984 6.0748L3.91232 9.16232C3.68451 9.39012 3.31516 9.39012 3.08736 9.16232C2.85955 8.93451 2.85955 8.56516 3.08736 8.33736L6.58736 4.83736Z' fill='%23757678'/%3E%3C/svg%3E") !important;
|
|
4047
|
+
}
|
|
4048
|
+
.ncua-date-picker--has-time .flatpickr-calendar.hasTime .flatpickr-time .arrowDown,
|
|
4049
|
+
.ncua-date-picker--has-time .flatpickr-calendar.hasTime.noCalendar .flatpickr-time .arrowDown {
|
|
4050
|
+
top: auto;
|
|
4051
|
+
bottom: 0;
|
|
4052
|
+
}
|
|
4053
|
+
.ncua-date-picker--has-time .flatpickr-calendar.hasTime .flatpickr-time .arrowDown::after,
|
|
4054
|
+
.ncua-date-picker--has-time .flatpickr-calendar.hasTime.noCalendar .flatpickr-time .arrowDown::after {
|
|
4055
|
+
top: 50%;
|
|
4056
|
+
transform: translateY(-50%) rotate(180deg);
|
|
4057
|
+
background-image: url("data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 14 14' fill='none'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M6.58736 4.83736C6.81516 4.60955 7.18451 4.60955 7.41232 4.83736L10.9123 8.33736C11.1401 8.56516 11.1401 8.93451 10.9123 9.16232C10.6845 9.39012 10.3152 9.39012 10.0874 9.16232L6.99984 6.0748L3.91232 9.16232C3.68451 9.39012 3.31516 9.39012 3.08736 9.16232C2.85955 8.93451 2.85955 8.56516 3.08736 8.33736L6.58736 4.83736Z' fill='%23757678'/%3E%3C/svg%3E") !important;
|
|
4058
|
+
}
|
|
4059
|
+
.ncua-date-picker--has-time .flatpickr-calendar.noCalendar {
|
|
4060
|
+
padding-block-start: 0;
|
|
4061
|
+
}
|
|
4062
|
+
.ncua-date-picker--has-time .flatpickr-calendar.noCalendar .flatpickr-time {
|
|
4063
|
+
border-block-start-width: 0;
|
|
4064
|
+
}
|
|
3059
4065
|
|
|
3060
4066
|
.ncua-range-date-picker {
|
|
3061
4067
|
display: inline-flex;
|
|
3062
4068
|
align-items: center;
|
|
3063
|
-
gap:
|
|
4069
|
+
gap: 4px;
|
|
3064
4070
|
}
|
|
3065
4071
|
|
|
3066
4072
|
.ncua-range-date-picker-with-buttons {
|
|
3067
4073
|
display: inline-flex;
|
|
3068
4074
|
align-items: center;
|
|
3069
|
-
gap:
|
|
4075
|
+
gap: 4px;
|
|
4076
|
+
}
|
|
4077
|
+
.ncua-range-date-picker-with-buttons .ncua-button-group {
|
|
4078
|
+
margin-inline-end: 4px;
|
|
3070
4079
|
}
|
|
3071
4080
|
|
|
3072
4081
|
.ncua-carousel-number-group {
|
|
@@ -3349,11 +4358,15 @@ button {
|
|
|
3349
4358
|
.ncua-progress-bar-bottom-float {
|
|
3350
4359
|
padding-bottom: 42px;
|
|
3351
4360
|
}
|
|
4361
|
+
.ncua-progress-bar--single-segment {
|
|
4362
|
+
text-align: left;
|
|
4363
|
+
}
|
|
3352
4364
|
.ncua-progress-bar__content {
|
|
3353
4365
|
display: flex;
|
|
3354
4366
|
align-items: center;
|
|
3355
4367
|
width: 100%;
|
|
3356
4368
|
gap: 8px;
|
|
4369
|
+
margin-bottom: 4px;
|
|
3357
4370
|
}
|
|
3358
4371
|
.ncua-progress-bar__bar {
|
|
3359
4372
|
flex-grow: 1;
|
|
@@ -3362,11 +4375,44 @@ button {
|
|
|
3362
4375
|
border-radius: 5px;
|
|
3363
4376
|
overflow: hidden;
|
|
3364
4377
|
}
|
|
4378
|
+
.ncua-progress-bar__bar--segments {
|
|
4379
|
+
display: flex;
|
|
4380
|
+
border-radius: 5px;
|
|
4381
|
+
background-color: var(--gray-100);
|
|
4382
|
+
}
|
|
3365
4383
|
.ncua-progress-bar__fill {
|
|
3366
4384
|
height: 100%;
|
|
3367
|
-
background-color: var(--gray-600);
|
|
3368
4385
|
border-radius: 5px;
|
|
3369
4386
|
transition: width 0.3s ease;
|
|
4387
|
+
flex-shrink: 0;
|
|
4388
|
+
background-color: var(--gray-600);
|
|
4389
|
+
}
|
|
4390
|
+
.ncua-progress-bar__fill--spaced {
|
|
4391
|
+
margin-left: auto;
|
|
4392
|
+
}
|
|
4393
|
+
.ncua-progress-bar__fill--color-red {
|
|
4394
|
+
background-color: var(--primary-red-400);
|
|
4395
|
+
}
|
|
4396
|
+
.ncua-progress-bar__fill--color-green {
|
|
4397
|
+
background-color: var(--green-400);
|
|
4398
|
+
}
|
|
4399
|
+
.ncua-progress-bar__fill--color-blue {
|
|
4400
|
+
background-color: var(--blue-400);
|
|
4401
|
+
}
|
|
4402
|
+
.ncua-progress-bar__fill--color-pink {
|
|
4403
|
+
background-color: var(--pink-400);
|
|
4404
|
+
}
|
|
4405
|
+
.ncua-progress-bar__fill--color-orange {
|
|
4406
|
+
background-color: var(--orange-400);
|
|
4407
|
+
}
|
|
4408
|
+
.ncua-progress-bar__fill--color-violet {
|
|
4409
|
+
background-color: var(--violet-400);
|
|
4410
|
+
}
|
|
4411
|
+
.ncua-progress-bar__fill--color-gray {
|
|
4412
|
+
background-color: var(--gray-400);
|
|
4413
|
+
}
|
|
4414
|
+
.ncua-progress-bar__bar--segments .ncua-progress-bar__fill {
|
|
4415
|
+
border-radius: 5px;
|
|
3370
4416
|
}
|
|
3371
4417
|
.ncua-progress-bar__label {
|
|
3372
4418
|
font-size: var(--font-size-sm);
|
|
@@ -3375,10 +4421,18 @@ button {
|
|
|
3375
4421
|
}
|
|
3376
4422
|
.ncua-progress-bar__label-right {
|
|
3377
4423
|
min-width: 45px;
|
|
4424
|
+
font-size: 11px;
|
|
4425
|
+
line-height: 14px;
|
|
4426
|
+
font-style: normal;
|
|
4427
|
+
font-weight: 500;
|
|
3378
4428
|
}
|
|
3379
4429
|
.ncua-progress-bar__label-bottom {
|
|
3380
4430
|
margin-top: 8px;
|
|
3381
4431
|
align-self: flex-end;
|
|
4432
|
+
font-size: 11px;
|
|
4433
|
+
line-height: 14px;
|
|
4434
|
+
font-style: normal;
|
|
4435
|
+
font-weight: 500;
|
|
3382
4436
|
}
|
|
3383
4437
|
.ncua-progress-bar__label-top-float, .ncua-progress-bar__label-bottom-float {
|
|
3384
4438
|
position: absolute;
|
|
@@ -3400,6 +4454,42 @@ button {
|
|
|
3400
4454
|
.ncua-progress-bar__label-bottom-float {
|
|
3401
4455
|
bottom: 0;
|
|
3402
4456
|
}
|
|
4457
|
+
.ncua-progress-bar__label--segment {
|
|
4458
|
+
font-size: 11px;
|
|
4459
|
+
line-height: 14px;
|
|
4460
|
+
font-style: normal;
|
|
4461
|
+
font-weight: 500;
|
|
4462
|
+
white-space: nowrap;
|
|
4463
|
+
position: absolute;
|
|
4464
|
+
transform: translateX(-50%);
|
|
4465
|
+
}
|
|
4466
|
+
.ncua-progress-bar__label--color-red {
|
|
4467
|
+
color: var(--primary-red-600);
|
|
4468
|
+
}
|
|
4469
|
+
.ncua-progress-bar__label--color-green {
|
|
4470
|
+
color: var(--green-600);
|
|
4471
|
+
}
|
|
4472
|
+
.ncua-progress-bar__label--color-blue {
|
|
4473
|
+
color: var(--blue-600);
|
|
4474
|
+
}
|
|
4475
|
+
.ncua-progress-bar__label--color-pink {
|
|
4476
|
+
color: var(--pink-600);
|
|
4477
|
+
}
|
|
4478
|
+
.ncua-progress-bar__label--color-orange {
|
|
4479
|
+
color: var(--orange-600);
|
|
4480
|
+
}
|
|
4481
|
+
.ncua-progress-bar__label--color-violet {
|
|
4482
|
+
color: var(--violet-600);
|
|
4483
|
+
}
|
|
4484
|
+
.ncua-progress-bar__label--color-gray {
|
|
4485
|
+
color: var(--gray-600);
|
|
4486
|
+
}
|
|
4487
|
+
.ncua-progress-bar__labels--multiple {
|
|
4488
|
+
position: relative;
|
|
4489
|
+
width: 100%;
|
|
4490
|
+
margin-top: 4px;
|
|
4491
|
+
height: 20px;
|
|
4492
|
+
}
|
|
3403
4493
|
|
|
3404
4494
|
.ncua-empty-state {
|
|
3405
4495
|
display: flex;
|
|
@@ -3426,11 +4516,20 @@ button {
|
|
|
3426
4516
|
margin-top: 16px;
|
|
3427
4517
|
}
|
|
3428
4518
|
|
|
3429
|
-
.ncua-tab
|
|
4519
|
+
.ncua-horizontal-tab {
|
|
4520
|
+
position: relative;
|
|
4521
|
+
overflow-x: auto;
|
|
4522
|
+
}
|
|
4523
|
+
.ncua-horizontal-tab__item {
|
|
4524
|
+
width: auto !important;
|
|
4525
|
+
}
|
|
4526
|
+
.ncua-horizontal-tab__item:last-child {
|
|
4527
|
+
margin-right: 0 !important;
|
|
4528
|
+
}
|
|
4529
|
+
.ncua-horizontal-tab .ncua-tab-button {
|
|
3430
4530
|
display: inline-flex;
|
|
3431
4531
|
gap: 8px;
|
|
3432
4532
|
align-items: center;
|
|
3433
|
-
justify-content: center;
|
|
3434
4533
|
width: 100%;
|
|
3435
4534
|
font-weight: var(--font-weights-commerce-sans-2);
|
|
3436
4535
|
color: var(--gray-400);
|
|
@@ -3440,77 +4539,68 @@ button {
|
|
|
3440
4539
|
padding: 5px 12px;
|
|
3441
4540
|
height: 34px;
|
|
3442
4541
|
font-size: var(--font-size-xs);
|
|
4542
|
+
justify-content: center;
|
|
3443
4543
|
}
|
|
3444
|
-
.ncua-tab-button:hover, .ncua-tab-button.is-active {
|
|
4544
|
+
.ncua-horizontal-tab .ncua-tab-button:hover, .ncua-horizontal-tab .ncua-tab-button.is-active {
|
|
3445
4545
|
color: var(--gray-700);
|
|
3446
4546
|
}
|
|
3447
|
-
.ncua-tab
|
|
4547
|
+
.ncua-horizontal-tab--sm .ncua-tab-button {
|
|
3448
4548
|
padding: 5px 12px;
|
|
3449
4549
|
height: 34px;
|
|
3450
4550
|
font-size: var(--font-size-xs);
|
|
3451
4551
|
}
|
|
3452
|
-
.ncua-tab-button
|
|
4552
|
+
.ncua-horizontal-tab--sm.ncua-horizontal-tab--button-white .ncua-tab-button {
|
|
4553
|
+
height: 28px;
|
|
4554
|
+
}
|
|
4555
|
+
.ncua-horizontal-tab--md .ncua-tab-button {
|
|
3453
4556
|
padding: 7px 12px;
|
|
3454
4557
|
height: 38px;
|
|
3455
4558
|
font-size: var(--font-size-sm);
|
|
3456
4559
|
}
|
|
3457
|
-
.ncua-tab-button
|
|
4560
|
+
.ncua-horizontal-tab--md.ncua-horizontal-tab--button-white .ncua-tab-button {
|
|
4561
|
+
height: 32px;
|
|
4562
|
+
}
|
|
4563
|
+
.ncua-horizontal-tab--lg .ncua-tab-button {
|
|
3458
4564
|
padding: 9px 14px;
|
|
3459
4565
|
height: 44px;
|
|
3460
4566
|
font-size: var(--font-size-md);
|
|
3461
4567
|
}
|
|
3462
|
-
.ncua-tab-
|
|
3463
|
-
background-color: var(--gray-50);
|
|
3464
|
-
}
|
|
3465
|
-
.ncua-tab-button--button-primary:focus {
|
|
3466
|
-
box-shadow: var(--focus-ring-4px-gray-100);
|
|
3467
|
-
}
|
|
3468
|
-
.ncua-tab-button--button-white {
|
|
3469
|
-
padding: 5px 12px;
|
|
3470
|
-
height: 28px;
|
|
3471
|
-
}
|
|
3472
|
-
.ncua-tab-button--button-white.ncua-tab-button--sm {
|
|
3473
|
-
padding: 5px 12px;
|
|
3474
|
-
height: 28px;
|
|
3475
|
-
}
|
|
3476
|
-
.ncua-tab-button--button-white.ncua-tab-button--md {
|
|
3477
|
-
padding: 7px 12px;
|
|
3478
|
-
height: 32px;
|
|
3479
|
-
}
|
|
3480
|
-
.ncua-tab-button--button-white.ncua-tab-button--lg {
|
|
3481
|
-
padding: 9px 14px;
|
|
4568
|
+
.ncua-horizontal-tab--lg.ncua-horizontal-tab--button-white .ncua-tab-button {
|
|
3482
4569
|
height: 40px;
|
|
3483
4570
|
}
|
|
3484
|
-
.ncua-tab
|
|
3485
|
-
|
|
3486
|
-
}
|
|
3487
|
-
.ncua-tab-button--button-white.is-active {
|
|
3488
|
-
color: var(--gray-500);
|
|
3489
|
-
box-shadow: var(--shadow-sm);
|
|
4571
|
+
.ncua-horizontal-tab--fullWidth {
|
|
4572
|
+
width: 100%;
|
|
3490
4573
|
}
|
|
3491
|
-
.ncua-tab
|
|
3492
|
-
|
|
3493
|
-
border-radius: 0;
|
|
4574
|
+
.ncua-horizontal-tab--fullWidth .ncua-horizontal-tab__item {
|
|
4575
|
+
width: 100% !important;
|
|
3494
4576
|
}
|
|
3495
|
-
.ncua-
|
|
3496
|
-
|
|
4577
|
+
.ncua-horizontal-tab--fullWidth .swiper-slide {
|
|
4578
|
+
flex-shrink: 1;
|
|
3497
4579
|
}
|
|
3498
|
-
.ncua-tab
|
|
3499
|
-
width: 100%;
|
|
3500
|
-
height: 2px;
|
|
3501
|
-
content: "";
|
|
3502
|
-
background-color: var(--gray-500);
|
|
4580
|
+
.ncua-horizontal-tab--underline::after, .ncua-horizontal-tab--underline-fill::after {
|
|
3503
4581
|
position: absolute;
|
|
3504
4582
|
bottom: 0;
|
|
3505
4583
|
left: 0;
|
|
4584
|
+
width: 100%;
|
|
4585
|
+
height: 1px;
|
|
4586
|
+
content: "";
|
|
4587
|
+
background-color: var(--gray-100);
|
|
3506
4588
|
}
|
|
3507
|
-
.ncua-tab-button--underline {
|
|
4589
|
+
.ncua-horizontal-tab--underline .ncua-tab-button, .ncua-horizontal-tab--underline-fill .ncua-tab-button {
|
|
3508
4590
|
border-radius: 0;
|
|
3509
4591
|
}
|
|
3510
|
-
.ncua-tab
|
|
4592
|
+
.ncua-horizontal-tab--underline-fill .ncua-tab-button {
|
|
3511
4593
|
position: relative;
|
|
3512
4594
|
}
|
|
3513
|
-
.ncua-tab
|
|
4595
|
+
.ncua-horizontal-tab--underline-fill .ncua-horizontal-tab__item:hover .ncua-tab-button,
|
|
4596
|
+
.ncua-horizontal-tab--underline-fill .ncua-tab-button.is-active,
|
|
4597
|
+
.ncua-horizontal-tab--underline-fill .ncua-tab-button.is-active:focus {
|
|
4598
|
+
background-color: var(--gray-100);
|
|
4599
|
+
color: var(--gray-700);
|
|
4600
|
+
}
|
|
4601
|
+
.ncua-horizontal-tab--underline-fill .ncua-horizontal-tab__item:hover .ncua-tab-button::before,
|
|
4602
|
+
.ncua-horizontal-tab--underline-fill .ncua-tab-button.is-active::before,
|
|
4603
|
+
.ncua-horizontal-tab--underline-fill .ncua-tab-button.is-active:focus::before {
|
|
3514
4604
|
width: 100%;
|
|
3515
4605
|
height: 2px;
|
|
3516
4606
|
content: "";
|
|
@@ -3519,28 +4609,22 @@ button {
|
|
|
3519
4609
|
bottom: 0;
|
|
3520
4610
|
left: 0;
|
|
3521
4611
|
}
|
|
3522
|
-
.ncua-tab-button
|
|
3523
|
-
border-radius: 0;
|
|
3524
|
-
}
|
|
3525
|
-
.ncua-tab-button--line-vertical:hover, .ncua-tab-button--line-vertical.is-active, .ncua-tab-button--line-vertical.is-active:focus {
|
|
3526
|
-
box-shadow: -2px 0 var(--gray-700);
|
|
3527
|
-
}
|
|
3528
|
-
|
|
3529
|
-
.ncua-horizontal-tab {
|
|
4612
|
+
.ncua-horizontal-tab--underline .ncua-tab-button {
|
|
3530
4613
|
position: relative;
|
|
3531
|
-
overflow-x: auto;
|
|
3532
4614
|
}
|
|
3533
|
-
.ncua-horizontal-tab__item
|
|
3534
|
-
|
|
4615
|
+
.ncua-horizontal-tab--underline .ncua-horizontal-tab__item:hover .ncua-tab-button,
|
|
4616
|
+
.ncua-horizontal-tab--underline .ncua-tab-button.is-active {
|
|
4617
|
+
color: var(--gray-700);
|
|
3535
4618
|
}
|
|
3536
|
-
.ncua-horizontal-tab--underline
|
|
4619
|
+
.ncua-horizontal-tab--underline .ncua-horizontal-tab__item:hover .ncua-tab-button::before,
|
|
4620
|
+
.ncua-horizontal-tab--underline .ncua-tab-button.is-active::before {
|
|
4621
|
+
width: 100%;
|
|
4622
|
+
height: 2px;
|
|
4623
|
+
content: "";
|
|
4624
|
+
background-color: var(--gray-500);
|
|
3537
4625
|
position: absolute;
|
|
3538
4626
|
bottom: 0;
|
|
3539
4627
|
left: 0;
|
|
3540
|
-
width: 100%;
|
|
3541
|
-
height: 1px;
|
|
3542
|
-
content: "";
|
|
3543
|
-
background-color: var(--gray-100);
|
|
3544
4628
|
}
|
|
3545
4629
|
.ncua-horizontal-tab--button-primary .swiper-slide:first-child, .ncua-horizontal-tab--button-white .swiper-slide:first-child {
|
|
3546
4630
|
padding-left: 4px;
|
|
@@ -3549,17 +4633,25 @@ button {
|
|
|
3549
4633
|
padding-right: 4px;
|
|
3550
4634
|
margin-right: 0;
|
|
3551
4635
|
}
|
|
4636
|
+
.ncua-horizontal-tab--button-primary .ncua-tab-button:hover, .ncua-horizontal-tab--button-primary .ncua-tab-button.is-active {
|
|
4637
|
+
background-color: var(--gray-50);
|
|
4638
|
+
}
|
|
4639
|
+
.ncua-horizontal-tab--button-primary .ncua-tab-button:focus {
|
|
4640
|
+
outline: none;
|
|
4641
|
+
box-shadow: var(--focus-ring-4px-gray-100);
|
|
4642
|
+
}
|
|
4643
|
+
.ncua-horizontal-tab--button-primary .ncua-horizontal-tab__item:hover .ncua-tab-button {
|
|
4644
|
+
background-color: var(--gray-50);
|
|
4645
|
+
color: var(--gray-700);
|
|
4646
|
+
}
|
|
3552
4647
|
.ncua-horizontal-tab--button-primary .swiper-slide {
|
|
3553
4648
|
padding: 4px 0;
|
|
3554
4649
|
}
|
|
3555
4650
|
.ncua-horizontal-tab--button-white {
|
|
3556
|
-
|
|
3557
|
-
background: var(--gray-50);
|
|
4651
|
+
background-color: var(--gray-50);
|
|
3558
4652
|
border: 1px solid var(--gray-100);
|
|
3559
4653
|
border-radius: 8px;
|
|
3560
|
-
|
|
3561
|
-
.ncua-horizontal-tab--button-white .swiper-slide {
|
|
3562
|
-
padding: 3px 0;
|
|
4654
|
+
display: inline-block;
|
|
3563
4655
|
}
|
|
3564
4656
|
.ncua-horizontal-tab--button-white .ncua-tab-button {
|
|
3565
4657
|
background-color: var(--gray-50);
|
|
@@ -3567,20 +4659,55 @@ button {
|
|
|
3567
4659
|
.ncua-horizontal-tab--button-white .ncua-tab-button:hover, .ncua-horizontal-tab--button-white .ncua-tab-button.is-active {
|
|
3568
4660
|
background-color: var(--base-white);
|
|
3569
4661
|
border-radius: 6px;
|
|
3570
|
-
box-shadow:
|
|
4662
|
+
box-shadow: var(--shadow-sm);
|
|
3571
4663
|
color: var(--gray-500);
|
|
3572
4664
|
}
|
|
3573
|
-
.ncua-horizontal-tab--
|
|
3574
|
-
|
|
4665
|
+
.ncua-horizontal-tab--button-white .ncua-tab-button:focus {
|
|
4666
|
+
outline: none;
|
|
4667
|
+
box-shadow: var(--shadow-sm);
|
|
3575
4668
|
}
|
|
3576
|
-
.ncua-horizontal-tab--
|
|
3577
|
-
|
|
4669
|
+
.ncua-horizontal-tab--button-white .swiper-slide {
|
|
4670
|
+
padding: 3px 0;
|
|
3578
4671
|
}
|
|
3579
|
-
.ncua-horizontal-tab--
|
|
3580
|
-
|
|
4672
|
+
.ncua-horizontal-tab--button-white .ncua-horizontal-tab__item:hover .ncua-tab-button {
|
|
4673
|
+
background-color: var(--base-white);
|
|
4674
|
+
border-radius: 6px;
|
|
4675
|
+
box-shadow: var(--shadow-sm);
|
|
4676
|
+
color: var(--gray-500);
|
|
3581
4677
|
}
|
|
3582
|
-
.ncua-horizontal-
|
|
3583
|
-
|
|
4678
|
+
.ncua-horizontal-tab--line-vertical .ncua-tab-button {
|
|
4679
|
+
border-radius: 0;
|
|
4680
|
+
}
|
|
4681
|
+
.ncua-horizontal-tab--line-vertical .ncua-tab-button:hover, .ncua-horizontal-tab--line-vertical .ncua-tab-button.is-active, .ncua-horizontal-tab--line-vertical .ncua-tab-button.is-active:focus {
|
|
4682
|
+
box-shadow: -2px 0 var(--gray-700);
|
|
4683
|
+
}
|
|
4684
|
+
.ncua-horizontal-tab--line-vertical .ncua-horizontal-tab__item:hover .ncua-tab-button {
|
|
4685
|
+
box-shadow: -2px 0 var(--gray-700);
|
|
4686
|
+
color: var(--gray-700);
|
|
4687
|
+
}
|
|
4688
|
+
.ncua-horizontal-tab__item:has(.ncua-tab-close) {
|
|
4689
|
+
position: relative;
|
|
4690
|
+
}
|
|
4691
|
+
.ncua-horizontal-tab__item:has(.ncua-tab-close) .ncua-tab-button {
|
|
4692
|
+
padding-inline-end: 34px;
|
|
4693
|
+
}
|
|
4694
|
+
.ncua-horizontal-tab__item:has(.ncua-tab-close) .ncua-tab-close {
|
|
4695
|
+
position: absolute;
|
|
4696
|
+
top: 50%;
|
|
4697
|
+
right: 12px;
|
|
4698
|
+
transform: translateY(-50%);
|
|
4699
|
+
width: 14px;
|
|
4700
|
+
height: 14px;
|
|
4701
|
+
padding: 0;
|
|
4702
|
+
background-color: transparent;
|
|
4703
|
+
color: var(--gray-300);
|
|
4704
|
+
cursor: pointer;
|
|
4705
|
+
}
|
|
4706
|
+
.ncua-horizontal-tab__item:has(.ncua-tab-close) .ncua-tab-close svg {
|
|
4707
|
+
vertical-align: top;
|
|
4708
|
+
}
|
|
4709
|
+
.ncua-horizontal-tab__item:has(.ncua-tab-close) .ncua-tab-close:hover {
|
|
4710
|
+
color: var(--gray-600);
|
|
3584
4711
|
}
|
|
3585
4712
|
|
|
3586
4713
|
.ncua-vertical-tab {
|
|
@@ -3589,11 +4716,36 @@ button {
|
|
|
3589
4716
|
flex-direction: column;
|
|
3590
4717
|
gap: 4px;
|
|
3591
4718
|
}
|
|
4719
|
+
.ncua-vertical-tab .ncua-tab-button {
|
|
4720
|
+
display: inline-flex;
|
|
4721
|
+
gap: 8px;
|
|
4722
|
+
align-items: center;
|
|
4723
|
+
width: 100%;
|
|
4724
|
+
font-weight: var(--font-weights-commerce-sans-2);
|
|
4725
|
+
color: var(--gray-400);
|
|
4726
|
+
border-radius: 6px;
|
|
4727
|
+
cursor: pointer;
|
|
4728
|
+
background-color: transparent;
|
|
4729
|
+
padding: 5px 12px;
|
|
4730
|
+
height: 34px;
|
|
4731
|
+
font-size: var(--font-size-xs);
|
|
4732
|
+
justify-content: flex-start;
|
|
4733
|
+
}
|
|
4734
|
+
.ncua-vertical-tab .ncua-tab-button:hover, .ncua-vertical-tab .ncua-tab-button.is-active {
|
|
4735
|
+
color: var(--gray-700);
|
|
4736
|
+
}
|
|
4737
|
+
.ncua-vertical-tab--button-primary .ncua-tab-button:hover, .ncua-vertical-tab--button-primary .ncua-tab-button.is-active {
|
|
4738
|
+
background-color: var(--gray-50);
|
|
4739
|
+
}
|
|
4740
|
+
.ncua-vertical-tab--button-primary .ncua-tab-button:focus {
|
|
4741
|
+
outline: none;
|
|
4742
|
+
box-shadow: var(--focus-ring-4px-gray-100);
|
|
4743
|
+
}
|
|
3592
4744
|
.ncua-vertical-tab--button-white {
|
|
3593
|
-
padding: 4px;
|
|
3594
4745
|
background-color: var(--gray-50);
|
|
3595
4746
|
border: 1px solid var(--gray-100);
|
|
3596
4747
|
border-radius: 8px;
|
|
4748
|
+
padding: 4px;
|
|
3597
4749
|
}
|
|
3598
4750
|
.ncua-vertical-tab--button-white .ncua-tab-button {
|
|
3599
4751
|
background-color: var(--gray-50);
|
|
@@ -3604,8 +4756,15 @@ button {
|
|
|
3604
4756
|
box-shadow: var(--shadow-sm);
|
|
3605
4757
|
color: var(--gray-500);
|
|
3606
4758
|
}
|
|
3607
|
-
.ncua-vertical-tab .ncua-tab-button {
|
|
3608
|
-
|
|
4759
|
+
.ncua-vertical-tab--button-white .ncua-tab-button:focus {
|
|
4760
|
+
outline: none;
|
|
4761
|
+
box-shadow: var(--shadow-sm);
|
|
4762
|
+
}
|
|
4763
|
+
.ncua-vertical-tab--line-vertical .ncua-tab-button {
|
|
4764
|
+
border-radius: 0;
|
|
4765
|
+
}
|
|
4766
|
+
.ncua-vertical-tab--line-vertical .ncua-tab-button:hover, .ncua-vertical-tab--line-vertical .ncua-tab-button.is-active, .ncua-vertical-tab--line-vertical .ncua-tab-button.is-active:focus {
|
|
4767
|
+
box-shadow: -2px 0 var(--gray-700);
|
|
3609
4768
|
}
|
|
3610
4769
|
|
|
3611
4770
|
.ncua-progress-circle {
|
|
@@ -3749,6 +4908,233 @@ button {
|
|
|
3749
4908
|
top: 80%;
|
|
3750
4909
|
}
|
|
3751
4910
|
|
|
4911
|
+
.ncua-file-input {
|
|
4912
|
+
display: inline-flex;
|
|
4913
|
+
flex-direction: column;
|
|
4914
|
+
align-items: flex-start;
|
|
4915
|
+
gap: 6px;
|
|
4916
|
+
}
|
|
4917
|
+
.ncua-file-input__input-container {
|
|
4918
|
+
display: flex;
|
|
4919
|
+
flex-direction: column;
|
|
4920
|
+
align-items: flex-start;
|
|
4921
|
+
gap: 4px;
|
|
4922
|
+
}
|
|
4923
|
+
.ncua-file-input__label {
|
|
4924
|
+
display: flex;
|
|
4925
|
+
align-items: center;
|
|
4926
|
+
gap: 4px;
|
|
4927
|
+
}
|
|
4928
|
+
.ncua-file-input__file-tags {
|
|
4929
|
+
display: flex;
|
|
4930
|
+
padding: 12px 8px;
|
|
4931
|
+
flex-direction: column;
|
|
4932
|
+
align-items: flex-start;
|
|
4933
|
+
gap: 6px;
|
|
4934
|
+
align-self: stretch;
|
|
4935
|
+
background: var(--gray-50);
|
|
4936
|
+
}
|
|
4937
|
+
.ncua-file-input__file-tag-container {
|
|
4938
|
+
display: flex;
|
|
4939
|
+
align-items: center;
|
|
4940
|
+
gap: 4px;
|
|
4941
|
+
}
|
|
4942
|
+
.ncua-file-input__file-image {
|
|
4943
|
+
width: 20px;
|
|
4944
|
+
height: 20px;
|
|
4945
|
+
object-fit: cover;
|
|
4946
|
+
}
|
|
4947
|
+
.ncua-file-input__hint-list {
|
|
4948
|
+
margin: 0;
|
|
4949
|
+
list-style: disc;
|
|
4950
|
+
color: var(--gray-400);
|
|
4951
|
+
padding-left: 16px;
|
|
4952
|
+
}
|
|
4953
|
+
.ncua-file-input--xs {
|
|
4954
|
+
font-size: var(--font-size-xxs);
|
|
4955
|
+
line-height: var(--line-heights-xxs);
|
|
4956
|
+
}
|
|
4957
|
+
.ncua-file-input--sm {
|
|
4958
|
+
font-size: var(--font-size-xs);
|
|
4959
|
+
line-height: var(--line-heights-xs);
|
|
4960
|
+
}
|
|
4961
|
+
.ncua-file-input--xs .ncua-file-input__input-container {
|
|
4962
|
+
gap: 4px;
|
|
4963
|
+
}
|
|
4964
|
+
.ncua-file-input--sm .ncua-file-input__input-container {
|
|
4965
|
+
gap: 6px;
|
|
4966
|
+
}
|
|
4967
|
+
.ncua-file-input--xs .ncua-file-input__hint-list {
|
|
4968
|
+
font-size: var(--font-size-xxs);
|
|
4969
|
+
line-height: var(--line-heights-xxs);
|
|
4970
|
+
}
|
|
4971
|
+
.ncua-file-input--sm .ncua-file-input__hint-list {
|
|
4972
|
+
font-size: inherit;
|
|
4973
|
+
line-height: inherit;
|
|
4974
|
+
}
|
|
4975
|
+
|
|
4976
|
+
.ncua-image-file-input {
|
|
4977
|
+
display: flex;
|
|
4978
|
+
gap: 8px;
|
|
4979
|
+
}
|
|
4980
|
+
.ncua-image-file-input__previews {
|
|
4981
|
+
display: flex;
|
|
4982
|
+
gap: 8px;
|
|
4983
|
+
}
|
|
4984
|
+
.ncua-image-file-input__empty-slot-wrapper {
|
|
4985
|
+
position: relative;
|
|
4986
|
+
display: inline-flex;
|
|
4987
|
+
align-items: center;
|
|
4988
|
+
justify-content: center;
|
|
4989
|
+
}
|
|
4990
|
+
.ncua-image-file-input__empty-slot-wrapper .ncua-tooltip {
|
|
4991
|
+
position: absolute;
|
|
4992
|
+
top: 50%;
|
|
4993
|
+
left: 50%;
|
|
4994
|
+
transform: translate(-50%, -50%);
|
|
4995
|
+
z-index: 10;
|
|
4996
|
+
}
|
|
4997
|
+
.ncua-image-file-input__empty-slot-wrapper .ncua-tooltip svg {
|
|
4998
|
+
opacity: 0;
|
|
4999
|
+
cursor: pointer;
|
|
5000
|
+
}
|
|
5001
|
+
.ncua-image-file-input__preview-container {
|
|
5002
|
+
position: relative;
|
|
5003
|
+
border: 1px dashed var(--gray-200);
|
|
5004
|
+
border-radius: var(--border-radius-md);
|
|
5005
|
+
background-color: var(--gray-50);
|
|
5006
|
+
background-repeat: no-repeat;
|
|
5007
|
+
background-position: center;
|
|
5008
|
+
overflow: hidden;
|
|
5009
|
+
cursor: pointer;
|
|
5010
|
+
}
|
|
5011
|
+
.ncua-image-file-input__preview-container:has(.ncua-image-file-input__preview-image) {
|
|
5012
|
+
border: none;
|
|
5013
|
+
}
|
|
5014
|
+
.ncua-image-file-input__preview-container:not(:has(.ncua-image-file-input__preview-image)) {
|
|
5015
|
+
transition: background-color 0.2s ease, border-color 0.2s ease;
|
|
5016
|
+
}
|
|
5017
|
+
.ncua-image-file-input__preview-container:not(:has(.ncua-image-file-input__preview-image)):focus {
|
|
5018
|
+
outline: 2px solid var(--primary-500);
|
|
5019
|
+
outline-offset: 2px;
|
|
5020
|
+
}
|
|
5021
|
+
.ncua-image-file-input__preview-container:not(:has(.ncua-image-file-input__preview-image))[disabled], .ncua-image-file-input__preview-container:not(:has(.ncua-image-file-input__preview-image)).is-disable {
|
|
5022
|
+
background-color: var(--gray-100);
|
|
5023
|
+
cursor: not-allowed;
|
|
5024
|
+
pointer-events: none;
|
|
5025
|
+
}
|
|
5026
|
+
.ncua-image-file-input__preview-container::after {
|
|
5027
|
+
content: "";
|
|
5028
|
+
position: absolute;
|
|
5029
|
+
top: 0;
|
|
5030
|
+
left: 0;
|
|
5031
|
+
width: 100%;
|
|
5032
|
+
height: 100%;
|
|
5033
|
+
background: rgba(23, 24, 24, 0.9);
|
|
5034
|
+
border-radius: var(--border-radius-md);
|
|
5035
|
+
opacity: 0;
|
|
5036
|
+
transition: opacity 0.2s ease;
|
|
5037
|
+
pointer-events: none;
|
|
5038
|
+
}
|
|
5039
|
+
.ncua-image-file-input__preview-container:has(.ncua-image-file-input__preview-image):hover::after {
|
|
5040
|
+
opacity: 1;
|
|
5041
|
+
}
|
|
5042
|
+
.ncua-image-file-input__preview-container[disabled], .ncua-image-file-input__preview-container.is-disable, .ncua-image-file-input__preview-container.ncua-btn:hover {
|
|
5043
|
+
border: 1px dashed var(--gray-200);
|
|
5044
|
+
}
|
|
5045
|
+
.ncua-image-file-input__preview-remove-button {
|
|
5046
|
+
position: absolute;
|
|
5047
|
+
top: 50%;
|
|
5048
|
+
left: 50%;
|
|
5049
|
+
transform: translate(-50%, -50%);
|
|
5050
|
+
opacity: 0;
|
|
5051
|
+
transition: opacity 0.2s ease;
|
|
5052
|
+
z-index: 1;
|
|
5053
|
+
padding: 0;
|
|
5054
|
+
min-width: auto;
|
|
5055
|
+
background: transparent;
|
|
5056
|
+
color: var(--gray-200);
|
|
5057
|
+
}
|
|
5058
|
+
.ncua-image-file-input__preview-container:hover .ncua-image-file-input__preview-remove-button {
|
|
5059
|
+
opacity: 1;
|
|
5060
|
+
}
|
|
5061
|
+
.ncua-image-file-input__preview-remove-button:hover:not([disabled], .is-disable) {
|
|
5062
|
+
color: var(--gray-200);
|
|
5063
|
+
}
|
|
5064
|
+
.ncua-image-file-input__preview-image {
|
|
5065
|
+
position: absolute;
|
|
5066
|
+
top: 0;
|
|
5067
|
+
left: 0;
|
|
5068
|
+
width: 100%;
|
|
5069
|
+
height: 100%;
|
|
5070
|
+
border-radius: var(--border-radius-md);
|
|
5071
|
+
object-fit: cover;
|
|
5072
|
+
}
|
|
5073
|
+
.ncua-image-file-input .ncua-file-input__hint-list {
|
|
5074
|
+
font-size: var(--font-size-xxs);
|
|
5075
|
+
line-height: var(--line-heights-xxs);
|
|
5076
|
+
}
|
|
5077
|
+
.ncua-image-file-input .ncua-file-input__hint-list li + li {
|
|
5078
|
+
margin-top: 0;
|
|
5079
|
+
}
|
|
5080
|
+
.ncua-image-file-input .ncua-file-input__input-container:has(.ncua-label:empty) {
|
|
5081
|
+
gap: 0;
|
|
5082
|
+
}
|
|
5083
|
+
.ncua-image-file-input--xs {
|
|
5084
|
+
font-size: var(--font-size-xs);
|
|
5085
|
+
line-height: var(--line-heights-xs);
|
|
5086
|
+
}
|
|
5087
|
+
.ncua-image-file-input--xs .ncua-image-file-input__previews {
|
|
5088
|
+
height: 48px;
|
|
5089
|
+
min-width: 48px;
|
|
5090
|
+
}
|
|
5091
|
+
.ncua-image-file-input--xs .ncua-image-file-input__empty-slot-wrapper .ncua-tooltip svg {
|
|
5092
|
+
width: 48px;
|
|
5093
|
+
height: 48px;
|
|
5094
|
+
}
|
|
5095
|
+
.ncua-image-file-input--xs .ncua-image-file-input__preview-container {
|
|
5096
|
+
width: 48px;
|
|
5097
|
+
height: 48px;
|
|
5098
|
+
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 20 20' fill='none'%3E%3Cpath d='M10 4.16669V15.8334M4.16669 10H15.8334' stroke='%23757678' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
|
|
5099
|
+
}
|
|
5100
|
+
.ncua-image-file-input--xs .ncua-image-file-input__preview-container:not(:has(.ncua-image-file-input__preview-image))[disabled], .ncua-image-file-input--xs .ncua-image-file-input__preview-container:not(:has(.ncua-image-file-input__preview-image)).is-disable {
|
|
5101
|
+
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 20 20' fill='none'%3E%3Cpath d='M10 4.16669V15.8334M4.16669 10H15.8334' stroke='%23d3d4d8' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
|
|
5102
|
+
}
|
|
5103
|
+
.ncua-image-file-input--xs .ncua-image-file-input__empty-slot-wrapper .ncua-tooltip .ncua-tooltip__bg {
|
|
5104
|
+
top: auto;
|
|
5105
|
+
bottom: -20px;
|
|
5106
|
+
}
|
|
5107
|
+
.ncua-image-file-input--sm {
|
|
5108
|
+
font-size: var(--font-size-sm);
|
|
5109
|
+
line-height: var(--line-heights-sm);
|
|
5110
|
+
}
|
|
5111
|
+
.ncua-image-file-input--sm .ncua-image-file-input__previews {
|
|
5112
|
+
height: 80px;
|
|
5113
|
+
min-width: 80px;
|
|
5114
|
+
}
|
|
5115
|
+
.ncua-image-file-input--sm .ncua-image-file-input__empty-slot-wrapper .ncua-tooltip svg {
|
|
5116
|
+
width: 80px;
|
|
5117
|
+
height: 80px;
|
|
5118
|
+
}
|
|
5119
|
+
.ncua-image-file-input--sm .ncua-image-file-input__preview-container {
|
|
5120
|
+
width: 80px;
|
|
5121
|
+
height: 80px;
|
|
5122
|
+
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 20 20' fill='none'%3E%3Cpath d='M10 4.16669V15.8334M4.16669 10H15.8334' stroke='%23757678' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
|
|
5123
|
+
}
|
|
5124
|
+
.ncua-image-file-input--sm .ncua-image-file-input__preview-container:not(:has(.ncua-image-file-input__preview-image))[disabled], .ncua-image-file-input--sm .ncua-image-file-input__preview-container:not(:has(.ncua-image-file-input__preview-image)).is-disable {
|
|
5125
|
+
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 20 20' fill='none'%3E%3Cpath d='M10 4.16669V15.8334M4.16669 10H15.8334' stroke='%23d3d4d8' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
|
|
5126
|
+
}
|
|
5127
|
+
.ncua-image-file-input--sm .ncua-image-file-input__empty-slot-wrapper .ncua-tooltip .ncua-tooltip__bg {
|
|
5128
|
+
top: auto;
|
|
5129
|
+
bottom: -16px;
|
|
5130
|
+
}
|
|
5131
|
+
.ncua-image-file-input--xs .ncua-file-input {
|
|
5132
|
+
gap: 8px;
|
|
5133
|
+
}
|
|
5134
|
+
.ncua-image-file-input--sm .ncua-file-input {
|
|
5135
|
+
gap: 16px;
|
|
5136
|
+
}
|
|
5137
|
+
|
|
3752
5138
|
.flatpickr-calendar {
|
|
3753
5139
|
background: transparent;
|
|
3754
5140
|
opacity: 0;
|