@innovaccer/design-system 2.5.0 → 2.7.0-0
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/.eslintrc.json +54 -0
- package/.github/workflows/chromatic.yml +5 -0
- package/.github/workflows/main.yml +2 -2
- package/.github/workflows/pull_request.yml +2 -2
- package/.github/workflows/test.yml +1 -1
- package/.husky/commit-msg +4 -0
- package/.prettierrc +2 -2
- package/.storybook/main.js +4 -0
- package/.vscode/settings.json +11 -0
- package/CHANGELOG.md +78 -0
- package/CONTRIBUTING.md +180 -98
- package/commitlint.config.js +1 -0
- package/core/accessibility/utils/index.ts +5 -0
- package/core/accessibility/utils/isEnterKey.ts +5 -0
- package/core/accessibility/utils/isSpaceKey.ts +5 -0
- package/core/accessibility/utils/useAccessibilityProps.ts +33 -0
- package/core/common.type.tsx +22 -0
- package/core/components/atoms/_chip/__tests__/__snapshots__/_chip.test.tsx.snap +17 -9
- package/core/components/atoms/_chip/index.tsx +19 -3
- package/core/components/atoms/avatar/Avatar.tsx +4 -14
- package/core/components/atoms/avatar/__stories__/variants/Appearance.story.tsx +3 -2
- package/core/components/atoms/avatar/__tests__/Avatar.test.tsx +14 -9
- package/core/components/atoms/avatarGroup/AvatarGroup.tsx +3 -5
- package/core/components/atoms/badge/Badge.tsx +2 -12
- package/core/components/atoms/badge/__tests__/Badge.test.tsx +22 -7
- package/core/components/atoms/badge/_stories_/variants/Appearance.story.tsx +3 -2
- package/core/components/atoms/badge/_stories_/variants/Subtle.story.tsx +3 -2
- package/core/components/atoms/button/Button.tsx +10 -7
- package/core/components/atoms/button/__stories__/Alert.story.tsx +8 -1
- package/core/components/atoms/button/__stories__/Cancel.story.tsx +4 -1
- package/core/components/atoms/button/__stories__/IconButtonGroup.story.tsx +12 -3
- package/core/components/atoms/button/__stories__/IconButtonSecondary.story.tsx +6 -1
- package/core/components/atoms/button/__stories__/IconLeftSecondary.story.tsx +4 -1
- package/core/components/atoms/button/__stories__/IconRightSecondary.story.tsx +4 -1
- package/core/components/atoms/button/__stories__/IconTransparent.story.tsx +4 -1
- package/core/components/atoms/button/__stories__/LabelButtonGroup.story.tsx +14 -3
- package/core/components/atoms/button/__stories__/LargeIconExpanded.story.tsx +4 -1
- package/core/components/atoms/button/__stories__/LoadingPrimary.story.tsx +4 -1
- package/core/components/atoms/button/__stories__/Primary.story.tsx +5 -2
- package/core/components/atoms/button/__stories__/SplitButton.story.tsx +6 -1
- package/core/components/atoms/button/__stories__/Transparent.story.tsx +8 -1
- package/core/components/atoms/button/__stories__/index.story.tsx +12 -2
- package/core/components/atoms/button/__stories__/variants/Appearance.story.tsx +6 -2
- package/core/components/atoms/button/__stories__/variants/Expanded.story.tsx +6 -2
- package/core/components/atoms/button/__stories__/variants/Size.story.tsx +4 -0
- package/core/components/atoms/button/__stories__/variants/icon/Icon.story.tsx +15 -0
- package/core/components/atoms/button/__stories__/variants/icon/IconLeft.story.tsx +6 -2
- package/core/components/atoms/button/__stories__/variants/icon/IconRight.story.tsx +6 -2
- package/core/components/atoms/button/__stories__/variants/state/Alert.story.tsx +7 -17
- package/core/components/atoms/button/__stories__/variants/state/Basic.story.tsx +9 -17
- package/core/components/atoms/button/__stories__/variants/state/Primary.story.tsx +7 -17
- package/core/components/atoms/button/__stories__/variants/state/Transparent.story.tsx +13 -17
- package/core/components/atoms/button/__tests__/Button.test.tsx +1 -1
- package/core/components/atoms/button/__tests__/__snapshots__/Button.test.tsx.snap +0 -137
- package/core/components/atoms/card/__stories__/empty.story.tsx +1 -1
- package/core/components/atoms/card/__stories__/nested.story.tsx +1 -1
- package/core/components/atoms/card/__stories__/scroll.story.tsx +1 -1
- package/core/components/atoms/checkbox/Checkbox.tsx +8 -9
- package/core/components/atoms/checkbox/__stories__/variants/Size.story.tsx +2 -2
- package/core/components/atoms/chip/Chip.tsx +3 -2
- package/core/components/atoms/chip/__stories__/variants/Selection.story.tsx +17 -0
- package/core/components/atoms/chip/__stories__/variants/Type.story.tsx +2 -2
- package/core/components/atoms/chip/__tests__/Chip.test.tsx +7 -0
- package/core/components/atoms/chipGroup/__tests__/__snapshots__/chipGroup.test.tsx.snap +11 -5
- package/core/components/atoms/chipGroup/__tests__/chipGroup.test.tsx +2 -2
- package/core/components/atoms/chipGroup/_stories_/index.story.tsx +2 -2
- package/core/components/atoms/collapsible/__tests__/__snapshots__/Collapsible.test.tsx.snap +8 -0
- package/core/components/atoms/divider/Divider.tsx +44 -0
- package/core/components/atoms/divider/__stories__/BasicDividerInCard.story.tsx +74 -0
- package/core/components/atoms/divider/__stories__/HeaderDividerInCard.story.tsx +35 -0
- package/core/components/atoms/divider/__stories__/IndentedDivider.story.tsx +49 -0
- package/core/components/atoms/divider/__stories__/Vertical.story.tsx +51 -0
- package/core/components/atoms/divider/__stories__/index.story.tsx +91 -0
- package/core/components/atoms/divider/__stories__/variants/HorizontalDivider.story.tsx +27 -0
- package/core/components/atoms/divider/__tests__/Divider.test.tsx +50 -0
- package/core/components/atoms/divider/__tests__/__snapshots__/Divider.test.tsx.snap +53 -0
- package/core/components/atoms/divider/index.tsx +2 -0
- package/core/components/atoms/dropdown/Dropdown.tsx +18 -17
- package/core/components/atoms/dropdown/DropdownButton.tsx +2 -2
- package/core/components/atoms/dropdown/DropdownList.tsx +18 -7
- package/core/components/atoms/dropdown/Loading.tsx +1 -1
- package/core/components/atoms/dropdown/__stories__/CustomSearchPlaceholder.story.tsx +45 -0
- package/core/components/atoms/dropdown/__stories__/_common_/types.tsx +3 -0
- package/core/components/atoms/dropdown/__stories__/variants/Size.story.tsx +2 -2
- package/core/components/atoms/dropdown/__stories__/variants/controlledDropdown/MultiSelect.story.tsx +28 -18
- package/core/components/atoms/dropdown/__tests__/Dropdown.test.tsx +12 -1
- package/core/components/atoms/dropdown/__tests__/Loading.test.tsx +0 -1
- package/core/components/atoms/dropdown/option/DefaultOption.tsx +3 -0
- package/core/components/atoms/dropdown/option/IconOption.tsx +3 -0
- package/core/components/atoms/dropdown/option/IconWithMetaOption.tsx +3 -0
- package/core/components/atoms/dropdown/option/MetaOption.tsx +3 -0
- package/core/components/atoms/dropdown/option/index.tsx +1 -1
- package/core/components/atoms/editable/Editable.tsx +3 -0
- package/core/components/atoms/heading/Heading.tsx +4 -4
- package/core/components/atoms/heading/__stories__/variants/Appearance.story.tsx +3 -2
- package/core/components/atoms/heading/__tests__/Heading.test.tsx +4 -3
- package/core/components/atoms/icon/Icon.tsx +16 -5
- package/core/components/atoms/icon/__stories__/variants/Image.story.tsx +6 -1
- package/core/components/atoms/icon/__tests__/__snapshots__/Icon.test.tsx.snap +74 -0
- package/core/components/atoms/input/Input.tsx +17 -7
- package/core/components/atoms/input/__stories__/BasicInput.story.tsx +2 -1
- package/core/components/atoms/input/__stories__/InputWithCaption.story.tsx +91 -9
- package/core/components/atoms/input/__stories__/InputWithLabel.story.tsx +11 -3
- package/core/components/atoms/input/__stories__/LabelPosition.story.tsx +46 -4
- package/core/components/atoms/input/__stories__/RequiredVsOptional.story.tsx +12 -8
- package/core/components/atoms/input/__stories__/variants/controlledInput.story.tsx +46 -0
- package/core/components/atoms/input/__stories__/variants/types/BasicInput.story.tsx +2 -2
- package/core/components/atoms/input/__stories__/variants/types/IconLeft.story.tsx +2 -10
- package/core/components/atoms/input/__stories__/variants/types/WithLabel.story.tsx +1 -9
- package/core/components/atoms/input/__tests__/__snapshots__/Input.test.tsx.snap +19 -0
- package/core/components/atoms/label/Label.tsx +1 -1
- package/core/components/atoms/legend/Legend.tsx +5 -2
- package/core/components/atoms/legend/__stories__/variants/labelAppearance.story.tsx +2 -2
- package/core/components/atoms/link/Link.tsx +4 -4
- package/core/components/atoms/message/Message.tsx +12 -12
- package/core/components/atoms/message/__stories__/index.story.tsx +1 -1
- package/core/components/atoms/message/__stories__/variants/Appearance.story.tsx +1 -1
- package/core/components/atoms/message/__stories__/variants/AppearanceTitle.story.tsx +1 -1
- package/core/components/atoms/message/__tests__/Message.test.tsx +1 -6
- package/core/components/atoms/message/__tests__/__snapshots__/Message.test.tsx.snap +0 -45
- package/core/components/atoms/metaList/__tests__/MetaList.test.tsx +2 -2
- package/core/components/atoms/metricInput/MetricInput.tsx +17 -7
- package/core/components/atoms/metricInput/__stories__/DefaultMetric.story.tsx +8 -2
- package/core/components/atoms/metricInput/__stories__/WithPrefix.story.tsx +6 -2
- package/core/components/atoms/metricInput/__stories__/index.story.tsx +1 -0
- package/core/components/atoms/metricInput/__stories__/variants/Controlled.story.tsx +2 -0
- package/core/components/atoms/metricInput/__stories__/variants/Size.story.tsx +2 -2
- package/core/components/atoms/metricInput/__stories__/withSuffix.story.tsx +6 -2
- package/core/components/atoms/metricInput/__tests__/__snapshots__/MetricInput.test.tsx.snap +20 -4
- package/core/components/atoms/multiSlider/Handle.tsx +3 -0
- package/core/components/atoms/multiSlider/SliderUtils.tsx +1 -4
- package/core/components/atoms/multiSlider/index.tsx +9 -4
- package/core/components/atoms/outsideClick/OutsideClick.tsx +1 -2
- package/core/components/atoms/paragraph/Paragraph.tsx +2 -2
- package/core/components/atoms/paragraph/__stories__/variants/Appearance.story.tsx +2 -2
- package/core/components/atoms/paragraph/__tests__/Paragraph.test.tsx +2 -2
- package/core/components/atoms/pills/Pills.tsx +2 -12
- package/core/components/atoms/pills/__stories__/variants/Appearance.story.tsx +3 -2
- package/core/components/atoms/pills/__stories__/variants/Subtle.story.tsx +3 -2
- package/core/components/atoms/pills/__tests__/Pills.test.tsx +3 -2
- package/core/components/atoms/placeholderImage/PlaceholderImage.tsx +2 -2
- package/core/components/atoms/placeholderImage/__stories__/variants/Size.story.tsx +2 -2
- package/core/components/atoms/placeholderParagraph/PlaceholderParagraph.tsx +2 -2
- package/core/components/atoms/placeholderParagraph/__stories__/variants/Size.story.tsx +2 -2
- package/core/components/atoms/popperWrapper/PopperWrapper.tsx +2 -6
- package/core/components/atoms/progressRing/ProgressRing.tsx +2 -2
- package/core/components/atoms/progressRing/__stories__/variants/Size.story.tsx +1 -1
- package/core/components/atoms/radio/Radio.tsx +4 -5
- package/core/components/atoms/rangeSlider/RangeSlider.tsx +1 -2
- package/core/components/atoms/rangeSlider/__stories__/index.story.tsx +1 -2
- package/core/components/atoms/rangeSlider/__stories__/variants/Controlled.story.tsx +1 -2
- package/core/components/atoms/rangeSlider/__stories__/variants/CustomLabels.story.tsx +1 -2
- package/core/components/atoms/spinner/Spinner.tsx +4 -4
- package/core/components/atoms/spinner/__stories__/variants/Appearance.story.tsx +2 -2
- package/core/components/atoms/spinner/__stories__/variants/Size.story.tsx +1 -1
- package/core/components/atoms/statusHint/StatusHint.tsx +5 -3
- package/core/components/atoms/statusHint/__stories__/variants/Appearance.story.tsx +3 -2
- package/core/components/atoms/statusHint/__tests__/StatusHint.test.tsx +3 -2
- package/core/components/atoms/subheading/Subheading.tsx +2 -2
- package/core/components/atoms/subheading/__stories__/variants/Appearance.story.tsx +3 -2
- package/core/components/atoms/subheading/__tests__/Subheading.test.tsx +3 -2
- package/core/components/atoms/switchInput/Switch.tsx +14 -9
- package/core/components/atoms/switchInput/__stories__/DefaultSwitch.story.tsx +4 -1
- package/core/components/atoms/switchInput/__stories__/OffState.story.tsx +4 -1
- package/core/components/atoms/switchInput/__stories__/index.story.tsx +26 -3
- package/core/components/atoms/switchInput/__stories__/variants/Size.story.tsx +10 -1
- package/core/components/atoms/switchInput/__stories__/variants/State.story.tsx +9 -2
- package/core/components/atoms/text/Text.tsx +4 -4
- package/core/components/atoms/text/__stories__/variants/Appearance.story.tsx +2 -2
- package/core/components/atoms/text/__tests__/Text.test.tsx +2 -3
- package/core/components/atoms/textarea/__stories__/TextareaWithCaption.story.tsx +9 -3
- package/core/components/atoms/textarea/__stories__/defaultTextarea.story.tsx +10 -2
- package/core/components/atoms/textarea/__stories__/index.story.tsx +1 -0
- package/core/components/atoms/textarea/__stories__/variants/Disable.story.tsx +1 -0
- package/core/components/atoms/toast/ActionButton.tsx +2 -2
- package/core/components/atoms/toast/Toast.tsx +11 -6
- package/core/components/atoms/toast/__stories__/index.story.tsx +2 -6
- package/core/components/atoms/toast/__stories__/variants/Appearance.story.tsx +3 -2
- package/core/components/atoms/toast/__stories__/variants/ToastMessage.story.tsx +3 -2
- package/core/components/atoms/toast/__stories__/variants/ToastWithAction.story.tsx +3 -2
- package/core/components/atoms/toast/__tests__/Toast.test.tsx +1 -1
- package/core/components/atoms/toast/__tests__/__snapshots__/Toast.test.tsx.snap +24 -125
- package/core/components/css-utilities/Schema.tsx +1 -1
- package/core/components/css-utilities/Spacing/Schema.tsx +1 -1
- package/core/components/molecules/chatMessage/Box.tsx +3 -0
- package/core/components/molecules/chipInput/ChipInput.tsx +3 -0
- package/core/components/molecules/chipInput/__tests__/__snapshots__/ChipInput.test.tsx.snap +14 -2
- package/core/components/molecules/dropzone/Dropzone.tsx +6 -3
- package/core/components/molecules/dropzone/DropzoneBase.tsx +22 -38
- package/core/components/molecules/dropzone/FileSelectorUtils.tsx +1 -1
- package/core/components/molecules/dropzone/__stories__/index.story.tsx +151 -41
- package/core/components/molecules/dropzone/__tests__/Dropzone.test.tsx +2 -2
- package/core/components/molecules/dropzone/utils.tsx +6 -4
- package/core/components/molecules/editableChipInput/EditableChipInput.tsx +9 -5
- package/core/components/molecules/editableChipInput/__stories__/Uncontrolled.story.tsx +1 -1
- package/core/components/molecules/editableChipInput/__tests__/__snapshots__/EditableChipInput.test.tsx.snap +12 -4
- package/core/components/molecules/editableDropdown/EditableDropdown.tsx +2 -2
- package/core/components/molecules/editableInput/EditableInput.tsx +13 -4
- package/core/components/molecules/emptyState/EmptyState.tsx +9 -5
- package/core/components/molecules/emptyState/__stories__/pageNotLoadedWithSVG.story.tsx +26 -26
- package/core/components/molecules/fileList/FileListItem.tsx +3 -2
- package/core/components/molecules/fileUploader/FileUploaderItem.tsx +3 -2
- package/core/components/molecules/fileUploader/FileUploaderStatus.tsx +1 -1
- package/core/components/molecules/fileUploader/__stories__/_common_/types.tsx +3 -0
- package/core/components/molecules/fileUploader/__stories__/index.story.tsx +3 -222
- package/core/components/molecules/fullscreenModal/FullscreenModal.tsx +5 -7
- package/core/components/molecules/inputMask/InputMask.tsx +212 -146
- package/core/components/molecules/inputMask/__stories__/index.story.tsx +24 -0
- package/core/components/molecules/inputMask/__tests__/__snapshots__/InputMask.test.tsx.snap +1 -0
- package/core/components/molecules/modal/Modal.tsx +4 -6
- package/core/components/molecules/modal/__stories__/Confirmation.story.tsx +1 -1
- package/core/components/molecules/pagination/__tests__/__snapshots__/Pagination.test.tsx.snap +5 -1
- package/core/components/molecules/placeholder/Placeholder.tsx +2 -2
- package/core/components/molecules/popover/Popover.tsx +2 -9
- package/core/components/molecules/sidesheet/Sidesheet.tsx +5 -7
- package/core/components/molecules/sidesheet/__stories__/variants/CustomHeader.story.tsx +172 -0
- package/core/components/molecules/stepper/Step.tsx +2 -0
- package/core/components/molecules/tabs/Tabs.tsx +2 -0
- package/core/components/molecules/tabs/TabsWrapper.tsx +2 -0
- package/core/components/molecules/tabs/__stories__/CustomLabels.story.tsx +1 -1
- package/core/components/molecules/tooltip/Tooltip.tsx +4 -4
- package/core/components/molecules/verificationCodeInput/VerificationCodeInput.tsx +8 -4
- package/core/components/molecules/verificationCodeInput/__stories__/index.story.tsx +3 -1
- package/core/components/molecules/verificationCodeInput/__tests__/__snapshots__/VerificationCodeInput.test.tsx.snap +1 -0
- package/core/components/organisms/calendar/Calendar.tsx +130 -8
- package/core/components/organisms/calendar/__stories__/variants/firstDayOfWeek.story.tsx +2 -2
- package/core/components/organisms/calendar/__tests__/Calendar.test.tsx +27 -0
- package/core/components/organisms/calendar/utility.ts +3 -3
- package/core/components/organisms/choiceList/ChoiceList.tsx +12 -12
- package/core/components/organisms/datePicker/DatePicker.tsx +31 -16
- package/core/components/organisms/datePicker/Trigger.tsx +1 -5
- package/core/components/organisms/datePicker/__tests__/__snapshots__/DatePicker.test.tsx.snap +4518 -4479
- package/core/components/organisms/dateRangePicker/DateRangePicker.tsx +9 -10
- package/core/components/organisms/dateRangePicker/SingleInputTrigger.tsx +0 -1
- package/core/components/organisms/dateRangePicker/Trigger.tsx +2 -2
- package/core/components/organisms/dateRangePicker/__stories__/variants/monthsInView.story.tsx +2 -2
- package/core/components/organisms/dateRangePicker/__tests__/__snapshots__/DateRangePicker.test.tsx.snap +112 -40
- package/core/components/organisms/grid/Cell.tsx +23 -19
- package/core/components/organisms/grid/Grid.tsx +3 -4
- package/core/components/organisms/grid/GridBody.tsx +0 -1
- package/core/components/organisms/grid/GridContext.ts +1 -1
- package/core/components/organisms/grid/GridRow.tsx +4 -0
- package/core/components/organisms/grid/__stories__/_common_/editableSchema.tsx +1 -3
- package/core/components/organisms/grid/__stories__/_common_/fetchData.ts +3 -3
- package/core/components/organisms/grid/__stories__/_common_/loaderSchema.ts +0 -2
- package/core/components/organisms/grid/__stories__/_common_/schema.tsx +1 -3
- package/core/components/organisms/grid/__stories__/_common_/simpleLoaderSchema.ts +0 -2
- package/core/components/organisms/grid/__stories__/_common_/statusSchema.ts +0 -2
- package/core/components/organisms/horizontalNav/HorizontalNav.tsx +2 -0
- package/core/components/organisms/inlineMessage/InlineMessage.tsx +5 -7
- package/core/components/organisms/inlineMessage/__tests__/InlineMessage.test.tsx +3 -2
- package/core/components/organisms/inlineMessage/__tests__/__snapshots__/InlineMessage.test.tsx.snap +30 -40
- package/core/components/organisms/list/__stories__/_common_/types.tsx +3 -0
- package/core/components/organisms/list/__stories__/index.story.tsx +0 -16
- package/core/components/organisms/navigation/VerticalNavigation.tsx +4 -0
- package/core/components/organisms/table/Table.tsx +3 -2
- package/core/components/organisms/table/__stories__/CompressedTable.story.tsx +1 -1
- package/core/components/organisms/table/__stories__/DataTable.story.tsx +1 -1
- package/core/components/organisms/table/__stories__/NestedTableWithNestedCard.story.tsx +1 -1
- package/core/components/organisms/table/__stories__/PinnedColumn.story.tsx +1 -1
- package/core/components/organisms/table/__stories__/ResourceTable.story.tsx +4 -3
- package/core/components/organisms/table/__stories__/Selection.story.tsx +2 -2
- package/core/components/organisms/table/__stories__/StandardTable.story.tsx +1 -1
- package/core/components/organisms/table/__stories__/TableAsDescriptionList.story.tsx +2 -2
- package/core/components/organisms/table/__stories__/TableAsOptionList.story.tsx +2 -2
- package/core/components/organisms/table/__stories__/TightStory.story.tsx +1 -1
- package/core/components/organisms/table/__stories__/_common_/types.tsx +3 -0
- package/core/components/organisms/table/__stories__/syncTable.story.tsx +14 -6
- package/core/components/organisms/table/__stories__/variants/showHead.story.tsx +2 -2
- package/core/components/organisms/table/__stories__/variants/showMenu.story.tsx +2 -2
- package/core/components/organisms/table/__stories__/variants/size.story.tsx +2 -2
- package/core/components/organisms/table/__stories__/variants/type.story.tsx +2 -2
- package/core/components/organisms/table/__stories__/variants/withCheckbox.story.tsx +2 -2
- package/core/components/organisms/table/__stories__/variants/withHeader.story.tsx +0 -2
- package/core/components/organisms/table/__stories__/variants/withPagination.story.tsx +2 -2
- package/core/components/organisms/timePicker/TimePicker.tsx +4 -8
- package/core/components/organisms/timePicker/__tests__/__snapshots__/TimePicker.test.tsx.snap +14 -2
- package/core/components/organisms/verticalNav/MenuItem.tsx +2 -0
- package/core/components/organisms/verticalNav/__stories__/schema.tsx +0 -2
- package/core/components/organisms/verticalNav/__tests__/VerticalNav.test.tsx +1 -2
- package/core/components/patterns/datePicker/datePickerWithPresets.story.tsx +126 -0
- package/core/components/patterns/dateRangePicker/withCustomPopover.story.tsx +8 -8
- package/core/components/patterns/forms/CreatePassword.story.tsx +1 -1
- package/core/components/patterns/forms/VerificationCodeInput.story.tsx +2 -2
- package/core/components/patterns/table/Table with Header/tableWithHeader.story.jsx +7 -7
- package/core/global.d.ts +9 -0
- package/core/index.tsx +2 -1
- package/core/index.type.tsx +1 -0
- package/core/utils/Keys.ts +4 -0
- package/core/utils/__tests__/__snapshots__/TS.test.tsx.snap +562 -541
- package/core/utils/docPage/generateImports.tsx +2 -3
- package/core/utils/docPage/index.tsx +52 -37
- package/core/utils/docPage/sandbox.tsx +14 -7
- package/core/utils/overlayHelper.ts +7 -3
- package/core/utils/testHelper.ts +2 -2
- package/core/utils/types.tsx +1 -1
- package/core/utils/validators.ts +37 -34
- package/css/dist/index.css +1550 -1415
- package/css/dist/index.css.map +1 -1
- package/css/src/components/Legend.css +7 -7
- package/css/src/components/ProgressBar.css +1 -1
- package/css/src/components/avatarGroup.css +1 -1
- package/css/src/components/backdrop.css +12 -6
- package/css/src/components/badge.css +52 -52
- package/css/src/components/button.css +95 -94
- package/css/src/components/calendar.css +137 -126
- package/css/src/components/card.css +0 -1
- package/css/src/components/cardSubdued.css +3 -5
- package/css/src/components/chat.css +1 -1
- package/css/src/components/checkbox.css +71 -70
- package/css/src/components/chip.css +20 -17
- package/css/src/components/chipGroup.css +5 -5
- package/css/src/components/chipInput.css +1 -1
- package/css/src/components/choiceList.css +4 -4
- package/css/src/components/dateRangePicker.css +13 -13
- package/css/src/components/divider.css +20 -0
- package/css/src/components/dropdown.css +61 -61
- package/css/src/components/dropdownButton.css +36 -36
- package/css/src/components/dropzone.css +16 -20
- package/css/src/components/editableChipInput.css +10 -9
- package/css/src/components/editableDropdown.css +1 -1
- package/css/src/components/editableInput.css +1 -1
- package/css/src/components/emptyState.css +15 -15
- package/css/src/components/fileList.css +44 -45
- package/css/src/components/fullscreenModal.css +4 -3
- package/css/src/components/grid.css +217 -199
- package/css/src/components/horizontalNav.css +0 -1
- package/css/src/components/icon.css +1 -7
- package/css/src/components/inlineMessage.css +2 -1
- package/css/src/components/input.css +62 -62
- package/css/src/components/link.css +1 -1
- package/css/src/components/list.css +10 -10
- package/css/src/components/message.css +64 -70
- package/css/src/components/metaList.css +26 -26
- package/css/src/components/metricInput.css +3 -4
- package/css/src/components/modal.css +1 -1
- package/css/src/components/navigation.css +3 -3
- package/css/src/components/pageHeader.css +1 -2
- package/css/src/components/pagination.css +36 -36
- package/css/src/components/pills.css +19 -19
- package/css/src/components/placeholder.css +10 -5
- package/css/src/components/popover.css +2 -2
- package/css/src/components/progressRing.css +1 -1
- package/css/src/components/radio.css +74 -74
- package/css/src/components/slider.css +5 -5
- package/css/src/components/statusHints.css +15 -15
- package/css/src/components/switch.css +66 -41
- package/css/src/components/table.css +15 -15
- package/css/src/components/tabs.css +53 -53
- package/css/src/components/textarea.css +1 -1
- package/css/src/components/toast.css +51 -56
- package/css/src/components/verificationCodeInput.css +5 -6
- package/css/src/components/verticalNav.css +1 -2
- package/css/src/core/base.css +3 -0
- package/css/src/core/typography.css +1 -1
- package/css/src/core/utilities.css +1 -1
- package/css/src/tokens/index.css +63 -63
- package/css/src/utils/align.css +1 -1
- package/css/src/utils/background.css +1 -1
- package/css/src/utils/cursor.css +1 -1
- package/css/src/utils/display.css +1 -1
- package/css/src/utils/flex.css +1 -1
- package/css/src/utils/grid.css +1 -1
- package/css/src/utils/overflow.css +1 -1
- package/css/src/utils/position.css +1 -1
- package/css/src/utils/spacing.css +1 -1
- package/css/src/utils/utility.css +13 -13
- package/css/src/variables/index.css +6 -3
- package/dist/core/accessibility/utils/index.d.ts +4 -0
- package/dist/core/accessibility/utils/isEnterKey.d.ts +3 -0
- package/dist/core/accessibility/utils/isSpaceKey.d.ts +3 -0
- package/dist/core/accessibility/utils/useAccessibilityProps.d.ts +18 -0
- package/dist/core/common.type.d.ts +12 -0
- package/dist/core/components/atoms/avatar/Avatar.d.ts +4 -4
- package/dist/core/components/atoms/avatarGroup/AvatarGroup.d.ts +2 -3
- package/dist/core/components/atoms/badge/Badge.d.ts +2 -2
- package/dist/core/components/atoms/button/Button.d.ts +6 -6
- package/dist/core/components/atoms/checkbox/Checkbox.d.ts +3 -3
- package/dist/core/components/atoms/chip/Chip.d.ts +2 -2
- package/dist/core/components/atoms/divider/Divider.d.ts +15 -0
- package/dist/core/components/atoms/divider/index.d.ts +2 -0
- package/dist/core/components/atoms/dropdown/Dropdown.d.ts +18 -17
- package/dist/core/components/atoms/dropdown/DropdownButton.d.ts +2 -2
- package/dist/core/components/atoms/dropdown/DropdownList.d.ts +4 -3
- package/dist/core/components/atoms/dropdown/option/index.d.ts +1 -1
- package/dist/core/components/atoms/heading/Heading.d.ts +4 -4
- package/dist/core/components/atoms/icon/Icon.d.ts +5 -3
- package/dist/core/components/atoms/input/Input.d.ts +4 -4
- package/dist/core/components/atoms/legend/Legend.d.ts +2 -2
- package/dist/core/components/atoms/link/Link.d.ts +4 -4
- package/dist/core/components/atoms/message/Message.d.ts +2 -2
- package/dist/core/components/atoms/metricInput/MetricInput.d.ts +3 -3
- package/dist/core/components/atoms/multiSlider/SliderUtils.d.ts +1 -1
- package/dist/core/components/atoms/multiSlider/index.d.ts +3 -3
- package/dist/core/components/atoms/paragraph/Paragraph.d.ts +2 -2
- package/dist/core/components/atoms/pills/Pills.d.ts +2 -2
- package/dist/core/components/atoms/placeholderImage/PlaceholderImage.d.ts +2 -2
- package/dist/core/components/atoms/placeholderParagraph/PlaceholderParagraph.d.ts +2 -2
- package/dist/core/components/atoms/popperWrapper/PopperWrapper.d.ts +51 -51
- package/dist/core/components/atoms/progressRing/ProgressRing.d.ts +2 -2
- package/dist/core/components/atoms/radio/Radio.d.ts +4 -4
- package/dist/core/components/atoms/rangeSlider/RangeSlider.d.ts +1 -1
- package/dist/core/components/atoms/spinner/Spinner.d.ts +4 -4
- package/dist/core/components/atoms/statusHint/StatusHint.d.ts +2 -2
- package/dist/core/components/atoms/subheading/Subheading.d.ts +2 -2
- package/dist/core/components/atoms/switchInput/Switch.d.ts +7 -6
- package/dist/core/components/atoms/text/Text.d.ts +4 -4
- package/dist/core/components/atoms/toast/ActionButton.d.ts +2 -2
- package/dist/core/components/atoms/toast/Toast.d.ts +2 -2
- package/dist/core/components/molecules/dropzone/Dropzone.d.ts +3 -3
- package/dist/core/components/molecules/dropzone/DropzoneBase.d.ts +1 -1
- package/dist/core/components/molecules/dropzone/utils.d.ts +5 -3
- package/dist/core/components/molecules/emptyState/EmptyState.d.ts +4 -4
- package/dist/core/components/molecules/fileList/FileListItem.d.ts +1 -1
- package/dist/core/components/molecules/fileUploader/FileUploaderItem.d.ts +1 -1
- package/dist/core/components/molecules/fileUploader/FileUploaderStatus.d.ts +1 -1
- package/dist/core/components/molecules/fullscreenModal/FullscreenModal.d.ts +4 -7
- package/dist/core/components/molecules/inputMask/InputMask.d.ts +10 -2
- package/dist/core/components/molecules/modal/Modal.d.ts +3 -6
- package/dist/core/components/molecules/placeholder/Placeholder.d.ts +2 -2
- package/dist/core/components/molecules/popover/Popover.d.ts +0 -1
- package/dist/core/components/molecules/sidesheet/Sidesheet.d.ts +3 -6
- package/dist/core/components/molecules/tooltip/Tooltip.d.ts +3 -3
- package/dist/core/components/organisms/calendar/Calendar.d.ts +31 -0
- package/dist/core/components/organisms/choiceList/ChoiceList.d.ts +5 -6
- package/dist/core/components/organisms/datePicker/DatePicker.d.ts +2 -0
- package/dist/core/components/organisms/dateRangePicker/DateRangePicker.d.ts +24 -0
- package/dist/core/components/organisms/grid/Cell.d.ts +1 -1
- package/dist/core/components/organisms/grid/Grid.d.ts +3 -3
- package/dist/core/components/organisms/grid/GridContext.d.ts +1 -1
- package/dist/core/components/organisms/inlineMessage/InlineMessage.d.ts +2 -2
- package/dist/core/components/organisms/table/Table.d.ts +2 -2
- package/dist/core/components/patterns/datePicker/datePickerWithPresets.story.d.ts +15 -0
- package/dist/core/components/patterns/dateRangePicker/withCustomPopover.story.d.ts +5 -1
- package/dist/core/index.d.ts +1 -0
- package/dist/core/index.type.d.ts +1 -0
- package/dist/core/utils/docPage/generateImports.d.ts +1 -1
- package/dist/core/utils/overlayHelper.d.ts +1 -1
- package/dist/core/utils/types.d.ts +1 -1
- package/dist/index.esm.js +1039 -729
- package/dist/index.js +532 -371
- package/dist/index.js.map +1 -1
- package/dist/index.umd.js +1 -1
- package/dist/index.umd.js.br +0 -0
- package/dist/index.umd.js.gz +0 -0
- package/dts.config.js +11 -2
- package/package.json +32 -27
- package/tsconfig.json +3 -16
- package/tsconfig.type.json +2 -1
- package/types/index.d.ts +2217 -0
- package/types/{innovaccer-design-system/tsconfig.json → tsconfig.json} +1 -1
- package/types/{innovaccer-design-system/tslint.json → tslint.json} +0 -0
- package/types/types-tests.tsx +936 -0
- package/.husky/prepare-commit-msg +0 -6
- package/core/components/atoms/button/__stories__/variants/state/Success.story.tsx +0 -99
- package/core/components/atoms/message/__stories__/default.story.tsx +0 -16
- package/core/components/atoms/toast/__stories__/DefaultToast.story.tsx +0 -16
- package/core/components/molecules/dropzone/__stories__/variants/DropzoneWithFileList.story.tsx +0 -176
- package/core/components/molecules/fileUploader/__stories__/variants/FileUploaderList.story.tsx +0 -80
- package/tslint.json +0 -30
- package/types/innovaccer-design-system/index.d.ts +0 -39
- package/types/innovaccer-design-system/innovaccer-design-system-tests.ts +0 -0
package/css/dist/index.css
CHANGED
|
@@ -1,69 +1,69 @@
|
|
|
1
1
|
/**** Colors ****/
|
|
2
2
|
:root {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
3
|
+
--haldi: #ffc208;
|
|
4
|
+
--haldi-dark: #b78707;
|
|
5
|
+
--haldi-darker: #6b4a06;
|
|
6
|
+
--haldi-light: #ffd462;
|
|
7
|
+
--haldi-lighter: #ffe597;
|
|
8
|
+
--haldi-lightest: #fff5c7;
|
|
9
|
+
--jal: #0070dd;
|
|
10
|
+
--jal-dark: #00509f;
|
|
11
|
+
--jal-darker: #003365;
|
|
12
|
+
--jal-light: #4f9de7;
|
|
13
|
+
--jal-lighter: #97c5f0;
|
|
14
|
+
--jal-lightest: #dcecf9;
|
|
15
|
+
--jamun: #7a53b2;
|
|
16
|
+
--jamun-dark: #644491;
|
|
17
|
+
--jamun-darker: #4e3572;
|
|
18
|
+
--jamun-light: #9d7ec6;
|
|
19
|
+
--jamun-lighter: #bfaada;
|
|
20
|
+
--jamun-lightest: #e0d8ee;
|
|
21
|
+
--mirch: #d93737;
|
|
22
|
+
--mirch-dark: #9c2828;
|
|
23
|
+
--mirch-darker: #631919;
|
|
24
|
+
--mirch-light: #eb776c;
|
|
25
|
+
--mirch-lighter: #f7ada5;
|
|
26
|
+
--mirch-lightest: #f9e2e2;
|
|
27
|
+
--neel: #3d51d4;
|
|
28
|
+
--neel-dark: #2c3a98;
|
|
29
|
+
--neel-darker: #1c2561;
|
|
30
|
+
--neel-light: #7583e1;
|
|
31
|
+
--neel-lighter: #abb4ed;
|
|
32
|
+
--neel-lightest: #e2e5f9;
|
|
33
|
+
--neem: #2ea843;
|
|
34
|
+
--neem-dark: #227934;
|
|
35
|
+
--neem-darker: #154d26;
|
|
36
|
+
--neem-light: #71c077;
|
|
37
|
+
--neem-lighter: #a5d8aa;
|
|
38
|
+
--neem-lightest: #d7efdf;
|
|
39
|
+
--night: #2f2f2f;
|
|
40
|
+
--night-light: #595959;
|
|
41
|
+
--night-lighter: #868686;
|
|
42
|
+
--night-lightest: #a6a6a6;
|
|
43
|
+
--nimbu: #82c91e;
|
|
44
|
+
--nimbu-dark: #578715;
|
|
45
|
+
--nimbu-darker: #304a0b;
|
|
46
|
+
--nimbu-light: #a6d763;
|
|
47
|
+
--nimbu-lighter: #c6e599;
|
|
48
|
+
--nimbu-lightest: #e3f3ce;
|
|
49
|
+
--shadow-0: #ffffff;
|
|
50
|
+
--shadow-10: #ffffff;
|
|
51
|
+
--shadow-20: #ffffff;
|
|
52
|
+
--shadow-30: #ffffff;
|
|
53
|
+
--stone: #d5d5d5;
|
|
54
|
+
--stone-dark: #c5c5c5;
|
|
55
|
+
--stone-light: #e5e5e5;
|
|
56
|
+
--stone-lighter: #ececec;
|
|
57
|
+
--stone-lightest: #f4f4f4;
|
|
58
|
+
--tawak: #f07d00;
|
|
59
|
+
--tawak-dark: #b35f13;
|
|
60
|
+
--tawak-darker: #743208;
|
|
61
|
+
--tawak-light: #feac5f;
|
|
62
|
+
--tawak-lighter: #ffc998;
|
|
63
|
+
--tawak-lightest: #fde6ce;
|
|
64
|
+
--white: #ffffff;
|
|
65
|
+
|
|
66
|
+
/**** Fonts ****/
|
|
67
67
|
} /* close :root */
|
|
68
68
|
|
|
69
69
|
:root {
|
|
@@ -243,13 +243,16 @@
|
|
|
243
243
|
|
|
244
244
|
/*
|
|
245
245
|
Grid columns
|
|
246
|
-
|
|
247
|
-
|
|
246
|
+
Set the number of columns and specify the width of the gutters.
|
|
247
|
+
*/
|
|
248
248
|
|
|
249
249
|
--grid-columns: 12;
|
|
250
250
|
|
|
251
251
|
/* Undefined colors */
|
|
252
|
-
--card-subdued-bg: #
|
|
252
|
+
--card-subdued-bg: #fcfafa;
|
|
253
|
+
|
|
254
|
+
/* Transparancy (Opacity) */
|
|
255
|
+
--transparent-58: 0.58;
|
|
253
256
|
}
|
|
254
257
|
|
|
255
258
|
/* fallback */
|
|
@@ -367,6 +370,9 @@
|
|
|
367
370
|
-webkit-font-feature-settings: 'liga';
|
|
368
371
|
-webkit-font-smoothing: antialiased;
|
|
369
372
|
}
|
|
373
|
+
.ss {
|
|
374
|
+
background: red;
|
|
375
|
+
}
|
|
370
376
|
|
|
371
377
|
body {
|
|
372
378
|
font-family: var(--font-family);
|
|
@@ -566,6 +572,7 @@ body {
|
|
|
566
572
|
.Subheading--white {
|
|
567
573
|
color: var(--text-white);
|
|
568
574
|
}
|
|
575
|
+
|
|
569
576
|
.PopperWrapper-trigger {
|
|
570
577
|
display: inline-flex;
|
|
571
578
|
flex-grow: 1;
|
|
@@ -578,19 +585,21 @@ body {
|
|
|
578
585
|
justify-content: center;
|
|
579
586
|
z-index: 1500;
|
|
580
587
|
}
|
|
588
|
+
|
|
581
589
|
.Legend {
|
|
582
|
-
|
|
583
|
-
|
|
584
|
-
|
|
585
|
-
|
|
586
|
-
|
|
587
|
-
|
|
590
|
+
display: flex;
|
|
591
|
+
flex-direction: row;
|
|
592
|
+
align-items: center;
|
|
593
|
+
width: -webkit-fit-content;
|
|
594
|
+
width: -moz-fit-content;
|
|
595
|
+
width: fit-content;
|
|
588
596
|
}
|
|
589
597
|
|
|
590
598
|
.Legend-icon {
|
|
591
|
-
|
|
592
|
-
|
|
599
|
+
border-radius: var(--spacing-s);
|
|
600
|
+
margin-right: var(--spacing);
|
|
593
601
|
}
|
|
602
|
+
|
|
594
603
|
.ProgressBar {
|
|
595
604
|
width: 100%;
|
|
596
605
|
border-radius: var(--spacing-m);
|
|
@@ -603,6 +612,7 @@ body {
|
|
|
603
612
|
border-radius: var(--spacing-m);
|
|
604
613
|
transition: width 200ms;
|
|
605
614
|
}
|
|
615
|
+
|
|
606
616
|
/* badge */
|
|
607
617
|
|
|
608
618
|
.Avatar {
|
|
@@ -722,23 +732,41 @@ body {
|
|
|
722
732
|
background: var(--secondary);
|
|
723
733
|
border-radius: var(--spacing-m);
|
|
724
734
|
}
|
|
735
|
+
|
|
725
736
|
@-webkit-keyframes backdrop-open {
|
|
726
|
-
from {
|
|
727
|
-
|
|
737
|
+
from {
|
|
738
|
+
opacity: 0;
|
|
739
|
+
}
|
|
740
|
+
to {
|
|
741
|
+
opacity: 60;
|
|
742
|
+
}
|
|
728
743
|
}
|
|
744
|
+
|
|
729
745
|
@keyframes backdrop-open {
|
|
730
|
-
from {
|
|
731
|
-
|
|
746
|
+
from {
|
|
747
|
+
opacity: 0;
|
|
748
|
+
}
|
|
749
|
+
to {
|
|
750
|
+
opacity: 60;
|
|
751
|
+
}
|
|
732
752
|
}
|
|
733
753
|
|
|
734
754
|
@-webkit-keyframes backdrop-close {
|
|
735
|
-
from {
|
|
736
|
-
|
|
755
|
+
from {
|
|
756
|
+
opacity: 60;
|
|
757
|
+
}
|
|
758
|
+
to {
|
|
759
|
+
opacity: 0;
|
|
760
|
+
}
|
|
737
761
|
}
|
|
738
762
|
|
|
739
763
|
@keyframes backdrop-close {
|
|
740
|
-
from {
|
|
741
|
-
|
|
764
|
+
from {
|
|
765
|
+
opacity: 60;
|
|
766
|
+
}
|
|
767
|
+
to {
|
|
768
|
+
opacity: 0;
|
|
769
|
+
}
|
|
742
770
|
}
|
|
743
771
|
|
|
744
772
|
.Backdrop {
|
|
@@ -773,117 +801,115 @@ body {
|
|
|
773
801
|
animation: backdrop-close 120ms cubic-bezier(0.4, 0.14, 1, 1);
|
|
774
802
|
}
|
|
775
803
|
|
|
776
|
-
|
|
777
|
-
|
|
778
804
|
/* badge */
|
|
779
805
|
|
|
780
806
|
.Badge {
|
|
781
|
-
|
|
782
|
-
|
|
783
|
-
|
|
784
|
-
|
|
785
|
-
|
|
786
|
-
|
|
787
|
-
|
|
788
|
-
|
|
789
|
-
|
|
790
|
-
|
|
791
|
-
|
|
792
|
-
|
|
793
|
-
|
|
794
|
-
|
|
795
|
-
|
|
796
|
-
|
|
797
|
-
|
|
798
|
-
|
|
807
|
+
/* 160px */
|
|
808
|
+
max-width: calc(var(--spacing-2) * 10);
|
|
809
|
+
/* truncate */
|
|
810
|
+
white-space: nowrap;
|
|
811
|
+
overflow: hidden;
|
|
812
|
+
text-overflow: ellipsis;
|
|
813
|
+
font-size: var(--font-size-s);
|
|
814
|
+
line-height: var(--font-height-s);
|
|
815
|
+
text-transform: uppercase;
|
|
816
|
+
padding-right: var(--spacing-m);
|
|
817
|
+
padding-left: var(--spacing-m);
|
|
818
|
+
padding-top: var(--spacing-s);
|
|
819
|
+
padding-bottom: var(--spacing-s);
|
|
820
|
+
border-radius: var(--spacing-m);
|
|
821
|
+
display: inline-block;
|
|
822
|
+
box-sizing: border-box;
|
|
823
|
+
font-weight: var(--font-weight-bold);
|
|
824
|
+
cursor: default;
|
|
799
825
|
}
|
|
800
826
|
|
|
801
827
|
.Badge--primary {
|
|
802
|
-
|
|
803
|
-
|
|
828
|
+
background: var(--primary);
|
|
829
|
+
color: var(--white);
|
|
804
830
|
}
|
|
805
831
|
|
|
806
832
|
.Badge--secondary {
|
|
807
|
-
|
|
833
|
+
background: var(--secondary-light);
|
|
808
834
|
}
|
|
809
835
|
|
|
810
836
|
.Badge--success {
|
|
811
|
-
|
|
812
|
-
|
|
837
|
+
background: var(--success);
|
|
838
|
+
color: var(--white);
|
|
813
839
|
}
|
|
814
840
|
|
|
815
841
|
.Badge--alert {
|
|
816
|
-
|
|
817
|
-
|
|
842
|
+
background: var(--alert);
|
|
843
|
+
color: var(--white);
|
|
818
844
|
}
|
|
819
845
|
|
|
820
846
|
.Badge--warning {
|
|
821
|
-
|
|
822
|
-
|
|
847
|
+
background: var(--warning);
|
|
848
|
+
color: var(--warning-darker);
|
|
823
849
|
}
|
|
824
850
|
|
|
825
851
|
.Badge--accent1 {
|
|
826
|
-
|
|
827
|
-
|
|
852
|
+
background: var(--accent1);
|
|
853
|
+
color: var(--white);
|
|
828
854
|
}
|
|
829
855
|
|
|
830
856
|
.Badge--accent2 {
|
|
831
|
-
|
|
832
|
-
|
|
857
|
+
background: var(--accent2);
|
|
858
|
+
color: var(--white);
|
|
833
859
|
}
|
|
834
860
|
|
|
835
861
|
.Badge--accent3 {
|
|
836
|
-
|
|
837
|
-
|
|
862
|
+
background: var(--accent3);
|
|
863
|
+
color: var(--white);
|
|
838
864
|
}
|
|
839
865
|
|
|
840
866
|
.Badge--accent4 {
|
|
841
|
-
|
|
842
|
-
|
|
867
|
+
background: var(--accent4);
|
|
868
|
+
color: var(--accent4-darker);
|
|
843
869
|
}
|
|
844
870
|
|
|
845
871
|
.Badge--subtle-primary {
|
|
846
|
-
|
|
847
|
-
|
|
872
|
+
color: var(--primary-dark);
|
|
873
|
+
background: var(--primary-lightest);
|
|
848
874
|
}
|
|
849
875
|
|
|
850
876
|
.Badge--subtle-secondary {
|
|
851
|
-
|
|
877
|
+
background: var(--secondary-light);
|
|
852
878
|
}
|
|
853
879
|
|
|
854
880
|
.Badge--subtle-success {
|
|
855
|
-
|
|
856
|
-
|
|
881
|
+
color: var(--success-dark);
|
|
882
|
+
background: var(--success-lightest);
|
|
857
883
|
}
|
|
858
884
|
|
|
859
885
|
.Badge--subtle-alert {
|
|
860
|
-
|
|
861
|
-
|
|
886
|
+
color: var(--alert-dark);
|
|
887
|
+
background: var(--alert-lightest);
|
|
862
888
|
}
|
|
863
889
|
|
|
864
890
|
.Badge--subtle-warning {
|
|
865
|
-
|
|
866
|
-
|
|
891
|
+
color: var(--warning-darker);
|
|
892
|
+
background: var(--warning-lightest);
|
|
867
893
|
}
|
|
868
894
|
|
|
869
895
|
.Badge--subtle-accent1 {
|
|
870
|
-
|
|
871
|
-
|
|
896
|
+
color: var(--accent1-darker);
|
|
897
|
+
background: var(--accent1-lightest);
|
|
872
898
|
}
|
|
873
899
|
|
|
874
900
|
.Badge--subtle-accent2 {
|
|
875
|
-
|
|
876
|
-
|
|
901
|
+
color: var(--accent2-dark);
|
|
902
|
+
background: var(--accent2-lightest);
|
|
877
903
|
}
|
|
878
904
|
|
|
879
905
|
.Badge--subtle-accent3 {
|
|
880
|
-
|
|
881
|
-
|
|
906
|
+
color: var(--accent3-dark);
|
|
907
|
+
background: var(--accent3-lightest);
|
|
882
908
|
}
|
|
883
909
|
|
|
884
910
|
.Badge--subtle-accent4 {
|
|
885
|
-
|
|
886
|
-
|
|
911
|
+
color: var(--accent4-darker);
|
|
912
|
+
background: var(--accent4-lightest);
|
|
887
913
|
}
|
|
888
914
|
|
|
889
915
|
/* breadcrumbs */
|
|
@@ -916,504 +942,516 @@ body {
|
|
|
916
942
|
}
|
|
917
943
|
|
|
918
944
|
.Button {
|
|
919
|
-
|
|
920
|
-
|
|
921
|
-
|
|
922
|
-
|
|
923
|
-
|
|
924
|
-
|
|
925
|
-
|
|
926
|
-
|
|
927
|
-
|
|
928
|
-
|
|
929
|
-
|
|
930
|
-
|
|
931
|
-
|
|
932
|
-
|
|
945
|
+
display: flex;
|
|
946
|
+
flex-direction: row;
|
|
947
|
+
justify-content: center;
|
|
948
|
+
align-items: center;
|
|
949
|
+
box-sizing: border-box;
|
|
950
|
+
position: relative;
|
|
951
|
+
vertical-align: middle;
|
|
952
|
+
cursor: pointer;
|
|
953
|
+
-webkit-user-select: none;
|
|
954
|
+
-moz-user-select: none;
|
|
955
|
+
-ms-user-select: none;
|
|
956
|
+
user-select: none;
|
|
957
|
+
border: 0;
|
|
958
|
+
border-radius: var(--spacing-m);
|
|
933
959
|
|
|
934
|
-
|
|
935
|
-
|
|
960
|
+
padding-top: var(--spacing);
|
|
961
|
+
padding-bottom: var(--spacing);
|
|
962
|
+
|
|
963
|
+
text-align: center;
|
|
964
|
+
font-family: var(--font-family);
|
|
965
|
+
font-weight: var(--font-weight-normal);
|
|
966
|
+
font-size: var(--font-size);
|
|
967
|
+
line-height: var(--font-height-s);
|
|
968
|
+
color: var(--text-white);
|
|
936
969
|
|
|
937
|
-
|
|
938
|
-
|
|
939
|
-
font-weight: var(--font-weight-normal);
|
|
940
|
-
font-size: var(--font-size);
|
|
941
|
-
line-height: var(--font-height-s);
|
|
942
|
-
color: var(--text-white);
|
|
943
|
-
|
|
944
|
-
transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
|
|
970
|
+
transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out,
|
|
971
|
+
box-shadow 0.15s ease-in-out;
|
|
945
972
|
}
|
|
946
973
|
|
|
947
974
|
.Button:disabled {
|
|
948
|
-
|
|
975
|
+
cursor: not-allowed;
|
|
949
976
|
}
|
|
950
977
|
|
|
951
978
|
.Button:focus {
|
|
952
|
-
|
|
979
|
+
outline: 0;
|
|
953
980
|
}
|
|
954
981
|
|
|
955
982
|
.Button--iconAlign-right {
|
|
956
|
-
|
|
983
|
+
flex-direction: row-reverse;
|
|
957
984
|
}
|
|
958
985
|
|
|
959
986
|
.Button--tiny {
|
|
960
|
-
|
|
961
|
-
|
|
962
|
-
|
|
963
|
-
|
|
964
|
-
|
|
987
|
+
height: var(--spacing-xl);
|
|
988
|
+
padding-right: var(--spacing);
|
|
989
|
+
padding-left: var(--spacing);
|
|
990
|
+
padding-top: var(--spacing-m);
|
|
991
|
+
padding-bottom: var(--spacing-m);
|
|
965
992
|
}
|
|
966
993
|
|
|
967
994
|
.Button--tinySquare {
|
|
968
|
-
|
|
995
|
+
width: var(--spacing-xl);
|
|
969
996
|
}
|
|
970
997
|
|
|
971
998
|
.Button--regular {
|
|
972
|
-
|
|
973
|
-
|
|
974
|
-
|
|
999
|
+
height: var(--spacing-3);
|
|
1000
|
+
padding-right: var(--spacing-l);
|
|
1001
|
+
padding-left: var(--spacing-l);
|
|
975
1002
|
}
|
|
976
1003
|
|
|
977
1004
|
.Button--regularSquare {
|
|
978
|
-
|
|
1005
|
+
width: var(--spacing-3);
|
|
979
1006
|
}
|
|
980
1007
|
|
|
981
1008
|
.Button--large {
|
|
982
|
-
|
|
983
|
-
|
|
984
|
-
|
|
985
|
-
|
|
986
|
-
|
|
987
|
-
|
|
1009
|
+
height: 40px;
|
|
1010
|
+
padding-right: var(--spacing-2);
|
|
1011
|
+
padding-left: var(--spacing-2);
|
|
1012
|
+
|
|
1013
|
+
line-height: var(--font-height-m);
|
|
1014
|
+
font-size: var(--font-size-m);
|
|
988
1015
|
}
|
|
989
1016
|
|
|
990
1017
|
.Button--largeSquare {
|
|
991
|
-
|
|
1018
|
+
width: 40px;
|
|
992
1019
|
}
|
|
993
1020
|
|
|
994
1021
|
.Button--tinySquare .Button-icon,
|
|
995
1022
|
.Button--largeSquare .Button-icon,
|
|
996
1023
|
.Button--tinySquare .Spinner,
|
|
997
1024
|
.Button--largeSquare .Spinner {
|
|
998
|
-
|
|
999
|
-
|
|
1025
|
+
padding-left: var(--spacing-s);
|
|
1026
|
+
padding-right: var(--spacing-s);
|
|
1000
1027
|
}
|
|
1001
1028
|
|
|
1002
1029
|
.Button--expanded {
|
|
1003
|
-
|
|
1030
|
+
width: 100%;
|
|
1004
1031
|
}
|
|
1005
1032
|
|
|
1006
1033
|
.Button-icon {
|
|
1007
|
-
|
|
1008
|
-
|
|
1009
|
-
|
|
1034
|
+
line-height: inherit;
|
|
1035
|
+
display: flex;
|
|
1036
|
+
align-items: center;
|
|
1010
1037
|
}
|
|
1011
1038
|
|
|
1012
1039
|
.Button-icon--left {
|
|
1013
|
-
|
|
1040
|
+
margin-right: var(--spacing);
|
|
1014
1041
|
}
|
|
1015
1042
|
|
|
1016
1043
|
.Button-icon--right {
|
|
1017
|
-
|
|
1044
|
+
margin-left: var(--spacing);
|
|
1018
1045
|
}
|
|
1019
1046
|
|
|
1020
1047
|
.Button--tiny .Button-icon--left {
|
|
1021
|
-
|
|
1048
|
+
margin-right: var(--spacing-m);
|
|
1022
1049
|
}
|
|
1023
1050
|
.Button--tiny .Button-icon--right {
|
|
1024
|
-
|
|
1051
|
+
margin-left: var(--spacing-m);
|
|
1025
1052
|
}
|
|
1026
1053
|
|
|
1027
1054
|
.Button--basic {
|
|
1028
|
-
|
|
1029
|
-
|
|
1055
|
+
background: var(--secondary-light);
|
|
1056
|
+
color: var(--inverse);
|
|
1030
1057
|
}
|
|
1031
1058
|
|
|
1032
1059
|
.Button--basic:hover {
|
|
1033
|
-
|
|
1060
|
+
background: var(--secondary);
|
|
1034
1061
|
}
|
|
1035
1062
|
|
|
1036
1063
|
.Button--basic:active {
|
|
1037
|
-
|
|
1064
|
+
background: var(--secondary-dark);
|
|
1038
1065
|
}
|
|
1039
1066
|
|
|
1040
1067
|
.Button--basic:focus {
|
|
1041
|
-
|
|
1068
|
+
box-shadow: var(--shadow-spread) var(--secondary-shadow);
|
|
1042
1069
|
}
|
|
1043
1070
|
|
|
1044
1071
|
.Button--basic:disabled {
|
|
1045
|
-
|
|
1046
|
-
|
|
1072
|
+
background: var(--secondary-lighter);
|
|
1073
|
+
color: var(--inverse-lightest);
|
|
1047
1074
|
}
|
|
1048
1075
|
|
|
1049
1076
|
.Button--primary {
|
|
1050
|
-
|
|
1077
|
+
background: var(--primary);
|
|
1051
1078
|
}
|
|
1052
1079
|
|
|
1053
1080
|
.Button--primary:hover {
|
|
1054
|
-
|
|
1081
|
+
background: var(--primary-dark);
|
|
1055
1082
|
}
|
|
1056
1083
|
|
|
1057
1084
|
.Button--primary:active {
|
|
1058
|
-
|
|
1085
|
+
background: var(--primary-darker);
|
|
1059
1086
|
}
|
|
1060
1087
|
|
|
1061
1088
|
.Button--primary:focus {
|
|
1062
|
-
|
|
1089
|
+
box-shadow: var(--shadow-spread) var(--primary-shadow);
|
|
1063
1090
|
}
|
|
1064
1091
|
|
|
1065
1092
|
.Button--primary:disabled {
|
|
1066
|
-
|
|
1093
|
+
background: var(--primary-lighter);
|
|
1067
1094
|
}
|
|
1068
1095
|
|
|
1069
1096
|
.Button--success {
|
|
1070
|
-
|
|
1097
|
+
background: var(--primary);
|
|
1071
1098
|
}
|
|
1072
1099
|
|
|
1073
1100
|
.Button--success:hover {
|
|
1074
|
-
|
|
1101
|
+
background: var(--primary-dark);
|
|
1075
1102
|
}
|
|
1076
1103
|
|
|
1077
1104
|
.Button--success:active {
|
|
1078
|
-
|
|
1105
|
+
background: var(--primary-darker);
|
|
1079
1106
|
}
|
|
1080
1107
|
|
|
1081
1108
|
.Button--success:focus {
|
|
1082
|
-
|
|
1109
|
+
box-shadow: var(--shadow-spread) var(--primary-shadow);
|
|
1083
1110
|
}
|
|
1084
1111
|
|
|
1085
1112
|
.Button--success:disabled {
|
|
1086
|
-
|
|
1113
|
+
background: var(--primary-lighter);
|
|
1087
1114
|
}
|
|
1088
1115
|
|
|
1089
1116
|
.Button--alert {
|
|
1090
|
-
|
|
1117
|
+
background: var(--alert);
|
|
1091
1118
|
}
|
|
1092
1119
|
|
|
1093
1120
|
.Button--alert:hover {
|
|
1094
|
-
|
|
1121
|
+
background: var(--alert-dark);
|
|
1095
1122
|
}
|
|
1096
1123
|
|
|
1097
1124
|
.Button--alert:active {
|
|
1098
|
-
|
|
1125
|
+
background: var(--alert-darker);
|
|
1099
1126
|
}
|
|
1100
1127
|
|
|
1101
1128
|
.Button--alert:focus {
|
|
1102
|
-
|
|
1129
|
+
box-shadow: var(--shadow-spread) var(--alert-shadow);
|
|
1103
1130
|
}
|
|
1104
1131
|
|
|
1105
1132
|
.Button--alert:disabled {
|
|
1106
|
-
|
|
1133
|
+
background: var(--alert-lighter);
|
|
1107
1134
|
}
|
|
1108
1135
|
|
|
1109
1136
|
.Button--transparent {
|
|
1110
|
-
|
|
1111
|
-
|
|
1137
|
+
background: transparent;
|
|
1138
|
+
color: var(--inverse);
|
|
1112
1139
|
}
|
|
1113
1140
|
|
|
1114
1141
|
.Button--transparent:hover {
|
|
1115
|
-
|
|
1142
|
+
background: var(--secondary-light);
|
|
1116
1143
|
}
|
|
1117
1144
|
|
|
1118
1145
|
.Button--transparent:focus {
|
|
1119
|
-
|
|
1120
|
-
|
|
1146
|
+
background: rgba(229, 229, 229, 0.2);
|
|
1147
|
+
/* box-shadow: var(--shadow-spread) var(--secondary-shadow); */
|
|
1121
1148
|
}
|
|
1122
1149
|
|
|
1123
1150
|
.Button--transparent:active {
|
|
1124
|
-
|
|
1151
|
+
background: var(--secondary);
|
|
1125
1152
|
}
|
|
1126
1153
|
|
|
1127
1154
|
.Button--transparent:focus:active {
|
|
1128
|
-
|
|
1155
|
+
background: var(--secondary);
|
|
1129
1156
|
}
|
|
1130
1157
|
|
|
1131
1158
|
.Button--transparent:disabled {
|
|
1132
|
-
|
|
1133
|
-
|
|
1159
|
+
background: transparent;
|
|
1160
|
+
color: var(--inverse-lightest);
|
|
1134
1161
|
}
|
|
1135
1162
|
|
|
1136
1163
|
.Button-spinner {
|
|
1137
|
-
|
|
1138
|
-
|
|
1139
|
-
|
|
1164
|
+
display: flex;
|
|
1165
|
+
position: absolute;
|
|
1166
|
+
z-index: 1;
|
|
1140
1167
|
}
|
|
1141
1168
|
|
|
1142
1169
|
.Button--tiny .Spinner--small {
|
|
1143
|
-
|
|
1144
|
-
|
|
1170
|
+
height: var(--font-size-s);
|
|
1171
|
+
width: var(--font-size-s);
|
|
1145
1172
|
}
|
|
1146
1173
|
|
|
1147
1174
|
.Button--large .Spinner--small {
|
|
1148
|
-
|
|
1149
|
-
|
|
1175
|
+
height: var(--font-size-l);
|
|
1176
|
+
width: var(--font-size-l);
|
|
1150
1177
|
}
|
|
1151
1178
|
|
|
1152
1179
|
.Button--selected {
|
|
1153
|
-
|
|
1154
|
-
|
|
1180
|
+
background: var(--primary-lightest);
|
|
1181
|
+
color: var(--primary);
|
|
1155
1182
|
}
|
|
1156
1183
|
|
|
1157
1184
|
.Button-text--hidden {
|
|
1158
|
-
|
|
1185
|
+
visibility: hidden;
|
|
1159
1186
|
}
|
|
1160
1187
|
|
|
1161
1188
|
/* calendar */
|
|
1162
1189
|
|
|
1163
1190
|
.Calendar-wrapper {
|
|
1164
|
-
|
|
1165
|
-
|
|
1191
|
+
display: flex;
|
|
1192
|
+
flex-wrap: wrap;
|
|
1166
1193
|
}
|
|
1167
1194
|
|
|
1168
1195
|
.Calendar {
|
|
1169
|
-
|
|
1170
|
-
|
|
1171
|
-
|
|
1196
|
+
display: flex;
|
|
1197
|
+
flex-direction: column;
|
|
1198
|
+
box-sizing: border-box;
|
|
1172
1199
|
}
|
|
1173
1200
|
|
|
1174
1201
|
.Calendar--small {
|
|
1175
|
-
|
|
1176
|
-
|
|
1177
|
-
|
|
1202
|
+
padding: var(--spacing-l);
|
|
1203
|
+
padding-bottom: var(--spacing);
|
|
1204
|
+
width: 212px;
|
|
1178
1205
|
}
|
|
1179
1206
|
|
|
1180
|
-
.Calendar--date--small{
|
|
1181
|
-
|
|
1207
|
+
.Calendar--date--small {
|
|
1208
|
+
height: 248px;
|
|
1182
1209
|
}
|
|
1183
1210
|
|
|
1184
|
-
.Calendar--month--small{
|
|
1185
|
-
|
|
1211
|
+
.Calendar--month--small {
|
|
1212
|
+
height: 192px;
|
|
1186
1213
|
}
|
|
1187
1214
|
|
|
1188
|
-
.Calendar--year--small{
|
|
1189
|
-
|
|
1215
|
+
.Calendar--year--small {
|
|
1216
|
+
height: 192px;
|
|
1190
1217
|
}
|
|
1191
1218
|
|
|
1192
1219
|
.Calendar--large {
|
|
1193
|
-
|
|
1194
|
-
|
|
1195
|
-
|
|
1196
|
-
|
|
1197
|
-
|
|
1220
|
+
padding-top: var(--spacing-2);
|
|
1221
|
+
padding-left: var(--spacing-2);
|
|
1222
|
+
padding-right: var(--spacing-2);
|
|
1223
|
+
padding-bottom: var(--spacing-l);
|
|
1224
|
+
width: 316px;
|
|
1198
1225
|
}
|
|
1199
1226
|
|
|
1200
|
-
.Calendar--date--large{
|
|
1201
|
-
|
|
1227
|
+
.Calendar--date--large {
|
|
1228
|
+
height: 324px;
|
|
1202
1229
|
}
|
|
1203
1230
|
|
|
1204
|
-
.Calendar--month--large{
|
|
1205
|
-
|
|
1231
|
+
.Calendar--month--large {
|
|
1232
|
+
height: 272px;
|
|
1206
1233
|
}
|
|
1207
1234
|
|
|
1208
|
-
.Calendar--year--large{
|
|
1209
|
-
|
|
1235
|
+
.Calendar--year--large {
|
|
1236
|
+
height: 272px;
|
|
1210
1237
|
}
|
|
1211
1238
|
|
|
1212
1239
|
.Calendar-header--large {
|
|
1213
|
-
|
|
1214
|
-
|
|
1215
|
-
|
|
1216
|
-
|
|
1217
|
-
|
|
1240
|
+
position: relative;
|
|
1241
|
+
display: flex;
|
|
1242
|
+
justify-content: center;
|
|
1243
|
+
align-items: center;
|
|
1244
|
+
padding-bottom: var(--spacing-l);
|
|
1218
1245
|
}
|
|
1219
1246
|
|
|
1220
1247
|
.Calendar-header--small {
|
|
1221
|
-
|
|
1222
|
-
|
|
1223
|
-
|
|
1224
|
-
|
|
1225
|
-
|
|
1248
|
+
position: relative;
|
|
1249
|
+
display: flex;
|
|
1250
|
+
justify-content: center;
|
|
1251
|
+
align-items: center;
|
|
1252
|
+
padding-bottom: var(--spacing-m);
|
|
1226
1253
|
}
|
|
1227
1254
|
|
|
1228
1255
|
.Calendar-headerIcon {
|
|
1229
|
-
|
|
1230
|
-
|
|
1231
|
-
|
|
1232
|
-
|
|
1233
|
-
|
|
1234
|
-
|
|
1235
|
-
|
|
1236
|
-
|
|
1237
|
-
|
|
1256
|
+
position: absolute;
|
|
1257
|
+
display: flex;
|
|
1258
|
+
align-items: center;
|
|
1259
|
+
justify-content: center;
|
|
1260
|
+
cursor: pointer;
|
|
1261
|
+
-webkit-user-select: none;
|
|
1262
|
+
-moz-user-select: none;
|
|
1263
|
+
-ms-user-select: none;
|
|
1264
|
+
user-select: none;
|
|
1238
1265
|
}
|
|
1239
1266
|
|
|
1240
1267
|
.Calendar-headerIcon--prev {
|
|
1241
|
-
|
|
1268
|
+
left: 0;
|
|
1242
1269
|
}
|
|
1243
1270
|
|
|
1244
1271
|
.Calendar-headerIcon--next {
|
|
1245
|
-
|
|
1272
|
+
right: 0;
|
|
1246
1273
|
}
|
|
1247
1274
|
|
|
1248
1275
|
.Calendar-headerContent {
|
|
1249
|
-
|
|
1250
|
-
|
|
1251
|
-
|
|
1252
|
-
|
|
1253
|
-
|
|
1254
|
-
|
|
1255
|
-
|
|
1256
|
-
|
|
1257
|
-
|
|
1276
|
+
display: flex;
|
|
1277
|
+
white-space: nowrap;
|
|
1278
|
+
cursor: pointer;
|
|
1279
|
+
padding-top: var(--spacing-m);
|
|
1280
|
+
padding-bottom: var(--spacing-m);
|
|
1281
|
+
-webkit-user-select: none;
|
|
1282
|
+
-moz-user-select: none;
|
|
1283
|
+
-ms-user-select: none;
|
|
1284
|
+
user-select: none;
|
|
1258
1285
|
}
|
|
1259
1286
|
|
|
1260
1287
|
.Calendar-body {
|
|
1261
|
-
|
|
1262
|
-
|
|
1263
|
-
|
|
1264
|
-
|
|
1288
|
+
display: flex;
|
|
1289
|
+
flex-direction: column;
|
|
1290
|
+
flex-grow: 1;
|
|
1291
|
+
justify-content: space-around;
|
|
1265
1292
|
}
|
|
1266
1293
|
|
|
1267
1294
|
.Calendar-valueRow {
|
|
1268
|
-
|
|
1269
|
-
|
|
1270
|
-
|
|
1271
|
-
|
|
1295
|
+
display: flex;
|
|
1296
|
+
justify-content: space-between;
|
|
1297
|
+
padding-top: var(--spacing-s);
|
|
1298
|
+
padding-bottom: var(--spacing-s);
|
|
1272
1299
|
}
|
|
1273
1300
|
|
|
1274
1301
|
.Calendar-valueWrapper {
|
|
1275
|
-
|
|
1276
|
-
|
|
1277
|
-
|
|
1278
|
-
|
|
1302
|
+
display: inline-flex;
|
|
1303
|
+
flex: 1 0 0;
|
|
1304
|
+
justify-content: center;
|
|
1305
|
+
position: relative;
|
|
1279
1306
|
}
|
|
1280
1307
|
|
|
1281
1308
|
.Calendar-valueWrapper--inRange {
|
|
1282
|
-
|
|
1309
|
+
background: var(--primary-lightest);
|
|
1283
1310
|
}
|
|
1284
1311
|
|
|
1285
1312
|
.Calendar-valueWrapper--inRangeError {
|
|
1286
|
-
|
|
1313
|
+
background: var(--alert-lightest);
|
|
1287
1314
|
}
|
|
1288
1315
|
|
|
1289
1316
|
.Calendar-valueWrapper--start {
|
|
1290
|
-
|
|
1291
|
-
|
|
1317
|
+
background: linear-gradient(90deg, white 50%, var(--primary-lightest) 50%);
|
|
1318
|
+
border-radius: var(--spacing-m) 0 0 var(--spacing-m);
|
|
1292
1319
|
}
|
|
1293
1320
|
|
|
1294
1321
|
.Calendar-valueWrapper--startError {
|
|
1295
|
-
|
|
1322
|
+
background: linear-gradient(90deg, white 50%, var(--alert-lightest) 50%);
|
|
1296
1323
|
}
|
|
1297
1324
|
|
|
1298
1325
|
.Calendar-valueWrapper--end {
|
|
1299
|
-
|
|
1300
|
-
|
|
1326
|
+
background: linear-gradient(90deg, var(--primary-lightest) 50%, white 50%);
|
|
1327
|
+
border-radius: 0 var(--spacing-m) var(--spacing-m) 0;
|
|
1301
1328
|
}
|
|
1302
1329
|
|
|
1303
1330
|
.Calendar-valueWrapper--endError {
|
|
1304
|
-
|
|
1331
|
+
background: linear-gradient(90deg, var(--alert-lightest) 50%, white 50%);
|
|
1305
1332
|
}
|
|
1306
1333
|
|
|
1307
1334
|
.Calendar-valueWrapper--startEnd {
|
|
1308
|
-
|
|
1335
|
+
background: transparent;
|
|
1309
1336
|
}
|
|
1310
1337
|
|
|
1311
1338
|
.Calendar-value {
|
|
1312
|
-
|
|
1313
|
-
|
|
1314
|
-
|
|
1315
|
-
|
|
1316
|
-
|
|
1317
|
-
|
|
1318
|
-
|
|
1319
|
-
|
|
1320
|
-
|
|
1321
|
-
|
|
1339
|
+
display: inline-flex;
|
|
1340
|
+
align-items: center;
|
|
1341
|
+
justify-content: center;
|
|
1342
|
+
text-align: center;
|
|
1343
|
+
cursor: pointer;
|
|
1344
|
+
-webkit-user-select: none;
|
|
1345
|
+
-moz-user-select: none;
|
|
1346
|
+
-ms-user-select: none;
|
|
1347
|
+
user-select: none;
|
|
1348
|
+
border-radius: var(--spacing-m);
|
|
1322
1349
|
}
|
|
1323
1350
|
|
|
1324
1351
|
.Calendar-value:hover {
|
|
1325
|
-
|
|
1352
|
+
background: var(--secondary);
|
|
1326
1353
|
}
|
|
1327
1354
|
|
|
1328
|
-
.Calendar-value--start:hover,
|
|
1329
|
-
|
|
1355
|
+
.Calendar-value--start:hover,
|
|
1356
|
+
.Calendar-value--end:hover {
|
|
1357
|
+
background: var(--primary-lightest);
|
|
1330
1358
|
}
|
|
1331
1359
|
|
|
1332
|
-
.Calendar-value--startError:hover,
|
|
1333
|
-
|
|
1360
|
+
.Calendar-value--startError:hover,
|
|
1361
|
+
.Calendar-value--endError:hover {
|
|
1362
|
+
background: var(--alert-lightest);
|
|
1334
1363
|
}
|
|
1335
1364
|
|
|
1336
|
-
.Calendar-value--start,
|
|
1337
|
-
|
|
1365
|
+
.Calendar-value--start,
|
|
1366
|
+
.Calendar-value--end {
|
|
1367
|
+
background: var(--primary-lightest);
|
|
1338
1368
|
}
|
|
1339
1369
|
|
|
1340
|
-
.Calendar-value--startError,
|
|
1341
|
-
|
|
1370
|
+
.Calendar-value--startError,
|
|
1371
|
+
.Calendar-value--endError {
|
|
1372
|
+
background: var(--alert-lightest);
|
|
1342
1373
|
}
|
|
1343
1374
|
|
|
1344
|
-
.Calendar-value--currDateMonthYear,
|
|
1345
|
-
|
|
1375
|
+
.Calendar-value--currDateMonthYear,
|
|
1376
|
+
.Calendar-value--currDateMonthYear:hover {
|
|
1377
|
+
background: var(--primary-lightest) !important;
|
|
1346
1378
|
}
|
|
1347
1379
|
|
|
1348
|
-
.Calendar-value--active,
|
|
1349
|
-
|
|
1350
|
-
|
|
1380
|
+
.Calendar-value--active,
|
|
1381
|
+
.Calendar-value--active:hover {
|
|
1382
|
+
background: var(--primary) !important;
|
|
1383
|
+
font-weight: var(--font-weight-bold);
|
|
1351
1384
|
}
|
|
1352
1385
|
|
|
1353
|
-
.Calendar-yearValue,
|
|
1354
|
-
|
|
1355
|
-
.Calendar-yearValue--small, .Calendar-monthValue--small {
|
|
1356
|
-
height: var(--spacing-xl);
|
|
1357
|
-
width: var(--spacing-4);
|
|
1386
|
+
.Calendar-yearValue,
|
|
1387
|
+
.Calendar-monthValue {
|
|
1358
1388
|
}
|
|
1359
1389
|
|
|
1360
|
-
.Calendar-yearValue--
|
|
1361
|
-
|
|
1362
|
-
|
|
1363
|
-
|
|
1390
|
+
.Calendar-yearValue--small,
|
|
1391
|
+
.Calendar-monthValue--small {
|
|
1392
|
+
height: var(--spacing-xl);
|
|
1393
|
+
width: var(--spacing-4);
|
|
1394
|
+
}
|
|
1395
|
+
|
|
1396
|
+
.Calendar-yearValue--large,
|
|
1397
|
+
.Calendar-monthValue--large {
|
|
1398
|
+
height: var(--spacing-3);
|
|
1399
|
+
width: var(--spacing-5);
|
|
1400
|
+
}
|
|
1364
1401
|
|
|
1365
|
-
.Calendar-dateValue {
|
|
1402
|
+
.Calendar-dateValue {
|
|
1403
|
+
}
|
|
1366
1404
|
|
|
1367
1405
|
.Calendar-dateValue--small {
|
|
1368
|
-
|
|
1369
|
-
|
|
1406
|
+
height: var(--spacing-xl);
|
|
1407
|
+
width: var(--spacing-xl);
|
|
1370
1408
|
}
|
|
1371
1409
|
|
|
1372
1410
|
.Calendar-dateValue--large {
|
|
1373
|
-
|
|
1374
|
-
|
|
1411
|
+
height: var(--spacing-3);
|
|
1412
|
+
width: var(--spacing-3);
|
|
1375
1413
|
}
|
|
1376
1414
|
|
|
1377
1415
|
.Calendar-valueWrapper--dummy {
|
|
1378
|
-
|
|
1416
|
+
opacity: var(--transparent-58);
|
|
1379
1417
|
}
|
|
1380
1418
|
|
|
1381
1419
|
.Calendar-value--disabled {
|
|
1382
|
-
|
|
1420
|
+
pointer-events: none;
|
|
1383
1421
|
}
|
|
1384
1422
|
|
|
1385
1423
|
.Calendar-dayValues {
|
|
1386
|
-
|
|
1387
|
-
|
|
1388
|
-
|
|
1389
|
-
|
|
1424
|
+
display: flex;
|
|
1425
|
+
justify-content: center;
|
|
1426
|
+
padding-top: var(--spacing);
|
|
1427
|
+
padding-bottom: var(--spacing);
|
|
1390
1428
|
}
|
|
1391
1429
|
|
|
1392
1430
|
.Calendar-dateValues {
|
|
1393
|
-
|
|
1394
|
-
|
|
1395
|
-
|
|
1396
|
-
|
|
1431
|
+
display: flex;
|
|
1432
|
+
flex-direction: column;
|
|
1433
|
+
flex-grow: 1;
|
|
1434
|
+
justify-content: space-around;
|
|
1397
1435
|
}
|
|
1398
1436
|
|
|
1399
1437
|
.Calendar-dayValues .Calendar-value {
|
|
1400
|
-
|
|
1438
|
+
padding: 0;
|
|
1401
1439
|
}
|
|
1402
1440
|
|
|
1403
|
-
.Calendar-eventsIndicator{
|
|
1404
|
-
|
|
1405
|
-
|
|
1406
|
-
|
|
1407
|
-
|
|
1408
|
-
|
|
1409
|
-
|
|
1441
|
+
.Calendar-eventsIndicator {
|
|
1442
|
+
position: absolute;
|
|
1443
|
+
bottom: var(--spacing-s);
|
|
1444
|
+
width: var(--spacing-m);
|
|
1445
|
+
height: var(--spacing-m);
|
|
1446
|
+
background-color: var(--alert);
|
|
1447
|
+
border-radius: 50%;
|
|
1410
1448
|
}
|
|
1411
|
-
.Calendar-eventsIndicator--small{
|
|
1412
|
-
|
|
1413
|
-
|
|
1449
|
+
.Calendar-eventsIndicator--small {
|
|
1450
|
+
width: 3px;
|
|
1451
|
+
height: 3px;
|
|
1414
1452
|
}
|
|
1415
|
-
.Calendar-eventsIndicator--active{
|
|
1416
|
-
|
|
1453
|
+
.Calendar-eventsIndicator--active {
|
|
1454
|
+
background-color: var(--white);
|
|
1417
1455
|
}
|
|
1418
1456
|
|
|
1419
1457
|
/* badge */
|
|
@@ -1457,8 +1495,6 @@ body {
|
|
|
1457
1495
|
border-top: var(--spacing-xs) solid var(--secondary-light);
|
|
1458
1496
|
}
|
|
1459
1497
|
|
|
1460
|
-
|
|
1461
|
-
|
|
1462
1498
|
.CardSubdued {
|
|
1463
1499
|
background: var(--card-subdued-bg);
|
|
1464
1500
|
padding: var(--spacing-2);
|
|
@@ -1469,22 +1505,21 @@ body {
|
|
|
1469
1505
|
}
|
|
1470
1506
|
|
|
1471
1507
|
.CardSubdued--left {
|
|
1472
|
-
border-left: var(--spacing-xs) solid var(--secondary-light)
|
|
1508
|
+
border-left: var(--spacing-xs) solid var(--secondary-light);
|
|
1473
1509
|
}
|
|
1474
1510
|
|
|
1475
1511
|
.CardSubdued--right {
|
|
1476
|
-
border-right: var(--spacing-xs) solid var(--secondary-light)
|
|
1512
|
+
border-right: var(--spacing-xs) solid var(--secondary-light);
|
|
1477
1513
|
}
|
|
1478
1514
|
|
|
1479
1515
|
.CardSubdued--bottom {
|
|
1480
|
-
border-bottom: var(--spacing-xs) solid var(--secondary-light)
|
|
1516
|
+
border-bottom: var(--spacing-xs) solid var(--secondary-light);
|
|
1481
1517
|
}
|
|
1482
1518
|
|
|
1483
|
-
|
|
1484
1519
|
.Box {
|
|
1485
1520
|
width: 100%;
|
|
1486
1521
|
border-radius: var(--spacing);
|
|
1487
|
-
padding: var(--spacing-l)
|
|
1522
|
+
padding: var(--spacing-l);
|
|
1488
1523
|
}
|
|
1489
1524
|
|
|
1490
1525
|
.Box--typing {
|
|
@@ -1521,140 +1556,142 @@ body {
|
|
|
1521
1556
|
/* badge */
|
|
1522
1557
|
|
|
1523
1558
|
.Checkbox {
|
|
1524
|
-
|
|
1525
|
-
|
|
1526
|
-
|
|
1527
|
-
|
|
1528
|
-
|
|
1529
|
-
|
|
1530
|
-
|
|
1531
|
-
|
|
1532
|
-
|
|
1559
|
+
display: flex;
|
|
1560
|
+
-webkit-user-select: none;
|
|
1561
|
+
-moz-user-select: none;
|
|
1562
|
+
-ms-user-select: none;
|
|
1563
|
+
user-select: none;
|
|
1564
|
+
line-height: initial;
|
|
1565
|
+
box-sizing: border-box;
|
|
1566
|
+
padding-top: var(--spacing-s);
|
|
1567
|
+
padding-bottom: var(--spacing-s);
|
|
1533
1568
|
}
|
|
1534
1569
|
|
|
1535
1570
|
.Checkbox-input {
|
|
1536
|
-
|
|
1537
|
-
|
|
1538
|
-
|
|
1539
|
-
|
|
1540
|
-
|
|
1541
|
-
|
|
1542
|
-
|
|
1571
|
+
position: absolute;
|
|
1572
|
+
z-index: 2;
|
|
1573
|
+
opacity: 0;
|
|
1574
|
+
cursor: pointer;
|
|
1575
|
+
height: 100%;
|
|
1576
|
+
width: 100%;
|
|
1577
|
+
margin: 0;
|
|
1543
1578
|
}
|
|
1544
1579
|
|
|
1545
1580
|
.Checkbox-labelWrapper {
|
|
1546
|
-
|
|
1547
|
-
|
|
1548
|
-
|
|
1581
|
+
padding-left: var(--spacing);
|
|
1582
|
+
display: flex;
|
|
1583
|
+
flex-direction: column;
|
|
1584
|
+
min-width: 0;
|
|
1549
1585
|
}
|
|
1550
1586
|
|
|
1551
1587
|
.Checkbox-label {
|
|
1552
|
-
|
|
1553
|
-
|
|
1588
|
+
display: flex;
|
|
1589
|
+
cursor: pointer;
|
|
1554
1590
|
}
|
|
1555
1591
|
|
|
1556
1592
|
.Checkbox-outerWrapper {
|
|
1557
|
-
|
|
1558
|
-
|
|
1593
|
+
position: relative;
|
|
1594
|
+
margin-top: var(--spacing-s);
|
|
1559
1595
|
}
|
|
1560
1596
|
|
|
1561
1597
|
.Checkbox-outerWrapper--regular {
|
|
1562
|
-
|
|
1563
|
-
|
|
1598
|
+
height: var(--spacing-2);
|
|
1599
|
+
min-width: var(--spacing-2);
|
|
1564
1600
|
}
|
|
1565
1601
|
|
|
1566
1602
|
.Checkbox-outerWrapper--tiny {
|
|
1567
|
-
|
|
1568
|
-
|
|
1603
|
+
height: var(--spacing-l);
|
|
1604
|
+
min-width: var(--spacing-l);
|
|
1569
1605
|
}
|
|
1570
1606
|
|
|
1571
1607
|
/* Type: Unchecked */
|
|
1572
1608
|
|
|
1573
1609
|
.Checkbox-wrapper {
|
|
1574
|
-
|
|
1575
|
-
|
|
1576
|
-
|
|
1577
|
-
|
|
1578
|
-
|
|
1579
|
-
|
|
1580
|
-
|
|
1581
|
-
|
|
1582
|
-
|
|
1610
|
+
top: 0;
|
|
1611
|
+
left: 0;
|
|
1612
|
+
border: var(--border);
|
|
1613
|
+
border-radius: var(--spacing-s);
|
|
1614
|
+
display: flex;
|
|
1615
|
+
align-items: center;
|
|
1616
|
+
box-sizing: border-box;
|
|
1617
|
+
height: 100%;
|
|
1618
|
+
width: 100%;
|
|
1583
1619
|
}
|
|
1584
1620
|
|
|
1585
1621
|
.Checkbox-input:focus {
|
|
1586
|
-
|
|
1622
|
+
outline: 0;
|
|
1587
1623
|
}
|
|
1588
1624
|
|
|
1589
|
-
.Checkbox-input:focus
|
|
1590
|
-
|
|
1625
|
+
.Checkbox-input:focus ~ .Checkbox-wrapper {
|
|
1626
|
+
box-shadow: var(--shadow-spread) var(--secondary-shadow);
|
|
1591
1627
|
}
|
|
1592
1628
|
|
|
1593
|
-
.Checkbox-input:hover
|
|
1594
|
-
|
|
1595
|
-
|
|
1629
|
+
.Checkbox-input:hover ~ .Checkbox-wrapper {
|
|
1630
|
+
border: var(--spacing-xs) solid var(--inverse-lightest);
|
|
1631
|
+
background-color: var(--shadow-0);
|
|
1596
1632
|
}
|
|
1597
1633
|
|
|
1598
|
-
.Checkbox-input:active
|
|
1599
|
-
|
|
1600
|
-
|
|
1634
|
+
.Checkbox-input:active ~ .Checkbox-wrapper {
|
|
1635
|
+
border: var(--spacing-xs) solid var(--inverse-lightest);
|
|
1636
|
+
background-color: var(--secondary-light);
|
|
1601
1637
|
}
|
|
1602
1638
|
|
|
1603
1639
|
.Checkbox--disabled {
|
|
1604
|
-
|
|
1640
|
+
pointer-events: none;
|
|
1605
1641
|
}
|
|
1606
1642
|
|
|
1607
1643
|
.Checkbox--disabled .Checkbox-wrapper {
|
|
1608
|
-
|
|
1609
|
-
|
|
1644
|
+
border: var(--spacing-xs) solid var(--secondary-light);
|
|
1645
|
+
background-color: var(--secondary-lightest);
|
|
1610
1646
|
}
|
|
1611
1647
|
|
|
1612
1648
|
/* Type: checked && Type: indeterminate */
|
|
1613
1649
|
|
|
1614
|
-
.Checkbox-input--checked
|
|
1615
|
-
.Checkbox-input--indeterminate
|
|
1616
|
-
|
|
1617
|
-
|
|
1650
|
+
.Checkbox-input--checked ~ .Checkbox-wrapper,
|
|
1651
|
+
.Checkbox-input--indeterminate ~ .Checkbox-wrapper {
|
|
1652
|
+
background-color: var(--primary);
|
|
1653
|
+
border: 0;
|
|
1618
1654
|
}
|
|
1619
1655
|
|
|
1620
|
-
.Checkbox-input--checked:focus
|
|
1621
|
-
.Checkbox-input--indeterminate:focus
|
|
1622
|
-
|
|
1623
|
-
|
|
1624
|
-
|
|
1656
|
+
.Checkbox-input--checked:focus ~ .Checkbox-wrapper,
|
|
1657
|
+
.Checkbox-input--indeterminate:focus ~ .Checkbox-wrapper {
|
|
1658
|
+
box-shadow: var(--shadow-spread) var(--primary-shadow);
|
|
1659
|
+
background-color: var(--primary);
|
|
1660
|
+
border: 0;
|
|
1625
1661
|
}
|
|
1626
1662
|
|
|
1627
|
-
.Checkbox-input--checked:hover
|
|
1628
|
-
.Checkbox-input--indeterminate:hover
|
|
1629
|
-
|
|
1630
|
-
|
|
1663
|
+
.Checkbox-input--checked:hover ~ .Checkbox-wrapper,
|
|
1664
|
+
.Checkbox-input--indeterminate:hover ~ .Checkbox-wrapper {
|
|
1665
|
+
background-color: var(--primary-dark);
|
|
1666
|
+
border: 0;
|
|
1631
1667
|
}
|
|
1632
1668
|
|
|
1633
|
-
.Checkbox-input--checked:active
|
|
1634
|
-
.Checkbox-input--indeterminate:active
|
|
1635
|
-
|
|
1636
|
-
|
|
1669
|
+
.Checkbox-input--checked:active ~ .Checkbox-wrapper,
|
|
1670
|
+
.Checkbox-input--indeterminate:active ~ .Checkbox-wrapper {
|
|
1671
|
+
background-color: var(--primary-darker);
|
|
1672
|
+
border: 0;
|
|
1637
1673
|
}
|
|
1638
1674
|
|
|
1639
|
-
.Checkbox--disabled .Checkbox-input--checked
|
|
1640
|
-
.Checkbox--disabled .Checkbox-input--indeterminate
|
|
1641
|
-
|
|
1642
|
-
|
|
1675
|
+
.Checkbox--disabled .Checkbox-input--checked ~ .Checkbox-wrapper,
|
|
1676
|
+
.Checkbox--disabled .Checkbox-input--indeterminate ~ .Checkbox-wrapper {
|
|
1677
|
+
background-color: var(--primary-lighter);
|
|
1678
|
+
border: 0;
|
|
1643
1679
|
}
|
|
1680
|
+
|
|
1644
1681
|
.Chip {
|
|
1645
1682
|
display: flex;
|
|
1646
1683
|
box-sizing: border-box;
|
|
1647
|
-
border-radius: var(
|
|
1648
|
-
padding-right: var(
|
|
1649
|
-
padding-left: var(
|
|
1650
|
-
padding-top: var(
|
|
1651
|
-
padding-bottom: var(
|
|
1684
|
+
border-radius: var(--spacing-l);
|
|
1685
|
+
padding-right: var(--spacing);
|
|
1686
|
+
padding-left: var(--spacing);
|
|
1687
|
+
padding-top: var(--spacing-s);
|
|
1688
|
+
padding-bottom: var(--spacing-s);
|
|
1652
1689
|
width: -webkit-fit-content;
|
|
1653
1690
|
width: -moz-fit-content;
|
|
1654
1691
|
width: fit-content;
|
|
1655
1692
|
justify-content: space-between;
|
|
1656
1693
|
border-style: solid;
|
|
1657
|
-
border-width: var(
|
|
1694
|
+
border-width: var(--spacing-xs);
|
|
1658
1695
|
align-items: center;
|
|
1659
1696
|
flex-direction: row;
|
|
1660
1697
|
cursor: default;
|
|
@@ -1666,19 +1703,19 @@ body {
|
|
|
1666
1703
|
}
|
|
1667
1704
|
|
|
1668
1705
|
.Chip-icon--left {
|
|
1669
|
-
padding-right: var(
|
|
1706
|
+
padding-right: var(--spacing-m);
|
|
1670
1707
|
display: flex;
|
|
1671
1708
|
align-items: center;
|
|
1672
1709
|
}
|
|
1673
1710
|
|
|
1674
1711
|
.Chip-icon--right {
|
|
1675
|
-
padding-left: var(
|
|
1712
|
+
padding-left: var(--spacing-m);
|
|
1676
1713
|
display: flex;
|
|
1677
1714
|
align-items: center;
|
|
1678
1715
|
}
|
|
1679
1716
|
|
|
1680
1717
|
.Chip--action {
|
|
1681
|
-
background: var(
|
|
1718
|
+
background: var(--shadow-0);
|
|
1682
1719
|
border-color: var(--stone);
|
|
1683
1720
|
cursor: pointer;
|
|
1684
1721
|
}
|
|
@@ -1703,8 +1740,9 @@ body {
|
|
|
1703
1740
|
}
|
|
1704
1741
|
|
|
1705
1742
|
.Chip--selection {
|
|
1706
|
-
background: var(
|
|
1743
|
+
background: var(--shadow-0);
|
|
1707
1744
|
border-color: var(--stone);
|
|
1745
|
+
cursor: pointer;
|
|
1708
1746
|
}
|
|
1709
1747
|
|
|
1710
1748
|
.Chip--selection:hover {
|
|
@@ -1730,18 +1768,14 @@ body {
|
|
|
1730
1768
|
border-color: var(--jal-lighter);
|
|
1731
1769
|
}
|
|
1732
1770
|
|
|
1733
|
-
.Chip-selection--selected .Text {
|
|
1734
|
-
color: var(--primary);
|
|
1735
|
-
}
|
|
1736
|
-
|
|
1737
1771
|
.Chip-selection--disabled {
|
|
1738
|
-
background: var(
|
|
1772
|
+
background: var(--shadow-0);
|
|
1739
1773
|
border-color: var(--stone-light);
|
|
1740
1774
|
}
|
|
1741
1775
|
|
|
1742
1776
|
.Chip--input {
|
|
1743
1777
|
background: var(--stone-light);
|
|
1744
|
-
font-weight: var(
|
|
1778
|
+
font-weight: var(--font-weight-normal);
|
|
1745
1779
|
border: 0px;
|
|
1746
1780
|
}
|
|
1747
1781
|
|
|
@@ -1753,21 +1787,29 @@ body {
|
|
|
1753
1787
|
background: var(--stone-light);
|
|
1754
1788
|
border: 0px;
|
|
1755
1789
|
}
|
|
1790
|
+
|
|
1791
|
+
.Chip-selection--selectedDisabled {
|
|
1792
|
+
background: var(--jal-lightest);
|
|
1793
|
+
border-color: var(--jal-lighter);
|
|
1794
|
+
opacity: var(--transparent-58);
|
|
1795
|
+
}
|
|
1796
|
+
|
|
1756
1797
|
.ChipGroup {
|
|
1757
|
-
|
|
1798
|
+
display: inline-flex;
|
|
1758
1799
|
}
|
|
1759
1800
|
|
|
1760
1801
|
.ChipGroup-item {
|
|
1761
|
-
|
|
1802
|
+
margin: 0 var(--spacing-m);
|
|
1762
1803
|
}
|
|
1763
1804
|
|
|
1764
1805
|
.ChipGroup-item:first-child {
|
|
1765
|
-
|
|
1806
|
+
margin-left: 0;
|
|
1766
1807
|
}
|
|
1767
1808
|
|
|
1768
1809
|
.ChipGroup-item:last-child {
|
|
1769
|
-
|
|
1810
|
+
margin-right: 0;
|
|
1770
1811
|
}
|
|
1812
|
+
|
|
1771
1813
|
.ChipInput {
|
|
1772
1814
|
box-sizing: border-box;
|
|
1773
1815
|
display: flex;
|
|
@@ -1816,7 +1858,7 @@ body {
|
|
|
1816
1858
|
.ChipInput-icon {
|
|
1817
1859
|
height: var(--spacing-2);
|
|
1818
1860
|
margin-top: var(--spacing-m);
|
|
1819
|
-
padding-top: var(--spacing-s);
|
|
1861
|
+
padding-top: var(--spacing-s);
|
|
1820
1862
|
margin-right: var(--spacing-l);
|
|
1821
1863
|
cursor: pointer;
|
|
1822
1864
|
}
|
|
@@ -1828,11 +1870,11 @@ body {
|
|
|
1828
1870
|
}
|
|
1829
1871
|
|
|
1830
1872
|
.ChoiceList-checkbox--vertical {
|
|
1831
|
-
margin-top: var(--spacing)
|
|
1873
|
+
margin-top: var(--spacing);
|
|
1832
1874
|
}
|
|
1833
1875
|
|
|
1834
1876
|
.ChoiceList-radio--vertical {
|
|
1835
|
-
margin-top: var(--spacing)
|
|
1877
|
+
margin-top: var(--spacing);
|
|
1836
1878
|
}
|
|
1837
1879
|
|
|
1838
1880
|
.ChoiceList--alignHorizontal {
|
|
@@ -1840,11 +1882,11 @@ body {
|
|
|
1840
1882
|
}
|
|
1841
1883
|
|
|
1842
1884
|
.ChoiceList-checkbox--horizontal {
|
|
1843
|
-
margin-left: var(--spacing-xl)
|
|
1885
|
+
margin-left: var(--spacing-xl);
|
|
1844
1886
|
}
|
|
1845
1887
|
|
|
1846
1888
|
.ChoiceList-radio--horizontal {
|
|
1847
|
-
margin-left: var(--spacing-xl)
|
|
1889
|
+
margin-left: var(--spacing-xl);
|
|
1848
1890
|
}
|
|
1849
1891
|
|
|
1850
1892
|
.Collapsible-wrapper {
|
|
@@ -1887,263 +1929,286 @@ body {
|
|
|
1887
1929
|
}
|
|
1888
1930
|
|
|
1889
1931
|
.DateRangePicker {
|
|
1890
|
-
|
|
1932
|
+
display: flex;
|
|
1891
1933
|
}
|
|
1892
1934
|
|
|
1893
1935
|
.DateRangePicker--left {
|
|
1894
|
-
|
|
1936
|
+
flex-direction: row;
|
|
1895
1937
|
}
|
|
1896
1938
|
|
|
1897
1939
|
.DateRangePicker--right {
|
|
1898
|
-
|
|
1940
|
+
flex-direction: row-reverse;
|
|
1899
1941
|
}
|
|
1900
1942
|
|
|
1901
1943
|
.DateRangePicker-input {
|
|
1902
|
-
|
|
1944
|
+
box-sizing: border-box;
|
|
1903
1945
|
}
|
|
1904
1946
|
|
|
1905
1947
|
.DateRangePicker-input--startDate {
|
|
1906
|
-
|
|
1948
|
+
padding-right: var(--spacing-m);
|
|
1907
1949
|
}
|
|
1908
1950
|
|
|
1909
1951
|
.DateRangePicker-input--endDate {
|
|
1910
|
-
|
|
1952
|
+
padding-left: var(--spacing-m);
|
|
1911
1953
|
}
|
|
1912
1954
|
|
|
1913
1955
|
@media (max-width: 576px) {
|
|
1914
|
-
|
|
1915
|
-
|
|
1916
|
-
|
|
1956
|
+
.DateRangePicker-input {
|
|
1957
|
+
padding: 0;
|
|
1958
|
+
}
|
|
1959
|
+
|
|
1960
|
+
.DateRangePicker-input--endDate {
|
|
1961
|
+
padding-top: var(--spacing);
|
|
1962
|
+
}
|
|
1963
|
+
}
|
|
1964
|
+
|
|
1965
|
+
.Divider {
|
|
1966
|
+
border: none;
|
|
1967
|
+
margin: 0;
|
|
1968
|
+
}
|
|
1969
|
+
|
|
1970
|
+
.Divider--vertical {
|
|
1971
|
+
width: 1px;
|
|
1972
|
+
}
|
|
1973
|
+
|
|
1974
|
+
.Divider--horizontal {
|
|
1975
|
+
height: 1px;
|
|
1976
|
+
}
|
|
1977
|
+
|
|
1978
|
+
.Divider--basic {
|
|
1979
|
+
background: var(--secondary-light);
|
|
1980
|
+
}
|
|
1917
1981
|
|
|
1918
|
-
|
|
1919
|
-
|
|
1920
|
-
}
|
|
1982
|
+
.Divider--header {
|
|
1983
|
+
background: var(--secondary);
|
|
1921
1984
|
}
|
|
1985
|
+
|
|
1922
1986
|
.Dropdown {
|
|
1923
|
-
|
|
1924
|
-
|
|
1987
|
+
width: 100%;
|
|
1988
|
+
position: relative;
|
|
1925
1989
|
}
|
|
1926
1990
|
|
|
1927
1991
|
.Dropdown-wrapper {
|
|
1928
|
-
|
|
1929
|
-
|
|
1992
|
+
margin-top: var(--spacing-m);
|
|
1993
|
+
margin-bottom: var(--spacing-m);
|
|
1930
1994
|
}
|
|
1931
1995
|
|
|
1932
1996
|
.Dropdown-inputWrapper {
|
|
1933
|
-
|
|
1997
|
+
border-bottom: var(--border);
|
|
1934
1998
|
}
|
|
1935
1999
|
|
|
1936
2000
|
.Dropdown-input {
|
|
1937
|
-
|
|
2001
|
+
min-width: unset !important;
|
|
1938
2002
|
}
|
|
1939
2003
|
|
|
1940
2004
|
.Dropdown-input,
|
|
1941
2005
|
.Dropdown-input:focus-within {
|
|
1942
|
-
|
|
2006
|
+
border: unset !important;
|
|
1943
2007
|
}
|
|
1944
2008
|
|
|
1945
2009
|
.Dropdown-section {
|
|
1946
|
-
|
|
1947
|
-
|
|
1948
|
-
|
|
1949
|
-
|
|
1950
|
-
|
|
1951
|
-
|
|
2010
|
+
display: flex;
|
|
2011
|
+
justify-content: space-between;
|
|
2012
|
+
align-items: center;
|
|
2013
|
+
margin-left: var(--spacing-l);
|
|
2014
|
+
margin-top: var(--spacing);
|
|
2015
|
+
margin-bottom: 6px;
|
|
1952
2016
|
}
|
|
1953
2017
|
|
|
1954
2018
|
.Dropdown-section--withClear {
|
|
1955
|
-
|
|
1956
|
-
|
|
2019
|
+
margin-top: var(--spacing-m);
|
|
2020
|
+
margin-bottom: var(--spacing-s);
|
|
1957
2021
|
}
|
|
1958
2022
|
|
|
1959
2023
|
.Dropdown--border {
|
|
1960
|
-
|
|
2024
|
+
border-top: var(--spacing-xs) solid var(--secondary-light);
|
|
1961
2025
|
}
|
|
1962
2026
|
|
|
1963
2027
|
.Dropdown-errorWrapper {
|
|
1964
|
-
|
|
2028
|
+
min-height: var(--spacing-7);
|
|
1965
2029
|
}
|
|
1966
2030
|
|
|
1967
2031
|
.Dropdown-buttonWrapper {
|
|
1968
|
-
|
|
1969
|
-
|
|
1970
|
-
|
|
1971
|
-
|
|
1972
|
-
|
|
1973
|
-
|
|
2032
|
+
display: flex;
|
|
2033
|
+
justify-content: flex-end;
|
|
2034
|
+
padding-top: var(--spacing);
|
|
2035
|
+
padding-right: var(--spacing);
|
|
2036
|
+
padding-bottom: var(--spacing);
|
|
2037
|
+
border-top: var(--spacing-xs) solid var(--secondary-light);
|
|
1974
2038
|
}
|
|
1975
2039
|
|
|
1976
2040
|
.Dropdown-footer {
|
|
1977
|
-
|
|
1978
|
-
|
|
1979
|
-
|
|
1980
|
-
|
|
2041
|
+
padding-left: var(--spacing-l);
|
|
2042
|
+
padding-bottom: var(--spacing-m);
|
|
2043
|
+
padding-top: var(--spacing);
|
|
2044
|
+
box-sizing: border-box;
|
|
1981
2045
|
}
|
|
1982
2046
|
|
|
1983
2047
|
.Option {
|
|
1984
|
-
|
|
2048
|
+
display: flex;
|
|
1985
2049
|
}
|
|
1986
2050
|
|
|
1987
2051
|
.Option,
|
|
1988
2052
|
.Option-loading {
|
|
1989
|
-
|
|
1990
|
-
|
|
1991
|
-
|
|
1992
|
-
|
|
2053
|
+
padding-top: 6px;
|
|
2054
|
+
padding-bottom: 6px;
|
|
2055
|
+
padding-left: var(--spacing-l);
|
|
2056
|
+
padding-right: var(--spacing-l);
|
|
1993
2057
|
}
|
|
1994
2058
|
|
|
1995
2059
|
.OptionCheckbox {
|
|
1996
|
-
|
|
1997
|
-
|
|
1998
|
-
|
|
1999
|
-
|
|
2060
|
+
width: 100%;
|
|
2061
|
+
padding-left: var(--spacing-l);
|
|
2062
|
+
padding-top: var(--spacing-m);
|
|
2063
|
+
padding-bottom: var(--spacing-m);
|
|
2000
2064
|
}
|
|
2001
2065
|
|
|
2002
2066
|
.Option--active,
|
|
2003
2067
|
.Option-checkbox--active {
|
|
2004
|
-
|
|
2005
|
-
|
|
2068
|
+
background-color: var(--secondary-lightest);
|
|
2069
|
+
cursor: pointer;
|
|
2006
2070
|
}
|
|
2007
2071
|
|
|
2008
2072
|
.Option-loading {
|
|
2009
|
-
|
|
2073
|
+
pointer-events: none;
|
|
2010
2074
|
}
|
|
2011
2075
|
|
|
2012
2076
|
.Option--selected {
|
|
2013
|
-
|
|
2014
|
-
|
|
2077
|
+
background-color: var(--primary);
|
|
2078
|
+
pointer-events: none;
|
|
2015
2079
|
}
|
|
2016
2080
|
|
|
2017
2081
|
.Option--disabled,
|
|
2018
2082
|
.OptionWrapper--disabled {
|
|
2019
|
-
|
|
2083
|
+
pointer-events: none;
|
|
2020
2084
|
}
|
|
2021
2085
|
|
|
2022
2086
|
.Option-label {
|
|
2023
|
-
|
|
2024
|
-
|
|
2025
|
-
|
|
2087
|
+
overflow: hidden;
|
|
2088
|
+
display: flex;
|
|
2089
|
+
flex-direction: column;
|
|
2026
2090
|
}
|
|
2027
2091
|
|
|
2028
2092
|
.OptionCheckbox .Checkbox-label {
|
|
2029
|
-
|
|
2030
|
-
|
|
2031
|
-
|
|
2032
|
-
|
|
2093
|
+
padding-right: var(--spacing-l);
|
|
2094
|
+
width: 100%;
|
|
2095
|
+
display: flex;
|
|
2096
|
+
overflow: hidden;
|
|
2033
2097
|
}
|
|
2034
2098
|
|
|
2035
2099
|
.Option-text,
|
|
2036
2100
|
.OptionCheckbox .Text {
|
|
2037
|
-
|
|
2038
|
-
|
|
2039
|
-
|
|
2101
|
+
white-space: nowrap;
|
|
2102
|
+
overflow: hidden;
|
|
2103
|
+
text-overflow: ellipsis;
|
|
2040
2104
|
}
|
|
2041
2105
|
|
|
2042
2106
|
.Option-text--wrap,
|
|
2043
2107
|
.Dropdown-wrapper--wrap .OptionCheckbox .Text {
|
|
2044
|
-
|
|
2108
|
+
white-space: unset;
|
|
2045
2109
|
}
|
|
2046
2110
|
|
|
2047
2111
|
.Option--icon {
|
|
2048
|
-
|
|
2112
|
+
padding-left: var(--spacing);
|
|
2049
2113
|
}
|
|
2050
2114
|
|
|
2051
2115
|
.Option-icon {
|
|
2052
|
-
|
|
2116
|
+
display: flex;
|
|
2053
2117
|
}
|
|
2054
2118
|
|
|
2055
2119
|
.Option-icon {
|
|
2056
|
-
|
|
2057
|
-
|
|
2058
|
-
|
|
2059
|
-
|
|
2120
|
+
height: -webkit-fit-content;
|
|
2121
|
+
height: -moz-fit-content;
|
|
2122
|
+
height: fit-content;
|
|
2123
|
+
line-height: var(--font-height);
|
|
2060
2124
|
}
|
|
2061
2125
|
|
|
2062
2126
|
.Dropdown-wrapper::-webkit-scrollbar {
|
|
2063
|
-
|
|
2127
|
+
width: var(--spacing);
|
|
2064
2128
|
}
|
|
2065
2129
|
|
|
2066
2130
|
.Dropdown-wrapper::-webkit-scrollbar-thumb {
|
|
2067
|
-
|
|
2068
|
-
|
|
2131
|
+
background: var(--secondary);
|
|
2132
|
+
border-radius: var(--spacing-m);
|
|
2069
2133
|
}
|
|
2134
|
+
|
|
2070
2135
|
.DropdownButton {
|
|
2071
|
-
|
|
2072
|
-
|
|
2073
|
-
|
|
2074
|
-
|
|
2075
|
-
|
|
2076
|
-
|
|
2136
|
+
width: 100%;
|
|
2137
|
+
justify-content: space-between;
|
|
2138
|
+
padding-top: unset;
|
|
2139
|
+
padding-bottom: unset;
|
|
2140
|
+
background: var(--secondary-light);
|
|
2141
|
+
color: var(--text);
|
|
2077
2142
|
}
|
|
2078
2143
|
|
|
2079
2144
|
.DropdownButton-wrapper {
|
|
2080
|
-
|
|
2081
|
-
|
|
2082
|
-
|
|
2083
|
-
|
|
2145
|
+
width: 100%;
|
|
2146
|
+
display: flex;
|
|
2147
|
+
flex-direction: row;
|
|
2148
|
+
overflow: hidden;
|
|
2084
2149
|
}
|
|
2085
2150
|
|
|
2086
2151
|
.DropdownButton-text {
|
|
2087
|
-
|
|
2088
|
-
|
|
2089
|
-
|
|
2090
|
-
|
|
2152
|
+
text-align: left;
|
|
2153
|
+
white-space: nowrap;
|
|
2154
|
+
overflow: hidden;
|
|
2155
|
+
text-overflow: ellipsis;
|
|
2091
2156
|
}
|
|
2092
2157
|
|
|
2093
2158
|
.DropdownButton--tiny {
|
|
2094
|
-
|
|
2095
|
-
|
|
2096
|
-
|
|
2159
|
+
height: var(--spacing-xl);
|
|
2160
|
+
padding-right: var(--spacing);
|
|
2161
|
+
padding-left: var(--spacing);
|
|
2097
2162
|
}
|
|
2098
2163
|
|
|
2099
2164
|
.DropdownButton--regular {
|
|
2100
|
-
|
|
2101
|
-
|
|
2102
|
-
|
|
2165
|
+
height: var(--spacing-3);
|
|
2166
|
+
padding-right: var(--spacing);
|
|
2167
|
+
padding-left: var(--spacing-l);
|
|
2103
2168
|
}
|
|
2104
2169
|
|
|
2105
2170
|
.DropdownButton--tinySquare {
|
|
2106
|
-
|
|
2107
|
-
|
|
2171
|
+
padding-left: var(--spacing-m);
|
|
2172
|
+
padding-right: var(--spacing-m);
|
|
2108
2173
|
}
|
|
2109
2174
|
|
|
2110
2175
|
.DropdownButton--regularSquare {
|
|
2111
|
-
|
|
2112
|
-
|
|
2176
|
+
padding-left: var(--spacing);
|
|
2177
|
+
padding-right: var(--spacing);
|
|
2113
2178
|
}
|
|
2114
2179
|
|
|
2115
2180
|
.DropdownButton--placeholder {
|
|
2116
|
-
|
|
2181
|
+
color: var(--text-subtle);
|
|
2117
2182
|
}
|
|
2118
2183
|
|
|
2119
2184
|
.DropdownButton:hover {
|
|
2120
|
-
|
|
2121
|
-
|
|
2185
|
+
background: var(--secondary);
|
|
2186
|
+
color: var(--text);
|
|
2122
2187
|
}
|
|
2123
2188
|
|
|
2124
2189
|
.DropdownButton:focus {
|
|
2125
|
-
|
|
2126
|
-
|
|
2190
|
+
background-color: var(--secondary-lighter);
|
|
2191
|
+
box-shadow: var(--shadow-spread) var(--secondary-shadow);
|
|
2127
2192
|
}
|
|
2128
2193
|
|
|
2129
2194
|
.DropdownButton:active,
|
|
2130
2195
|
.DropdownButton--open {
|
|
2131
|
-
|
|
2132
|
-
|
|
2196
|
+
background-color: var(--secondary-dark) !important;
|
|
2197
|
+
color: var(--text) !important;
|
|
2133
2198
|
}
|
|
2134
2199
|
|
|
2135
2200
|
.DropdownButton:disabled {
|
|
2136
|
-
|
|
2137
|
-
|
|
2138
|
-
|
|
2201
|
+
background: var(--secondary-lighter);
|
|
2202
|
+
color: var(--text-disabled);
|
|
2203
|
+
pointer-events: none;
|
|
2139
2204
|
}
|
|
2140
2205
|
|
|
2141
2206
|
.DropdownButton--icon {
|
|
2142
|
-
|
|
2207
|
+
padding-left: var(--spacing);
|
|
2143
2208
|
}
|
|
2144
2209
|
|
|
2145
2210
|
.DropdownButton--error {
|
|
2146
|
-
|
|
2211
|
+
border: var(--spacing-xs) solid var(--alert);
|
|
2147
2212
|
}
|
|
2148
2213
|
|
|
2149
2214
|
.Dropzone {
|
|
@@ -2153,11 +2218,10 @@ body {
|
|
|
2153
2218
|
background: var(--white);
|
|
2154
2219
|
border-radius: var(--spacing-m);
|
|
2155
2220
|
width: 100%;
|
|
2156
|
-
background-image:
|
|
2157
|
-
|
|
2158
|
-
|
|
2159
|
-
|
|
2160
|
-
linear-gradient(var(--secondary) 50%, rgba(255, 255, 255, 0) 0%);
|
|
2221
|
+
background-image: linear-gradient(to right, var(--secondary) 50%, rgba(255, 255, 255, 0) 0%),
|
|
2222
|
+
linear-gradient(var(--secondary) 50%, rgba(255, 255, 255, 0) 0%),
|
|
2223
|
+
linear-gradient(to right, var(--secondary) 50%, rgba(255, 255, 255, 0) 0%),
|
|
2224
|
+
linear-gradient(var(--secondary) 50%, rgba(255, 255, 255, 0) 0%);
|
|
2161
2225
|
background-position: top, right, bottom, left;
|
|
2162
2226
|
background-repeat: repeat-x, repeat-y;
|
|
2163
2227
|
background-size: 7px var(--spacing-xs), var(--spacing-xs) 7px;
|
|
@@ -2165,11 +2229,10 @@ body {
|
|
|
2165
2229
|
|
|
2166
2230
|
.Dropzone--active {
|
|
2167
2231
|
background: var(--primary-lightest);
|
|
2168
|
-
background-image:
|
|
2169
|
-
|
|
2170
|
-
|
|
2171
|
-
|
|
2172
|
-
linear-gradient(var(--primary) 50%, rgba(255, 255, 255, 0) 0%);
|
|
2232
|
+
background-image: linear-gradient(to right, var(--primary) 50%, rgba(255, 255, 255, 0) 0%),
|
|
2233
|
+
linear-gradient(var(--primary) 50%, rgba(255, 255, 255, 0) 0%),
|
|
2234
|
+
linear-gradient(to right, var(--primary) 50%, rgba(255, 255, 255, 0) 0%),
|
|
2235
|
+
linear-gradient(var(--primary) 50%, rgba(255, 255, 255, 0) 0%);
|
|
2173
2236
|
background-position: top, right, bottom, left;
|
|
2174
2237
|
background-repeat: repeat-x, repeat-y;
|
|
2175
2238
|
background-size: 7px var(--spacing-xs), var(--spacing-xs) 7px;
|
|
@@ -2177,11 +2240,10 @@ body {
|
|
|
2177
2240
|
|
|
2178
2241
|
.Dropzone--error {
|
|
2179
2242
|
background: var(--alert-lightest);
|
|
2180
|
-
background-image:
|
|
2181
|
-
|
|
2182
|
-
|
|
2183
|
-
|
|
2184
|
-
linear-gradient(var(--alert) 50%, rgba(255, 255, 255, 0) 0%);
|
|
2243
|
+
background-image: linear-gradient(to right, var(--alert) 50%, rgba(255, 255, 255, 0) 0%),
|
|
2244
|
+
linear-gradient(var(--alert) 50%, rgba(255, 255, 255, 0) 0%),
|
|
2245
|
+
linear-gradient(to right, var(--alert) 50%, rgba(255, 255, 255, 0) 0%),
|
|
2246
|
+
linear-gradient(var(--alert) 50%, rgba(255, 255, 255, 0) 0%);
|
|
2185
2247
|
background-position: top, right, bottom, left;
|
|
2186
2248
|
background-repeat: repeat-x, repeat-y;
|
|
2187
2249
|
background-size: 7px var(--spacing-xs), var(--spacing-xs) 7px;
|
|
@@ -2189,11 +2251,10 @@ body {
|
|
|
2189
2251
|
|
|
2190
2252
|
.Dropzone--disabled {
|
|
2191
2253
|
background: var(--secondary-lightest);
|
|
2192
|
-
background-image:
|
|
2193
|
-
|
|
2194
|
-
|
|
2195
|
-
|
|
2196
|
-
linear-gradient(var(--secondary) 50%, rgba(255, 255, 255, 0) 0%);
|
|
2254
|
+
background-image: linear-gradient(to right, var(--secondary) 50%, rgba(255, 255, 255, 0) 0%),
|
|
2255
|
+
linear-gradient(var(--secondary) 50%, rgba(255, 255, 255, 0) 0%),
|
|
2256
|
+
linear-gradient(to right, var(--secondary) 50%, rgba(255, 255, 255, 0) 0%),
|
|
2257
|
+
linear-gradient(var(--secondary) 50%, rgba(255, 255, 255, 0) 0%);
|
|
2197
2258
|
background-position: top, right, bottom, left;
|
|
2198
2259
|
background-repeat: repeat-x, repeat-y;
|
|
2199
2260
|
background-size: 7px var(--spacing-xs), var(--spacing-xs) 7px;
|
|
@@ -2257,39 +2318,40 @@ body {
|
|
|
2257
2318
|
margin-right: var(--spacing-2);
|
|
2258
2319
|
}
|
|
2259
2320
|
|
|
2260
|
-
.EditableChipInput{
|
|
2321
|
+
.EditableChipInput {
|
|
2261
2322
|
position: relative;
|
|
2262
2323
|
width: 100%;
|
|
2263
2324
|
}
|
|
2264
2325
|
.EditableChipInput-default {
|
|
2265
2326
|
display: flex;
|
|
2266
2327
|
align-items: center;
|
|
2267
|
-
padding-left:var(--spacing-l);
|
|
2328
|
+
padding-left: var(--spacing-l);
|
|
2268
2329
|
border-left: var(--spacing-xs) solid transparent;
|
|
2269
2330
|
min-height: var(--spacing-3);
|
|
2270
|
-
flex-wrap:wrap;
|
|
2331
|
+
flex-wrap: wrap;
|
|
2271
2332
|
}
|
|
2272
2333
|
|
|
2273
|
-
.EditableChipInput-defaultWithChips{
|
|
2334
|
+
.EditableChipInput-defaultWithChips {
|
|
2274
2335
|
display: flex;
|
|
2275
2336
|
align-items: center;
|
|
2276
|
-
padding-left:var(--spacing);
|
|
2337
|
+
padding-left: var(--spacing);
|
|
2277
2338
|
border: var(--spacing-xs) solid transparent;
|
|
2278
2339
|
padding-top: var(--spacing-xs);
|
|
2279
2340
|
padding-bottom: var(--spacing-xs);
|
|
2280
2341
|
max-width: calc(100% - 28px);
|
|
2281
|
-
flex-wrap:wrap;
|
|
2342
|
+
flex-wrap: wrap;
|
|
2282
2343
|
}
|
|
2283
2344
|
|
|
2284
|
-
.EditableChipInput-defaultWithChips:hover,
|
|
2345
|
+
.EditableChipInput-defaultWithChips:hover,
|
|
2346
|
+
.EditableChipInput-default:hover {
|
|
2285
2347
|
background-color: var(--secondary-lightest);
|
|
2286
2348
|
}
|
|
2287
2349
|
|
|
2288
|
-
.EditableChipInput-chipInput{
|
|
2350
|
+
.EditableChipInput-chipInput {
|
|
2289
2351
|
padding-left: var(--spacing);
|
|
2290
2352
|
}
|
|
2291
2353
|
|
|
2292
|
-
.EditableChipInput-actions{
|
|
2354
|
+
.EditableChipInput-actions {
|
|
2293
2355
|
position: absolute;
|
|
2294
2356
|
display: flex;
|
|
2295
2357
|
justify-content: flex-end;
|
|
@@ -2308,6 +2370,7 @@ body {
|
|
|
2308
2370
|
height: var(--spacing-3);
|
|
2309
2371
|
padding-left: var(--spacing-l);
|
|
2310
2372
|
}
|
|
2373
|
+
|
|
2311
2374
|
.EditableInput {
|
|
2312
2375
|
position: relative;
|
|
2313
2376
|
display: inline-flex;
|
|
@@ -2355,127 +2418,129 @@ body {
|
|
|
2355
2418
|
min-width: var(--spacing-6) !important;
|
|
2356
2419
|
width: 100%;
|
|
2357
2420
|
}
|
|
2421
|
+
|
|
2358
2422
|
.EmptyState {
|
|
2359
|
-
|
|
2360
|
-
|
|
2361
|
-
|
|
2362
|
-
|
|
2363
|
-
|
|
2423
|
+
display: flex;
|
|
2424
|
+
flex-direction: column;
|
|
2425
|
+
align-items: center;
|
|
2426
|
+
justify-content: center;
|
|
2427
|
+
background: transparent;
|
|
2364
2428
|
}
|
|
2365
2429
|
|
|
2366
2430
|
.EmptyState-title {
|
|
2367
|
-
|
|
2368
|
-
|
|
2431
|
+
text-align: center;
|
|
2432
|
+
max-width: 480px;
|
|
2369
2433
|
}
|
|
2370
2434
|
|
|
2371
2435
|
.EmptyState-description {
|
|
2372
|
-
|
|
2373
|
-
|
|
2374
|
-
|
|
2436
|
+
text-align: center;
|
|
2437
|
+
margin-top: var(--spacing-m);
|
|
2438
|
+
max-width: 360px;
|
|
2375
2439
|
}
|
|
2376
2440
|
|
|
2377
2441
|
.EmptyState-title--large {
|
|
2378
|
-
|
|
2442
|
+
margin-top: var(--spacing-4);
|
|
2379
2443
|
}
|
|
2380
2444
|
|
|
2381
2445
|
.EmptyState-title--small {
|
|
2382
|
-
|
|
2446
|
+
margin-top: var(--spacing-xl);
|
|
2383
2447
|
}
|
|
2384
2448
|
|
|
2385
2449
|
.EmptyState-description--large {
|
|
2386
|
-
|
|
2450
|
+
margin-bottom: var(--spacing-xl);
|
|
2387
2451
|
}
|
|
2388
2452
|
|
|
2389
2453
|
.EmptyState-description--small {
|
|
2390
|
-
|
|
2454
|
+
margin-bottom: var(--spacing-2);
|
|
2391
2455
|
}
|
|
2456
|
+
|
|
2392
2457
|
.FileIcon {
|
|
2393
|
-
|
|
2394
|
-
|
|
2458
|
+
padding: var(--spacing);
|
|
2459
|
+
border-radius: 50%;
|
|
2395
2460
|
}
|
|
2396
2461
|
.FileItem:not(:last-child) {
|
|
2397
|
-
|
|
2398
|
-
|
|
2399
|
-
|
|
2462
|
+
border-bottom: var(--border);
|
|
2463
|
+
width: 100%;
|
|
2464
|
+
box-sizing: border-box;
|
|
2400
2465
|
}
|
|
2401
2466
|
.FileItem {
|
|
2402
|
-
|
|
2403
|
-
|
|
2404
|
-
|
|
2405
|
-
|
|
2467
|
+
padding-top: var(--spacing);
|
|
2468
|
+
padding-bottom: var(--spacing);
|
|
2469
|
+
padding-left: var(--spacing-l);
|
|
2470
|
+
padding-right: var(--spacing);
|
|
2406
2471
|
}
|
|
2407
2472
|
.FileItem-fileContent {
|
|
2408
|
-
|
|
2409
|
-
|
|
2410
|
-
|
|
2473
|
+
display: flex;
|
|
2474
|
+
justify-content: center;
|
|
2475
|
+
align-items: center;
|
|
2411
2476
|
}
|
|
2412
2477
|
.FileItem-actions {
|
|
2413
|
-
|
|
2414
|
-
|
|
2415
|
-
|
|
2478
|
+
display: flex;
|
|
2479
|
+
justify-content: center;
|
|
2480
|
+
align-items: center;
|
|
2416
2481
|
}
|
|
2417
2482
|
.FileItem-file {
|
|
2418
|
-
|
|
2419
|
-
|
|
2420
|
-
|
|
2421
|
-
}
|
|
2483
|
+
display: flex;
|
|
2484
|
+
align-items: center;
|
|
2485
|
+
justify-content: space-between;
|
|
2486
|
+
}
|
|
2422
2487
|
.FileItem-size {
|
|
2423
|
-
|
|
2424
|
-
|
|
2488
|
+
margin-right: var(--spacing);
|
|
2489
|
+
margin-left: var(--spacing);
|
|
2425
2490
|
}
|
|
2426
2491
|
.FileItem-text {
|
|
2427
|
-
|
|
2428
|
-
|
|
2429
|
-
|
|
2430
|
-
|
|
2492
|
+
white-space: nowrap;
|
|
2493
|
+
overflow: hidden;
|
|
2494
|
+
text-overflow: ellipsis;
|
|
2495
|
+
margin-left: var(--spacing-l);
|
|
2431
2496
|
}
|
|
2432
2497
|
.FileItem-error {
|
|
2433
|
-
|
|
2498
|
+
margin-left: 40px;
|
|
2434
2499
|
}
|
|
2435
2500
|
|
|
2436
2501
|
.FileIcon--image {
|
|
2437
|
-
|
|
2438
|
-
|
|
2502
|
+
background: var(--alert-lightest);
|
|
2503
|
+
color: var(--alert);
|
|
2439
2504
|
}
|
|
2440
2505
|
.FileIcon--audio {
|
|
2441
|
-
|
|
2442
|
-
|
|
2506
|
+
background: var(--accent1-lightest);
|
|
2507
|
+
color: var(--accent1);
|
|
2443
2508
|
}
|
|
2444
2509
|
.FileIcon--video {
|
|
2445
|
-
|
|
2446
|
-
|
|
2510
|
+
background: var(--accent2-lightest);
|
|
2511
|
+
color: var(--accent2);
|
|
2447
2512
|
}
|
|
2448
2513
|
.FileIcon--application {
|
|
2449
|
-
|
|
2450
|
-
|
|
2514
|
+
background: var(--accent3-lightest);
|
|
2515
|
+
color: var(--accent3);
|
|
2451
2516
|
}
|
|
2452
2517
|
.FileIcon--others {
|
|
2453
|
-
|
|
2454
|
-
|
|
2518
|
+
background: var(--warning-lightest);
|
|
2519
|
+
color: var(--warning);
|
|
2455
2520
|
}
|
|
2456
2521
|
.FileIcon--animate {
|
|
2457
|
-
|
|
2458
|
-
|
|
2522
|
+
-webkit-animation: fadeIn 160ms cubic-bezier(0, 0, 0.38, 0.9);
|
|
2523
|
+
animation: fadeIn 160ms cubic-bezier(0, 0, 0.38, 0.9);
|
|
2459
2524
|
}
|
|
2460
2525
|
|
|
2461
2526
|
@-webkit-keyframes fadeIn {
|
|
2462
|
-
|
|
2463
|
-
|
|
2464
|
-
|
|
2465
|
-
|
|
2466
|
-
|
|
2467
|
-
|
|
2527
|
+
0% {
|
|
2528
|
+
opacity: 0;
|
|
2529
|
+
}
|
|
2530
|
+
100% {
|
|
2531
|
+
opacity: 1;
|
|
2532
|
+
}
|
|
2468
2533
|
}
|
|
2469
2534
|
|
|
2470
2535
|
@keyframes fadeIn {
|
|
2471
|
-
|
|
2472
|
-
|
|
2473
|
-
|
|
2474
|
-
|
|
2475
|
-
|
|
2476
|
-
|
|
2477
|
-
}
|
|
2478
|
-
|
|
2536
|
+
0% {
|
|
2537
|
+
opacity: 0;
|
|
2538
|
+
}
|
|
2539
|
+
100% {
|
|
2540
|
+
opacity: 1;
|
|
2541
|
+
}
|
|
2542
|
+
}
|
|
2543
|
+
|
|
2479
2544
|
.FileUploader {
|
|
2480
2545
|
display: flex;
|
|
2481
2546
|
flex-direction: column;
|
|
@@ -2521,42 +2586,44 @@ body {
|
|
|
2521
2586
|
@-webkit-keyframes fullscreenModal-open {
|
|
2522
2587
|
from {
|
|
2523
2588
|
opacity: 0;
|
|
2524
|
-
|
|
2525
|
-
transform: scaleX(120%) scaleY(120%) translateX(-10%) translateY(-10%);
|
|
2589
|
+
transform: translateY(20px);
|
|
2526
2590
|
}
|
|
2527
2591
|
to {
|
|
2528
2592
|
opacity: 100;
|
|
2593
|
+
transform: translateY(0px);
|
|
2529
2594
|
}
|
|
2530
2595
|
}
|
|
2531
2596
|
|
|
2532
2597
|
@keyframes fullscreenModal-open {
|
|
2533
2598
|
from {
|
|
2534
2599
|
opacity: 0;
|
|
2535
|
-
|
|
2536
|
-
transform: scaleX(120%) scaleY(120%) translateX(-10%) translateY(-10%);
|
|
2600
|
+
transform: translateY(20px);
|
|
2537
2601
|
}
|
|
2538
2602
|
to {
|
|
2539
2603
|
opacity: 100;
|
|
2604
|
+
transform: translateY(0px);
|
|
2540
2605
|
}
|
|
2541
2606
|
}
|
|
2542
2607
|
|
|
2543
2608
|
@-webkit-keyframes fullscreenModal-close {
|
|
2544
2609
|
from {
|
|
2545
2610
|
opacity: 100;
|
|
2611
|
+
transform: translateY(0px);
|
|
2546
2612
|
}
|
|
2547
2613
|
to {
|
|
2548
2614
|
opacity: 0;
|
|
2549
|
-
transform:
|
|
2615
|
+
transform: translateY(20px);
|
|
2550
2616
|
}
|
|
2551
2617
|
}
|
|
2552
2618
|
|
|
2553
2619
|
@keyframes fullscreenModal-close {
|
|
2554
2620
|
from {
|
|
2555
2621
|
opacity: 100;
|
|
2622
|
+
transform: translateY(0px);
|
|
2556
2623
|
}
|
|
2557
2624
|
to {
|
|
2558
2625
|
opacity: 0;
|
|
2559
|
-
transform:
|
|
2626
|
+
transform: translateY(20px);
|
|
2560
2627
|
}
|
|
2561
2628
|
}
|
|
2562
2629
|
|
|
@@ -2610,214 +2677,217 @@ body {
|
|
|
2610
2677
|
/** Grid **/
|
|
2611
2678
|
|
|
2612
2679
|
.Grid-wrapper {
|
|
2613
|
-
|
|
2614
|
-
|
|
2615
|
-
|
|
2616
|
-
|
|
2680
|
+
display: flex;
|
|
2681
|
+
position: relative;
|
|
2682
|
+
overflow: hidden;
|
|
2683
|
+
height: 100%;
|
|
2617
2684
|
}
|
|
2618
2685
|
|
|
2619
2686
|
.Grid {
|
|
2620
|
-
|
|
2621
|
-
|
|
2622
|
-
|
|
2623
|
-
|
|
2624
|
-
|
|
2625
|
-
|
|
2687
|
+
display: flex;
|
|
2688
|
+
flex-direction: column;
|
|
2689
|
+
flex-grow: 1;
|
|
2690
|
+
height: 100%;
|
|
2691
|
+
overflow: hidden;
|
|
2692
|
+
background: var(--white);
|
|
2626
2693
|
}
|
|
2627
2694
|
|
|
2628
|
-
.Grid--resource .Grid-row--body:hover,
|
|
2629
|
-
|
|
2630
|
-
|
|
2695
|
+
.Grid--resource .Grid-row--body:hover,
|
|
2696
|
+
.Grid--resource .Grid-row--body:hover .Grid-cellGroup {
|
|
2697
|
+
cursor: pointer;
|
|
2698
|
+
background: var(--secondary-lightest);
|
|
2631
2699
|
}
|
|
2632
2700
|
|
|
2633
|
-
.Grid--resource .Grid-row--body:active,
|
|
2634
|
-
|
|
2701
|
+
.Grid--resource .Grid-row--body:active,
|
|
2702
|
+
.Grid--resource .Grid-row--body:active .Grid-cellGroup {
|
|
2703
|
+
background: var(--warning-lightest) !important;
|
|
2635
2704
|
}
|
|
2636
2705
|
|
|
2637
2706
|
.Grid--resource .Grid-row--body:focus {
|
|
2638
|
-
|
|
2707
|
+
outline-color: var(--warning);
|
|
2639
2708
|
}
|
|
2640
2709
|
|
|
2641
2710
|
.Grid--pinned {
|
|
2642
|
-
|
|
2643
|
-
|
|
2644
|
-
|
|
2645
|
-
|
|
2646
|
-
|
|
2647
|
-
|
|
2711
|
+
position: absolute;
|
|
2712
|
+
height: 100%;
|
|
2713
|
+
z-index: 2;
|
|
2714
|
+
overflow-x: hidden;
|
|
2715
|
+
-ms-overflow-style: none;
|
|
2716
|
+
border-right: 3px solid var(--secondary);
|
|
2648
2717
|
}
|
|
2649
2718
|
|
|
2650
2719
|
.Grid-pinned::-webkit-scrollbar {
|
|
2651
|
-
|
|
2720
|
+
display: none;
|
|
2652
2721
|
}
|
|
2653
2722
|
|
|
2654
2723
|
.Grid--main {
|
|
2655
|
-
|
|
2724
|
+
flex-grow: 1;
|
|
2656
2725
|
}
|
|
2657
2726
|
|
|
2658
2727
|
.Grid--comfortable .Grid-cell--head {
|
|
2659
|
-
|
|
2728
|
+
min-height: 40px;
|
|
2660
2729
|
}
|
|
2661
2730
|
|
|
2662
2731
|
.Grid--comfortable .Grid-cell--body {
|
|
2663
|
-
|
|
2664
|
-
|
|
2732
|
+
padding-top: var(--spacing-l);
|
|
2733
|
+
padding-bottom: var(--spacing-l);
|
|
2665
2734
|
}
|
|
2666
2735
|
|
|
2667
2736
|
.Grid--standard .Grid-cell--head {
|
|
2668
|
-
|
|
2737
|
+
min-height: 40px;
|
|
2669
2738
|
}
|
|
2670
2739
|
|
|
2671
2740
|
.Grid--standard .Grid-cell--body {
|
|
2672
|
-
|
|
2673
|
-
|
|
2741
|
+
padding-top: var(--spacing-l);
|
|
2742
|
+
padding-bottom: var(--spacing-l);
|
|
2674
2743
|
}
|
|
2675
2744
|
|
|
2676
2745
|
.Grid--compressed .Grid-cell--head {
|
|
2677
|
-
|
|
2746
|
+
min-height: 40px;
|
|
2678
2747
|
}
|
|
2679
2748
|
|
|
2680
2749
|
.Grid--compressed .Grid-cell--body {
|
|
2681
|
-
|
|
2682
|
-
|
|
2750
|
+
padding-top: var(--spacing);
|
|
2751
|
+
padding-bottom: var(--spacing);
|
|
2683
2752
|
}
|
|
2684
2753
|
|
|
2685
2754
|
.Grid--tight .Grid-cell--head {
|
|
2686
|
-
|
|
2755
|
+
min-height: var(--spacing-3);
|
|
2687
2756
|
}
|
|
2688
2757
|
|
|
2689
2758
|
.Grid--tight .Grid-cell--body {
|
|
2690
|
-
|
|
2691
|
-
|
|
2759
|
+
padding-top: var(--spacing-m);
|
|
2760
|
+
padding-bottom: var(--spacing-m);
|
|
2692
2761
|
}
|
|
2693
2762
|
|
|
2694
2763
|
.Grid-head {
|
|
2695
|
-
|
|
2696
|
-
|
|
2697
|
-
|
|
2698
|
-
|
|
2764
|
+
display: flex;
|
|
2765
|
+
flex: 0 0 auto;
|
|
2766
|
+
overflow-x: auto;
|
|
2767
|
+
border-bottom: var(--border);
|
|
2699
2768
|
}
|
|
2700
2769
|
|
|
2701
2770
|
.Grid-head::-webkit-scrollbar {
|
|
2702
|
-
|
|
2771
|
+
display: none;
|
|
2703
2772
|
}
|
|
2704
2773
|
|
|
2705
2774
|
.Grid-headCell {
|
|
2706
|
-
|
|
2707
|
-
|
|
2708
|
-
|
|
2709
|
-
|
|
2775
|
+
display: flex;
|
|
2776
|
+
height: 100%;
|
|
2777
|
+
flex-direction: row;
|
|
2778
|
+
align-items: center;
|
|
2710
2779
|
}
|
|
2711
2780
|
|
|
2712
2781
|
.Grid-headCell--draggable {
|
|
2713
|
-
|
|
2714
|
-
|
|
2782
|
+
cursor: -webkit-grab;
|
|
2783
|
+
cursor: grab;
|
|
2715
2784
|
}
|
|
2716
2785
|
|
|
2717
2786
|
.Grid-headCell--draggable:active {
|
|
2718
|
-
|
|
2719
|
-
|
|
2787
|
+
cursor: -webkit-grabbing;
|
|
2788
|
+
cursor: grabbing;
|
|
2720
2789
|
}
|
|
2721
2790
|
|
|
2722
2791
|
.Grid-body {
|
|
2723
|
-
|
|
2724
|
-
|
|
2725
|
-
|
|
2726
|
-
|
|
2727
|
-
|
|
2792
|
+
display: flex;
|
|
2793
|
+
flex-direction: column;
|
|
2794
|
+
flex-grow: 1;
|
|
2795
|
+
overflow-x: auto;
|
|
2796
|
+
overflow-y: overlay;
|
|
2728
2797
|
}
|
|
2729
2798
|
|
|
2730
2799
|
.Grid-body::-webkit-scrollbar {
|
|
2731
|
-
|
|
2732
|
-
|
|
2733
|
-
|
|
2800
|
+
background: var(--white);
|
|
2801
|
+
height: var(--spacing-l);
|
|
2802
|
+
width: var(--spacing-l);
|
|
2734
2803
|
}
|
|
2735
2804
|
|
|
2736
2805
|
.Grid-body::-webkit-scrollbar-thumb {
|
|
2737
|
-
|
|
2738
|
-
|
|
2806
|
+
background: var(--secondary);
|
|
2807
|
+
border-radius: var(--spacing);
|
|
2739
2808
|
}
|
|
2740
2809
|
|
|
2741
2810
|
.Grid-rowWrapper {
|
|
2742
|
-
|
|
2743
|
-
|
|
2744
|
-
|
|
2745
|
-
|
|
2746
|
-
|
|
2747
|
-
|
|
2748
|
-
|
|
2811
|
+
display: inline-flex;
|
|
2812
|
+
flex-direction: column;
|
|
2813
|
+
min-width: -webkit-fit-content;
|
|
2814
|
+
min-width: -moz-fit-content;
|
|
2815
|
+
min-width: fit-content;
|
|
2816
|
+
flex-shrink: 0;
|
|
2817
|
+
border-bottom: var(--border);
|
|
2749
2818
|
}
|
|
2750
2819
|
|
|
2751
2820
|
.Grid-row {
|
|
2752
|
-
|
|
2753
|
-
|
|
2754
|
-
|
|
2755
|
-
|
|
2756
|
-
|
|
2821
|
+
display: flex;
|
|
2822
|
+
flex-grow: 1;
|
|
2823
|
+
flex-shrink: 0;
|
|
2824
|
+
box-sizing: border-box;
|
|
2825
|
+
background: var(--white);
|
|
2757
2826
|
}
|
|
2758
2827
|
|
|
2759
2828
|
.Grid-row--body {
|
|
2760
|
-
|
|
2829
|
+
border-color: var(--secondary-light);
|
|
2761
2830
|
}
|
|
2762
2831
|
|
|
2763
|
-
.Grid-row--selected,
|
|
2764
|
-
|
|
2832
|
+
.Grid-row--selected,
|
|
2833
|
+
.Grid-row--selected .Grid-cellGroup {
|
|
2834
|
+
background: var(--warning-lightest) !important;
|
|
2765
2835
|
}
|
|
2766
2836
|
|
|
2767
2837
|
.Grid-rowWrapper:last-child .Grid-row--body {
|
|
2768
|
-
|
|
2838
|
+
border-bottom: 0;
|
|
2769
2839
|
}
|
|
2770
2840
|
|
|
2771
2841
|
.GridBody-padding {
|
|
2772
|
-
|
|
2842
|
+
flex-shrink: 0;
|
|
2773
2843
|
}
|
|
2774
2844
|
|
|
2775
2845
|
.Grid-nestedRow {
|
|
2776
|
-
|
|
2777
|
-
|
|
2846
|
+
width: 100%;
|
|
2847
|
+
overflow: hidden;
|
|
2778
2848
|
}
|
|
2779
2849
|
|
|
2780
2850
|
.Grid-nestedRowTrigger {
|
|
2781
|
-
|
|
2782
|
-
|
|
2851
|
+
margin-right: var(--spacing-l);
|
|
2852
|
+
cursor: pointer;
|
|
2783
2853
|
}
|
|
2784
2854
|
|
|
2785
2855
|
.Grid-nestedRowPlaceholder {
|
|
2786
|
-
|
|
2787
|
-
|
|
2856
|
+
width: 20px;
|
|
2857
|
+
margin-right: var(--spacing-l);
|
|
2788
2858
|
}
|
|
2789
2859
|
|
|
2790
2860
|
.Grid-cell {
|
|
2791
|
-
|
|
2792
|
-
|
|
2793
|
-
|
|
2794
|
-
|
|
2861
|
+
position: relative;
|
|
2862
|
+
box-sizing: border-box;
|
|
2863
|
+
padding-left: var(--spacing-l);
|
|
2864
|
+
padding-right: var(--spacing-l);
|
|
2795
2865
|
}
|
|
2796
2866
|
|
|
2797
2867
|
.Grid-cell--body {
|
|
2798
|
-
|
|
2868
|
+
padding-right: var(--spacing-l);
|
|
2799
2869
|
}
|
|
2800
2870
|
|
|
2801
2871
|
.Grid-cell--head {
|
|
2802
|
-
|
|
2803
|
-
|
|
2872
|
+
overflow: hidden;
|
|
2873
|
+
padding-right: var(--spacing-m);
|
|
2804
2874
|
}
|
|
2805
2875
|
|
|
2806
2876
|
.Grid-cell--separator {
|
|
2807
|
-
|
|
2808
|
-
|
|
2877
|
+
border-left: var(--border);
|
|
2878
|
+
border-color: var(--secondary-light);
|
|
2809
2879
|
}
|
|
2810
2880
|
|
|
2811
2881
|
.Grid-cell--selected {
|
|
2812
|
-
|
|
2882
|
+
background: var(--primary-lightest);
|
|
2813
2883
|
}
|
|
2814
2884
|
|
|
2815
2885
|
.Grid-cell--nestedRow {
|
|
2816
|
-
|
|
2886
|
+
padding-left: var(--spacing);
|
|
2817
2887
|
}
|
|
2818
2888
|
|
|
2819
2889
|
.Grid-cell--head.Grid-cell:first-of-type {
|
|
2820
|
-
|
|
2890
|
+
border-left: none;
|
|
2821
2891
|
}
|
|
2822
2892
|
|
|
2823
2893
|
/* .Grid .Grid-cellGroup--main .Grid-cell--head.Grid-cell:last-child {
|
|
@@ -2825,185 +2895,214 @@ body {
|
|
|
2825
2895
|
} */
|
|
2826
2896
|
|
|
2827
2897
|
.Grid-cell--head.Grid-cell--selected {
|
|
2828
|
-
|
|
2898
|
+
background: var(--primary-light);
|
|
2829
2899
|
}
|
|
2830
2900
|
|
|
2831
2901
|
.Grid-cell--checkbox {
|
|
2832
|
-
|
|
2833
|
-
|
|
2834
|
-
|
|
2835
|
-
|
|
2836
|
-
|
|
2837
|
-
|
|
2838
|
-
|
|
2902
|
+
width: unset;
|
|
2903
|
+
min-width: unset;
|
|
2904
|
+
display: flex;
|
|
2905
|
+
align-items: center;
|
|
2906
|
+
z-index: 1;
|
|
2907
|
+
padding-right: 0 !important;
|
|
2908
|
+
overflow: visible !important;
|
|
2839
2909
|
}
|
|
2840
2910
|
|
|
2841
2911
|
.Grid-sortingIcons {
|
|
2842
|
-
|
|
2843
|
-
|
|
2844
|
-
|
|
2912
|
+
display: flex;
|
|
2913
|
+
align-items: center;
|
|
2914
|
+
padding-left: var(--spacing-m);
|
|
2845
2915
|
}
|
|
2846
2916
|
|
|
2847
2917
|
.Grid-cellReorder {
|
|
2848
|
-
|
|
2849
|
-
|
|
2850
|
-
|
|
2851
|
-
|
|
2918
|
+
display: flex;
|
|
2919
|
+
align-items: center;
|
|
2920
|
+
cursor: -webkit-grab;
|
|
2921
|
+
cursor: grab;
|
|
2852
2922
|
}
|
|
2853
2923
|
|
|
2854
2924
|
.Grid-cellReorder:active {
|
|
2855
|
-
|
|
2856
|
-
|
|
2925
|
+
cursor: -webkit-grabbing;
|
|
2926
|
+
cursor: grabbing;
|
|
2857
2927
|
}
|
|
2858
2928
|
|
|
2859
2929
|
.Grid-cellContent {
|
|
2860
|
-
|
|
2861
|
-
|
|
2862
|
-
|
|
2863
|
-
|
|
2864
|
-
|
|
2930
|
+
display: flex;
|
|
2931
|
+
align-items: center;
|
|
2932
|
+
flex-grow: 1;
|
|
2933
|
+
height: 100%;
|
|
2934
|
+
box-sizing: border-box;
|
|
2865
2935
|
}
|
|
2866
2936
|
|
|
2867
2937
|
.Grid-cell--head .Grid-cellContent {
|
|
2868
|
-
|
|
2938
|
+
overflow: hidden;
|
|
2869
2939
|
}
|
|
2870
2940
|
|
|
2871
2941
|
.Grid-cellResize {
|
|
2872
|
-
|
|
2873
|
-
|
|
2874
|
-
|
|
2875
|
-
|
|
2876
|
-
|
|
2942
|
+
position: absolute;
|
|
2943
|
+
right: 0;
|
|
2944
|
+
width: var(--spacing-m);
|
|
2945
|
+
cursor: ew-resize;
|
|
2946
|
+
height: 100%;
|
|
2877
2947
|
}
|
|
2878
2948
|
|
|
2879
2949
|
.Grid-cellSortIcon {
|
|
2880
|
-
|
|
2881
|
-
|
|
2882
|
-
|
|
2950
|
+
display: flex;
|
|
2951
|
+
align-items: center;
|
|
2952
|
+
cursor: pointer;
|
|
2883
2953
|
}
|
|
2884
2954
|
|
|
2885
2955
|
.Grid-cellSortIcon:hover {
|
|
2886
|
-
|
|
2956
|
+
background: var(--secondary);
|
|
2887
2957
|
}
|
|
2888
2958
|
|
|
2889
2959
|
.Grid-cellResize:hover {
|
|
2890
|
-
|
|
2960
|
+
background: var(--primary);
|
|
2891
2961
|
}
|
|
2892
2962
|
|
|
2893
2963
|
.Grid-reorderHighlighter {
|
|
2894
|
-
|
|
2895
|
-
|
|
2896
|
-
|
|
2897
|
-
|
|
2964
|
+
position: absolute;
|
|
2965
|
+
height: 100%;
|
|
2966
|
+
border: 3px solid var(--primary-light);
|
|
2967
|
+
z-index: 10;
|
|
2898
2968
|
}
|
|
2899
2969
|
|
|
2900
2970
|
.Grid-cellGroup {
|
|
2901
|
-
|
|
2902
|
-
|
|
2903
|
-
|
|
2971
|
+
display: flex;
|
|
2972
|
+
box-sizing: border-box;
|
|
2973
|
+
background: var(--white);
|
|
2904
2974
|
}
|
|
2905
2975
|
|
|
2906
2976
|
.Grid-cellGroup--pinned {
|
|
2907
|
-
|
|
2908
|
-
|
|
2909
|
-
|
|
2977
|
+
position: -webkit-sticky;
|
|
2978
|
+
position: sticky;
|
|
2979
|
+
z-index: 1;
|
|
2910
2980
|
}
|
|
2911
2981
|
|
|
2912
2982
|
.Grid-cellGroup--pinned-left {
|
|
2913
|
-
|
|
2914
|
-
|
|
2915
|
-
|
|
2916
|
-
|
|
2917
|
-
|
|
2983
|
+
left: 0;
|
|
2984
|
+
border-right: var(--border);
|
|
2985
|
+
border-right-width: 4px;
|
|
2986
|
+
-o-border-image: linear-gradient(
|
|
2987
|
+
to right,
|
|
2988
|
+
var(--secondary),
|
|
2989
|
+
var(--secondary) 25%,
|
|
2990
|
+
rgba(213, 213, 213, 0.1) 25%,
|
|
2991
|
+
rgba(213, 213, 213, 0.1)
|
|
2992
|
+
)
|
|
2993
|
+
1 100%;
|
|
2994
|
+
border-image: linear-gradient(
|
|
2995
|
+
to right,
|
|
2996
|
+
var(--secondary),
|
|
2997
|
+
var(--secondary) 25%,
|
|
2998
|
+
rgba(213, 213, 213, 0.1) 25%,
|
|
2999
|
+
rgba(213, 213, 213, 0.1)
|
|
3000
|
+
)
|
|
3001
|
+
1 100%;
|
|
2918
3002
|
}
|
|
2919
3003
|
|
|
2920
3004
|
.Grid-cellGroup--pinned-right {
|
|
2921
|
-
|
|
2922
|
-
|
|
2923
|
-
|
|
2924
|
-
|
|
2925
|
-
|
|
3005
|
+
right: 0;
|
|
3006
|
+
border-left: var(--border);
|
|
3007
|
+
border-left-width: 4px;
|
|
3008
|
+
-o-border-image: linear-gradient(
|
|
3009
|
+
to left,
|
|
3010
|
+
var(--secondary),
|
|
3011
|
+
var(--secondary) 25%,
|
|
3012
|
+
rgba(213, 213, 213, 0.1) 25%,
|
|
3013
|
+
rgba(213, 213, 213, 0.1)
|
|
3014
|
+
)
|
|
3015
|
+
1 100%;
|
|
3016
|
+
border-image: linear-gradient(
|
|
3017
|
+
to left,
|
|
3018
|
+
var(--secondary),
|
|
3019
|
+
var(--secondary) 25%,
|
|
3020
|
+
rgba(213, 213, 213, 0.1) 25%,
|
|
3021
|
+
rgba(213, 213, 213, 0.1)
|
|
3022
|
+
)
|
|
3023
|
+
1 100%;
|
|
2926
3024
|
}
|
|
2927
3025
|
|
|
2928
3026
|
.Grid .Checkbox-wrapper {
|
|
2929
|
-
|
|
3027
|
+
margin-right: 0;
|
|
2930
3028
|
}
|
|
2931
3029
|
|
|
2932
3030
|
/** Grid Cell **/
|
|
2933
3031
|
|
|
2934
3032
|
.GridCell {
|
|
2935
|
-
|
|
2936
|
-
|
|
2937
|
-
|
|
2938
|
-
|
|
3033
|
+
display: flex;
|
|
3034
|
+
align-items: center;
|
|
3035
|
+
width: 100%;
|
|
3036
|
+
box-sizing: border-box;
|
|
2939
3037
|
}
|
|
2940
3038
|
|
|
2941
3039
|
.GridCell--align-left {
|
|
2942
|
-
|
|
2943
|
-
|
|
2944
|
-
|
|
3040
|
+
/* flex-direction: row; */
|
|
3041
|
+
justify-content: flex-start;
|
|
3042
|
+
text-align: left;
|
|
2945
3043
|
}
|
|
2946
3044
|
|
|
2947
3045
|
.GridCell--align-right {
|
|
2948
|
-
|
|
2949
|
-
|
|
2950
|
-
|
|
3046
|
+
/* flex-direction: row-reverse; */
|
|
3047
|
+
justify-content: flex-end;
|
|
3048
|
+
text-align: right;
|
|
2951
3049
|
}
|
|
2952
3050
|
|
|
2953
3051
|
.GridCell--align-center {
|
|
2954
|
-
|
|
2955
|
-
|
|
3052
|
+
justify-content: center;
|
|
3053
|
+
text-align: center;
|
|
2956
3054
|
}
|
|
2957
3055
|
|
|
2958
|
-
.GridCell--default {
|
|
3056
|
+
.GridCell--default {
|
|
3057
|
+
}
|
|
2959
3058
|
|
|
2960
3059
|
.GridCell--metaList {
|
|
2961
|
-
|
|
2962
|
-
|
|
2963
|
-
|
|
2964
|
-
|
|
2965
|
-
|
|
3060
|
+
display: flex;
|
|
3061
|
+
flex-direction: column;
|
|
3062
|
+
justify-content: center;
|
|
3063
|
+
align-items: flex-start;
|
|
3064
|
+
overflow: hidden;
|
|
2966
3065
|
}
|
|
2967
3066
|
|
|
2968
3067
|
.GridCell--avatar .Avatar {
|
|
2969
|
-
|
|
3068
|
+
margin: 0;
|
|
2970
3069
|
}
|
|
2971
3070
|
|
|
2972
3071
|
.GridCell-metaListWrapper {
|
|
2973
|
-
|
|
2974
|
-
|
|
2975
|
-
|
|
2976
|
-
|
|
2977
|
-
|
|
3072
|
+
display: flex;
|
|
3073
|
+
flex-direction: column;
|
|
3074
|
+
justify-content: center;
|
|
3075
|
+
width: 100%;
|
|
3076
|
+
overflow: hidden;
|
|
2978
3077
|
}
|
|
2979
3078
|
|
|
2980
3079
|
.GridCell-metaList {
|
|
2981
|
-
|
|
3080
|
+
display: flex;
|
|
2982
3081
|
}
|
|
2983
3082
|
|
|
2984
3083
|
.GridCell-metaList .Text {
|
|
2985
|
-
|
|
2986
|
-
|
|
3084
|
+
display: flex;
|
|
3085
|
+
align-items: center;
|
|
2987
3086
|
}
|
|
2988
3087
|
|
|
2989
3088
|
.GridCell-metaList .Text::before {
|
|
2990
|
-
|
|
2991
|
-
|
|
2992
|
-
|
|
2993
|
-
|
|
2994
|
-
|
|
2995
|
-
|
|
2996
|
-
|
|
2997
|
-
|
|
2998
|
-
|
|
3089
|
+
content: '';
|
|
3090
|
+
display: inline-flex;
|
|
3091
|
+
align-items: center;
|
|
3092
|
+
justify-content: center;
|
|
3093
|
+
width: var(--spacing-m);
|
|
3094
|
+
height: var(--spacing-m);
|
|
3095
|
+
border-radius: 50%;
|
|
3096
|
+
background: var(--secondary);
|
|
3097
|
+
margin: 0 var(--spacing);
|
|
2999
3098
|
}
|
|
3000
3099
|
|
|
3001
3100
|
.GridCell-metaList .Text:first-child::before {
|
|
3002
|
-
|
|
3101
|
+
display: none;
|
|
3003
3102
|
}
|
|
3004
3103
|
|
|
3005
3104
|
.GridCell--metaList ul li:first-child {
|
|
3006
|
-
|
|
3105
|
+
margin-left: 0;
|
|
3007
3106
|
}
|
|
3008
3107
|
|
|
3009
3108
|
/* .GridCell-image {
|
|
@@ -3025,60 +3124,60 @@ body {
|
|
|
3025
3124
|
/** Table-header **/
|
|
3026
3125
|
|
|
3027
3126
|
.Header {
|
|
3028
|
-
|
|
3029
|
-
|
|
3030
|
-
|
|
3127
|
+
background: var(--white);
|
|
3128
|
+
padding: var(--spacing-l);
|
|
3129
|
+
border-bottom: var(--border);
|
|
3031
3130
|
}
|
|
3032
3131
|
|
|
3033
3132
|
.Header-content {
|
|
3034
|
-
|
|
3133
|
+
display: flex;
|
|
3035
3134
|
}
|
|
3036
3135
|
|
|
3037
3136
|
.Header-content--bottom {
|
|
3038
|
-
|
|
3039
|
-
|
|
3137
|
+
align-items: center;
|
|
3138
|
+
justify-content: space-between;
|
|
3040
3139
|
}
|
|
3041
3140
|
|
|
3042
3141
|
.Header-search {
|
|
3043
|
-
|
|
3044
|
-
|
|
3142
|
+
width: var(--spacing-9);
|
|
3143
|
+
margin-bottom: var(--spacing-2);
|
|
3045
3144
|
}
|
|
3046
3145
|
|
|
3047
3146
|
.Header-label {
|
|
3048
|
-
|
|
3049
|
-
|
|
3050
|
-
|
|
3147
|
+
display: flex;
|
|
3148
|
+
flex-grow: 1;
|
|
3149
|
+
align-items: center;
|
|
3051
3150
|
}
|
|
3052
3151
|
|
|
3053
3152
|
.Header-label .Checkbox {
|
|
3054
|
-
|
|
3153
|
+
margin-right: var(--spacing);
|
|
3055
3154
|
}
|
|
3056
3155
|
|
|
3057
3156
|
.Header-dropdown {
|
|
3058
|
-
|
|
3059
|
-
|
|
3060
|
-
|
|
3157
|
+
display: flex;
|
|
3158
|
+
margin-left: var(--spacing-m);
|
|
3159
|
+
margin-bottom: var(--spacing-2);
|
|
3061
3160
|
}
|
|
3062
3161
|
|
|
3063
3162
|
.Header-dropdown .Dropdown {
|
|
3064
|
-
|
|
3163
|
+
margin: 0 var(--spacing-m);
|
|
3065
3164
|
}
|
|
3066
3165
|
|
|
3067
3166
|
.Header-draggableDropdown .Dropdown-wrapper {
|
|
3068
|
-
|
|
3069
|
-
|
|
3167
|
+
max-height: 200px;
|
|
3168
|
+
overflow-y: auto;
|
|
3070
3169
|
}
|
|
3071
3170
|
|
|
3072
3171
|
.Header-filters {
|
|
3073
|
-
|
|
3172
|
+
display: flex;
|
|
3074
3173
|
}
|
|
3075
3174
|
|
|
3076
3175
|
.Header-sorting {
|
|
3077
|
-
|
|
3176
|
+
display: flex;
|
|
3078
3177
|
}
|
|
3079
3178
|
|
|
3080
3179
|
.Header-actions {
|
|
3081
|
-
|
|
3180
|
+
margin-bottom: var(--spacing-2);
|
|
3082
3181
|
}
|
|
3083
3182
|
|
|
3084
3183
|
.HorizontalNav {
|
|
@@ -3129,26 +3228,20 @@ body {
|
|
|
3129
3228
|
* https://google.github.io/material-design-icons/
|
|
3130
3229
|
*/
|
|
3131
3230
|
|
|
3132
|
-
|
|
3133
3231
|
/* Rules for sizing the icon. */
|
|
3134
3232
|
|
|
3135
|
-
|
|
3136
3233
|
/* .material-icons.md-18 { font-size: 18px; }
|
|
3137
3234
|
.material-icons.md-24 { font-size: 24px; }
|
|
3138
3235
|
.material-icons.md-36 { font-size: 36px; }
|
|
3139
3236
|
.material-icons.md-48 { font-size: 48px; } */
|
|
3140
3237
|
|
|
3141
|
-
|
|
3142
3238
|
/* Rules for using icons as black on a light background. */
|
|
3143
3239
|
|
|
3144
|
-
|
|
3145
3240
|
/* .material-icons.md-dark { color: rgba(0, 0, 0, 0.54); }
|
|
3146
3241
|
.material-icons.md-dark.md-inactive { color: rgba(0, 0, 0, 0.26); } */
|
|
3147
3242
|
|
|
3148
|
-
|
|
3149
3243
|
/* Rules for using icons as white on a dark background. */
|
|
3150
3244
|
|
|
3151
|
-
|
|
3152
3245
|
/* .material-icons.md-light { color: rgba(255, 255, 255, 1); }
|
|
3153
3246
|
.material-icons.md-light.md-inactive { color: rgba(255, 255, 255, 0.3); } */
|
|
3154
3247
|
.Icon {
|
|
@@ -3210,7 +3303,7 @@ body {
|
|
|
3210
3303
|
}
|
|
3211
3304
|
|
|
3212
3305
|
.Icon--alertLighter {
|
|
3213
|
-
color: var(--alert-lighter
|
|
3306
|
+
color: var(--alert-lighter);
|
|
3214
3307
|
}
|
|
3215
3308
|
|
|
3216
3309
|
.Icon--alertDark {
|
|
@@ -3299,7 +3392,8 @@ body {
|
|
|
3299
3392
|
padding-bottom: var(--spacing-s);
|
|
3300
3393
|
}
|
|
3301
3394
|
|
|
3302
|
-
.InlineMessage-text--warning,
|
|
3395
|
+
.InlineMessage-text--warning,
|
|
3396
|
+
.InlineMessage-icon--warning {
|
|
3303
3397
|
color: var(--accent1);
|
|
3304
3398
|
}
|
|
3305
3399
|
|
|
@@ -3318,148 +3412,148 @@ body {
|
|
|
3318
3412
|
/* input */
|
|
3319
3413
|
|
|
3320
3414
|
.Input-input::-ms-clear {
|
|
3321
|
-
|
|
3415
|
+
display: none;
|
|
3322
3416
|
}
|
|
3323
3417
|
|
|
3324
3418
|
.Input {
|
|
3325
|
-
|
|
3326
|
-
|
|
3327
|
-
|
|
3328
|
-
|
|
3329
|
-
|
|
3330
|
-
|
|
3331
|
-
|
|
3332
|
-
|
|
3333
|
-
|
|
3334
|
-
|
|
3419
|
+
display: flex;
|
|
3420
|
+
flex-grow: 1;
|
|
3421
|
+
flex-direction: row;
|
|
3422
|
+
align-items: center;
|
|
3423
|
+
box-sizing: border-box;
|
|
3424
|
+
border-radius: var(--spacing-m);
|
|
3425
|
+
border: var(--border);
|
|
3426
|
+
padding-right: var(--spacing-l);
|
|
3427
|
+
padding-left: var(--spacing-l);
|
|
3428
|
+
background: var(--white);
|
|
3335
3429
|
}
|
|
3336
3430
|
|
|
3337
3431
|
.Input--tiny {
|
|
3338
|
-
|
|
3339
|
-
|
|
3340
|
-
|
|
3432
|
+
height: var(--spacing-xl);
|
|
3433
|
+
padding-top: var(--spacing-m);
|
|
3434
|
+
padding-bottom: var(--spacing-m);
|
|
3341
3435
|
}
|
|
3342
3436
|
|
|
3343
3437
|
.Input--regular {
|
|
3344
|
-
|
|
3345
|
-
|
|
3346
|
-
|
|
3438
|
+
height: var(--spacing-3);
|
|
3439
|
+
padding-top: var(--spacing);
|
|
3440
|
+
padding-bottom: var(--spacing);
|
|
3347
3441
|
}
|
|
3348
3442
|
|
|
3349
3443
|
.Input--large {
|
|
3350
|
-
|
|
3444
|
+
height: 40px;
|
|
3351
3445
|
}
|
|
3352
3446
|
|
|
3353
3447
|
.Input--large .Input-input {
|
|
3354
|
-
|
|
3355
|
-
|
|
3448
|
+
line-height: var(--font-height-m);
|
|
3449
|
+
font-size: var(--font-size-m);
|
|
3356
3450
|
}
|
|
3357
3451
|
|
|
3358
3452
|
.Input:hover {
|
|
3359
|
-
|
|
3360
|
-
|
|
3361
|
-
|
|
3453
|
+
background: var(--secondary-lightest);
|
|
3454
|
+
border-color: var(--secondary-lightest);
|
|
3455
|
+
cursor: text;
|
|
3362
3456
|
}
|
|
3363
3457
|
|
|
3364
3458
|
.Input:focus-within {
|
|
3365
|
-
|
|
3366
|
-
|
|
3367
|
-
|
|
3459
|
+
background: var(--white);
|
|
3460
|
+
border-color: var(--primary);
|
|
3461
|
+
box-shadow: var(--shadow-spread) var(--primary-shadow);
|
|
3368
3462
|
}
|
|
3369
3463
|
|
|
3370
3464
|
.Input:focus-within .Input-icon--left .Icon {
|
|
3371
|
-
|
|
3465
|
+
color: var(--primary);
|
|
3372
3466
|
}
|
|
3373
3467
|
|
|
3374
3468
|
.Input--error:focus-within {
|
|
3375
|
-
|
|
3376
|
-
|
|
3469
|
+
border-color: var(--alert);
|
|
3470
|
+
box-shadow: var(--shadow-spread) var(--alert-shadow);
|
|
3377
3471
|
}
|
|
3378
3472
|
|
|
3379
3473
|
.Input--error:focus-within .Input-icon--left .Icon {
|
|
3380
|
-
|
|
3474
|
+
color: var(--alert);
|
|
3381
3475
|
}
|
|
3382
3476
|
|
|
3383
3477
|
.Input--disabled {
|
|
3384
|
-
|
|
3385
|
-
|
|
3386
|
-
|
|
3478
|
+
background: var(--secondary-lightest);
|
|
3479
|
+
border-color: var(--secondary-light);
|
|
3480
|
+
pointer-events: none;
|
|
3387
3481
|
}
|
|
3388
3482
|
|
|
3389
|
-
.Input--disabled .Input-icon--left .Icon{
|
|
3390
|
-
|
|
3483
|
+
.Input--disabled .Input-icon--left .Icon {
|
|
3484
|
+
color: var(--inverse-lightest);
|
|
3391
3485
|
}
|
|
3392
3486
|
|
|
3393
3487
|
.Input--error,
|
|
3394
3488
|
.Input--error:hover {
|
|
3395
|
-
|
|
3396
|
-
|
|
3489
|
+
background: var(--white);
|
|
3490
|
+
border-color: var(--alert);
|
|
3397
3491
|
}
|
|
3398
3492
|
|
|
3399
3493
|
.Input-input {
|
|
3400
|
-
|
|
3401
|
-
|
|
3402
|
-
|
|
3403
|
-
|
|
3404
|
-
|
|
3405
|
-
|
|
3406
|
-
|
|
3407
|
-
|
|
3408
|
-
|
|
3409
|
-
|
|
3494
|
+
display: flex;
|
|
3495
|
+
width: 100%;
|
|
3496
|
+
font-family: var(--font-family);
|
|
3497
|
+
font-weight: var(--font-weight-normal);
|
|
3498
|
+
font-size: var(--font-size);
|
|
3499
|
+
line-height: var(--font-height-s);
|
|
3500
|
+
color: var(--night);
|
|
3501
|
+
padding: 0;
|
|
3502
|
+
border: none;
|
|
3503
|
+
background: transparent;
|
|
3410
3504
|
}
|
|
3411
3505
|
|
|
3412
3506
|
.Input-input::-moz-placeholder {
|
|
3413
|
-
|
|
3507
|
+
color: var(--inverse-lighter);
|
|
3414
3508
|
}
|
|
3415
3509
|
|
|
3416
3510
|
.Input-input:-ms-input-placeholder {
|
|
3417
|
-
|
|
3511
|
+
color: var(--inverse-lighter);
|
|
3418
3512
|
}
|
|
3419
3513
|
|
|
3420
3514
|
.Input-input::placeholder {
|
|
3421
|
-
|
|
3515
|
+
color: var(--inverse-lighter);
|
|
3422
3516
|
}
|
|
3423
3517
|
|
|
3424
3518
|
.Input-input:focus {
|
|
3425
|
-
|
|
3519
|
+
outline: 0;
|
|
3426
3520
|
}
|
|
3427
3521
|
|
|
3428
3522
|
.Input-input:disabled .Input-input::-moz-placeholder {
|
|
3429
|
-
|
|
3523
|
+
color: var(--inverse-lighter);
|
|
3430
3524
|
}
|
|
3431
3525
|
|
|
3432
3526
|
.Input-input:disabled .Input-input:-ms-input-placeholder {
|
|
3433
|
-
|
|
3527
|
+
color: var(--inverse-lighter);
|
|
3434
3528
|
}
|
|
3435
3529
|
|
|
3436
3530
|
.Input-input:disabled .Input-input::placeholder {
|
|
3437
|
-
|
|
3531
|
+
color: var(--inverse-lighter);
|
|
3438
3532
|
}
|
|
3439
3533
|
|
|
3440
3534
|
.Input-icon {
|
|
3441
|
-
|
|
3442
|
-
|
|
3443
|
-
|
|
3535
|
+
display: flex;
|
|
3536
|
+
align-content: center;
|
|
3537
|
+
font-size: var(--font-size-m);
|
|
3444
3538
|
}
|
|
3445
3539
|
|
|
3446
3540
|
.Input-icon--left .Icon {
|
|
3447
|
-
|
|
3448
|
-
|
|
3541
|
+
margin-right: var(--spacing);
|
|
3542
|
+
color: var(--inverse);
|
|
3449
3543
|
}
|
|
3450
3544
|
|
|
3451
|
-
.Input-icon--disabled .Icon{
|
|
3452
|
-
|
|
3545
|
+
.Input-icon--disabled .Icon {
|
|
3546
|
+
color: var(--inverse-lightest);
|
|
3453
3547
|
}
|
|
3454
3548
|
|
|
3455
|
-
.Input-icon--right .Icon{
|
|
3456
|
-
|
|
3457
|
-
|
|
3458
|
-
|
|
3549
|
+
.Input-icon--right .Icon {
|
|
3550
|
+
cursor: pointer;
|
|
3551
|
+
margin-left: var(--spacing);
|
|
3552
|
+
color: var(--inverse-lightest);
|
|
3459
3553
|
}
|
|
3460
3554
|
|
|
3461
3555
|
.Input-inlineLabel {
|
|
3462
|
-
|
|
3556
|
+
margin-right: var(--spacing);
|
|
3463
3557
|
}
|
|
3464
3558
|
|
|
3465
3559
|
.Link {
|
|
@@ -3513,146 +3607,143 @@ body {
|
|
|
3513
3607
|
color: var(--inverse-lightest);
|
|
3514
3608
|
pointer-events: none;
|
|
3515
3609
|
}
|
|
3610
|
+
|
|
3516
3611
|
.List {
|
|
3517
|
-
|
|
3518
|
-
|
|
3519
|
-
|
|
3520
|
-
|
|
3521
|
-
|
|
3522
|
-
|
|
3612
|
+
display: flex;
|
|
3613
|
+
flex-grow: 1;
|
|
3614
|
+
flex-direction: column;
|
|
3615
|
+
/* flex-grow: 0; */
|
|
3616
|
+
height: 100%;
|
|
3617
|
+
z-index: 1;
|
|
3523
3618
|
}
|
|
3524
3619
|
|
|
3525
3620
|
.List-grid {
|
|
3526
|
-
|
|
3527
|
-
|
|
3528
|
-
|
|
3621
|
+
height: 100%;
|
|
3622
|
+
overflow: hidden;
|
|
3623
|
+
height: 100%;
|
|
3529
3624
|
}
|
|
3625
|
+
|
|
3530
3626
|
.Message {
|
|
3531
|
-
|
|
3532
|
-
|
|
3533
|
-
|
|
3534
|
-
|
|
3535
|
-
|
|
3536
|
-
|
|
3537
|
-
|
|
3538
|
-
|
|
3539
|
-
|
|
3540
|
-
|
|
3541
|
-
.Message--alert {
|
|
3542
|
-
border-color: var(--alert);
|
|
3543
|
-
background-color: rgba(249, 226, 226, 0.4);
|
|
3544
|
-
}
|
|
3545
|
-
|
|
3546
|
-
.Message--success {
|
|
3547
|
-
border-color: var(--success);
|
|
3548
|
-
background-color: rgba(215, 239, 223, 0.4);
|
|
3549
|
-
}
|
|
3550
|
-
|
|
3551
|
-
.Message--info {
|
|
3552
|
-
border-color: var(--primary);
|
|
3553
|
-
background-color: rgba(220, 236, 249, 0.4);
|
|
3554
|
-
}
|
|
3555
|
-
|
|
3556
|
-
.Message--warning {
|
|
3557
|
-
border-color: var(--accent1);
|
|
3558
|
-
background-color: rgba(255, 245, 199, 0.4);
|
|
3559
|
-
}
|
|
3627
|
+
display: flex;
|
|
3628
|
+
flex-direction: row;
|
|
3629
|
+
overflow: hidden;
|
|
3630
|
+
padding: var(--spacing-l) var(--spacing-xl) var(--spacing-l) var(--spacing-2);
|
|
3631
|
+
border: var(--spacing-xs) solid;
|
|
3632
|
+
width: 100%;
|
|
3633
|
+
border-radius: var(--spacing-m);
|
|
3634
|
+
box-sizing: border-box;
|
|
3635
|
+
}
|
|
3560
3636
|
|
|
3561
|
-
|
|
3562
|
-
|
|
3563
|
-
|
|
3564
|
-
|
|
3565
|
-
|
|
3566
|
-
.Message-icon {
|
|
3567
|
-
margin-right: var(--spacing-2);
|
|
3568
|
-
padding-top: var(--spacing-s);
|
|
3569
|
-
}
|
|
3637
|
+
.Message--alert {
|
|
3638
|
+
border-color: var(--alert);
|
|
3639
|
+
background-color: rgba(249, 226, 226, 0.4);
|
|
3640
|
+
}
|
|
3570
3641
|
|
|
3571
|
-
|
|
3572
|
-
|
|
3573
|
-
|
|
3642
|
+
.Message--success {
|
|
3643
|
+
border-color: var(--success);
|
|
3644
|
+
background-color: rgba(215, 239, 223, 0.4);
|
|
3645
|
+
}
|
|
3574
3646
|
|
|
3575
|
-
|
|
3576
|
-
|
|
3577
|
-
|
|
3578
|
-
|
|
3579
|
-
.Message-heading {
|
|
3580
|
-
margin-bottom: var(--spacing-m);
|
|
3581
|
-
}
|
|
3647
|
+
.Message--info {
|
|
3648
|
+
border-color: var(--primary);
|
|
3649
|
+
background-color: rgba(220, 236, 249, 0.4);
|
|
3650
|
+
}
|
|
3582
3651
|
|
|
3583
|
-
|
|
3584
|
-
|
|
3585
|
-
|
|
3586
|
-
|
|
3652
|
+
.Message--warning {
|
|
3653
|
+
border-color: var(--accent1);
|
|
3654
|
+
background-color: rgba(255, 245, 199, 0.4);
|
|
3655
|
+
}
|
|
3587
3656
|
|
|
3588
|
-
|
|
3589
|
-
|
|
3590
|
-
|
|
3591
|
-
|
|
3657
|
+
.Message-icon {
|
|
3658
|
+
margin-right: var(--spacing-2);
|
|
3659
|
+
padding-top: var(--spacing-s);
|
|
3660
|
+
}
|
|
3592
3661
|
|
|
3593
|
-
|
|
3594
|
-
|
|
3595
|
-
|
|
3596
|
-
}
|
|
3662
|
+
.Message-icon--withTitle {
|
|
3663
|
+
padding-top: var(--spacing-m);
|
|
3664
|
+
}
|
|
3597
3665
|
|
|
3598
|
-
|
|
3599
|
-
|
|
3600
|
-
|
|
3601
|
-
|
|
3666
|
+
.Message-icon--warning {
|
|
3667
|
+
color: var(--accent1);
|
|
3668
|
+
}
|
|
3669
|
+
|
|
3670
|
+
.Message-heading {
|
|
3671
|
+
margin-bottom: var(--spacing-m);
|
|
3672
|
+
}
|
|
3673
|
+
|
|
3674
|
+
.Message-heading--alert,
|
|
3675
|
+
.Message-text--alert {
|
|
3676
|
+
color: var(--alert-darker) !important;
|
|
3677
|
+
}
|
|
3678
|
+
|
|
3679
|
+
.Message-heading--info,
|
|
3680
|
+
.Message-text--info {
|
|
3681
|
+
color: var(--primary-darker) !important;
|
|
3682
|
+
}
|
|
3683
|
+
|
|
3684
|
+
.Message-heading--success,
|
|
3685
|
+
.Message-text--success {
|
|
3686
|
+
color: var(--success-darker) !important;
|
|
3687
|
+
}
|
|
3688
|
+
|
|
3689
|
+
.Message-heading--warning,
|
|
3690
|
+
.Message-text--warning {
|
|
3691
|
+
color: var(--accent1-darker) !important;
|
|
3692
|
+
}
|
|
3693
|
+
|
|
3694
|
+
.Message-actions {
|
|
3695
|
+
display: flex;
|
|
3696
|
+
align-items: center;
|
|
3697
|
+
margin-top: var(--spacing-l);
|
|
3698
|
+
}
|
|
3602
3699
|
|
|
3603
|
-
.Message-actions {
|
|
3604
|
-
display: flex;
|
|
3605
|
-
align-items: center;
|
|
3606
|
-
margin-top: var(--spacing-l);
|
|
3607
|
-
}
|
|
3608
|
-
|
|
3609
3700
|
.Meta {
|
|
3610
|
-
|
|
3611
|
-
|
|
3612
|
-
|
|
3613
|
-
|
|
3614
|
-
|
|
3615
|
-
|
|
3616
|
-
|
|
3701
|
+
display: flex;
|
|
3702
|
+
flex-direction: row;
|
|
3703
|
+
align-items: center;
|
|
3704
|
+
width: -webkit-fit-content;
|
|
3705
|
+
width: -moz-fit-content;
|
|
3706
|
+
width: fit-content;
|
|
3707
|
+
font-size: var(--font-size);
|
|
3617
3708
|
}
|
|
3618
3709
|
|
|
3619
3710
|
.MetaList-seperator {
|
|
3620
|
-
|
|
3711
|
+
margin-left: var(--spacing);
|
|
3621
3712
|
}
|
|
3622
|
-
.MetaList-seperator--left{
|
|
3623
|
-
|
|
3713
|
+
.MetaList-seperator--left {
|
|
3714
|
+
margin-right: var(--spacing-m);
|
|
3624
3715
|
}
|
|
3625
|
-
.Meta-icon{
|
|
3626
|
-
|
|
3627
|
-
|
|
3628
|
-
|
|
3716
|
+
.Meta-icon {
|
|
3717
|
+
padding-right: var(--spacing-m);
|
|
3718
|
+
display: flex;
|
|
3719
|
+
align-items: center;
|
|
3629
3720
|
}
|
|
3630
3721
|
.MetaList {
|
|
3631
|
-
|
|
3632
|
-
|
|
3633
|
-
|
|
3634
|
-
|
|
3635
|
-
|
|
3636
|
-
|
|
3637
|
-
|
|
3722
|
+
display: flex;
|
|
3723
|
+
flex-direction: row;
|
|
3724
|
+
align-items: center;
|
|
3725
|
+
width: -webkit-fit-content;
|
|
3726
|
+
width: -moz-fit-content;
|
|
3727
|
+
width: fit-content;
|
|
3728
|
+
font-size: var(--font-size);
|
|
3638
3729
|
}
|
|
3639
3730
|
.MetaList-item {
|
|
3640
|
-
|
|
3641
|
-
|
|
3642
|
-
|
|
3643
|
-
|
|
3644
|
-
|
|
3645
|
-
|
|
3646
|
-
|
|
3647
|
-
|
|
3731
|
+
margin: 0 var(--spacing-m);
|
|
3732
|
+
display: flex;
|
|
3733
|
+
flex-direction: row;
|
|
3734
|
+
align-items: center;
|
|
3735
|
+
width: -webkit-fit-content;
|
|
3736
|
+
width: -moz-fit-content;
|
|
3737
|
+
width: fit-content;
|
|
3738
|
+
font-size: var(--font-size);
|
|
3648
3739
|
}
|
|
3649
3740
|
|
|
3650
3741
|
.MetaList-item:first-child {
|
|
3651
|
-
|
|
3742
|
+
margin-left: 0;
|
|
3652
3743
|
}
|
|
3653
3744
|
|
|
3654
3745
|
.MetaList-item:last-child {
|
|
3655
|
-
|
|
3746
|
+
margin-right: 0;
|
|
3656
3747
|
}
|
|
3657
3748
|
|
|
3658
3749
|
.MetricInput-input::-ms-clear {
|
|
@@ -3805,12 +3896,12 @@ body {
|
|
|
3805
3896
|
margin-top: var(--spacing-s);
|
|
3806
3897
|
}
|
|
3807
3898
|
|
|
3808
|
-
.MetricInput-input::-webkit-inner-spin-button,
|
|
3809
|
-
.MetricInput-input::-webkit-outer-spin-button {
|
|
3899
|
+
.MetricInput-input::-webkit-inner-spin-button,
|
|
3900
|
+
.MetricInput-input::-webkit-outer-spin-button {
|
|
3810
3901
|
-webkit-appearance: none;
|
|
3811
3902
|
-moz-appearance: none;
|
|
3812
3903
|
appearance: none;
|
|
3813
|
-
margin: 0;
|
|
3904
|
+
margin: 0;
|
|
3814
3905
|
}
|
|
3815
3906
|
|
|
3816
3907
|
@-webkit-keyframes modal-open {
|
|
@@ -3927,6 +4018,7 @@ body {
|
|
|
3927
4018
|
.Modal-body--withPadding {
|
|
3928
4019
|
padding-bottom: var(--spacing-2);
|
|
3929
4020
|
}
|
|
4021
|
+
|
|
3930
4022
|
/* Navigation */
|
|
3931
4023
|
|
|
3932
4024
|
.Navigation {
|
|
@@ -4022,7 +4114,7 @@ body {
|
|
|
4022
4114
|
overflow: hidden;
|
|
4023
4115
|
}
|
|
4024
4116
|
|
|
4025
|
-
.Navigation-menu
|
|
4117
|
+
.Navigation-menu .Text {
|
|
4026
4118
|
overflow: hidden;
|
|
4027
4119
|
text-overflow: ellipsis;
|
|
4028
4120
|
white-space: nowrap;
|
|
@@ -4043,12 +4135,13 @@ body {
|
|
|
4043
4135
|
}
|
|
4044
4136
|
|
|
4045
4137
|
.Navigation-footer--border {
|
|
4046
|
-
border-top: var(--border)
|
|
4138
|
+
border-top: var(--border);
|
|
4047
4139
|
}
|
|
4048
4140
|
|
|
4049
4141
|
.Navigation--collapsed .Navigation-menuIcon--footer {
|
|
4050
4142
|
transform: rotate(180deg);
|
|
4051
4143
|
}
|
|
4144
|
+
|
|
4052
4145
|
.OverlayHeader {
|
|
4053
4146
|
box-sizing: border-box;
|
|
4054
4147
|
margin-left: var(--spacing-xl);
|
|
@@ -4102,7 +4195,7 @@ body {
|
|
|
4102
4195
|
.PageHeader-wrapper {
|
|
4103
4196
|
padding: var(--spacing) var(--spacing-2);
|
|
4104
4197
|
}
|
|
4105
|
-
.PageHeader-wrapper--separator{
|
|
4198
|
+
.PageHeader-wrapper--separator {
|
|
4106
4199
|
border-bottom: var(--border);
|
|
4107
4200
|
}
|
|
4108
4201
|
|
|
@@ -4139,7 +4232,6 @@ body {
|
|
|
4139
4232
|
}
|
|
4140
4233
|
|
|
4141
4234
|
.PageHeader-navigationWrapper {
|
|
4142
|
-
display: inline-flex;
|
|
4143
4235
|
margin-top: var(--spacing-l);
|
|
4144
4236
|
}
|
|
4145
4237
|
|
|
@@ -4158,94 +4250,97 @@ body {
|
|
|
4158
4250
|
/* pagination */
|
|
4159
4251
|
|
|
4160
4252
|
.Pagination {
|
|
4161
|
-
|
|
4162
|
-
|
|
4163
|
-
|
|
4164
|
-
|
|
4253
|
+
display: flex;
|
|
4254
|
+
vertical-align: middle;
|
|
4255
|
+
flex-direction: row;
|
|
4256
|
+
flex-wrap: wrap;
|
|
4165
4257
|
}
|
|
4166
4258
|
|
|
4167
4259
|
.Pagination .Button {
|
|
4168
|
-
|
|
4169
|
-
|
|
4260
|
+
padding-left: var(--spacing);
|
|
4261
|
+
padding-right: var(--spacing);
|
|
4170
4262
|
}
|
|
4171
4263
|
|
|
4172
4264
|
.Pagination-buttonWrapper {
|
|
4173
|
-
|
|
4174
|
-
|
|
4265
|
+
display: flex;
|
|
4266
|
+
flex-direction: row;
|
|
4175
4267
|
}
|
|
4176
4268
|
|
|
4177
4269
|
.Pagination-pageIndex {
|
|
4178
|
-
|
|
4179
|
-
|
|
4180
|
-
|
|
4181
|
-
|
|
4182
|
-
|
|
4270
|
+
display: flex;
|
|
4271
|
+
align-items: center;
|
|
4272
|
+
justify-content: center;
|
|
4273
|
+
padding-left: var(--spacing-l);
|
|
4274
|
+
padding-right: var(--spacing-l);
|
|
4183
4275
|
}
|
|
4184
4276
|
|
|
4185
|
-
.Pagination-MetricInput{
|
|
4186
|
-
|
|
4187
|
-
|
|
4188
|
-
|
|
4189
|
-
|
|
4277
|
+
.Pagination-MetricInput {
|
|
4278
|
+
width: var(--spacing-4);
|
|
4279
|
+
margin-right: var(--spacing);
|
|
4280
|
+
padding-left: var(--spacing-m);
|
|
4281
|
+
padding-right: var(--spacing-m);
|
|
4190
4282
|
}
|
|
4191
4283
|
|
|
4192
4284
|
.Pagination-MetricInput .MetricInput-input {
|
|
4193
|
-
|
|
4285
|
+
text-align: center;
|
|
4194
4286
|
}
|
|
4195
|
-
.Pagination-MetricInput .MetricInput-arrowIcons{
|
|
4196
|
-
|
|
4287
|
+
.Pagination-MetricInput .MetricInput-arrowIcons {
|
|
4288
|
+
display: none;
|
|
4197
4289
|
}
|
|
4198
4290
|
|
|
4199
4291
|
@media (max-width: 575px) {
|
|
4200
|
-
|
|
4201
|
-
|
|
4202
|
-
|
|
4203
|
-
|
|
4204
|
-
|
|
4205
|
-
|
|
4206
|
-
|
|
4207
|
-
|
|
4208
|
-
|
|
4209
|
-
|
|
4210
|
-
|
|
4211
|
-
|
|
4212
|
-
|
|
4213
|
-
|
|
4292
|
+
.Pagination-pageIndex {
|
|
4293
|
+
order: -1;
|
|
4294
|
+
flex-basis: 100%;
|
|
4295
|
+
}
|
|
4296
|
+
.Pagination-buttonWrapper {
|
|
4297
|
+
margin-top: var(--spacing);
|
|
4298
|
+
width: 50%;
|
|
4299
|
+
}
|
|
4300
|
+
.Pagination-buttonWrapper--next {
|
|
4301
|
+
justify-content: flex-start;
|
|
4302
|
+
}
|
|
4303
|
+
.Pagination-buttonWrapper--previous {
|
|
4304
|
+
justify-content: flex-end;
|
|
4305
|
+
}
|
|
4214
4306
|
}
|
|
4307
|
+
|
|
4215
4308
|
.Pills {
|
|
4216
|
-
|
|
4217
|
-
|
|
4218
|
-
|
|
4219
|
-
|
|
4220
|
-
|
|
4221
|
-
|
|
4222
|
-
|
|
4223
|
-
|
|
4224
|
-
|
|
4225
|
-
|
|
4226
|
-
|
|
4227
|
-
|
|
4228
|
-
|
|
4229
|
-
|
|
4230
|
-
|
|
4231
|
-
|
|
4232
|
-
|
|
4233
|
-
|
|
4309
|
+
/* 160px */
|
|
4310
|
+
max-width: calc(var(--spacing-2) * 10);
|
|
4311
|
+
/* truncate */
|
|
4312
|
+
white-space: nowrap;
|
|
4313
|
+
overflow: hidden;
|
|
4314
|
+
text-overflow: ellipsis;
|
|
4315
|
+
font-size: var(--font-size-s);
|
|
4316
|
+
line-height: var(--font-height-s);
|
|
4317
|
+
text-transform: uppercase;
|
|
4318
|
+
padding-right: 6px;
|
|
4319
|
+
padding-left: 6px;
|
|
4320
|
+
padding-top: var(--spacing-s);
|
|
4321
|
+
padding-bottom: var(--spacing-s);
|
|
4322
|
+
border-radius: 20px;
|
|
4323
|
+
display: inline-block;
|
|
4324
|
+
box-sizing: border-box;
|
|
4325
|
+
font-weight: var(--font-weight-bold);
|
|
4326
|
+
cursor: default;
|
|
4234
4327
|
}
|
|
4328
|
+
|
|
4235
4329
|
@-webkit-keyframes shimmer {
|
|
4236
|
-
0%{
|
|
4237
|
-
background-position: -500px 0
|
|
4330
|
+
0% {
|
|
4331
|
+
background-position: -500px 0;
|
|
4238
4332
|
}
|
|
4239
|
-
100%{
|
|
4240
|
-
background-position: 500px 0
|
|
4333
|
+
100% {
|
|
4334
|
+
background-position: 500px 0;
|
|
4241
4335
|
}
|
|
4242
4336
|
}
|
|
4337
|
+
|
|
4243
4338
|
@keyframes shimmer {
|
|
4244
|
-
0%{
|
|
4245
|
-
background-position: -500px 0
|
|
4339
|
+
0% {
|
|
4340
|
+
background-position: -500px 0;
|
|
4246
4341
|
}
|
|
4247
|
-
100%{
|
|
4248
|
-
background-position: 500px 0
|
|
4342
|
+
100% {
|
|
4343
|
+
background-position: 500px 0;
|
|
4249
4344
|
}
|
|
4250
4345
|
}
|
|
4251
4346
|
|
|
@@ -4262,7 +4357,12 @@ body {
|
|
|
4262
4357
|
-webkit-animation-timing-function: linear;
|
|
4263
4358
|
animation-timing-function: linear;
|
|
4264
4359
|
background: var(--secondary-lightest);
|
|
4265
|
-
background: linear-gradient(
|
|
4360
|
+
background: linear-gradient(
|
|
4361
|
+
to right,
|
|
4362
|
+
var(--secondary-lighter) 8%,
|
|
4363
|
+
var(--secondary-dark) 18%,
|
|
4364
|
+
var(--secondary-lighter) 33%
|
|
4365
|
+
);
|
|
4266
4366
|
background-size: 1000px 104px;
|
|
4267
4367
|
}
|
|
4268
4368
|
|
|
@@ -4415,10 +4515,11 @@ body {
|
|
|
4415
4515
|
color: var(--white);
|
|
4416
4516
|
}
|
|
4417
4517
|
|
|
4418
|
-
.Popover[data-hide=
|
|
4518
|
+
.Popover[data-hide='true'] {
|
|
4419
4519
|
visibility: hidden;
|
|
4420
4520
|
pointer-events: none;
|
|
4421
4521
|
}
|
|
4522
|
+
|
|
4422
4523
|
.Ring {
|
|
4423
4524
|
transform: rotate(-90deg);
|
|
4424
4525
|
}
|
|
@@ -4445,142 +4546,143 @@ body {
|
|
|
4445
4546
|
stroke: var(--primary);
|
|
4446
4547
|
transition: stroke-dashOffset 200ms;
|
|
4447
4548
|
}
|
|
4549
|
+
|
|
4448
4550
|
/* Radio */
|
|
4449
4551
|
|
|
4450
4552
|
.Radio {
|
|
4451
|
-
|
|
4452
|
-
|
|
4453
|
-
|
|
4454
|
-
|
|
4455
|
-
|
|
4456
|
-
|
|
4457
|
-
|
|
4553
|
+
display: flex;
|
|
4554
|
+
-webkit-user-select: none;
|
|
4555
|
+
-moz-user-select: none;
|
|
4556
|
+
-ms-user-select: none;
|
|
4557
|
+
user-select: none;
|
|
4558
|
+
padding-top: var(--spacing-s);
|
|
4559
|
+
padding-bottom: var(--spacing-s);
|
|
4458
4560
|
}
|
|
4459
4561
|
|
|
4460
4562
|
.Radio-outerWrapper {
|
|
4461
|
-
|
|
4462
|
-
|
|
4463
|
-
|
|
4563
|
+
position: relative;
|
|
4564
|
+
flex-shrink: 0;
|
|
4565
|
+
margin-top: var(--spacing-s);
|
|
4464
4566
|
}
|
|
4465
4567
|
|
|
4466
4568
|
.Radio-outerWrapper--regular {
|
|
4467
|
-
|
|
4468
|
-
|
|
4569
|
+
height: var(--spacing-2);
|
|
4570
|
+
width: var(--spacing-2);
|
|
4469
4571
|
}
|
|
4470
4572
|
|
|
4471
4573
|
.Radio-outerWrapper--tiny {
|
|
4472
|
-
|
|
4473
|
-
|
|
4574
|
+
height: var(--spacing-l);
|
|
4575
|
+
width: var(--spacing-l);
|
|
4474
4576
|
}
|
|
4475
4577
|
|
|
4476
4578
|
.Radio-input {
|
|
4477
|
-
|
|
4478
|
-
|
|
4479
|
-
|
|
4480
|
-
|
|
4481
|
-
|
|
4482
|
-
|
|
4483
|
-
|
|
4579
|
+
opacity: 0;
|
|
4580
|
+
position: absolute;
|
|
4581
|
+
height: 100%;
|
|
4582
|
+
width: 100%;
|
|
4583
|
+
z-index: 2;
|
|
4584
|
+
margin: 0;
|
|
4585
|
+
cursor: pointer;
|
|
4484
4586
|
}
|
|
4485
4587
|
|
|
4486
4588
|
.Radio-labelWrapper {
|
|
4487
|
-
|
|
4488
|
-
|
|
4489
|
-
|
|
4589
|
+
padding-left: var(--spacing);
|
|
4590
|
+
display: flex;
|
|
4591
|
+
flex-direction: column;
|
|
4490
4592
|
}
|
|
4491
4593
|
|
|
4492
|
-
.Radio-Label{
|
|
4493
|
-
|
|
4494
|
-
|
|
4594
|
+
.Radio-Label {
|
|
4595
|
+
display: flex;
|
|
4596
|
+
cursor: pointer;
|
|
4495
4597
|
}
|
|
4496
4598
|
|
|
4497
4599
|
.Radio-wrapper {
|
|
4498
|
-
|
|
4499
|
-
|
|
4500
|
-
|
|
4501
|
-
|
|
4502
|
-
|
|
4503
|
-
|
|
4504
|
-
|
|
4505
|
-
|
|
4506
|
-
|
|
4507
|
-
|
|
4508
|
-
|
|
4509
|
-
|
|
4600
|
+
top: 0;
|
|
4601
|
+
left: 0;
|
|
4602
|
+
height: 100%;
|
|
4603
|
+
width: 100%;
|
|
4604
|
+
position: absolute;
|
|
4605
|
+
border: var(--border);
|
|
4606
|
+
border-radius: 50%;
|
|
4607
|
+
display: flex;
|
|
4608
|
+
align-items: center;
|
|
4609
|
+
justify-content: center;
|
|
4610
|
+
box-sizing: border-box;
|
|
4611
|
+
z-index: 1;
|
|
4510
4612
|
}
|
|
4511
4613
|
|
|
4512
4614
|
.Radio--disabled {
|
|
4513
|
-
|
|
4615
|
+
pointer-events: none;
|
|
4514
4616
|
}
|
|
4515
4617
|
|
|
4516
4618
|
.Radio:hover .Radio-wrapper {
|
|
4517
|
-
|
|
4619
|
+
border: var(--spacing-xs) solid var(--inverse-lightest);
|
|
4518
4620
|
}
|
|
4519
4621
|
|
|
4520
4622
|
.Radio:active .Radio-wrapper {
|
|
4521
|
-
|
|
4522
|
-
|
|
4623
|
+
background-color: var(--secondary-light);
|
|
4624
|
+
border: var(--spacing-xs) solid var(--inverse-lightest);
|
|
4523
4625
|
}
|
|
4524
4626
|
|
|
4525
4627
|
.Radio--disabled .Radio-wrapper {
|
|
4526
|
-
|
|
4527
|
-
|
|
4628
|
+
border: var(--spacing-xs) solid var(--secondary-light);
|
|
4629
|
+
background-color: var(--secondary-lightest);
|
|
4528
4630
|
}
|
|
4529
4631
|
|
|
4530
|
-
.Radio-input:checked
|
|
4531
|
-
|
|
4632
|
+
.Radio-input:checked ~ .Radio-wrapper {
|
|
4633
|
+
border: var(--spacing-xs) solid var(--primary);
|
|
4532
4634
|
}
|
|
4533
4635
|
|
|
4534
|
-
.Radio-input:checked
|
|
4535
|
-
|
|
4636
|
+
.Radio-input:checked ~ .Radio-wrapper:focus {
|
|
4637
|
+
border: var(--spacing-xs) solid var(--primary-dark);
|
|
4536
4638
|
}
|
|
4537
4639
|
|
|
4538
|
-
.Radio-input:checked
|
|
4539
|
-
|
|
4640
|
+
.Radio-input:checked ~ .Radio-wrapper:after {
|
|
4641
|
+
display: block;
|
|
4540
4642
|
}
|
|
4541
4643
|
|
|
4542
4644
|
.Radio-wrapper:after {
|
|
4543
|
-
|
|
4544
|
-
|
|
4545
|
-
|
|
4546
|
-
|
|
4645
|
+
content: '';
|
|
4646
|
+
display: none;
|
|
4647
|
+
border-radius: 50%;
|
|
4648
|
+
background: var(--primary);
|
|
4547
4649
|
}
|
|
4548
4650
|
|
|
4549
4651
|
.Radio-wrapper--regular:after {
|
|
4550
|
-
|
|
4551
|
-
|
|
4652
|
+
width: var(--spacing);
|
|
4653
|
+
height: var(--spacing);
|
|
4552
4654
|
}
|
|
4553
4655
|
|
|
4554
4656
|
.Radio-wrapper--tiny:after {
|
|
4555
|
-
|
|
4556
|
-
|
|
4557
|
-
|
|
4657
|
+
width: var(--spacing-m);
|
|
4658
|
+
height: var(--spacing-m);
|
|
4659
|
+
border: var(--spacing-xs) solid var(--primary);
|
|
4558
4660
|
}
|
|
4559
4661
|
|
|
4560
|
-
.Radio-outerWrapper:hover .Radio-input:checked
|
|
4561
|
-
|
|
4662
|
+
.Radio-outerWrapper:hover .Radio-input:checked ~ .Radio-wrapper {
|
|
4663
|
+
border: var(--spacing-xs) solid var(--primary-dark);
|
|
4562
4664
|
}
|
|
4563
4665
|
|
|
4564
|
-
.Radio:hover .Radio-input:checked
|
|
4565
|
-
|
|
4666
|
+
.Radio:hover .Radio-input:checked ~ .Radio-wrapper:after {
|
|
4667
|
+
background: var(--primary-dark);
|
|
4566
4668
|
}
|
|
4567
4669
|
|
|
4568
|
-
.Radio:active .Radio-input:checked
|
|
4569
|
-
|
|
4570
|
-
|
|
4670
|
+
.Radio:active .Radio-input:checked ~ .Radio-wrapper {
|
|
4671
|
+
background: var(--white);
|
|
4672
|
+
border: var(--spacing-xs) solid var(--primary-darker);
|
|
4571
4673
|
}
|
|
4572
4674
|
|
|
4573
|
-
.Radio-outerWrapper:active .Radio-input:checked
|
|
4574
|
-
|
|
4675
|
+
.Radio-outerWrapper:active .Radio-input:checked ~ .Radio-wrapper:after {
|
|
4676
|
+
background: var(--primary-darker);
|
|
4575
4677
|
}
|
|
4576
4678
|
|
|
4577
|
-
.Radio--disabled .Radio-input:checked
|
|
4578
|
-
|
|
4579
|
-
|
|
4679
|
+
.Radio--disabled .Radio-input:checked ~ .Radio-wrapper {
|
|
4680
|
+
border: var(--spacing-xs) solid var(--primary-lighter);
|
|
4681
|
+
background-color: var(--white);
|
|
4580
4682
|
}
|
|
4581
4683
|
|
|
4582
|
-
.Radio--disabled .Radio-input:checked
|
|
4583
|
-
|
|
4684
|
+
.Radio--disabled .Radio-input:checked ~ .Radio-wrapper:after {
|
|
4685
|
+
background: var(--primary-lighter);
|
|
4584
4686
|
}
|
|
4585
4687
|
|
|
4586
4688
|
@-webkit-keyframes sidesheet-open {
|
|
@@ -4686,7 +4788,6 @@ body {
|
|
|
4686
4788
|
bottom: 0;
|
|
4687
4789
|
}
|
|
4688
4790
|
|
|
4689
|
-
|
|
4690
4791
|
.Slider {
|
|
4691
4792
|
width: 100%;
|
|
4692
4793
|
}
|
|
@@ -4726,7 +4827,7 @@ body {
|
|
|
4726
4827
|
|
|
4727
4828
|
.Slider-label {
|
|
4728
4829
|
margin-top: var(--spacing-m);
|
|
4729
|
-
transform: translate(-50%,0px);
|
|
4830
|
+
transform: translate(-50%, 0px);
|
|
4730
4831
|
display: flex;
|
|
4731
4832
|
align-items: center;
|
|
4732
4833
|
flex-direction: column;
|
|
@@ -4734,7 +4835,7 @@ body {
|
|
|
4734
4835
|
-webkit-user-select: none;
|
|
4735
4836
|
user-select: none;
|
|
4736
4837
|
-moz-user-select: none;
|
|
4737
|
-
-ms-user-select: none;
|
|
4838
|
+
-ms-user-select: none;
|
|
4738
4839
|
}
|
|
4739
4840
|
|
|
4740
4841
|
.Slider-ticks {
|
|
@@ -4780,7 +4881,8 @@ body {
|
|
|
4780
4881
|
border: var(--border);
|
|
4781
4882
|
}
|
|
4782
4883
|
|
|
4783
|
-
.Slider-handle:focus,
|
|
4884
|
+
.Slider-handle:focus,
|
|
4885
|
+
.Slider-handle:active {
|
|
4784
4886
|
border: var(--spacing-s) solid var(--primary);
|
|
4785
4887
|
}
|
|
4786
4888
|
|
|
@@ -4878,41 +4980,42 @@ body {
|
|
|
4878
4980
|
}
|
|
4879
4981
|
|
|
4880
4982
|
.StatusHint {
|
|
4881
|
-
|
|
4882
|
-
|
|
4883
|
-
|
|
4884
|
-
|
|
4885
|
-
|
|
4886
|
-
|
|
4983
|
+
display: flex;
|
|
4984
|
+
flex-direction: row;
|
|
4985
|
+
align-items: center;
|
|
4986
|
+
width: -webkit-fit-content;
|
|
4987
|
+
width: -moz-fit-content;
|
|
4988
|
+
width: fit-content;
|
|
4887
4989
|
}
|
|
4888
4990
|
|
|
4889
4991
|
.StatusHint-icon {
|
|
4890
|
-
|
|
4891
|
-
|
|
4892
|
-
|
|
4893
|
-
|
|
4894
|
-
|
|
4992
|
+
flex-shrink: 0;
|
|
4993
|
+
border-radius: 50%;
|
|
4994
|
+
height: var(--spacing);
|
|
4995
|
+
width: var(--spacing);
|
|
4996
|
+
margin-right: var(--spacing);
|
|
4895
4997
|
}
|
|
4896
4998
|
|
|
4897
4999
|
.StatusHint--alert {
|
|
4898
|
-
|
|
5000
|
+
background: var(--alert);
|
|
4899
5001
|
}
|
|
4900
5002
|
|
|
4901
5003
|
.StatusHint--success {
|
|
4902
|
-
|
|
5004
|
+
background: var(--success);
|
|
4903
5005
|
}
|
|
4904
5006
|
|
|
4905
5007
|
.StatusHint--warning {
|
|
4906
|
-
|
|
5008
|
+
background: var(--warning);
|
|
4907
5009
|
}
|
|
4908
5010
|
|
|
4909
5011
|
.StatusHint--info {
|
|
4910
|
-
|
|
5012
|
+
background: var(--primary);
|
|
4911
5013
|
}
|
|
4912
5014
|
|
|
4913
5015
|
.StatusHint--default {
|
|
4914
|
-
|
|
5016
|
+
background: var(--secondary);
|
|
4915
5017
|
}
|
|
5018
|
+
|
|
4916
5019
|
.Stepper {
|
|
4917
5020
|
display: flex;
|
|
4918
5021
|
}
|
|
@@ -4938,224 +5041,250 @@ body {
|
|
|
4938
5041
|
}
|
|
4939
5042
|
|
|
4940
5043
|
.Switch {
|
|
4941
|
-
|
|
4942
|
-
|
|
5044
|
+
display: inline-flex;
|
|
5045
|
+
position: relative;
|
|
4943
5046
|
}
|
|
4944
5047
|
|
|
4945
5048
|
.Switch--tiny {
|
|
4946
|
-
|
|
4947
|
-
|
|
5049
|
+
height: var(--spacing-2);
|
|
5050
|
+
width: var(--spacing-3);
|
|
4948
5051
|
}
|
|
4949
5052
|
|
|
4950
5053
|
.Switch--regular {
|
|
4951
|
-
|
|
4952
|
-
|
|
5054
|
+
height: var(--spacing-xl);
|
|
5055
|
+
width: var(--spacing-4);
|
|
4953
5056
|
}
|
|
4954
5057
|
|
|
4955
5058
|
.Switch--large {
|
|
4956
|
-
|
|
4957
|
-
|
|
5059
|
+
height: var(--spacing-3);
|
|
5060
|
+
width: var(--spacing-5);
|
|
4958
5061
|
}
|
|
4959
5062
|
|
|
4960
5063
|
.Switch-input {
|
|
4961
|
-
|
|
4962
|
-
|
|
4963
|
-
|
|
4964
|
-
|
|
4965
|
-
|
|
4966
|
-
|
|
4967
|
-
|
|
5064
|
+
position: absolute;
|
|
5065
|
+
cursor: pointer;
|
|
5066
|
+
z-index: 10;
|
|
5067
|
+
opacity: 0;
|
|
5068
|
+
width: 100%;
|
|
5069
|
+
height: 100%;
|
|
5070
|
+
margin: 0;
|
|
4968
5071
|
}
|
|
4969
5072
|
|
|
4970
5073
|
.Switch-wrapper {
|
|
4971
|
-
|
|
4972
|
-
|
|
4973
|
-
|
|
4974
|
-
|
|
4975
|
-
|
|
4976
|
-
|
|
4977
|
-
|
|
4978
|
-
|
|
4979
|
-
|
|
5074
|
+
display: flex;
|
|
5075
|
+
align-items: center;
|
|
5076
|
+
line-height: 100%;
|
|
5077
|
+
padding: var(--spacing-s);
|
|
5078
|
+
top: 0;
|
|
5079
|
+
left: 0;
|
|
5080
|
+
width: 100%;
|
|
5081
|
+
background-color: var(--secondary-light);
|
|
5082
|
+
}
|
|
5083
|
+
|
|
5084
|
+
.Switch-input:focus ~ .Switch-wrapper {
|
|
5085
|
+
box-shadow: var(--shadow-spread) var(--secondary-shadow);
|
|
5086
|
+
}
|
|
5087
|
+
|
|
5088
|
+
.Switch-input:focus ~ .Switch-wrapper--checked {
|
|
5089
|
+
box-shadow: var(--shadow-spread) var(--primary-shadow);
|
|
5090
|
+
}
|
|
5091
|
+
|
|
5092
|
+
.Switch-input:hover ~ .Switch-wrapper {
|
|
5093
|
+
background-color: var(--secondary-light);
|
|
5094
|
+
box-shadow: var(--shadow-s);
|
|
5095
|
+
}
|
|
5096
|
+
|
|
5097
|
+
.Switch-input:hover ~ .Switch-wrapper--checked {
|
|
5098
|
+
background-color: var(--primary-dark);
|
|
5099
|
+
box-shadow: var(--shadow-s);
|
|
5100
|
+
}
|
|
5101
|
+
|
|
5102
|
+
.Switch-input:active ~ .Switch-wrapper {
|
|
5103
|
+
background-color: var(--secondary-dark);
|
|
5104
|
+
}
|
|
5105
|
+
|
|
5106
|
+
.Switch-input:active ~ .Switch-wrapper--checked {
|
|
5107
|
+
background-color: var(--primary-darker);
|
|
4980
5108
|
}
|
|
4981
5109
|
|
|
4982
5110
|
.Switch-wrapper--tiny {
|
|
4983
|
-
|
|
5111
|
+
border-radius: 10px;
|
|
4984
5112
|
}
|
|
4985
5113
|
|
|
4986
5114
|
.Switch-wrapper--regular {
|
|
4987
|
-
|
|
5115
|
+
border-radius: 34px;
|
|
4988
5116
|
}
|
|
4989
5117
|
|
|
4990
5118
|
.Switch-wrapper--large {
|
|
4991
|
-
|
|
5119
|
+
border-radius: 38px;
|
|
4992
5120
|
}
|
|
4993
5121
|
|
|
4994
5122
|
.Switch-wrapper:before {
|
|
4995
|
-
|
|
4996
|
-
|
|
4997
|
-
|
|
4998
|
-
|
|
4999
|
-
|
|
5000
|
-
|
|
5001
|
-
|
|
5123
|
+
content: '';
|
|
5124
|
+
height: 100%;
|
|
5125
|
+
width: 50%;
|
|
5126
|
+
background-color: var(--shadow-0);
|
|
5127
|
+
box-shadow: 0 0 var(--spacing-xs) 0 var(--shadow-20);
|
|
5128
|
+
border-radius: 50%;
|
|
5129
|
+
box-sizing: border-box;
|
|
5002
5130
|
}
|
|
5003
5131
|
|
|
5004
5132
|
.Switch-wrapper--checked {
|
|
5005
|
-
|
|
5133
|
+
background-color: var(--primary);
|
|
5006
5134
|
}
|
|
5007
5135
|
|
|
5008
5136
|
.Switch-wrapper--checked:before {
|
|
5009
|
-
|
|
5137
|
+
transform: translateX(100%);
|
|
5010
5138
|
}
|
|
5011
5139
|
|
|
5012
5140
|
.Switch--disabled {
|
|
5013
|
-
|
|
5141
|
+
pointer-events: none;
|
|
5014
5142
|
}
|
|
5015
5143
|
|
|
5016
5144
|
.Switch-wrapper--disabled:before {
|
|
5017
|
-
|
|
5145
|
+
background-color: var(--secondary-lightest);
|
|
5018
5146
|
}
|
|
5019
5147
|
|
|
5020
5148
|
.Switch-wrapper--checkedDisabled {
|
|
5021
|
-
|
|
5149
|
+
background-color: var(--primary-lighter);
|
|
5022
5150
|
}
|
|
5023
5151
|
|
|
5024
5152
|
.Table {
|
|
5025
|
-
|
|
5026
|
-
|
|
5027
|
-
|
|
5028
|
-
|
|
5029
|
-
|
|
5030
|
-
|
|
5153
|
+
display: flex;
|
|
5154
|
+
flex-grow: 1;
|
|
5155
|
+
flex-direction: column;
|
|
5156
|
+
height: 100%;
|
|
5157
|
+
width: 100%;
|
|
5158
|
+
z-index: 1;
|
|
5031
5159
|
}
|
|
5032
5160
|
|
|
5033
5161
|
.Table-grid {
|
|
5034
|
-
|
|
5035
|
-
|
|
5036
|
-
|
|
5162
|
+
height: 100%;
|
|
5163
|
+
overflow: hidden;
|
|
5164
|
+
z-index: 1;
|
|
5037
5165
|
}
|
|
5038
5166
|
|
|
5039
5167
|
.Table-pagination {
|
|
5040
|
-
|
|
5041
|
-
|
|
5042
|
-
|
|
5043
|
-
|
|
5044
|
-
|
|
5168
|
+
display: flex;
|
|
5169
|
+
justify-content: center;
|
|
5170
|
+
background: var(--white);
|
|
5171
|
+
padding: var(--spacing) 0;
|
|
5172
|
+
border-top: var(--border);
|
|
5045
5173
|
}
|
|
5174
|
+
|
|
5046
5175
|
/* tabs */
|
|
5047
5176
|
|
|
5048
5177
|
.TabsWrapper {
|
|
5049
|
-
|
|
5050
|
-
|
|
5051
|
-
|
|
5178
|
+
display: flex;
|
|
5179
|
+
flex-grow: 1;
|
|
5180
|
+
flex-direction: column;
|
|
5052
5181
|
}
|
|
5053
5182
|
|
|
5054
5183
|
.TabsWrapper-header {
|
|
5055
|
-
|
|
5056
|
-
|
|
5057
|
-
|
|
5058
|
-
|
|
5184
|
+
box-sizing: border-box;
|
|
5185
|
+
display: flex;
|
|
5186
|
+
align-items: center;
|
|
5187
|
+
flex-direction: row;
|
|
5059
5188
|
}
|
|
5060
5189
|
|
|
5061
5190
|
.TabsWrapper-header--withSeparator {
|
|
5062
|
-
|
|
5191
|
+
border-bottom: var(--border);
|
|
5063
5192
|
}
|
|
5064
5193
|
|
|
5065
5194
|
.Tab {
|
|
5066
|
-
|
|
5067
|
-
|
|
5068
|
-
|
|
5069
|
-
|
|
5070
|
-
|
|
5071
|
-
|
|
5072
|
-
|
|
5073
|
-
|
|
5074
|
-
|
|
5075
|
-
|
|
5195
|
+
position: relative;
|
|
5196
|
+
display: flex;
|
|
5197
|
+
flex-direction: row;
|
|
5198
|
+
cursor: pointer;
|
|
5199
|
+
min-width: 40px;
|
|
5200
|
+
padding: var(--spacing-l);
|
|
5201
|
+
margin-left: calc(-1 * var(--spacing-l));
|
|
5202
|
+
margin-right: var(--spacing-l);
|
|
5203
|
+
margin-bottom: calc(-1 * var(--spacing-xs));
|
|
5204
|
+
text-align: center;
|
|
5076
5205
|
}
|
|
5077
5206
|
|
|
5078
5207
|
.Tab:last-child {
|
|
5079
|
-
|
|
5208
|
+
margin-right: 0;
|
|
5080
5209
|
}
|
|
5081
5210
|
|
|
5082
5211
|
.Tab::after {
|
|
5083
|
-
|
|
5084
|
-
|
|
5085
|
-
|
|
5086
|
-
|
|
5087
|
-
|
|
5088
|
-
|
|
5089
|
-
|
|
5090
|
-
|
|
5091
|
-
|
|
5092
|
-
|
|
5212
|
+
position: absolute;
|
|
5213
|
+
left: 0;
|
|
5214
|
+
bottom: 0;
|
|
5215
|
+
content: '';
|
|
5216
|
+
width: calc(100% - 2 * var(--spacing-l));
|
|
5217
|
+
height: var(--spacing-s);
|
|
5218
|
+
background-color: transparent;
|
|
5219
|
+
margin-left: var(--spacing-l);
|
|
5220
|
+
border-top-left-radius: var(--spacing-xs);
|
|
5221
|
+
border-top-right-radius: var(--spacing-xs);
|
|
5093
5222
|
}
|
|
5094
5223
|
|
|
5095
5224
|
.Tab:hover::after {
|
|
5096
|
-
|
|
5225
|
+
background-color: var(--primary-dark);
|
|
5097
5226
|
}
|
|
5098
5227
|
|
|
5099
5228
|
.Tab:active::after {
|
|
5100
|
-
|
|
5229
|
+
background-color: var(--primary-darker);
|
|
5101
5230
|
}
|
|
5102
5231
|
|
|
5103
5232
|
.Tab--active::after {
|
|
5104
|
-
|
|
5233
|
+
background-color: var(--primary);
|
|
5105
5234
|
}
|
|
5106
5235
|
|
|
5107
5236
|
.Tab:focus {
|
|
5108
|
-
|
|
5109
|
-
|
|
5110
|
-
|
|
5111
|
-
|
|
5237
|
+
outline: none;
|
|
5238
|
+
border-radius: 4px;
|
|
5239
|
+
/* Using box shadow instead of border as border shifts the div down which cuts the Icon & Text of label. */
|
|
5240
|
+
box-shadow: rgba(0, 112, 221, 0.2) 0px 0px 0px var(--spacing-s) inset;
|
|
5112
5241
|
}
|
|
5113
5242
|
|
|
5114
5243
|
.Tab:active:focus {
|
|
5115
|
-
|
|
5244
|
+
box-shadow: none;
|
|
5116
5245
|
}
|
|
5117
5246
|
|
|
5118
5247
|
.Tab--disabled {
|
|
5119
|
-
|
|
5248
|
+
cursor: not-allowed;
|
|
5120
5249
|
}
|
|
5121
5250
|
|
|
5122
5251
|
.Tab--disabled:hover::after {
|
|
5123
|
-
|
|
5252
|
+
background-color: transparent;
|
|
5124
5253
|
}
|
|
5125
5254
|
|
|
5126
5255
|
.Tab-count {
|
|
5127
|
-
|
|
5128
|
-
|
|
5256
|
+
display: flex;
|
|
5257
|
+
margin-right: var(--spacing-l);
|
|
5129
5258
|
}
|
|
5130
5259
|
|
|
5131
5260
|
.Tab-count .Badge {
|
|
5132
|
-
|
|
5133
|
-
|
|
5261
|
+
margin-left: 0;
|
|
5262
|
+
margin-right: 0;
|
|
5134
5263
|
}
|
|
5135
5264
|
|
|
5136
5265
|
.Tab-icon {
|
|
5137
|
-
|
|
5138
|
-
|
|
5139
|
-
|
|
5266
|
+
display: flex;
|
|
5267
|
+
min-width: inherit;
|
|
5268
|
+
justify-content: space-between;
|
|
5140
5269
|
}
|
|
5141
5270
|
|
|
5142
5271
|
.Tabs {
|
|
5143
|
-
|
|
5144
|
-
|
|
5145
|
-
|
|
5272
|
+
display: flex;
|
|
5273
|
+
box-sizing: border-box;
|
|
5274
|
+
flex-direction: row;
|
|
5146
5275
|
}
|
|
5147
5276
|
|
|
5148
5277
|
.Tabs--withSeparator {
|
|
5149
|
-
|
|
5278
|
+
border-bottom: var(--border);
|
|
5150
5279
|
}
|
|
5151
5280
|
|
|
5152
5281
|
.Tab-pills {
|
|
5153
|
-
|
|
5154
|
-
|
|
5282
|
+
cursor: pointer;
|
|
5283
|
+
margin-right: var(--spacing);
|
|
5155
5284
|
}
|
|
5156
5285
|
|
|
5157
5286
|
.Tab-pills--disabled {
|
|
5158
|
-
|
|
5287
|
+
opacity: 60%;
|
|
5159
5288
|
}
|
|
5160
5289
|
|
|
5161
5290
|
/* Textarea */
|
|
@@ -5226,177 +5355,174 @@ body {
|
|
|
5226
5355
|
border-radius: var(--spacing);
|
|
5227
5356
|
background-color: var(--secondary);
|
|
5228
5357
|
}
|
|
5358
|
+
|
|
5229
5359
|
/* toast */
|
|
5230
5360
|
|
|
5231
5361
|
.Toast {
|
|
5232
|
-
|
|
5233
|
-
|
|
5234
|
-
|
|
5362
|
+
display: flex;
|
|
5363
|
+
flex-direction: row;
|
|
5364
|
+
box-sizing: border-box;
|
|
5235
5365
|
|
|
5236
|
-
|
|
5237
|
-
|
|
5238
|
-
|
|
5239
|
-
|
|
5240
|
-
|
|
5241
|
-
|
|
5366
|
+
width: 360px;
|
|
5367
|
+
border-radius: var(--spacing-m);
|
|
5368
|
+
padding-left: var(--spacing-2);
|
|
5369
|
+
padding-right: var(--spacing-2);
|
|
5370
|
+
padding-top: var(--spacing-l);
|
|
5371
|
+
padding-bottom: var(--spacing-l);
|
|
5242
5372
|
}
|
|
5243
5373
|
|
|
5244
5374
|
.Toast--withMessage {
|
|
5245
|
-
|
|
5246
|
-
}
|
|
5247
|
-
|
|
5248
|
-
.Toast--default {
|
|
5249
|
-
padding-left: var(--spacing-xl);
|
|
5250
|
-
background-color: var(--inverse);
|
|
5375
|
+
padding-bottom: var(--spacing-2);
|
|
5251
5376
|
}
|
|
5252
5377
|
|
|
5253
5378
|
.Toast--info {
|
|
5254
|
-
|
|
5379
|
+
background-color: var(--primary);
|
|
5255
5380
|
}
|
|
5256
5381
|
|
|
5257
5382
|
.Toast--alert {
|
|
5258
|
-
|
|
5383
|
+
background-color: var(--alert);
|
|
5259
5384
|
}
|
|
5260
5385
|
|
|
5261
5386
|
.Toast--success {
|
|
5262
|
-
|
|
5387
|
+
background-color: var(--success);
|
|
5263
5388
|
}
|
|
5264
5389
|
|
|
5265
5390
|
.Toast--warning {
|
|
5266
|
-
|
|
5391
|
+
background-color: var(--warning);
|
|
5267
5392
|
}
|
|
5268
5393
|
|
|
5269
5394
|
.Toast--warning {
|
|
5270
|
-
|
|
5395
|
+
color: var(--text);
|
|
5271
5396
|
}
|
|
5272
5397
|
|
|
5273
5398
|
.Toast-icon {
|
|
5274
|
-
|
|
5275
|
-
|
|
5399
|
+
display: flex;
|
|
5400
|
+
line-height: var(--font-height-m);
|
|
5276
5401
|
}
|
|
5277
5402
|
|
|
5278
5403
|
.Toast-icon--left {
|
|
5279
|
-
|
|
5404
|
+
margin-right: var(--spacing-2);
|
|
5280
5405
|
}
|
|
5281
5406
|
|
|
5282
5407
|
.Toast-icon--right {
|
|
5283
|
-
|
|
5284
|
-
|
|
5408
|
+
cursor: pointer;
|
|
5409
|
+
margin-left: var(--spacing-2);
|
|
5285
5410
|
}
|
|
5286
5411
|
|
|
5287
5412
|
.Toast-icon--info,
|
|
5288
5413
|
.Toast-icon--success,
|
|
5289
5414
|
.Toast-icon--alert,
|
|
5290
5415
|
.Toast-icon--default {
|
|
5291
|
-
|
|
5416
|
+
color: var(--text-white);
|
|
5292
5417
|
}
|
|
5293
5418
|
|
|
5294
5419
|
.Toast-icon--warning {
|
|
5295
|
-
|
|
5420
|
+
color: var(--warning-darker);
|
|
5296
5421
|
}
|
|
5297
5422
|
|
|
5298
5423
|
.Toast-body {
|
|
5299
|
-
|
|
5300
|
-
|
|
5301
|
-
|
|
5424
|
+
display: flex;
|
|
5425
|
+
flex-direction: column;
|
|
5426
|
+
flex-grow: 1;
|
|
5302
5427
|
}
|
|
5303
5428
|
|
|
5304
5429
|
.Toast-title {
|
|
5305
|
-
|
|
5430
|
+
display: flex;
|
|
5306
5431
|
}
|
|
5307
5432
|
|
|
5308
5433
|
.Toast-heading {
|
|
5309
|
-
|
|
5434
|
+
flex-grow: 1;
|
|
5310
5435
|
}
|
|
5311
5436
|
|
|
5312
5437
|
.Toast-text {
|
|
5313
|
-
|
|
5438
|
+
padding-top: var(--spacing);
|
|
5314
5439
|
}
|
|
5315
5440
|
|
|
5316
5441
|
.Toast-text--warning,
|
|
5317
5442
|
.Toast-heading--warning {
|
|
5318
|
-
|
|
5443
|
+
color: var(--warning-darker) !important;
|
|
5319
5444
|
}
|
|
5320
5445
|
|
|
5321
5446
|
.Toast-actions {
|
|
5322
|
-
|
|
5323
|
-
|
|
5447
|
+
display: flex;
|
|
5448
|
+
padding-top: var(--spacing-l);
|
|
5324
5449
|
}
|
|
5325
5450
|
|
|
5326
5451
|
.Toast-actionButton {
|
|
5327
|
-
|
|
5328
|
-
|
|
5329
|
-
|
|
5452
|
+
color: var(--text-white);
|
|
5453
|
+
border-radius: var(--spacing-m);
|
|
5454
|
+
margin-right: var(--spacing);
|
|
5330
5455
|
}
|
|
5331
5456
|
|
|
5332
5457
|
.Toast-actionButton:last-child {
|
|
5333
|
-
|
|
5458
|
+
margin-right: 0;
|
|
5334
5459
|
}
|
|
5335
5460
|
|
|
5336
5461
|
.Toast-actionButton--default {
|
|
5337
|
-
|
|
5462
|
+
background: var(--inverse-light);
|
|
5338
5463
|
}
|
|
5339
5464
|
|
|
5340
5465
|
.Toast-actionButton--default:hover,
|
|
5341
5466
|
.Toast-actionButton--default:active {
|
|
5342
|
-
|
|
5467
|
+
background: var(--inverse);
|
|
5343
5468
|
}
|
|
5344
5469
|
|
|
5345
5470
|
.Toast-actionButton--default:focus {
|
|
5346
|
-
|
|
5471
|
+
box-shadow: var(--shadow-spread) rgba(134, 134, 134, 0.16);
|
|
5347
5472
|
}
|
|
5348
5473
|
|
|
5349
5474
|
.Toast-actionButton--info {
|
|
5350
|
-
|
|
5475
|
+
background: var(--primary-dark);
|
|
5351
5476
|
}
|
|
5352
5477
|
|
|
5353
5478
|
.Toast-actionButton--info:hover,
|
|
5354
5479
|
.Toast-actionButton--info:active {
|
|
5355
|
-
|
|
5480
|
+
background: var(--primary-darker);
|
|
5356
5481
|
}
|
|
5357
5482
|
|
|
5358
5483
|
.Toast-actionButton--info:focus {
|
|
5359
|
-
|
|
5484
|
+
box-shadow: var(--shadow-spread) rgba(0, 80, 159, 0.16);
|
|
5360
5485
|
}
|
|
5361
5486
|
|
|
5362
5487
|
.Toast-actionButton--success {
|
|
5363
|
-
|
|
5488
|
+
background: var(--success-dark);
|
|
5364
5489
|
}
|
|
5365
5490
|
|
|
5366
5491
|
.Toast-actionButton--success:hover,
|
|
5367
5492
|
.Toast-actionButton--success:active {
|
|
5368
|
-
|
|
5493
|
+
background: var(--success-darker);
|
|
5369
5494
|
}
|
|
5370
5495
|
|
|
5371
5496
|
.Toast-actionButton--success:focus {
|
|
5372
|
-
|
|
5497
|
+
box-shadow: var(--shadow-spread) rgba(34, 121, 52, 0.16);
|
|
5373
5498
|
}
|
|
5374
5499
|
|
|
5375
5500
|
.Toast-actionButton--alert {
|
|
5376
|
-
|
|
5501
|
+
background: var(--alert-dark);
|
|
5377
5502
|
}
|
|
5378
5503
|
|
|
5379
5504
|
.Toast-actionButton--alert:hover,
|
|
5380
5505
|
.Toast-actionButton--alert:active {
|
|
5381
|
-
|
|
5506
|
+
background: var(--alert-darker);
|
|
5382
5507
|
}
|
|
5383
5508
|
|
|
5384
5509
|
.Toast-actionButton--alert:focus {
|
|
5385
|
-
|
|
5510
|
+
box-shadow: var(--shadow-spread) var(--alert-shadow);
|
|
5386
5511
|
}
|
|
5387
5512
|
|
|
5388
5513
|
.Toast-actionButton--warning {
|
|
5389
|
-
|
|
5514
|
+
background: var(--warning-dark);
|
|
5390
5515
|
}
|
|
5391
5516
|
|
|
5392
5517
|
.Toast-actionButton--warning:hover,
|
|
5393
5518
|
.Toast-actionButton--warning:active {
|
|
5394
|
-
|
|
5519
|
+
background: var(--warning-darker);
|
|
5395
5520
|
}
|
|
5396
5521
|
|
|
5397
5522
|
.Toast-actionButton--warning:focus {
|
|
5398
|
-
|
|
5523
|
+
box-shadow: var(--shadow-spread) var(--warning-shadow);
|
|
5399
5524
|
}
|
|
5525
|
+
|
|
5400
5526
|
.Tooltip {
|
|
5401
5527
|
max-width: var(--spacing-9);
|
|
5402
5528
|
padding: var(--spacing) var(--spacing-2);
|
|
@@ -5417,7 +5543,6 @@ body {
|
|
|
5417
5543
|
hyphens: auto;
|
|
5418
5544
|
}
|
|
5419
5545
|
|
|
5420
|
-
|
|
5421
5546
|
.VerificationCodeInput-Input {
|
|
5422
5547
|
display: inline-flex;
|
|
5423
5548
|
width: 40px;
|
|
@@ -5427,10 +5552,10 @@ body {
|
|
|
5427
5552
|
text-align: center;
|
|
5428
5553
|
}
|
|
5429
5554
|
|
|
5430
|
-
.VerificationCodeInput-Input .Input-input::-webkit-inner-spin-button,
|
|
5431
|
-
.VerificationCodeInput-Input .Input-input::-webkit-outer-spin-button {
|
|
5432
|
-
-webkit-appearance: none;
|
|
5433
|
-
margin: 0;
|
|
5555
|
+
.VerificationCodeInput-Input .Input-input::-webkit-inner-spin-button,
|
|
5556
|
+
.VerificationCodeInput-Input .Input-input::-webkit-outer-spin-button {
|
|
5557
|
+
-webkit-appearance: none;
|
|
5558
|
+
margin: 0;
|
|
5434
5559
|
}
|
|
5435
5560
|
|
|
5436
5561
|
.VerticalNav {
|
|
@@ -5514,7 +5639,7 @@ body {
|
|
|
5514
5639
|
padding-left: 40px;
|
|
5515
5640
|
}
|
|
5516
5641
|
|
|
5517
|
-
.MenuItem
|
|
5642
|
+
.MenuItem .Text {
|
|
5518
5643
|
overflow: hidden;
|
|
5519
5644
|
text-overflow: ellipsis;
|
|
5520
5645
|
white-space: nowrap;
|
|
@@ -5551,6 +5676,7 @@ body {
|
|
|
5551
5676
|
.align-text-top {
|
|
5552
5677
|
vertical-align: text-top !important;
|
|
5553
5678
|
}
|
|
5679
|
+
|
|
5554
5680
|
.bg-primary {
|
|
5555
5681
|
background-color: var(--primary) !important;
|
|
5556
5682
|
}
|
|
@@ -5590,6 +5716,7 @@ body {
|
|
|
5590
5716
|
.bg-transparent {
|
|
5591
5717
|
background-color: transparent !important;
|
|
5592
5718
|
}
|
|
5719
|
+
|
|
5593
5720
|
.border {
|
|
5594
5721
|
border: var(--border) !important;
|
|
5595
5722
|
}
|
|
@@ -5633,6 +5760,7 @@ body {
|
|
|
5633
5760
|
.cursor-pointer {
|
|
5634
5761
|
cursor: pointer;
|
|
5635
5762
|
}
|
|
5763
|
+
|
|
5636
5764
|
.d-none {
|
|
5637
5765
|
display: none !important;
|
|
5638
5766
|
}
|
|
@@ -5668,6 +5796,7 @@ body {
|
|
|
5668
5796
|
.d-inline-flex {
|
|
5669
5797
|
display: inline-flex !important;
|
|
5670
5798
|
}
|
|
5799
|
+
|
|
5671
5800
|
.flex-fill {
|
|
5672
5801
|
flex: 1 1 auto !important;
|
|
5673
5802
|
}
|
|
@@ -5839,6 +5968,7 @@ body {
|
|
|
5839
5968
|
.order-last {
|
|
5840
5969
|
order: 6 !important;
|
|
5841
5970
|
}
|
|
5971
|
+
|
|
5842
5972
|
.Row {
|
|
5843
5973
|
display: flex;
|
|
5844
5974
|
flex-wrap: wrap;
|
|
@@ -6199,6 +6329,7 @@ body {
|
|
|
6199
6329
|
width: calc(100% / var(--grid-columns) * 12);
|
|
6200
6330
|
}
|
|
6201
6331
|
}
|
|
6332
|
+
|
|
6202
6333
|
.overflow-auto {
|
|
6203
6334
|
overflow: auto !important;
|
|
6204
6335
|
}
|
|
@@ -6206,6 +6337,7 @@ body {
|
|
|
6206
6337
|
.overflow-hidden {
|
|
6207
6338
|
overflow: hidden !important;
|
|
6208
6339
|
}
|
|
6340
|
+
|
|
6209
6341
|
.position-static {
|
|
6210
6342
|
position: static !important;
|
|
6211
6343
|
}
|
|
@@ -6226,6 +6358,7 @@ body {
|
|
|
6226
6358
|
position: -webkit-sticky !important;
|
|
6227
6359
|
position: sticky !important;
|
|
6228
6360
|
}
|
|
6361
|
+
|
|
6229
6362
|
.w-25 {
|
|
6230
6363
|
width: 25% !important;
|
|
6231
6364
|
}
|
|
@@ -7249,32 +7382,34 @@ body {
|
|
|
7249
7382
|
.pl-auto {
|
|
7250
7383
|
padding-left: auto !important;
|
|
7251
7384
|
}
|
|
7385
|
+
|
|
7252
7386
|
/** utility **/
|
|
7253
7387
|
|
|
7254
7388
|
.hide-scroll-bar::-webkit-scrollbar {
|
|
7255
|
-
|
|
7256
|
-
|
|
7257
|
-
|
|
7258
|
-
|
|
7389
|
+
height: 0px;
|
|
7390
|
+
/* Remove scrollbar space */
|
|
7391
|
+
background: transparent;
|
|
7392
|
+
/* Optional: just make scrollbar invisible */
|
|
7259
7393
|
}
|
|
7260
7394
|
|
|
7261
7395
|
.hide-scroll-bar {
|
|
7262
|
-
|
|
7263
|
-
|
|
7396
|
+
-ms-overflow-style: none;
|
|
7397
|
+
scrollbar-width: none;
|
|
7264
7398
|
}
|
|
7265
7399
|
|
|
7266
7400
|
.ellipsis {
|
|
7267
|
-
|
|
7268
|
-
|
|
7401
|
+
overflow: hidden;
|
|
7402
|
+
text-overflow: ellipsis;
|
|
7269
7403
|
}
|
|
7270
7404
|
|
|
7271
7405
|
.ellipsis--noWrap {
|
|
7272
|
-
|
|
7273
|
-
|
|
7274
|
-
|
|
7406
|
+
white-space: nowrap;
|
|
7407
|
+
overflow: hidden;
|
|
7408
|
+
text-overflow: ellipsis;
|
|
7275
7409
|
}
|
|
7276
7410
|
|
|
7277
7411
|
.cursor-pointer {
|
|
7278
|
-
|
|
7412
|
+
cursor: pointer;
|
|
7279
7413
|
}
|
|
7414
|
+
|
|
7280
7415
|
/*# sourceMappingURL=index.css.map */
|