@dnb/eufemia 9.26.1 → 9.27.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/CHANGELOG.md +51 -0
- package/assets/icons/bookmark.svg +1 -0
- package/assets/icons/bookmark_medium.svg +1 -0
- package/assets/icons/calendar_cancel.svg +1 -0
- package/assets/icons/calendar_cancel_medium.svg +1 -0
- package/assets/icons/eufemia-icons-pdf-categorized.tgz +0 -0
- package/assets/icons/eufemia-icons-pdf.tgz +0 -0
- package/assets/icons/exclamation.svg +1 -1
- package/assets/icons/exclamation_circled.svg +1 -1
- package/assets/icons/exclamation_medium.svg +1 -1
- package/assets/icons/reply.svg +1 -1
- package/assets/icons/reply_medium.svg +1 -1
- package/assets/icons/stopwatch.svg +1 -1
- package/cjs/components/Style.d.ts +1 -0
- package/cjs/components/Style.js +52 -0
- package/cjs/components/Table.d.ts +3 -0
- package/cjs/components/Table.js +52 -0
- package/cjs/components/accordion/AccordionContent.js +1 -1
- package/cjs/components/autocomplete/Autocomplete.d.ts +9 -0
- package/cjs/components/autocomplete/Autocomplete.js +49 -23
- package/cjs/components/autocomplete/style/_autocomplete.scss +57 -6
- package/cjs/components/autocomplete/style/dnb-autocomplete.css +45 -13
- package/cjs/components/autocomplete/style/dnb-autocomplete.min.css +2 -2
- package/cjs/components/autocomplete/style/themes/dnb-autocomplete-theme-ui.css +7 -0
- package/cjs/components/autocomplete/style/themes/dnb-autocomplete-theme-ui.min.css +1 -1
- package/cjs/components/autocomplete/style/themes/dnb-autocomplete-theme-ui.scss +8 -0
- package/cjs/components/avatar/Avatar.js +14 -12
- package/cjs/components/breadcrumb/Breadcrumb.js +20 -18
- package/cjs/components/button/Button.d.ts +5 -3
- package/cjs/components/date-picker/DatePicker.d.ts +6 -0
- package/cjs/components/date-picker/DatePicker.js +9 -4
- package/cjs/components/date-picker/DatePickerFooter.js +3 -3
- package/cjs/components/date-picker/DatePickerInput.d.ts +6 -0
- package/cjs/components/date-picker/DatePickerInput.js +37 -23
- package/cjs/components/date-picker/style/_date-picker.scss +40 -0
- package/cjs/components/date-picker/style/dnb-date-picker.css +52 -8
- package/cjs/components/date-picker/style/dnb-date-picker.min.css +2 -2
- package/cjs/components/dialog/Dialog.js +7 -3
- package/cjs/components/dialog/DialogContent.js +6 -3
- package/cjs/components/dialog/style/_dialog.scss +24 -35
- package/cjs/components/dialog/style/dnb-dialog.css +57 -80
- package/cjs/components/dialog/style/dnb-dialog.min.css +1 -1
- package/cjs/components/dialog/types.d.ts +9 -2
- package/cjs/components/drawer/style/dnb-drawer.css +33 -40
- package/cjs/components/drawer/style/dnb-drawer.min.css +1 -1
- package/cjs/components/dropdown/Dropdown.d.ts +25 -0
- package/cjs/components/dropdown/Dropdown.js +1 -1
- package/cjs/components/form-row/FormRow.js +2 -12
- package/cjs/components/form-row/FormRowHelpers.d.ts +6 -0
- package/cjs/components/form-row/FormRowHelpers.js +18 -0
- package/cjs/components/icon/Icon.js +5 -9
- package/cjs/components/icon/IconHelpers.d.ts +1 -0
- package/cjs/components/icon/IconHelpers.js +16 -0
- package/cjs/components/index.d.ts +2 -1
- package/cjs/components/index.js +8 -0
- package/cjs/components/input/Input.d.ts +6 -1
- package/cjs/components/input/Input.js +12 -2
- package/cjs/components/input/style/_input.scss +11 -9
- package/cjs/components/input/style/dnb-input.css +7 -8
- package/cjs/components/input/style/dnb-input.min.css +1 -1
- package/cjs/components/input-masked/InputMasked.d.ts +6 -1
- package/cjs/components/input-masked/InputMaskedUtils.js +11 -4
- package/cjs/components/input-masked/addons/createNumberMask.d.ts +1 -2
- package/cjs/components/input-masked/addons/createNumberMask.js +1 -14
- package/cjs/components/input-masked/style/dnb-input-masked.css +7 -8
- package/cjs/components/input-masked/style/dnb-input-masked.min.css +1 -1
- package/cjs/components/lib.d.ts +6 -1
- package/cjs/components/lib.js +9 -0
- package/cjs/components/modal/Modal.d.ts +1 -22
- package/cjs/components/modal/Modal.js +4 -1
- package/cjs/components/modal/ModalContent.d.ts +7 -2
- package/cjs/components/modal/ModalContent.js +111 -70
- package/cjs/components/modal/ModalContext.d.ts +1 -0
- package/cjs/components/modal/ModalContext.js +1 -0
- package/cjs/components/modal/parts/CloseButton.d.ts +3 -24
- package/cjs/components/modal/parts/ModalHeader.d.ts +1 -0
- package/cjs/components/modal/parts/ModalHeaderBar.d.ts +3 -2
- package/cjs/components/modal/parts/ModalInner.d.ts +1 -0
- package/cjs/components/modal/style/_modal-mixins.scss +1 -0
- package/cjs/components/modal/style/dnb-modal.css +30 -40
- package/cjs/components/modal/style/dnb-modal.min.css +1 -1
- package/cjs/components/modal/types.d.ts +16 -38
- package/cjs/components/number-format/NumberFormat.d.ts +5 -0
- package/cjs/components/number-format/NumberFormat.js +7 -2
- package/cjs/components/pagination/PaginationBar.d.ts +7 -6
- package/cjs/components/radio/Radio.js +5 -2
- package/cjs/components/skeleton/SkeletonHelper.d.ts +4 -4
- package/cjs/components/table/Table.d.ts +40 -0
- package/cjs/components/table/Table.js +91 -0
- package/cjs/components/table/TableStickyHeader.d.ts +21 -0
- package/cjs/components/table/TableStickyHeader.js +159 -0
- package/cjs/components/table/TableTd.d.ts +15 -0
- package/cjs/components/table/TableTd.js +42 -0
- package/cjs/components/table/TableTh.d.ts +14 -0
- package/cjs/components/table/TableTh.js +42 -0
- package/cjs/components/table/TableTr.d.ts +15 -0
- package/cjs/components/table/TableTr.js +41 -0
- package/cjs/components/table/index.d.ts +3 -0
- package/cjs/components/table/index.js +52 -0
- package/cjs/components/table/style/_table.scss +147 -0
- package/cjs/components/table/style/dnb-table.css +181 -0
- package/cjs/components/table/style/dnb-table.min.css +1 -0
- package/cjs/components/table/style/dnb-table.scss +12 -0
- package/cjs/components/table/style/index.d.ts +6 -0
- package/cjs/components/table/style/index.js +3 -0
- package/cjs/components/table/style/themes/dnb-table-theme-ui.css +444 -0
- package/cjs/components/table/style/themes/dnb-table-theme-ui.min.css +2 -0
- package/cjs/components/table/style/themes/dnb-table-theme-ui.scss +97 -0
- package/cjs/components/table/style/themes/table-basis.scss +161 -0
- package/cjs/components/table/style/themes/ui.d.ts +1 -0
- package/cjs/components/table/style/themes/ui.js +3 -0
- package/cjs/components/table/style.d.ts +1 -0
- package/cjs/components/table/style.js +3 -0
- package/cjs/components/tag/Tag.js +16 -13
- package/cjs/components/timeline/Timeline.js +11 -7
- package/cjs/components/timeline/TimelineItem.d.ts +12 -4
- package/cjs/components/timeline/TimelineItem.js +60 -24
- package/cjs/components/timeline/style/_timeline.scss +2 -2
- package/cjs/components/timeline/style/dnb-timeline.css +6 -6
- package/cjs/components/timeline/style/dnb-timeline.min.css +1 -1
- package/cjs/components/timeline/style/themes/dnb-timeline-theme-ui.css +4 -4
- package/cjs/components/timeline/style/themes/dnb-timeline-theme-ui.min.css +1 -1
- package/cjs/components/timeline/style/themes/dnb-timeline-theme-ui.scss +4 -4
- package/cjs/elements/Table.d.ts +3 -35
- package/cjs/elements/Table.js +25 -270
- package/cjs/elements/Td.d.ts +2 -28
- package/cjs/elements/Td.js +32 -40
- package/cjs/elements/Th.d.ts +2 -28
- package/cjs/elements/Th.js +32 -40
- package/cjs/elements/Tr.d.ts +2 -28
- package/cjs/elements/Tr.js +32 -40
- package/cjs/elements/lib.d.ts +4 -6
- package/cjs/elements/lib.js +0 -9
- package/cjs/fragments/drawer-list/DrawerList.d.ts +13 -0
- package/cjs/fragments/drawer-list/DrawerList.js +25 -10
- package/cjs/fragments/drawer-list/DrawerListHelpers.d.ts +20 -0
- package/cjs/fragments/drawer-list/DrawerListHelpers.js +18 -1
- package/cjs/fragments/drawer-list/DrawerListProvider.d.ts +6 -9
- package/cjs/fragments/drawer-list/DrawerListProvider.js +28 -42
- package/cjs/fragments/drawer-list/style/_drawer-list.scss +40 -5
- package/cjs/fragments/drawer-list/style/themes/dnb-drawer-list-theme-ui.scss +58 -38
- package/cjs/icons/bookmark.d.ts +2 -0
- package/cjs/icons/bookmark.js +36 -0
- package/cjs/icons/bookmark_medium.d.ts +2 -0
- package/cjs/icons/bookmark_medium.js +36 -0
- package/cjs/icons/calendar_cancel.d.ts +2 -0
- package/cjs/icons/calendar_cancel.js +32 -0
- package/cjs/icons/calendar_cancel_medium.d.ts +2 -0
- package/cjs/icons/calendar_cancel_medium.js +32 -0
- package/cjs/icons/exclamation.js +5 -2
- package/cjs/icons/exclamation_circled.js +1 -1
- package/cjs/icons/exclamation_medium.js +5 -2
- package/cjs/icons/icons-meta.json +232 -198
- package/cjs/icons/icons-pdf.lock +6294 -0
- package/cjs/icons/icons-svg.lock +6294 -1
- package/cjs/icons/index.d.ts +5 -1
- package/cjs/icons/index.js +32 -0
- package/cjs/icons/reply.js +2 -1
- package/cjs/icons/reply_medium.js +2 -1
- package/cjs/icons/secondary_icons.d.ts +3 -1
- package/cjs/icons/secondary_icons.js +16 -0
- package/cjs/icons/secondary_icons_medium.d.ts +3 -1
- package/cjs/icons/secondary_icons_medium.js +16 -0
- package/cjs/icons/stopwatch.js +1 -1
- package/cjs/index.d.ts +30 -30
- package/cjs/index.js +58 -58
- package/cjs/shared/AnimateHeight.d.ts +1 -0
- package/cjs/shared/AnimateHeight.js +18 -2
- package/cjs/shared/Context.d.ts +92 -44
- package/cjs/shared/Context.js +3 -16
- package/cjs/shared/Eufemia.js +1 -1
- package/cjs/shared/MediaQuery.d.ts +18 -37
- package/cjs/shared/MediaQuery.js +3 -19
- package/cjs/shared/MediaQueryUtils.d.ts +61 -23
- package/cjs/shared/MediaQueryUtils.js +2 -2
- package/cjs/shared/Provider.d.ts +36 -12
- package/cjs/shared/Provider.js +6 -15
- package/cjs/shared/component-helper.d.ts +1 -1
- package/cjs/shared/component-helper.js +5 -5
- package/cjs/shared/interfaces.d.ts +13 -0
- package/cjs/shared/locales/en-GB.d.ts +1 -0
- package/cjs/shared/locales/en-GB.js +1 -0
- package/cjs/shared/locales/en-US.d.ts +1 -0
- package/cjs/shared/locales/index.d.ts +2 -0
- package/cjs/shared/locales/nb-NO.d.ts +1 -0
- package/cjs/shared/locales/nb-NO.js +1 -0
- package/cjs/shared/useMediaQuery.d.ts +3 -1
- package/cjs/shared/useTranslation.d.ts +1 -22
- package/cjs/style/dnb-ui-components.css +275 -74
- package/cjs/style/dnb-ui-components.min.css +3 -3
- package/cjs/style/dnb-ui-components.scss +1 -0
- package/cjs/style/dnb-ui-elements.css +1 -534
- package/cjs/style/dnb-ui-elements.min.css +1 -2
- package/cjs/style/dnb-ui-fragments.css +37 -15
- package/cjs/style/dnb-ui-fragments.min.css +1 -1
- package/cjs/style/dnb-ui-tags.css +1 -1065
- package/cjs/style/dnb-ui-tags.min.css +1 -3
- package/cjs/style/elements/table.scss +1 -389
- package/cjs/style/elements/ui-tags.scss +2 -2
- package/cjs/style/themes/theme-eiendom/dnb-theme-eiendom.css +511 -574
- package/cjs/style/themes/theme-eiendom/dnb-theme-eiendom.min.css +7 -5
- package/cjs/style/themes/theme-ui/dnb-theme-ui.css +511 -574
- package/cjs/style/themes/theme-ui/dnb-theme-ui.min.css +7 -5
- package/cjs/style/themes/theme-ui/dnb-theme-ui.scss +1 -0
- package/components/Style.d.ts +1 -0
- package/components/Style.js +3 -0
- package/components/Table.d.ts +3 -0
- package/components/Table.js +3 -0
- package/components/accordion/AccordionContent.js +1 -1
- package/components/autocomplete/Autocomplete.d.ts +9 -0
- package/components/autocomplete/Autocomplete.js +49 -23
- package/components/autocomplete/style/_autocomplete.scss +57 -6
- package/components/autocomplete/style/dnb-autocomplete.css +45 -13
- package/components/autocomplete/style/dnb-autocomplete.min.css +2 -2
- package/components/autocomplete/style/themes/dnb-autocomplete-theme-ui.css +7 -0
- package/components/autocomplete/style/themes/dnb-autocomplete-theme-ui.min.css +1 -1
- package/components/autocomplete/style/themes/dnb-autocomplete-theme-ui.scss +8 -0
- package/components/avatar/Avatar.js +15 -14
- package/components/breadcrumb/Breadcrumb.js +21 -20
- package/components/button/Button.d.ts +5 -3
- package/components/date-picker/DatePicker.d.ts +6 -0
- package/components/date-picker/DatePicker.js +9 -4
- package/components/date-picker/DatePickerFooter.js +3 -3
- package/components/date-picker/DatePickerInput.d.ts +6 -0
- package/components/date-picker/DatePickerInput.js +37 -23
- package/components/date-picker/style/_date-picker.scss +40 -0
- package/components/date-picker/style/dnb-date-picker.css +52 -8
- package/components/date-picker/style/dnb-date-picker.min.css +2 -2
- package/components/dialog/Dialog.js +7 -3
- package/components/dialog/DialogContent.js +7 -4
- package/components/dialog/style/_dialog.scss +24 -35
- package/components/dialog/style/dnb-dialog.css +57 -80
- package/components/dialog/style/dnb-dialog.min.css +1 -1
- package/components/dialog/types.d.ts +9 -2
- package/components/drawer/style/dnb-drawer.css +33 -40
- package/components/drawer/style/dnb-drawer.min.css +1 -1
- package/components/dropdown/Dropdown.d.ts +25 -0
- package/components/dropdown/Dropdown.js +2 -2
- package/components/form-row/FormRow.js +0 -7
- package/components/form-row/FormRowHelpers.d.ts +6 -0
- package/components/form-row/FormRowHelpers.js +8 -0
- package/components/icon/Icon.js +1 -3
- package/components/icon/IconHelpers.d.ts +1 -0
- package/components/icon/IconHelpers.js +5 -0
- package/components/index.d.ts +2 -1
- package/components/index.js +2 -1
- package/components/input/Input.d.ts +6 -1
- package/components/input/Input.js +12 -2
- package/components/input/style/_input.scss +11 -9
- package/components/input/style/dnb-input.css +7 -8
- package/components/input/style/dnb-input.min.css +1 -1
- package/components/input-masked/InputMasked.d.ts +6 -1
- package/components/input-masked/InputMaskedUtils.js +11 -4
- package/components/input-masked/addons/createNumberMask.d.ts +1 -2
- package/components/input-masked/addons/createNumberMask.js +1 -12
- package/components/input-masked/style/dnb-input-masked.css +7 -8
- package/components/input-masked/style/dnb-input-masked.min.css +1 -1
- package/components/lib.d.ts +6 -1
- package/components/lib.js +3 -1
- package/components/modal/Modal.d.ts +1 -22
- package/components/modal/Modal.js +4 -1
- package/components/modal/ModalContent.d.ts +7 -2
- package/components/modal/ModalContent.js +81 -60
- package/components/modal/ModalContext.d.ts +1 -0
- package/components/modal/ModalContext.js +1 -0
- package/components/modal/parts/CloseButton.d.ts +3 -24
- package/components/modal/parts/ModalHeader.d.ts +1 -0
- package/components/modal/parts/ModalHeaderBar.d.ts +3 -2
- package/components/modal/parts/ModalInner.d.ts +1 -0
- package/components/modal/style/_modal-mixins.scss +1 -0
- package/components/modal/style/dnb-modal.css +30 -40
- package/components/modal/style/dnb-modal.min.css +1 -1
- package/components/modal/types.d.ts +16 -38
- package/components/number-format/NumberFormat.d.ts +5 -0
- package/components/number-format/NumberFormat.js +7 -2
- package/components/pagination/PaginationBar.d.ts +7 -6
- package/components/radio/Radio.js +5 -2
- package/components/skeleton/SkeletonHelper.d.ts +4 -4
- package/components/table/Table.d.ts +40 -0
- package/components/table/Table.js +51 -0
- package/components/table/TableStickyHeader.d.ts +21 -0
- package/components/table/TableStickyHeader.js +105 -0
- package/components/table/TableTd.d.ts +15 -0
- package/components/table/TableTd.js +18 -0
- package/components/table/TableTh.d.ts +14 -0
- package/components/table/TableTh.js +18 -0
- package/components/table/TableTr.d.ts +15 -0
- package/components/table/TableTr.js +17 -0
- package/components/table/index.d.ts +3 -0
- package/components/table/index.js +3 -0
- package/components/table/style/_table.scss +147 -0
- package/components/table/style/dnb-table.css +181 -0
- package/components/table/style/dnb-table.min.css +1 -0
- package/components/table/style/dnb-table.scss +12 -0
- package/components/table/style/index.d.ts +6 -0
- package/components/table/style/index.js +1 -0
- package/components/table/style/themes/dnb-table-theme-ui.css +444 -0
- package/components/table/style/themes/dnb-table-theme-ui.min.css +2 -0
- package/components/table/style/themes/dnb-table-theme-ui.scss +97 -0
- package/components/table/style/themes/table-basis.scss +161 -0
- package/components/table/style/themes/ui.d.ts +1 -0
- package/components/table/style/themes/ui.js +1 -0
- package/components/table/style.d.ts +1 -0
- package/components/table/style.js +1 -0
- package/components/tag/Tag.js +14 -13
- package/components/timeline/Timeline.js +10 -8
- package/components/timeline/TimelineItem.d.ts +12 -4
- package/components/timeline/TimelineItem.js +59 -24
- package/components/timeline/style/_timeline.scss +2 -2
- package/components/timeline/style/dnb-timeline.css +6 -6
- package/components/timeline/style/dnb-timeline.min.css +1 -1
- package/components/timeline/style/themes/dnb-timeline-theme-ui.css +4 -4
- package/components/timeline/style/themes/dnb-timeline-theme-ui.min.css +1 -1
- package/components/timeline/style/themes/dnb-timeline-theme-ui.scss +4 -4
- package/elements/Table.d.ts +3 -35
- package/elements/Table.js +3 -218
- package/elements/Td.d.ts +2 -28
- package/elements/Td.js +2 -36
- package/elements/Th.d.ts +2 -28
- package/elements/Th.js +2 -36
- package/elements/Tr.d.ts +2 -28
- package/elements/Tr.js +2 -36
- package/elements/lib.d.ts +4 -6
- package/elements/lib.js +1 -3
- package/es/components/Style.d.ts +1 -0
- package/es/components/Style.js +3 -0
- package/es/components/Table.d.ts +3 -0
- package/es/components/Table.js +3 -0
- package/es/components/accordion/AccordionContent.js +1 -1
- package/es/components/autocomplete/Autocomplete.d.ts +9 -0
- package/es/components/autocomplete/Autocomplete.js +43 -18
- package/es/components/autocomplete/style/_autocomplete.scss +57 -6
- package/es/components/autocomplete/style/dnb-autocomplete.css +45 -13
- package/es/components/autocomplete/style/dnb-autocomplete.min.css +2 -2
- package/es/components/autocomplete/style/themes/dnb-autocomplete-theme-ui.css +7 -0
- package/es/components/autocomplete/style/themes/dnb-autocomplete-theme-ui.min.css +1 -1
- package/es/components/autocomplete/style/themes/dnb-autocomplete-theme-ui.scss +8 -0
- package/es/components/avatar/Avatar.js +8 -7
- package/es/components/breadcrumb/Breadcrumb.js +8 -7
- package/es/components/button/Button.d.ts +5 -3
- package/es/components/date-picker/DatePicker.d.ts +6 -0
- package/es/components/date-picker/DatePicker.js +9 -4
- package/es/components/date-picker/DatePickerFooter.js +3 -3
- package/es/components/date-picker/DatePickerInput.d.ts +6 -0
- package/es/components/date-picker/DatePickerInput.js +43 -32
- package/es/components/date-picker/style/_date-picker.scss +40 -0
- package/es/components/date-picker/style/dnb-date-picker.css +52 -8
- package/es/components/date-picker/style/dnb-date-picker.min.css +2 -2
- package/es/components/dialog/Dialog.js +7 -3
- package/es/components/dialog/DialogContent.js +7 -4
- package/es/components/dialog/style/_dialog.scss +24 -35
- package/es/components/dialog/style/dnb-dialog.css +57 -80
- package/es/components/dialog/style/dnb-dialog.min.css +1 -1
- package/es/components/dialog/types.d.ts +9 -2
- package/es/components/drawer/style/dnb-drawer.css +33 -40
- package/es/components/drawer/style/dnb-drawer.min.css +1 -1
- package/es/components/dropdown/Dropdown.d.ts +25 -0
- package/es/components/dropdown/Dropdown.js +2 -2
- package/es/components/form-row/FormRow.js +0 -7
- package/es/components/form-row/FormRowHelpers.d.ts +6 -0
- package/es/components/form-row/FormRowHelpers.js +8 -0
- package/es/components/icon/Icon.js +2 -2
- package/es/components/icon/IconHelpers.d.ts +1 -0
- package/es/components/icon/IconHelpers.js +1 -0
- package/es/components/index.d.ts +2 -1
- package/es/components/index.js +2 -1
- package/es/components/input/Input.d.ts +6 -1
- package/es/components/input/Input.js +11 -2
- package/es/components/input/style/_input.scss +11 -9
- package/es/components/input/style/dnb-input.css +7 -8
- package/es/components/input/style/dnb-input.min.css +1 -1
- package/es/components/input-masked/InputMasked.d.ts +6 -1
- package/es/components/input-masked/InputMaskedUtils.js +11 -4
- package/es/components/input-masked/addons/createNumberMask.d.ts +1 -2
- package/es/components/input-masked/addons/createNumberMask.js +1 -9
- package/es/components/input-masked/style/dnb-input-masked.css +7 -8
- package/es/components/input-masked/style/dnb-input-masked.min.css +1 -1
- package/es/components/lib.d.ts +6 -1
- package/es/components/lib.js +3 -1
- package/es/components/modal/Modal.d.ts +1 -22
- package/es/components/modal/Modal.js +3 -1
- package/es/components/modal/ModalContent.d.ts +7 -2
- package/es/components/modal/ModalContent.js +27 -8
- package/es/components/modal/ModalContext.d.ts +1 -0
- package/es/components/modal/ModalContext.js +1 -0
- package/es/components/modal/parts/CloseButton.d.ts +3 -24
- package/es/components/modal/parts/ModalHeader.d.ts +1 -0
- package/es/components/modal/parts/ModalHeaderBar.d.ts +3 -2
- package/es/components/modal/parts/ModalInner.d.ts +1 -0
- package/es/components/modal/style/_modal-mixins.scss +1 -0
- package/es/components/modal/style/dnb-modal.css +30 -40
- package/es/components/modal/style/dnb-modal.min.css +1 -1
- package/es/components/modal/types.d.ts +16 -38
- package/es/components/number-format/NumberFormat.d.ts +5 -0
- package/es/components/number-format/NumberFormat.js +7 -2
- package/es/components/pagination/PaginationBar.d.ts +7 -6
- package/es/components/radio/Radio.js +5 -2
- package/es/components/skeleton/SkeletonHelper.d.ts +4 -4
- package/es/components/table/Table.d.ts +40 -0
- package/es/components/table/Table.js +51 -0
- package/es/components/table/TableStickyHeader.d.ts +21 -0
- package/es/components/table/TableStickyHeader.js +98 -0
- package/es/components/table/TableTd.d.ts +15 -0
- package/es/components/table/TableTd.js +20 -0
- package/es/components/table/TableTh.d.ts +14 -0
- package/es/components/table/TableTh.js +20 -0
- package/es/components/table/TableTr.d.ts +15 -0
- package/es/components/table/TableTr.js +19 -0
- package/es/components/table/index.d.ts +3 -0
- package/es/components/table/index.js +3 -0
- package/es/components/table/style/_table.scss +147 -0
- package/es/components/table/style/dnb-table.css +181 -0
- package/es/components/table/style/dnb-table.min.css +1 -0
- package/es/components/table/style/dnb-table.scss +12 -0
- package/es/components/table/style/index.d.ts +6 -0
- package/es/components/table/style/index.js +1 -0
- package/es/components/table/style/themes/dnb-table-theme-ui.css +444 -0
- package/es/components/table/style/themes/dnb-table-theme-ui.min.css +2 -0
- package/es/components/table/style/themes/dnb-table-theme-ui.scss +97 -0
- package/es/components/table/style/themes/table-basis.scss +161 -0
- package/es/components/table/style/themes/ui.d.ts +1 -0
- package/es/components/table/style/themes/ui.js +1 -0
- package/es/components/table/style.d.ts +1 -0
- package/es/components/table/style.js +1 -0
- package/es/components/tag/Tag.js +8 -7
- package/es/components/timeline/Timeline.js +8 -6
- package/es/components/timeline/TimelineItem.d.ts +12 -4
- package/es/components/timeline/TimelineItem.js +52 -21
- package/es/components/timeline/style/_timeline.scss +2 -2
- package/es/components/timeline/style/dnb-timeline.css +6 -6
- package/es/components/timeline/style/dnb-timeline.min.css +1 -1
- package/es/components/timeline/style/themes/dnb-timeline-theme-ui.css +4 -4
- package/es/components/timeline/style/themes/dnb-timeline-theme-ui.min.css +1 -1
- package/es/components/timeline/style/themes/dnb-timeline-theme-ui.scss +4 -4
- package/es/elements/Table.d.ts +3 -35
- package/es/elements/Table.js +3 -170
- package/es/elements/Td.d.ts +2 -28
- package/es/elements/Td.js +2 -26
- package/es/elements/Th.d.ts +2 -28
- package/es/elements/Th.js +2 -26
- package/es/elements/Tr.d.ts +2 -28
- package/es/elements/Tr.js +2 -26
- package/es/elements/lib.d.ts +4 -6
- package/es/elements/lib.js +1 -3
- package/es/fragments/drawer-list/DrawerList.d.ts +13 -0
- package/es/fragments/drawer-list/DrawerList.js +25 -13
- package/es/fragments/drawer-list/DrawerListHelpers.d.ts +20 -0
- package/es/fragments/drawer-list/DrawerListHelpers.js +15 -0
- package/es/fragments/drawer-list/DrawerListProvider.d.ts +6 -9
- package/es/fragments/drawer-list/DrawerListProvider.js +31 -44
- package/es/fragments/drawer-list/style/_drawer-list.scss +40 -5
- package/es/fragments/drawer-list/style/themes/dnb-drawer-list-theme-ui.scss +58 -38
- package/es/icons/bookmark.d.ts +2 -0
- package/es/icons/bookmark.js +22 -0
- package/es/icons/bookmark_medium.d.ts +2 -0
- package/es/icons/bookmark_medium.js +22 -0
- package/es/icons/calendar_cancel.d.ts +2 -0
- package/es/icons/calendar_cancel.js +18 -0
- package/es/icons/calendar_cancel_medium.d.ts +2 -0
- package/es/icons/calendar_cancel_medium.js +18 -0
- package/es/icons/exclamation.js +5 -2
- package/es/icons/exclamation_circled.js +1 -1
- package/es/icons/exclamation_medium.js +5 -2
- package/es/icons/icons-meta.json +232 -198
- package/es/icons/icons-pdf.lock +6294 -0
- package/es/icons/icons-svg.lock +6294 -1
- package/es/icons/index.d.ts +5 -1
- package/es/icons/index.js +5 -1
- package/es/icons/reply.js +2 -1
- package/es/icons/reply_medium.js +2 -1
- package/es/icons/secondary_icons.d.ts +3 -1
- package/es/icons/secondary_icons.js +3 -1
- package/es/icons/secondary_icons_medium.d.ts +3 -1
- package/es/icons/secondary_icons_medium.js +3 -1
- package/es/icons/stopwatch.js +1 -1
- package/es/index.d.ts +30 -30
- package/es/index.js +30 -30
- package/es/shared/AnimateHeight.d.ts +1 -0
- package/es/shared/AnimateHeight.js +18 -2
- package/es/shared/Context.d.ts +92 -44
- package/es/shared/Context.js +4 -17
- package/es/shared/Eufemia.js +1 -1
- package/es/shared/MediaQuery.d.ts +18 -37
- package/es/shared/MediaQuery.js +3 -18
- package/es/shared/MediaQueryUtils.d.ts +61 -23
- package/es/shared/MediaQueryUtils.js +2 -2
- package/es/shared/Provider.d.ts +36 -12
- package/es/shared/Provider.js +6 -14
- package/es/shared/component-helper.d.ts +1 -1
- package/es/shared/component-helper.js +5 -5
- package/es/shared/interfaces.d.ts +13 -0
- package/es/shared/locales/en-GB.d.ts +1 -0
- package/es/shared/locales/en-GB.js +1 -0
- package/es/shared/locales/en-US.d.ts +1 -0
- package/es/shared/locales/index.d.ts +2 -0
- package/es/shared/locales/nb-NO.d.ts +1 -0
- package/es/shared/locales/nb-NO.js +1 -0
- package/es/shared/useMediaQuery.d.ts +3 -1
- package/es/shared/useTranslation.d.ts +1 -22
- package/es/style/dnb-ui-components.css +275 -74
- package/es/style/dnb-ui-components.min.css +3 -3
- package/es/style/dnb-ui-components.scss +1 -0
- package/es/style/dnb-ui-elements.css +1 -534
- package/es/style/dnb-ui-elements.min.css +1 -2
- package/es/style/dnb-ui-fragments.css +37 -15
- package/es/style/dnb-ui-fragments.min.css +1 -1
- package/es/style/dnb-ui-tags.css +1 -1065
- package/es/style/dnb-ui-tags.min.css +1 -3
- package/es/style/elements/table.scss +1 -389
- package/es/style/elements/ui-tags.scss +2 -2
- package/es/style/themes/theme-eiendom/dnb-theme-eiendom.css +511 -574
- package/es/style/themes/theme-eiendom/dnb-theme-eiendom.min.css +7 -5
- package/es/style/themes/theme-ui/dnb-theme-ui.css +511 -574
- package/es/style/themes/theme-ui/dnb-theme-ui.min.css +7 -5
- package/es/style/themes/theme-ui/dnb-theme-ui.scss +1 -0
- package/esm/dnb-ui-basis.min.mjs +1 -1
- package/esm/dnb-ui-components.min.mjs +3 -3
- package/esm/dnb-ui-elements.min.mjs +3 -3
- package/esm/dnb-ui-extensions.min.mjs +4 -4
- package/esm/dnb-ui-icons.min.mjs +1 -1
- package/esm/dnb-ui-lib.min.mjs +4 -4
- package/esm/dnb-ui-web-components.min.mjs +4 -4
- package/fragments/drawer-list/DrawerList.d.ts +13 -0
- package/fragments/drawer-list/DrawerList.js +24 -12
- package/fragments/drawer-list/DrawerListHelpers.d.ts +20 -0
- package/fragments/drawer-list/DrawerListHelpers.js +15 -0
- package/fragments/drawer-list/DrawerListProvider.d.ts +6 -9
- package/fragments/drawer-list/DrawerListProvider.js +29 -43
- package/fragments/drawer-list/style/_drawer-list.scss +40 -5
- package/fragments/drawer-list/style/themes/dnb-drawer-list-theme-ui.scss +58 -38
- package/icons/bookmark.d.ts +2 -0
- package/icons/bookmark.js +24 -0
- package/icons/bookmark_medium.d.ts +2 -0
- package/icons/bookmark_medium.js +24 -0
- package/icons/calendar_cancel.d.ts +2 -0
- package/icons/calendar_cancel.js +20 -0
- package/icons/calendar_cancel_medium.d.ts +2 -0
- package/icons/calendar_cancel_medium.js +20 -0
- package/icons/exclamation.js +5 -2
- package/icons/exclamation_circled.js +1 -1
- package/icons/exclamation_medium.js +5 -2
- package/icons/icons-meta.json +232 -198
- package/icons/icons-pdf.lock +6294 -0
- package/icons/icons-svg.lock +6294 -1
- package/icons/index.d.ts +5 -1
- package/icons/index.js +5 -1
- package/icons/reply.js +2 -1
- package/icons/reply_medium.js +2 -1
- package/icons/secondary_icons.d.ts +3 -1
- package/icons/secondary_icons.js +3 -1
- package/icons/secondary_icons_medium.d.ts +3 -1
- package/icons/secondary_icons_medium.js +3 -1
- package/icons/stopwatch.js +1 -1
- package/index.d.ts +30 -30
- package/index.js +30 -30
- package/package.json +1 -1
- package/shared/AnimateHeight.d.ts +1 -0
- package/shared/AnimateHeight.js +18 -2
- package/shared/Context.d.ts +92 -44
- package/shared/Context.js +3 -16
- package/shared/Eufemia.js +1 -1
- package/shared/MediaQuery.d.ts +18 -37
- package/shared/MediaQuery.js +3 -17
- package/shared/MediaQueryUtils.d.ts +61 -23
- package/shared/MediaQueryUtils.js +2 -2
- package/shared/Provider.d.ts +36 -12
- package/shared/Provider.js +5 -12
- package/shared/component-helper.d.ts +1 -1
- package/shared/component-helper.js +5 -5
- package/shared/interfaces.d.ts +13 -0
- package/shared/locales/en-GB.d.ts +1 -0
- package/shared/locales/en-GB.js +1 -0
- package/shared/locales/en-US.d.ts +1 -0
- package/shared/locales/index.d.ts +2 -0
- package/shared/locales/nb-NO.d.ts +1 -0
- package/shared/locales/nb-NO.js +1 -0
- package/shared/useMediaQuery.d.ts +3 -1
- package/shared/useTranslation.d.ts +1 -22
- package/style/dnb-ui-components.css +275 -74
- package/style/dnb-ui-components.min.css +3 -3
- package/style/dnb-ui-components.scss +1 -0
- package/style/dnb-ui-elements.css +1 -534
- package/style/dnb-ui-elements.min.css +1 -2
- package/style/dnb-ui-fragments.css +37 -15
- package/style/dnb-ui-fragments.min.css +1 -1
- package/style/dnb-ui-tags.css +1 -1065
- package/style/dnb-ui-tags.min.css +1 -3
- package/style/elements/table.scss +1 -389
- package/style/elements/ui-tags.scss +2 -2
- package/style/themes/theme-eiendom/dnb-theme-eiendom.css +511 -574
- package/style/themes/theme-eiendom/dnb-theme-eiendom.min.css +7 -5
- package/style/themes/theme-ui/dnb-theme-ui.css +511 -574
- package/style/themes/theme-ui/dnb-theme-ui.min.css +7 -5
- package/style/themes/theme-ui/dnb-theme-ui.scss +1 -0
- package/umd/dnb-ui-basis.min.js +1 -1
- package/umd/dnb-ui-components.min.js +3 -3
- package/umd/dnb-ui-elements.min.js +5 -5
- package/umd/dnb-ui-extensions.min.js +5 -5
- package/umd/dnb-ui-icons.min.js +1 -1
- package/umd/dnb-ui-lib.min.js +3 -3
- package/umd/dnb-ui-web-components.min.js +4 -4
- package/cjs/style/themes/theme-ui/prism/dnb-prism-styles.d.ts +0 -6
- package/cjs/style/themes/theme-ui/prism/dnb-prism-styles.js +0 -9
- package/es/style/themes/theme-ui/prism/dnb-prism-styles.d.ts +0 -6
- package/es/style/themes/theme-ui/prism/dnb-prism-styles.js +0 -93
- package/style/themes/theme-ui/prism/dnb-prism-styles.d.ts +0 -6
- package/style/themes/theme-ui/prism/dnb-prism-styles.js +0 -2
package/es/style/dnb-ui-tags.css
CHANGED
|
@@ -1004,541 +1004,8 @@ a.dnb-button {
|
|
|
1004
1004
|
|
|
1005
1005
|
/*
|
|
1006
1006
|
* Table
|
|
1007
|
-
*
|
|
1007
|
+
* The styles are located inside /components/table/styles/...
|
|
1008
1008
|
*/
|
|
1009
|
-
/*
|
|
1010
|
-
* Button mixins
|
|
1011
|
-
*
|
|
1012
|
-
*/
|
|
1013
|
-
.dnb-table {
|
|
1014
|
-
display: table;
|
|
1015
|
-
table-layout: auto;
|
|
1016
|
-
width: 100%;
|
|
1017
|
-
overflow: auto;
|
|
1018
|
-
margin-top: 0;
|
|
1019
|
-
margin-bottom: 1rem;
|
|
1020
|
-
margin-bottom: var(--spacing-small);
|
|
1021
|
-
border-spacing: 0;
|
|
1022
|
-
border-collapse: collapse;
|
|
1023
|
-
/* stylelint-disable-next-line */
|
|
1024
|
-
/* stylelint-disable-next-line */
|
|
1025
|
-
/* stylelint-disable-next-line */
|
|
1026
|
-
/* stylelint-disable */
|
|
1027
|
-
/* stylelint-enable */ }
|
|
1028
|
-
.dnb-table--fixed {
|
|
1029
|
-
table-layout: fixed; }
|
|
1030
|
-
.dnb-table__sticky-helper > td {
|
|
1031
|
-
display: block;
|
|
1032
|
-
overflow: hidden;
|
|
1033
|
-
padding: 0 !important;
|
|
1034
|
-
height: 0; }
|
|
1035
|
-
.dnb-table > tr > th,
|
|
1036
|
-
.dnb-table > tr > td,
|
|
1037
|
-
.dnb-table > thead > tr > th,
|
|
1038
|
-
.dnb-table > tbody > tr > td,
|
|
1039
|
-
.dnb-table .dnb-table__th,
|
|
1040
|
-
.dnb-table .dnb-table__td {
|
|
1041
|
-
border-bottom: 1px solid transparent;
|
|
1042
|
-
font-size: 1.125rem;
|
|
1043
|
-
font-size: var(--font-size-basis);
|
|
1044
|
-
line-height: 1.5rem;
|
|
1045
|
-
line-height: var(--line-height-basis);
|
|
1046
|
-
border-spacing: 0;
|
|
1047
|
-
word-break: keep-all; }
|
|
1048
|
-
.dnb-table > tr > th,
|
|
1049
|
-
.dnb-table > thead > tr > th,
|
|
1050
|
-
.dnb-table .dnb-table__th {
|
|
1051
|
-
padding: 3rem 1rem 0.5rem;
|
|
1052
|
-
padding: var(--spacing-x-large) var(--spacing-small) var(--spacing-x-small);
|
|
1053
|
-
font-weight: 500;
|
|
1054
|
-
font-weight: var(--font-weight-medium);
|
|
1055
|
-
color: #14555a;
|
|
1056
|
-
color: var(--color-emerald-green);
|
|
1057
|
-
vertical-align: bottom;
|
|
1058
|
-
background-color: #d2f0e9;
|
|
1059
|
-
background-color: var(--color-mint-green-50);
|
|
1060
|
-
border-bottom: 1px solid #a5e1d2;
|
|
1061
|
-
border-bottom: 1px solid var(--color-mint-green); }
|
|
1062
|
-
.dnb-table > tr > th:not([align]):not(.dnb-table--left):not(.dnb-table--right):not(.dnb-table--center),
|
|
1063
|
-
.dnb-table > thead > tr > th:not([align]):not(.dnb-table--left):not(.dnb-table--right):not(.dnb-table--center),
|
|
1064
|
-
.dnb-table .dnb-table__th:not([align]):not(.dnb-table--left):not(.dnb-table--right):not(.dnb-table--center) {
|
|
1065
|
-
text-align: inherit; }
|
|
1066
|
-
@supports (-moz-appearance: meterbar) and (background-blend-mode: difference, normal) {
|
|
1067
|
-
.dnb-table > tr > th,
|
|
1068
|
-
.dnb-table > thead > tr > th,
|
|
1069
|
-
.dnb-table .dnb-table__th {
|
|
1070
|
-
padding-bottom: calc(0.5rem - 0.5px);
|
|
1071
|
-
padding-bottom: calc(var(--spacing-x-small) - 0.5px); } }
|
|
1072
|
-
.dnb-table > thead > tr > th.dnb-table--sortable,
|
|
1073
|
-
.dnb-table .dnb-table__th.dnb-table--sortable {
|
|
1074
|
-
color: #14555a;
|
|
1075
|
-
color: var(--color-emerald-green); }
|
|
1076
|
-
.dnb-table > thead > tr > th.dnb-table--sortable .dnb-anchor,
|
|
1077
|
-
.dnb-table > thead > tr > th.dnb-table--sortable .dnb-button,
|
|
1078
|
-
.dnb-table .dnb-table__th.dnb-table--sortable .dnb-anchor,
|
|
1079
|
-
.dnb-table .dnb-table__th.dnb-table--sortable .dnb-button {
|
|
1080
|
-
position: relative;
|
|
1081
|
-
z-index: 1;
|
|
1082
|
-
-webkit-box-align: end;
|
|
1083
|
-
-ms-flex-align: end;
|
|
1084
|
-
align-items: flex-end;
|
|
1085
|
-
-webkit-box-shadow: none;
|
|
1086
|
-
box-shadow: none;
|
|
1087
|
-
line-height: 1.5rem;
|
|
1088
|
-
line-height: var(--line-height-basis);
|
|
1089
|
-
margin: 0;
|
|
1090
|
-
padding: 0;
|
|
1091
|
-
padding-right: 0.5rem;
|
|
1092
|
-
color: inherit;
|
|
1093
|
-
font-weight: 500;
|
|
1094
|
-
font-weight: var(--font-weight-medium);
|
|
1095
|
-
text-align: inherit;
|
|
1096
|
-
font-size: inherit; }
|
|
1097
|
-
.dnb-table > thead > tr > th.dnb-table--sortable .dnb-anchor > .dnb-icon,
|
|
1098
|
-
.dnb-table > thead > tr > th.dnb-table--sortable .dnb-button > .dnb-icon,
|
|
1099
|
-
.dnb-table .dnb-table__th.dnb-table--sortable .dnb-anchor > .dnb-icon,
|
|
1100
|
-
.dnb-table .dnb-table__th.dnb-table--sortable .dnb-button > .dnb-icon {
|
|
1101
|
-
opacity: 0;
|
|
1102
|
-
-webkit-transition: opacity 200ms ease-out, -webkit-transform 500ms ease-out;
|
|
1103
|
-
transition: opacity 200ms ease-out, -webkit-transform 500ms ease-out;
|
|
1104
|
-
transition: opacity 200ms ease-out, transform 500ms ease-out;
|
|
1105
|
-
transition: opacity 200ms ease-out, transform 500ms ease-out, -webkit-transform 500ms ease-out; }
|
|
1106
|
-
[data-visual-test-wrapper] .dnb-table > thead > tr > th.dnb-table--sortable .dnb-anchor > .dnb-icon, [data-visual-test-wrapper]
|
|
1107
|
-
.dnb-table > thead > tr > th.dnb-table--sortable .dnb-button > .dnb-icon, [data-visual-test-wrapper]
|
|
1108
|
-
.dnb-table .dnb-table__th.dnb-table--sortable .dnb-anchor > .dnb-icon, [data-visual-test-wrapper]
|
|
1109
|
-
.dnb-table .dnb-table__th.dnb-table--sortable .dnb-button > .dnb-icon {
|
|
1110
|
-
-webkit-transition: none;
|
|
1111
|
-
transition: none; }
|
|
1112
|
-
.dnb-table > thead > tr > th.dnb-table--sortable .dnb-anchor .dnb-button__text,
|
|
1113
|
-
.dnb-table > thead > tr > th.dnb-table--sortable .dnb-button .dnb-button__text,
|
|
1114
|
-
.dnb-table .dnb-table__th.dnb-table--sortable .dnb-anchor .dnb-button__text,
|
|
1115
|
-
.dnb-table .dnb-table__th.dnb-table--sortable .dnb-button .dnb-button__text {
|
|
1116
|
-
margin: 0;
|
|
1117
|
-
font-size: inherit; }
|
|
1118
|
-
.dnb-table > thead > tr > th.dnb-table--sortable .dnb-anchor .dnb-button__text::after,
|
|
1119
|
-
.dnb-table > thead > tr > th.dnb-table--sortable .dnb-button .dnb-button__text::after,
|
|
1120
|
-
.dnb-table .dnb-table__th.dnb-table--sortable .dnb-anchor .dnb-button__text::after,
|
|
1121
|
-
.dnb-table .dnb-table__th.dnb-table--sortable .dnb-button .dnb-button__text::after {
|
|
1122
|
-
right: 1rem; }
|
|
1123
|
-
.dnb-table > thead > tr > th.dnb-table--sortable .dnb-anchor .dnb-button__icon,
|
|
1124
|
-
.dnb-table > thead > tr > th.dnb-table--sortable .dnb-button .dnb-button__icon,
|
|
1125
|
-
.dnb-table .dnb-table__th.dnb-table--sortable .dnb-anchor .dnb-button__icon,
|
|
1126
|
-
.dnb-table .dnb-table__th.dnb-table--sortable .dnb-button .dnb-button__icon {
|
|
1127
|
-
-ms-flex-item-align: end;
|
|
1128
|
-
align-self: flex-end;
|
|
1129
|
-
margin-top: auto;
|
|
1130
|
-
margin-bottom: 0.25rem; }
|
|
1131
|
-
.dnb-table > thead > tr > th.dnb-table--sortable .dnb-anchor:not(:focus) .dnb-button__text::after,
|
|
1132
|
-
.dnb-table > thead > tr > th.dnb-table--sortable .dnb-button:not(:focus) .dnb-button__text::after,
|
|
1133
|
-
.dnb-table .dnb-table__th.dnb-table--sortable .dnb-anchor:not(:focus) .dnb-button__text::after,
|
|
1134
|
-
.dnb-table .dnb-table__th.dnb-table--sortable .dnb-button:not(:focus) .dnb-button__text::after {
|
|
1135
|
-
opacity: 1;
|
|
1136
|
-
color: #14555a;
|
|
1137
|
-
color: var(--color-emerald-green); }
|
|
1138
|
-
html:not([data-whatintent='touch']) .dnb-table > thead > tr > th.dnb-table--sortable .dnb-anchor:hover[disabled], html:not([data-whatintent='touch'])
|
|
1139
|
-
.dnb-table > thead > tr > th.dnb-table--sortable .dnb-button:hover[disabled], html:not([data-whatintent='touch'])
|
|
1140
|
-
.dnb-table .dnb-table__th.dnb-table--sortable .dnb-anchor:hover[disabled], html:not([data-whatintent='touch'])
|
|
1141
|
-
.dnb-table .dnb-table__th.dnb-table--sortable .dnb-button:hover[disabled] {
|
|
1142
|
-
cursor: not-allowed; }
|
|
1143
|
-
html:not([data-whatintent='touch']) .dnb-table > thead > tr > th.dnb-table--sortable .dnb-anchor:hover:not([disabled]), html:not([data-whatintent='touch'])
|
|
1144
|
-
.dnb-table > thead > tr > th.dnb-table--sortable .dnb-button:hover:not([disabled]), html:not([data-whatintent='touch'])
|
|
1145
|
-
.dnb-table .dnb-table__th.dnb-table--sortable .dnb-anchor:hover:not([disabled]), html:not([data-whatintent='touch'])
|
|
1146
|
-
.dnb-table .dnb-table__th.dnb-table--sortable .dnb-button:hover:not([disabled]) {
|
|
1147
|
-
color: #007272;
|
|
1148
|
-
color: var(--color-sea-green); }
|
|
1149
|
-
html:not([data-whatintent='touch']) .dnb-table > thead > tr > th.dnb-table--sortable .dnb-anchor:hover:not([disabled]):not(:focus) .dnb-icon, html:not([data-whatintent='touch'])
|
|
1150
|
-
.dnb-table > thead > tr > th.dnb-table--sortable .dnb-button:hover:not([disabled]):not(:focus) .dnb-icon, html:not([data-whatintent='touch'])
|
|
1151
|
-
.dnb-table .dnb-table__th.dnb-table--sortable .dnb-anchor:hover:not([disabled]):not(:focus) .dnb-icon, html:not([data-whatintent='touch'])
|
|
1152
|
-
.dnb-table .dnb-table__th.dnb-table--sortable .dnb-button:hover:not([disabled]):not(:focus) .dnb-icon {
|
|
1153
|
-
opacity: 1; }
|
|
1154
|
-
html:not([data-whatintent='touch']) .dnb-table > thead > tr > th.dnb-table--sortable .dnb-anchor:hover:not([disabled]) .dnb-button__text::after, html:not([data-whatintent='touch'])
|
|
1155
|
-
.dnb-table > thead > tr > th.dnb-table--sortable .dnb-button:hover:not([disabled]) .dnb-button__text::after, html:not([data-whatintent='touch'])
|
|
1156
|
-
.dnb-table .dnb-table__th.dnb-table--sortable .dnb-anchor:hover:not([disabled]) .dnb-button__text::after, html:not([data-whatintent='touch'])
|
|
1157
|
-
.dnb-table .dnb-table__th.dnb-table--sortable .dnb-button:hover:not([disabled]) .dnb-button__text::after {
|
|
1158
|
-
opacity: 0; }
|
|
1159
|
-
.dnb-table > thead > tr > th.dnb-table--sortable .dnb-anchor:focus[disabled],
|
|
1160
|
-
html:not([data-whatintent='touch']) .dnb-table > thead > tr > th.dnb-table--sortable .dnb-anchor:focus[disabled],
|
|
1161
|
-
.dnb-table > thead > tr > th.dnb-table--sortable .dnb-button:focus[disabled],
|
|
1162
|
-
html:not([data-whatintent='touch'])
|
|
1163
|
-
.dnb-table > thead > tr > th.dnb-table--sortable .dnb-button:focus[disabled],
|
|
1164
|
-
.dnb-table .dnb-table__th.dnb-table--sortable .dnb-anchor:focus[disabled],
|
|
1165
|
-
html:not([data-whatintent='touch'])
|
|
1166
|
-
.dnb-table .dnb-table__th.dnb-table--sortable .dnb-anchor:focus[disabled],
|
|
1167
|
-
.dnb-table .dnb-table__th.dnb-table--sortable .dnb-button:focus[disabled],
|
|
1168
|
-
html:not([data-whatintent='touch'])
|
|
1169
|
-
.dnb-table .dnb-table__th.dnb-table--sortable .dnb-button:focus[disabled] {
|
|
1170
|
-
cursor: not-allowed; }
|
|
1171
|
-
.dnb-table > thead > tr > th.dnb-table--sortable .dnb-anchor:focus:not([disabled])::before,
|
|
1172
|
-
html:not([data-whatintent='touch']) .dnb-table > thead > tr > th.dnb-table--sortable .dnb-anchor:focus:not([disabled])::before,
|
|
1173
|
-
.dnb-table > thead > tr > th.dnb-table--sortable .dnb-button:focus:not([disabled])::before,
|
|
1174
|
-
html:not([data-whatintent='touch'])
|
|
1175
|
-
.dnb-table > thead > tr > th.dnb-table--sortable .dnb-button:focus:not([disabled])::before,
|
|
1176
|
-
.dnb-table .dnb-table__th.dnb-table--sortable .dnb-anchor:focus:not([disabled])::before,
|
|
1177
|
-
html:not([data-whatintent='touch'])
|
|
1178
|
-
.dnb-table .dnb-table__th.dnb-table--sortable .dnb-anchor:focus:not([disabled])::before,
|
|
1179
|
-
.dnb-table .dnb-table__th.dnb-table--sortable .dnb-button:focus:not([disabled])::before,
|
|
1180
|
-
html:not([data-whatintent='touch'])
|
|
1181
|
-
.dnb-table .dnb-table__th.dnb-table--sortable .dnb-button:focus:not([disabled])::before {
|
|
1182
|
-
content: '';
|
|
1183
|
-
position: absolute;
|
|
1184
|
-
top: -0.5rem;
|
|
1185
|
-
bottom: -0.5rem;
|
|
1186
|
-
left: -1rem;
|
|
1187
|
-
right: 0.5rem; }
|
|
1188
|
-
.dnb-table > thead > tr > th.dnb-table--sortable .dnb-anchor:focus:not([disabled])::before,
|
|
1189
|
-
html:not([data-whatintent='touch']) .dnb-table > thead > tr > th.dnb-table--sortable .dnb-anchor:focus:not([disabled])::before,
|
|
1190
|
-
.dnb-table > thead > tr > th.dnb-table--sortable .dnb-button:focus:not([disabled])::before,
|
|
1191
|
-
html:not([data-whatintent='touch'])
|
|
1192
|
-
.dnb-table > thead > tr > th.dnb-table--sortable .dnb-button:focus:not([disabled])::before,
|
|
1193
|
-
.dnb-table .dnb-table__th.dnb-table--sortable .dnb-anchor:focus:not([disabled])::before,
|
|
1194
|
-
html:not([data-whatintent='touch'])
|
|
1195
|
-
.dnb-table .dnb-table__th.dnb-table--sortable .dnb-anchor:focus:not([disabled])::before,
|
|
1196
|
-
.dnb-table .dnb-table__th.dnb-table--sortable .dnb-button:focus:not([disabled])::before,
|
|
1197
|
-
html:not([data-whatintent='touch'])
|
|
1198
|
-
.dnb-table .dnb-table__th.dnb-table--sortable .dnb-button:focus:not([disabled])::before {
|
|
1199
|
-
right: -0.5rem; }
|
|
1200
|
-
.dnb-table > thead > tr > th.dnb-table--sortable .dnb-anchor:focus:not([disabled]) .dnb-icon,
|
|
1201
|
-
html:not([data-whatintent='touch']) .dnb-table > thead > tr > th.dnb-table--sortable .dnb-anchor:focus:not([disabled]) .dnb-icon,
|
|
1202
|
-
.dnb-table > thead > tr > th.dnb-table--sortable .dnb-button:focus:not([disabled]) .dnb-icon,
|
|
1203
|
-
html:not([data-whatintent='touch'])
|
|
1204
|
-
.dnb-table > thead > tr > th.dnb-table--sortable .dnb-button:focus:not([disabled]) .dnb-icon,
|
|
1205
|
-
.dnb-table .dnb-table__th.dnb-table--sortable .dnb-anchor:focus:not([disabled]) .dnb-icon,
|
|
1206
|
-
html:not([data-whatintent='touch'])
|
|
1207
|
-
.dnb-table .dnb-table__th.dnb-table--sortable .dnb-anchor:focus:not([disabled]) .dnb-icon,
|
|
1208
|
-
.dnb-table .dnb-table__th.dnb-table--sortable .dnb-button:focus:not([disabled]) .dnb-icon,
|
|
1209
|
-
html:not([data-whatintent='touch'])
|
|
1210
|
-
.dnb-table .dnb-table__th.dnb-table--sortable .dnb-button:focus:not([disabled]) .dnb-icon {
|
|
1211
|
-
opacity: 1; }
|
|
1212
|
-
.dnb-table > thead > tr > th.dnb-table--sortable .dnb-anchor:active[disabled],
|
|
1213
|
-
html:not([data-whatintent='touch']) .dnb-table > thead > tr > th.dnb-table--sortable .dnb-anchor:active[disabled],
|
|
1214
|
-
.dnb-table > thead > tr > th.dnb-table--sortable .dnb-button:active[disabled],
|
|
1215
|
-
html:not([data-whatintent='touch'])
|
|
1216
|
-
.dnb-table > thead > tr > th.dnb-table--sortable .dnb-button:active[disabled],
|
|
1217
|
-
.dnb-table .dnb-table__th.dnb-table--sortable .dnb-anchor:active[disabled],
|
|
1218
|
-
html:not([data-whatintent='touch'])
|
|
1219
|
-
.dnb-table .dnb-table__th.dnb-table--sortable .dnb-anchor:active[disabled],
|
|
1220
|
-
.dnb-table .dnb-table__th.dnb-table--sortable .dnb-button:active[disabled],
|
|
1221
|
-
html:not([data-whatintent='touch'])
|
|
1222
|
-
.dnb-table .dnb-table__th.dnb-table--sortable .dnb-button:active[disabled] {
|
|
1223
|
-
cursor: not-allowed; }
|
|
1224
|
-
.dnb-table > thead > tr > th.dnb-table--sortable .dnb-anchor:active:not([disabled]),
|
|
1225
|
-
html:not([data-whatintent='touch']) .dnb-table > thead > tr > th.dnb-table--sortable .dnb-anchor:active:not([disabled]),
|
|
1226
|
-
.dnb-table > thead > tr > th.dnb-table--sortable .dnb-button:active:not([disabled]),
|
|
1227
|
-
html:not([data-whatintent='touch'])
|
|
1228
|
-
.dnb-table > thead > tr > th.dnb-table--sortable .dnb-button:active:not([disabled]),
|
|
1229
|
-
.dnb-table .dnb-table__th.dnb-table--sortable .dnb-anchor:active:not([disabled]),
|
|
1230
|
-
html:not([data-whatintent='touch'])
|
|
1231
|
-
.dnb-table .dnb-table__th.dnb-table--sortable .dnb-anchor:active:not([disabled]),
|
|
1232
|
-
.dnb-table .dnb-table__th.dnb-table--sortable .dnb-button:active:not([disabled]),
|
|
1233
|
-
html:not([data-whatintent='touch'])
|
|
1234
|
-
.dnb-table .dnb-table__th.dnb-table--sortable .dnb-button:active:not([disabled]) {
|
|
1235
|
-
color: #14555a;
|
|
1236
|
-
color: var(--color-emerald-green); }
|
|
1237
|
-
.dnb-table > thead > tr > th.dnb-table--sortable .dnb-anchor:active:not([disabled])::before,
|
|
1238
|
-
html:not([data-whatintent='touch']) .dnb-table > thead > tr > th.dnb-table--sortable .dnb-anchor:active:not([disabled])::before,
|
|
1239
|
-
.dnb-table > thead > tr > th.dnb-table--sortable .dnb-button:active:not([disabled])::before,
|
|
1240
|
-
html:not([data-whatintent='touch'])
|
|
1241
|
-
.dnb-table > thead > tr > th.dnb-table--sortable .dnb-button:active:not([disabled])::before,
|
|
1242
|
-
.dnb-table .dnb-table__th.dnb-table--sortable .dnb-anchor:active:not([disabled])::before,
|
|
1243
|
-
html:not([data-whatintent='touch'])
|
|
1244
|
-
.dnb-table .dnb-table__th.dnb-table--sortable .dnb-anchor:active:not([disabled])::before,
|
|
1245
|
-
.dnb-table .dnb-table__th.dnb-table--sortable .dnb-button:active:not([disabled])::before,
|
|
1246
|
-
html:not([data-whatintent='touch'])
|
|
1247
|
-
.dnb-table .dnb-table__th.dnb-table--sortable .dnb-button:active:not([disabled])::before {
|
|
1248
|
-
content: '';
|
|
1249
|
-
position: absolute;
|
|
1250
|
-
z-index: 1;
|
|
1251
|
-
top: 0;
|
|
1252
|
-
left: -0.5rem;
|
|
1253
|
-
bottom: 0;
|
|
1254
|
-
right: -0.5rem;
|
|
1255
|
-
height: inherit;
|
|
1256
|
-
border-radius: inherit;
|
|
1257
|
-
outline: none; }
|
|
1258
|
-
html[data-whatinput='mouse'] .dnb-table > thead > tr > th.dnb-table--sortable .dnb-anchor:active:not([disabled])::before, html[data-whatinput='mouse']
|
|
1259
|
-
html:not([data-whatintent='touch']) .dnb-table > thead > tr > th.dnb-table--sortable .dnb-anchor:active:not([disabled])::before, html[data-whatinput='mouse']
|
|
1260
|
-
.dnb-table > thead > tr > th.dnb-table--sortable .dnb-button:active:not([disabled])::before, html[data-whatinput='mouse']
|
|
1261
|
-
html:not([data-whatintent='touch'])
|
|
1262
|
-
.dnb-table > thead > tr > th.dnb-table--sortable .dnb-button:active:not([disabled])::before, html[data-whatinput='mouse']
|
|
1263
|
-
.dnb-table .dnb-table__th.dnb-table--sortable .dnb-anchor:active:not([disabled])::before, html[data-whatinput='mouse']
|
|
1264
|
-
html:not([data-whatintent='touch'])
|
|
1265
|
-
.dnb-table .dnb-table__th.dnb-table--sortable .dnb-anchor:active:not([disabled])::before, html[data-whatinput='mouse']
|
|
1266
|
-
.dnb-table .dnb-table__th.dnb-table--sortable .dnb-button:active:not([disabled])::before, html[data-whatinput='mouse']
|
|
1267
|
-
html:not([data-whatintent='touch'])
|
|
1268
|
-
.dnb-table .dnb-table__th.dnb-table--sortable .dnb-button:active:not([disabled])::before {
|
|
1269
|
-
--border-color: var(--color-emerald-green);
|
|
1270
|
-
-webkit-box-shadow: 0 0 0 0.125rem var(--border-color);
|
|
1271
|
-
box-shadow: 0 0 0 0.125rem var(--border-color);
|
|
1272
|
-
border-color: transparent; }
|
|
1273
|
-
@media screen and (-ms-high-contrast: none) {
|
|
1274
|
-
html[data-whatinput='mouse'] .dnb-table > thead > tr > th.dnb-table--sortable .dnb-anchor:active:not([disabled])::before, html[data-whatinput='mouse']
|
|
1275
|
-
html:not([data-whatintent='touch']) .dnb-table > thead > tr > th.dnb-table--sortable .dnb-anchor:active:not([disabled])::before, html[data-whatinput='mouse']
|
|
1276
|
-
.dnb-table > thead > tr > th.dnb-table--sortable .dnb-button:active:not([disabled])::before, html[data-whatinput='mouse']
|
|
1277
|
-
html:not([data-whatintent='touch'])
|
|
1278
|
-
.dnb-table > thead > tr > th.dnb-table--sortable .dnb-button:active:not([disabled])::before, html[data-whatinput='mouse']
|
|
1279
|
-
.dnb-table .dnb-table__th.dnb-table--sortable .dnb-anchor:active:not([disabled])::before, html[data-whatinput='mouse']
|
|
1280
|
-
html:not([data-whatintent='touch'])
|
|
1281
|
-
.dnb-table .dnb-table__th.dnb-table--sortable .dnb-anchor:active:not([disabled])::before, html[data-whatinput='mouse']
|
|
1282
|
-
.dnb-table .dnb-table__th.dnb-table--sortable .dnb-button:active:not([disabled])::before, html[data-whatinput='mouse']
|
|
1283
|
-
html:not([data-whatintent='touch'])
|
|
1284
|
-
.dnb-table .dnb-table__th.dnb-table--sortable .dnb-button:active:not([disabled])::before {
|
|
1285
|
-
-webkit-box-shadow: 0 0 0 0.125rem #14555a;
|
|
1286
|
-
box-shadow: 0 0 0 0.125rem #14555a;
|
|
1287
|
-
-webkit-box-shadow: 0 0 0 0.125rem var(--color-emerald-green);
|
|
1288
|
-
box-shadow: 0 0 0 0.125rem var(--color-emerald-green); } }
|
|
1289
|
-
.dnb-table > thead > tr > th.dnb-table--sortable .dnb-anchor:active:not([disabled])::before,
|
|
1290
|
-
html:not([data-whatintent='touch']) .dnb-table > thead > tr > th.dnb-table--sortable .dnb-anchor:active:not([disabled])::before,
|
|
1291
|
-
.dnb-table > thead > tr > th.dnb-table--sortable .dnb-button:active:not([disabled])::before,
|
|
1292
|
-
html:not([data-whatintent='touch'])
|
|
1293
|
-
.dnb-table > thead > tr > th.dnb-table--sortable .dnb-button:active:not([disabled])::before,
|
|
1294
|
-
.dnb-table .dnb-table__th.dnb-table--sortable .dnb-anchor:active:not([disabled])::before,
|
|
1295
|
-
html:not([data-whatintent='touch'])
|
|
1296
|
-
.dnb-table .dnb-table__th.dnb-table--sortable .dnb-anchor:active:not([disabled])::before,
|
|
1297
|
-
.dnb-table .dnb-table__th.dnb-table--sortable .dnb-button:active:not([disabled])::before,
|
|
1298
|
-
html:not([data-whatintent='touch'])
|
|
1299
|
-
.dnb-table .dnb-table__th.dnb-table--sortable .dnb-button:active:not([disabled])::before {
|
|
1300
|
-
content: '';
|
|
1301
|
-
position: absolute;
|
|
1302
|
-
z-index: 1;
|
|
1303
|
-
top: 0;
|
|
1304
|
-
left: -0.5rem;
|
|
1305
|
-
bottom: 0;
|
|
1306
|
-
right: -0.5rem;
|
|
1307
|
-
height: inherit;
|
|
1308
|
-
border-radius: inherit;
|
|
1309
|
-
outline: none; }
|
|
1310
|
-
html[data-whatinput='touch'] .dnb-table > thead > tr > th.dnb-table--sortable .dnb-anchor:active:not([disabled])::before, html[data-whatinput='touch']
|
|
1311
|
-
html:not([data-whatintent='touch']) .dnb-table > thead > tr > th.dnb-table--sortable .dnb-anchor:active:not([disabled])::before, html[data-whatinput='touch']
|
|
1312
|
-
.dnb-table > thead > tr > th.dnb-table--sortable .dnb-button:active:not([disabled])::before, html[data-whatinput='touch']
|
|
1313
|
-
html:not([data-whatintent='touch'])
|
|
1314
|
-
.dnb-table > thead > tr > th.dnb-table--sortable .dnb-button:active:not([disabled])::before, html[data-whatinput='touch']
|
|
1315
|
-
.dnb-table .dnb-table__th.dnb-table--sortable .dnb-anchor:active:not([disabled])::before, html[data-whatinput='touch']
|
|
1316
|
-
html:not([data-whatintent='touch'])
|
|
1317
|
-
.dnb-table .dnb-table__th.dnb-table--sortable .dnb-anchor:active:not([disabled])::before, html[data-whatinput='touch']
|
|
1318
|
-
.dnb-table .dnb-table__th.dnb-table--sortable .dnb-button:active:not([disabled])::before, html[data-whatinput='touch']
|
|
1319
|
-
html:not([data-whatintent='touch'])
|
|
1320
|
-
.dnb-table .dnb-table__th.dnb-table--sortable .dnb-button:active:not([disabled])::before {
|
|
1321
|
-
--border-color: var(--color-emerald-green);
|
|
1322
|
-
-webkit-box-shadow: 0 0 0 0.125rem var(--border-color);
|
|
1323
|
-
box-shadow: 0 0 0 0.125rem var(--border-color);
|
|
1324
|
-
border-color: transparent; }
|
|
1325
|
-
@media screen and (-ms-high-contrast: none) {
|
|
1326
|
-
html[data-whatinput='touch'] .dnb-table > thead > tr > th.dnb-table--sortable .dnb-anchor:active:not([disabled])::before, html[data-whatinput='touch']
|
|
1327
|
-
html:not([data-whatintent='touch']) .dnb-table > thead > tr > th.dnb-table--sortable .dnb-anchor:active:not([disabled])::before, html[data-whatinput='touch']
|
|
1328
|
-
.dnb-table > thead > tr > th.dnb-table--sortable .dnb-button:active:not([disabled])::before, html[data-whatinput='touch']
|
|
1329
|
-
html:not([data-whatintent='touch'])
|
|
1330
|
-
.dnb-table > thead > tr > th.dnb-table--sortable .dnb-button:active:not([disabled])::before, html[data-whatinput='touch']
|
|
1331
|
-
.dnb-table .dnb-table__th.dnb-table--sortable .dnb-anchor:active:not([disabled])::before, html[data-whatinput='touch']
|
|
1332
|
-
html:not([data-whatintent='touch'])
|
|
1333
|
-
.dnb-table .dnb-table__th.dnb-table--sortable .dnb-anchor:active:not([disabled])::before, html[data-whatinput='touch']
|
|
1334
|
-
.dnb-table .dnb-table__th.dnb-table--sortable .dnb-button:active:not([disabled])::before, html[data-whatinput='touch']
|
|
1335
|
-
html:not([data-whatintent='touch'])
|
|
1336
|
-
.dnb-table .dnb-table__th.dnb-table--sortable .dnb-button:active:not([disabled])::before {
|
|
1337
|
-
-webkit-box-shadow: 0 0 0 0.125rem #14555a;
|
|
1338
|
-
box-shadow: 0 0 0 0.125rem #14555a;
|
|
1339
|
-
-webkit-box-shadow: 0 0 0 0.125rem var(--color-emerald-green);
|
|
1340
|
-
box-shadow: 0 0 0 0.125rem var(--color-emerald-green); } }
|
|
1341
|
-
.dnb-table > thead > tr > th.dnb-table--sortable .dnb-anchor:active:not([disabled])::before,
|
|
1342
|
-
html:not([data-whatintent='touch']) .dnb-table > thead > tr > th.dnb-table--sortable .dnb-anchor:active:not([disabled])::before,
|
|
1343
|
-
.dnb-table > thead > tr > th.dnb-table--sortable .dnb-button:active:not([disabled])::before,
|
|
1344
|
-
html:not([data-whatintent='touch'])
|
|
1345
|
-
.dnb-table > thead > tr > th.dnb-table--sortable .dnb-button:active:not([disabled])::before,
|
|
1346
|
-
.dnb-table .dnb-table__th.dnb-table--sortable .dnb-anchor:active:not([disabled])::before,
|
|
1347
|
-
html:not([data-whatintent='touch'])
|
|
1348
|
-
.dnb-table .dnb-table__th.dnb-table--sortable .dnb-anchor:active:not([disabled])::before,
|
|
1349
|
-
.dnb-table .dnb-table__th.dnb-table--sortable .dnb-button:active:not([disabled])::before,
|
|
1350
|
-
html:not([data-whatintent='touch'])
|
|
1351
|
-
.dnb-table .dnb-table__th.dnb-table--sortable .dnb-button:active:not([disabled])::before {
|
|
1352
|
-
content: '';
|
|
1353
|
-
position: absolute;
|
|
1354
|
-
top: -0.5rem;
|
|
1355
|
-
bottom: -0.5rem;
|
|
1356
|
-
left: -1rem;
|
|
1357
|
-
right: 0.5rem; }
|
|
1358
|
-
.dnb-table > thead > tr > th.dnb-table--sortable .dnb-anchor:active:not([disabled])::before,
|
|
1359
|
-
html:not([data-whatintent='touch']) .dnb-table > thead > tr > th.dnb-table--sortable .dnb-anchor:active:not([disabled])::before,
|
|
1360
|
-
.dnb-table > thead > tr > th.dnb-table--sortable .dnb-button:active:not([disabled])::before,
|
|
1361
|
-
html:not([data-whatintent='touch'])
|
|
1362
|
-
.dnb-table > thead > tr > th.dnb-table--sortable .dnb-button:active:not([disabled])::before,
|
|
1363
|
-
.dnb-table .dnb-table__th.dnb-table--sortable .dnb-anchor:active:not([disabled])::before,
|
|
1364
|
-
html:not([data-whatintent='touch'])
|
|
1365
|
-
.dnb-table .dnb-table__th.dnb-table--sortable .dnb-anchor:active:not([disabled])::before,
|
|
1366
|
-
.dnb-table .dnb-table__th.dnb-table--sortable .dnb-button:active:not([disabled])::before,
|
|
1367
|
-
html:not([data-whatintent='touch'])
|
|
1368
|
-
.dnb-table .dnb-table__th.dnb-table--sortable .dnb-button:active:not([disabled])::before {
|
|
1369
|
-
right: -0.5rem; }
|
|
1370
|
-
.dnb-table > thead > tr > th.dnb-table--sortable .dnb-anchor:hover:focus:not(:active) .dnb-button__text::after,
|
|
1371
|
-
.dnb-table > thead > tr > th.dnb-table--sortable .dnb-button:hover:focus:not(:active) .dnb-button__text::after,
|
|
1372
|
-
.dnb-table .dnb-table__th.dnb-table--sortable .dnb-anchor:hover:focus:not(:active) .dnb-button__text::after,
|
|
1373
|
-
.dnb-table .dnb-table__th.dnb-table--sortable .dnb-button:hover:focus:not(:active) .dnb-button__text::after {
|
|
1374
|
-
visibility: hidden; }
|
|
1375
|
-
.dnb-table > thead > tr > th.dnb-table--active .dnb-anchor:not(:hover) .dnb-button__text::after,
|
|
1376
|
-
.dnb-table > thead > tr > th.dnb-table--active .dnb-button:not(:hover) .dnb-button__text::after,
|
|
1377
|
-
.dnb-table .dnb-table__th.dnb-table--active .dnb-anchor:not(:hover) .dnb-button__text::after,
|
|
1378
|
-
.dnb-table .dnb-table__th.dnb-table--active .dnb-button:not(:hover) .dnb-button__text::after {
|
|
1379
|
-
opacity: 0; }
|
|
1380
|
-
.dnb-table > thead > tr > th.dnb-table--active .dnb-anchor .dnb-icon,
|
|
1381
|
-
.dnb-table > thead > tr > th.dnb-table--active .dnb-button .dnb-icon,
|
|
1382
|
-
.dnb-table .dnb-table__th.dnb-table--active .dnb-anchor .dnb-icon,
|
|
1383
|
-
.dnb-table .dnb-table__th.dnb-table--active .dnb-button .dnb-icon {
|
|
1384
|
-
opacity: 1; }
|
|
1385
|
-
html:not([data-whatintent='touch']) .dnb-table > thead > tr > th.dnb-table--active .dnb-anchor:hover[disabled], html:not([data-whatintent='touch'])
|
|
1386
|
-
.dnb-table > thead > tr > th.dnb-table--active .dnb-button:hover[disabled], html:not([data-whatintent='touch'])
|
|
1387
|
-
.dnb-table .dnb-table__th.dnb-table--active .dnb-anchor:hover[disabled], html:not([data-whatintent='touch'])
|
|
1388
|
-
.dnb-table .dnb-table__th.dnb-table--active .dnb-button:hover[disabled] {
|
|
1389
|
-
cursor: not-allowed; }
|
|
1390
|
-
html:not([data-whatintent='touch']) .dnb-table > thead > tr > th.dnb-table--active .dnb-anchor:hover:not([disabled]) .dnb-button__text::after, html:not([data-whatintent='touch'])
|
|
1391
|
-
.dnb-table > thead > tr > th.dnb-table--active .dnb-button:hover:not([disabled]) .dnb-button__text::after, html:not([data-whatintent='touch'])
|
|
1392
|
-
.dnb-table .dnb-table__th.dnb-table--active .dnb-anchor:hover:not([disabled]) .dnb-button__text::after, html:not([data-whatintent='touch'])
|
|
1393
|
-
.dnb-table .dnb-table__th.dnb-table--active .dnb-button:hover:not([disabled]) .dnb-button__text::after {
|
|
1394
|
-
color: #007272;
|
|
1395
|
-
color: var(--color-sea-green);
|
|
1396
|
-
opacity: 1; }
|
|
1397
|
-
.dnb-table > thead > tr > th.dnb-table--active .dnb-anchor:hover:focus:not(:active) .dnb-button__text::after,
|
|
1398
|
-
.dnb-table > thead > tr > th.dnb-table--active .dnb-button:hover:focus:not(:active) .dnb-button__text::after,
|
|
1399
|
-
.dnb-table .dnb-table__th.dnb-table--active .dnb-anchor:hover:focus:not(:active) .dnb-button__text::after,
|
|
1400
|
-
.dnb-table .dnb-table__th.dnb-table--active .dnb-button:hover:focus:not(:active) .dnb-button__text::after {
|
|
1401
|
-
visibility: visible; }
|
|
1402
|
-
html[data-whatinput='keyboard']
|
|
1403
|
-
.dnb-table >
|
|
1404
|
-
thead > tr > th.dnb-table--active .dnb-anchor:hover:focus .dnb-button__text::after, html[data-whatinput='keyboard']
|
|
1405
|
-
.dnb-table >
|
|
1406
|
-
thead > tr > th.dnb-table--active .dnb-button:hover:focus .dnb-button__text::after, html[data-whatinput='keyboard']
|
|
1407
|
-
.dnb-table .dnb-table__th.dnb-table--active .dnb-anchor:hover:focus .dnb-button__text::after, html[data-whatinput='keyboard']
|
|
1408
|
-
.dnb-table .dnb-table__th.dnb-table--active .dnb-button:hover:focus .dnb-button__text::after {
|
|
1409
|
-
visibility: hidden; }
|
|
1410
|
-
.dnb-table > thead > tr > th.dnb-table--reversed .dnb-anchor .dnb-icon,
|
|
1411
|
-
.dnb-table > thead > tr > th.dnb-table--reversed .dnb-button .dnb-icon,
|
|
1412
|
-
.dnb-table .dnb-table__th.dnb-table--reversed .dnb-anchor .dnb-icon,
|
|
1413
|
-
.dnb-table .dnb-table__th.dnb-table--reversed .dnb-button .dnb-icon {
|
|
1414
|
-
-webkit-transform: rotate(180deg);
|
|
1415
|
-
transform: rotate(180deg);
|
|
1416
|
-
-webkit-transform-origin: 50% 50%;
|
|
1417
|
-
transform-origin: 50% 50%; }
|
|
1418
|
-
.dnb-table > thead > tr > th.dnb-table--no-wrap,
|
|
1419
|
-
.dnb-table > tbody > tr > th.dnb-table--no-wrap,
|
|
1420
|
-
.dnb-table .dnb-table__th.dnb-table--no-wrap {
|
|
1421
|
-
white-space: nowrap; }
|
|
1422
|
-
.dnb-table > tr > td,
|
|
1423
|
-
.dnb-table > tbody > tr > td,
|
|
1424
|
-
.dnb-table .dnb-table__td,
|
|
1425
|
-
.dnb-table > tr > th[scope='row'] {
|
|
1426
|
-
padding: 1rem;
|
|
1427
|
-
padding: var(--spacing-small);
|
|
1428
|
-
padding-top: 1.25rem;
|
|
1429
|
-
padding-top: calc(1rem * 1.25);
|
|
1430
|
-
padding-top: calc(var(--spacing-small)*1.25);
|
|
1431
|
-
padding-top: calc(var(--spacing-small) * 1.25);
|
|
1432
|
-
padding-bottom: 1.188rem;
|
|
1433
|
-
padding-bottom: calc(1rem * 1.188);
|
|
1434
|
-
padding-bottom: calc(var(--spacing-small)*1.188);
|
|
1435
|
-
padding-bottom: calc(var(--spacing-small) * 1.188);
|
|
1436
|
-
/* 19/16 */
|
|
1437
|
-
color: currentColor;
|
|
1438
|
-
color: var(--theme-color-black-80, currentColor); }
|
|
1439
|
-
.dnb-table > tbody > tr:not(.dnb-table--ignore),
|
|
1440
|
-
.dnb-table .dnb-table__tr:not(.dnb-table--ignore),
|
|
1441
|
-
.dnb-table .dnb-table--odd:not(.dnb-table--ignore) {
|
|
1442
|
-
background-color: #fff;
|
|
1443
|
-
background-color: var(--color-white); }
|
|
1444
|
-
.dnb-table > tbody > tr:not(.dnb-table--odd):nth-of-type(2n):not(.dnb-table--ignore),
|
|
1445
|
-
.dnb-table .dnb-table__tr:not(.dnb-table--odd):nth-of-type(2n):not(.dnb-table--ignore),
|
|
1446
|
-
.dnb-table .dnb-table--even:not(.dnb-table--ignore) {
|
|
1447
|
-
background-color: #f4fbf9;
|
|
1448
|
-
background-color: var(--color-mint-green-12); }
|
|
1449
|
-
.dnb-table > tbody > tr:last-of-type > td,
|
|
1450
|
-
.dnb-table .dnb-table__tr:last-of-type .dnb-table__td {
|
|
1451
|
-
border-bottom: 1px solid #d2f0e9;
|
|
1452
|
-
border-bottom: 1px solid var(--color-mint-green-50); }
|
|
1453
|
-
.dnb-table, .dnb-table--left {
|
|
1454
|
-
text-align: left; }
|
|
1455
|
-
.dnb-table--right {
|
|
1456
|
-
text-align: right; }
|
|
1457
|
-
.dnb-table--center {
|
|
1458
|
-
text-align: center; }
|
|
1459
|
-
.dnb-table > caption {
|
|
1460
|
-
font-size: 1rem;
|
|
1461
|
-
font-size: var(--font-size-small);
|
|
1462
|
-
margin-top: 0.5rem;
|
|
1463
|
-
margin-top: var(--spacing-x-small);
|
|
1464
|
-
caption-side: bottom; }
|
|
1465
|
-
.dnb-table tr.sticky {
|
|
1466
|
-
top: 0; }
|
|
1467
|
-
.dnb-table tr.sticky th {
|
|
1468
|
-
position: sticky;
|
|
1469
|
-
top: inherit;
|
|
1470
|
-
z-index: 2; }
|
|
1471
|
-
.dnb-table tr.sticky th::after {
|
|
1472
|
-
content: '';
|
|
1473
|
-
position: absolute;
|
|
1474
|
-
opacity: 0;
|
|
1475
|
-
left: 0;
|
|
1476
|
-
right: 0;
|
|
1477
|
-
bottom: 0;
|
|
1478
|
-
height: 6px;
|
|
1479
|
-
-webkit-box-shadow: 0 -2px 12px 8px rgba(51, 51, 51, 0.08);
|
|
1480
|
-
box-shadow: 0 -2px 12px 8px rgba(51, 51, 51, 0.08);
|
|
1481
|
-
-webkit-box-shadow: var(--shadow-default-x) -2px 12px 8px var(--shadow-default-color);
|
|
1482
|
-
box-shadow: var(--shadow-default-x) -2px 12px 8px var(--shadow-default-color);
|
|
1483
|
-
-webkit-clip-path: inset(6px 0 -48px 0);
|
|
1484
|
-
clip-path: inset(6px 0 -48px 0);
|
|
1485
|
-
-webkit-transition: opacity 300ms ease-out;
|
|
1486
|
-
transition: opacity 300ms ease-out; }
|
|
1487
|
-
[data-visual-test-wrapper] .dnb-table tr.sticky th::after {
|
|
1488
|
-
-webkit-transition: none;
|
|
1489
|
-
transition: none; }
|
|
1490
|
-
.dnb-table tr.sticky.show-shadow th::after {
|
|
1491
|
-
opacity: 1; }
|
|
1492
|
-
.dnb-table--small,
|
|
1493
|
-
.dnb-table--small > tr > th,
|
|
1494
|
-
.dnb-table--small > tr > td,
|
|
1495
|
-
.dnb-table--small > thead > tr > th,
|
|
1496
|
-
.dnb-table--small > tbody > tr > td {
|
|
1497
|
-
font-size: 1rem;
|
|
1498
|
-
font-size: var(--font-size-small); }
|
|
1499
|
-
.dnb-table > tr.dnb-table--small > th,
|
|
1500
|
-
.dnb-table > tr.dnb-table--small > td,
|
|
1501
|
-
.dnb-table > thead > tr.dnb-table--small > th,
|
|
1502
|
-
.dnb-table > tbody > tr.dnb-table--small > td {
|
|
1503
|
-
font-size: 1rem;
|
|
1504
|
-
font-size: var(--font-size-small); }
|
|
1505
|
-
.dnb-table > tr > th.dnb-table--small,
|
|
1506
|
-
.dnb-table > tr > td.dnb-table--small,
|
|
1507
|
-
.dnb-table > thead > tr > th.dnb-table--small,
|
|
1508
|
-
.dnb-table > tbody > tr > td.dnb-table--small, .dnb-table__th.dnb-table--small, .dnb-table__td.dnb-table--small {
|
|
1509
|
-
font-size: 1rem;
|
|
1510
|
-
font-size: var(--font-size-small); }
|
|
1511
|
-
.dnb-table--x-small,
|
|
1512
|
-
.dnb-table--x-small > tr > th,
|
|
1513
|
-
.dnb-table--x-small > tr > td,
|
|
1514
|
-
.dnb-table--x-small > thead > tr > th,
|
|
1515
|
-
.dnb-table--x-small > tbody > tr > td {
|
|
1516
|
-
font-size: 0.875rem;
|
|
1517
|
-
font-size: var(--font-size-x-small); }
|
|
1518
|
-
.dnb-table > tr.dnb-table--x-small > th,
|
|
1519
|
-
.dnb-table > tr.dnb-table--x-small > td,
|
|
1520
|
-
.dnb-table > thead > tr.dnb-table--x-small > th,
|
|
1521
|
-
.dnb-table > tbody > tr.dnb-table--x-small > td {
|
|
1522
|
-
font-size: 0.875rem;
|
|
1523
|
-
font-size: var(--font-size-x-small); }
|
|
1524
|
-
.dnb-table > tr > th.dnb-table--x-small,
|
|
1525
|
-
.dnb-table > tr > td.dnb-table--x-small,
|
|
1526
|
-
.dnb-table > thead > tr > th.dnb-table--x-small,
|
|
1527
|
-
.dnb-table > tbody > tr > td.dnb-table--x-small, .dnb-table__th.dnb-table--x-small, .dnb-table__td.dnb-table--x-small {
|
|
1528
|
-
font-size: 0.875rem;
|
|
1529
|
-
font-size: var(--font-size-x-small); }
|
|
1530
|
-
.dnb-table.dnb-skeleton > * {
|
|
1531
|
-
-webkit-text-fill-color: #ebebeb;
|
|
1532
|
-
-webkit-text-fill-color: var(--skeleton-color); }
|
|
1533
|
-
|
|
1534
|
-
.dnb-spacing .dnb-table p,
|
|
1535
|
-
.dnb-spacing .dnb-table ul,
|
|
1536
|
-
.dnb-spacing .dnb-table ol,
|
|
1537
|
-
.dnb-spacing .dnb-table dl,
|
|
1538
|
-
.dnb-spacing .dnb-table pre {
|
|
1539
|
-
margin-top: 0;
|
|
1540
|
-
margin-bottom: 0; }
|
|
1541
|
-
|
|
1542
1009
|
/*
|
|
1543
1010
|
* Label
|
|
1544
1011
|
*
|
|
@@ -2476,537 +1943,6 @@ thead > tr > th.dnb-table--active .dnb-button:hover:focus .dnb-button__text::aft
|
|
|
2476
1943
|
margin-top: 0;
|
|
2477
1944
|
margin-bottom: 1.5rem; }
|
|
2478
1945
|
|
|
2479
|
-
.dnb-core-style table {
|
|
2480
|
-
display: table;
|
|
2481
|
-
table-layout: auto;
|
|
2482
|
-
width: 100%;
|
|
2483
|
-
overflow: auto;
|
|
2484
|
-
margin-top: 0;
|
|
2485
|
-
margin-bottom: 1rem;
|
|
2486
|
-
margin-bottom: var(--spacing-small);
|
|
2487
|
-
border-spacing: 0;
|
|
2488
|
-
border-collapse: collapse;
|
|
2489
|
-
/* stylelint-disable-next-line */
|
|
2490
|
-
/* stylelint-disable-next-line */
|
|
2491
|
-
/* stylelint-disable-next-line */
|
|
2492
|
-
/* stylelint-disable */
|
|
2493
|
-
/* stylelint-enable */ }
|
|
2494
|
-
.dnb-core-style table--fixed {
|
|
2495
|
-
table-layout: fixed; }
|
|
2496
|
-
.dnb-core-style table__sticky-helper > td {
|
|
2497
|
-
display: block;
|
|
2498
|
-
overflow: hidden;
|
|
2499
|
-
padding: 0 !important;
|
|
2500
|
-
height: 0; }
|
|
2501
|
-
.dnb-core-style table > tr > th,
|
|
2502
|
-
.dnb-core-style table > tr > td,
|
|
2503
|
-
.dnb-core-style table > thead > tr > th,
|
|
2504
|
-
.dnb-core-style table > tbody > tr > td,
|
|
2505
|
-
.dnb-core-style table .dnb-core-style table__th,
|
|
2506
|
-
.dnb-core-style table .dnb-core-style table__td {
|
|
2507
|
-
border-bottom: 1px solid transparent;
|
|
2508
|
-
font-size: 1.125rem;
|
|
2509
|
-
font-size: var(--font-size-basis);
|
|
2510
|
-
line-height: 1.5rem;
|
|
2511
|
-
line-height: var(--line-height-basis);
|
|
2512
|
-
border-spacing: 0;
|
|
2513
|
-
word-break: keep-all; }
|
|
2514
|
-
.dnb-core-style table > tr > th,
|
|
2515
|
-
.dnb-core-style table > thead > tr > th,
|
|
2516
|
-
.dnb-core-style table .dnb-core-style table__th {
|
|
2517
|
-
padding: 3rem 1rem 0.5rem;
|
|
2518
|
-
padding: var(--spacing-x-large) var(--spacing-small) var(--spacing-x-small);
|
|
2519
|
-
font-weight: 500;
|
|
2520
|
-
font-weight: var(--font-weight-medium);
|
|
2521
|
-
color: #14555a;
|
|
2522
|
-
color: var(--color-emerald-green);
|
|
2523
|
-
vertical-align: bottom;
|
|
2524
|
-
background-color: #d2f0e9;
|
|
2525
|
-
background-color: var(--color-mint-green-50);
|
|
2526
|
-
border-bottom: 1px solid #a5e1d2;
|
|
2527
|
-
border-bottom: 1px solid var(--color-mint-green); }
|
|
2528
|
-
.dnb-core-style table > tr > th:not([align]):not(.dnb-table--left):not(.dnb-table--right):not(.dnb-table--center),
|
|
2529
|
-
.dnb-core-style table > thead > tr > th:not([align]):not(.dnb-table--left):not(.dnb-table--right):not(.dnb-table--center),
|
|
2530
|
-
.dnb-core-style table .dnb-core-style table__th:not([align]):not(.dnb-table--left):not(.dnb-table--right):not(.dnb-table--center) {
|
|
2531
|
-
text-align: inherit; }
|
|
2532
|
-
@supports (-moz-appearance: meterbar) and (background-blend-mode: difference, normal) {
|
|
2533
|
-
.dnb-core-style table > tr > th,
|
|
2534
|
-
.dnb-core-style table > thead > tr > th,
|
|
2535
|
-
.dnb-core-style table .dnb-core-style table__th {
|
|
2536
|
-
padding-bottom: calc(0.5rem - 0.5px);
|
|
2537
|
-
padding-bottom: calc(var(--spacing-x-small) - 0.5px); } }
|
|
2538
|
-
.dnb-core-style table > thead > tr > th.dnb-core-style table--sortable,
|
|
2539
|
-
.dnb-core-style table .dnb-core-style table__th.dnb-core-style table--sortable {
|
|
2540
|
-
color: #14555a;
|
|
2541
|
-
color: var(--color-emerald-green); }
|
|
2542
|
-
.dnb-core-style table > thead > tr > th.dnb-core-style table--sortable .dnb-anchor,
|
|
2543
|
-
.dnb-core-style table > thead > tr > th.dnb-core-style table--sortable .dnb-button,
|
|
2544
|
-
.dnb-core-style table .dnb-core-style table__th.dnb-core-style table--sortable .dnb-anchor,
|
|
2545
|
-
.dnb-core-style table .dnb-core-style table__th.dnb-core-style table--sortable .dnb-button {
|
|
2546
|
-
position: relative;
|
|
2547
|
-
z-index: 1;
|
|
2548
|
-
-webkit-box-align: end;
|
|
2549
|
-
-ms-flex-align: end;
|
|
2550
|
-
align-items: flex-end;
|
|
2551
|
-
-webkit-box-shadow: none;
|
|
2552
|
-
box-shadow: none;
|
|
2553
|
-
line-height: 1.5rem;
|
|
2554
|
-
line-height: var(--line-height-basis);
|
|
2555
|
-
margin: 0;
|
|
2556
|
-
padding: 0;
|
|
2557
|
-
padding-right: 0.5rem;
|
|
2558
|
-
color: inherit;
|
|
2559
|
-
font-weight: 500;
|
|
2560
|
-
font-weight: var(--font-weight-medium);
|
|
2561
|
-
text-align: inherit;
|
|
2562
|
-
font-size: inherit; }
|
|
2563
|
-
.dnb-core-style table > thead > tr > th.dnb-core-style table--sortable .dnb-anchor > .dnb-icon,
|
|
2564
|
-
.dnb-core-style table > thead > tr > th.dnb-core-style table--sortable .dnb-button > .dnb-icon,
|
|
2565
|
-
.dnb-core-style table .dnb-core-style table__th.dnb-core-style table--sortable .dnb-anchor > .dnb-icon,
|
|
2566
|
-
.dnb-core-style table .dnb-core-style table__th.dnb-core-style table--sortable .dnb-button > .dnb-icon {
|
|
2567
|
-
opacity: 0;
|
|
2568
|
-
-webkit-transition: opacity 200ms ease-out, -webkit-transform 500ms ease-out;
|
|
2569
|
-
transition: opacity 200ms ease-out, -webkit-transform 500ms ease-out;
|
|
2570
|
-
transition: opacity 200ms ease-out, transform 500ms ease-out;
|
|
2571
|
-
transition: opacity 200ms ease-out, transform 500ms ease-out, -webkit-transform 500ms ease-out; }
|
|
2572
|
-
[data-visual-test-wrapper] .dnb-core-style table > thead > tr > th.dnb-core-style table--sortable .dnb-anchor > .dnb-icon, [data-visual-test-wrapper]
|
|
2573
|
-
.dnb-core-style table > thead > tr > th.dnb-core-style table--sortable .dnb-button > .dnb-icon, [data-visual-test-wrapper]
|
|
2574
|
-
.dnb-core-style table .dnb-core-style table__th.dnb-core-style table--sortable .dnb-anchor > .dnb-icon, [data-visual-test-wrapper]
|
|
2575
|
-
.dnb-core-style table .dnb-core-style table__th.dnb-core-style table--sortable .dnb-button > .dnb-icon {
|
|
2576
|
-
-webkit-transition: none;
|
|
2577
|
-
transition: none; }
|
|
2578
|
-
.dnb-core-style table > thead > tr > th.dnb-core-style table--sortable .dnb-anchor .dnb-button__text,
|
|
2579
|
-
.dnb-core-style table > thead > tr > th.dnb-core-style table--sortable .dnb-button .dnb-button__text,
|
|
2580
|
-
.dnb-core-style table .dnb-core-style table__th.dnb-core-style table--sortable .dnb-anchor .dnb-button__text,
|
|
2581
|
-
.dnb-core-style table .dnb-core-style table__th.dnb-core-style table--sortable .dnb-button .dnb-button__text {
|
|
2582
|
-
margin: 0;
|
|
2583
|
-
font-size: inherit; }
|
|
2584
|
-
.dnb-core-style table > thead > tr > th.dnb-core-style table--sortable .dnb-anchor .dnb-button__text::after,
|
|
2585
|
-
.dnb-core-style table > thead > tr > th.dnb-core-style table--sortable .dnb-button .dnb-button__text::after,
|
|
2586
|
-
.dnb-core-style table .dnb-core-style table__th.dnb-core-style table--sortable .dnb-anchor .dnb-button__text::after,
|
|
2587
|
-
.dnb-core-style table .dnb-core-style table__th.dnb-core-style table--sortable .dnb-button .dnb-button__text::after {
|
|
2588
|
-
right: 1rem; }
|
|
2589
|
-
.dnb-core-style table > thead > tr > th.dnb-core-style table--sortable .dnb-anchor .dnb-button__icon,
|
|
2590
|
-
.dnb-core-style table > thead > tr > th.dnb-core-style table--sortable .dnb-button .dnb-button__icon,
|
|
2591
|
-
.dnb-core-style table .dnb-core-style table__th.dnb-core-style table--sortable .dnb-anchor .dnb-button__icon,
|
|
2592
|
-
.dnb-core-style table .dnb-core-style table__th.dnb-core-style table--sortable .dnb-button .dnb-button__icon {
|
|
2593
|
-
-ms-flex-item-align: end;
|
|
2594
|
-
align-self: flex-end;
|
|
2595
|
-
margin-top: auto;
|
|
2596
|
-
margin-bottom: 0.25rem; }
|
|
2597
|
-
.dnb-core-style table > thead > tr > th.dnb-core-style table--sortable .dnb-anchor:not(:focus) .dnb-button__text::after,
|
|
2598
|
-
.dnb-core-style table > thead > tr > th.dnb-core-style table--sortable .dnb-button:not(:focus) .dnb-button__text::after,
|
|
2599
|
-
.dnb-core-style table .dnb-core-style table__th.dnb-core-style table--sortable .dnb-anchor:not(:focus) .dnb-button__text::after,
|
|
2600
|
-
.dnb-core-style table .dnb-core-style table__th.dnb-core-style table--sortable .dnb-button:not(:focus) .dnb-button__text::after {
|
|
2601
|
-
opacity: 1;
|
|
2602
|
-
color: #14555a;
|
|
2603
|
-
color: var(--color-emerald-green); }
|
|
2604
|
-
html:not([data-whatintent='touch']) .dnb-core-style table > thead > tr > th.dnb-core-style table--sortable .dnb-anchor:hover[disabled], html:not([data-whatintent='touch'])
|
|
2605
|
-
.dnb-core-style table > thead > tr > th.dnb-core-style table--sortable .dnb-button:hover[disabled], html:not([data-whatintent='touch'])
|
|
2606
|
-
.dnb-core-style table .dnb-core-style table__th.dnb-core-style table--sortable .dnb-anchor:hover[disabled], html:not([data-whatintent='touch'])
|
|
2607
|
-
.dnb-core-style table .dnb-core-style table__th.dnb-core-style table--sortable .dnb-button:hover[disabled] {
|
|
2608
|
-
cursor: not-allowed; }
|
|
2609
|
-
html:not([data-whatintent='touch']) .dnb-core-style table > thead > tr > th.dnb-core-style table--sortable .dnb-anchor:hover:not([disabled]), html:not([data-whatintent='touch'])
|
|
2610
|
-
.dnb-core-style table > thead > tr > th.dnb-core-style table--sortable .dnb-button:hover:not([disabled]), html:not([data-whatintent='touch'])
|
|
2611
|
-
.dnb-core-style table .dnb-core-style table__th.dnb-core-style table--sortable .dnb-anchor:hover:not([disabled]), html:not([data-whatintent='touch'])
|
|
2612
|
-
.dnb-core-style table .dnb-core-style table__th.dnb-core-style table--sortable .dnb-button:hover:not([disabled]) {
|
|
2613
|
-
color: #007272;
|
|
2614
|
-
color: var(--color-sea-green); }
|
|
2615
|
-
html:not([data-whatintent='touch']) .dnb-core-style table > thead > tr > th.dnb-core-style table--sortable .dnb-anchor:hover:not([disabled]):not(:focus) .dnb-icon, html:not([data-whatintent='touch'])
|
|
2616
|
-
.dnb-core-style table > thead > tr > th.dnb-core-style table--sortable .dnb-button:hover:not([disabled]):not(:focus) .dnb-icon, html:not([data-whatintent='touch'])
|
|
2617
|
-
.dnb-core-style table .dnb-core-style table__th.dnb-core-style table--sortable .dnb-anchor:hover:not([disabled]):not(:focus) .dnb-icon, html:not([data-whatintent='touch'])
|
|
2618
|
-
.dnb-core-style table .dnb-core-style table__th.dnb-core-style table--sortable .dnb-button:hover:not([disabled]):not(:focus) .dnb-icon {
|
|
2619
|
-
opacity: 1; }
|
|
2620
|
-
html:not([data-whatintent='touch']) .dnb-core-style table > thead > tr > th.dnb-core-style table--sortable .dnb-anchor:hover:not([disabled]) .dnb-button__text::after, html:not([data-whatintent='touch'])
|
|
2621
|
-
.dnb-core-style table > thead > tr > th.dnb-core-style table--sortable .dnb-button:hover:not([disabled]) .dnb-button__text::after, html:not([data-whatintent='touch'])
|
|
2622
|
-
.dnb-core-style table .dnb-core-style table__th.dnb-core-style table--sortable .dnb-anchor:hover:not([disabled]) .dnb-button__text::after, html:not([data-whatintent='touch'])
|
|
2623
|
-
.dnb-core-style table .dnb-core-style table__th.dnb-core-style table--sortable .dnb-button:hover:not([disabled]) .dnb-button__text::after {
|
|
2624
|
-
opacity: 0; }
|
|
2625
|
-
.dnb-core-style table > thead > tr > th.dnb-core-style table--sortable .dnb-anchor:focus[disabled],
|
|
2626
|
-
html:not([data-whatintent='touch']) .dnb-core-style table > thead > tr > th.dnb-core-style table--sortable .dnb-anchor:focus[disabled],
|
|
2627
|
-
.dnb-core-style table > thead > tr > th.dnb-core-style table--sortable .dnb-button:focus[disabled],
|
|
2628
|
-
html:not([data-whatintent='touch'])
|
|
2629
|
-
.dnb-core-style table > thead > tr > th.dnb-core-style table--sortable .dnb-button:focus[disabled],
|
|
2630
|
-
.dnb-core-style table .dnb-core-style table__th.dnb-core-style table--sortable .dnb-anchor:focus[disabled],
|
|
2631
|
-
html:not([data-whatintent='touch'])
|
|
2632
|
-
.dnb-core-style table .dnb-core-style table__th.dnb-core-style table--sortable .dnb-anchor:focus[disabled],
|
|
2633
|
-
.dnb-core-style table .dnb-core-style table__th.dnb-core-style table--sortable .dnb-button:focus[disabled],
|
|
2634
|
-
html:not([data-whatintent='touch'])
|
|
2635
|
-
.dnb-core-style table .dnb-core-style table__th.dnb-core-style table--sortable .dnb-button:focus[disabled] {
|
|
2636
|
-
cursor: not-allowed; }
|
|
2637
|
-
.dnb-core-style table > thead > tr > th.dnb-core-style table--sortable .dnb-anchor:focus:not([disabled])::before,
|
|
2638
|
-
html:not([data-whatintent='touch']) .dnb-core-style table > thead > tr > th.dnb-core-style table--sortable .dnb-anchor:focus:not([disabled])::before,
|
|
2639
|
-
.dnb-core-style table > thead > tr > th.dnb-core-style table--sortable .dnb-button:focus:not([disabled])::before,
|
|
2640
|
-
html:not([data-whatintent='touch'])
|
|
2641
|
-
.dnb-core-style table > thead > tr > th.dnb-core-style table--sortable .dnb-button:focus:not([disabled])::before,
|
|
2642
|
-
.dnb-core-style table .dnb-core-style table__th.dnb-core-style table--sortable .dnb-anchor:focus:not([disabled])::before,
|
|
2643
|
-
html:not([data-whatintent='touch'])
|
|
2644
|
-
.dnb-core-style table .dnb-core-style table__th.dnb-core-style table--sortable .dnb-anchor:focus:not([disabled])::before,
|
|
2645
|
-
.dnb-core-style table .dnb-core-style table__th.dnb-core-style table--sortable .dnb-button:focus:not([disabled])::before,
|
|
2646
|
-
html:not([data-whatintent='touch'])
|
|
2647
|
-
.dnb-core-style table .dnb-core-style table__th.dnb-core-style table--sortable .dnb-button:focus:not([disabled])::before {
|
|
2648
|
-
content: '';
|
|
2649
|
-
position: absolute;
|
|
2650
|
-
top: -0.5rem;
|
|
2651
|
-
bottom: -0.5rem;
|
|
2652
|
-
left: -1rem;
|
|
2653
|
-
right: 0.5rem; }
|
|
2654
|
-
.dnb-core-style table > thead > tr > th.dnb-core-style table--sortable .dnb-anchor:focus:not([disabled])::before,
|
|
2655
|
-
html:not([data-whatintent='touch']) .dnb-core-style table > thead > tr > th.dnb-core-style table--sortable .dnb-anchor:focus:not([disabled])::before,
|
|
2656
|
-
.dnb-core-style table > thead > tr > th.dnb-core-style table--sortable .dnb-button:focus:not([disabled])::before,
|
|
2657
|
-
html:not([data-whatintent='touch'])
|
|
2658
|
-
.dnb-core-style table > thead > tr > th.dnb-core-style table--sortable .dnb-button:focus:not([disabled])::before,
|
|
2659
|
-
.dnb-core-style table .dnb-core-style table__th.dnb-core-style table--sortable .dnb-anchor:focus:not([disabled])::before,
|
|
2660
|
-
html:not([data-whatintent='touch'])
|
|
2661
|
-
.dnb-core-style table .dnb-core-style table__th.dnb-core-style table--sortable .dnb-anchor:focus:not([disabled])::before,
|
|
2662
|
-
.dnb-core-style table .dnb-core-style table__th.dnb-core-style table--sortable .dnb-button:focus:not([disabled])::before,
|
|
2663
|
-
html:not([data-whatintent='touch'])
|
|
2664
|
-
.dnb-core-style table .dnb-core-style table__th.dnb-core-style table--sortable .dnb-button:focus:not([disabled])::before {
|
|
2665
|
-
right: -0.5rem; }
|
|
2666
|
-
.dnb-core-style table > thead > tr > th.dnb-core-style table--sortable .dnb-anchor:focus:not([disabled]) .dnb-icon,
|
|
2667
|
-
html:not([data-whatintent='touch']) .dnb-core-style table > thead > tr > th.dnb-core-style table--sortable .dnb-anchor:focus:not([disabled]) .dnb-icon,
|
|
2668
|
-
.dnb-core-style table > thead > tr > th.dnb-core-style table--sortable .dnb-button:focus:not([disabled]) .dnb-icon,
|
|
2669
|
-
html:not([data-whatintent='touch'])
|
|
2670
|
-
.dnb-core-style table > thead > tr > th.dnb-core-style table--sortable .dnb-button:focus:not([disabled]) .dnb-icon,
|
|
2671
|
-
.dnb-core-style table .dnb-core-style table__th.dnb-core-style table--sortable .dnb-anchor:focus:not([disabled]) .dnb-icon,
|
|
2672
|
-
html:not([data-whatintent='touch'])
|
|
2673
|
-
.dnb-core-style table .dnb-core-style table__th.dnb-core-style table--sortable .dnb-anchor:focus:not([disabled]) .dnb-icon,
|
|
2674
|
-
.dnb-core-style table .dnb-core-style table__th.dnb-core-style table--sortable .dnb-button:focus:not([disabled]) .dnb-icon,
|
|
2675
|
-
html:not([data-whatintent='touch'])
|
|
2676
|
-
.dnb-core-style table .dnb-core-style table__th.dnb-core-style table--sortable .dnb-button:focus:not([disabled]) .dnb-icon {
|
|
2677
|
-
opacity: 1; }
|
|
2678
|
-
.dnb-core-style table > thead > tr > th.dnb-core-style table--sortable .dnb-anchor:active[disabled],
|
|
2679
|
-
html:not([data-whatintent='touch']) .dnb-core-style table > thead > tr > th.dnb-core-style table--sortable .dnb-anchor:active[disabled],
|
|
2680
|
-
.dnb-core-style table > thead > tr > th.dnb-core-style table--sortable .dnb-button:active[disabled],
|
|
2681
|
-
html:not([data-whatintent='touch'])
|
|
2682
|
-
.dnb-core-style table > thead > tr > th.dnb-core-style table--sortable .dnb-button:active[disabled],
|
|
2683
|
-
.dnb-core-style table .dnb-core-style table__th.dnb-core-style table--sortable .dnb-anchor:active[disabled],
|
|
2684
|
-
html:not([data-whatintent='touch'])
|
|
2685
|
-
.dnb-core-style table .dnb-core-style table__th.dnb-core-style table--sortable .dnb-anchor:active[disabled],
|
|
2686
|
-
.dnb-core-style table .dnb-core-style table__th.dnb-core-style table--sortable .dnb-button:active[disabled],
|
|
2687
|
-
html:not([data-whatintent='touch'])
|
|
2688
|
-
.dnb-core-style table .dnb-core-style table__th.dnb-core-style table--sortable .dnb-button:active[disabled] {
|
|
2689
|
-
cursor: not-allowed; }
|
|
2690
|
-
.dnb-core-style table > thead > tr > th.dnb-core-style table--sortable .dnb-anchor:active:not([disabled]),
|
|
2691
|
-
html:not([data-whatintent='touch']) .dnb-core-style table > thead > tr > th.dnb-core-style table--sortable .dnb-anchor:active:not([disabled]),
|
|
2692
|
-
.dnb-core-style table > thead > tr > th.dnb-core-style table--sortable .dnb-button:active:not([disabled]),
|
|
2693
|
-
html:not([data-whatintent='touch'])
|
|
2694
|
-
.dnb-core-style table > thead > tr > th.dnb-core-style table--sortable .dnb-button:active:not([disabled]),
|
|
2695
|
-
.dnb-core-style table .dnb-core-style table__th.dnb-core-style table--sortable .dnb-anchor:active:not([disabled]),
|
|
2696
|
-
html:not([data-whatintent='touch'])
|
|
2697
|
-
.dnb-core-style table .dnb-core-style table__th.dnb-core-style table--sortable .dnb-anchor:active:not([disabled]),
|
|
2698
|
-
.dnb-core-style table .dnb-core-style table__th.dnb-core-style table--sortable .dnb-button:active:not([disabled]),
|
|
2699
|
-
html:not([data-whatintent='touch'])
|
|
2700
|
-
.dnb-core-style table .dnb-core-style table__th.dnb-core-style table--sortable .dnb-button:active:not([disabled]) {
|
|
2701
|
-
color: #14555a;
|
|
2702
|
-
color: var(--color-emerald-green); }
|
|
2703
|
-
.dnb-core-style table > thead > tr > th.dnb-core-style table--sortable .dnb-anchor:active:not([disabled])::before,
|
|
2704
|
-
html:not([data-whatintent='touch']) .dnb-core-style table > thead > tr > th.dnb-core-style table--sortable .dnb-anchor:active:not([disabled])::before,
|
|
2705
|
-
.dnb-core-style table > thead > tr > th.dnb-core-style table--sortable .dnb-button:active:not([disabled])::before,
|
|
2706
|
-
html:not([data-whatintent='touch'])
|
|
2707
|
-
.dnb-core-style table > thead > tr > th.dnb-core-style table--sortable .dnb-button:active:not([disabled])::before,
|
|
2708
|
-
.dnb-core-style table .dnb-core-style table__th.dnb-core-style table--sortable .dnb-anchor:active:not([disabled])::before,
|
|
2709
|
-
html:not([data-whatintent='touch'])
|
|
2710
|
-
.dnb-core-style table .dnb-core-style table__th.dnb-core-style table--sortable .dnb-anchor:active:not([disabled])::before,
|
|
2711
|
-
.dnb-core-style table .dnb-core-style table__th.dnb-core-style table--sortable .dnb-button:active:not([disabled])::before,
|
|
2712
|
-
html:not([data-whatintent='touch'])
|
|
2713
|
-
.dnb-core-style table .dnb-core-style table__th.dnb-core-style table--sortable .dnb-button:active:not([disabled])::before {
|
|
2714
|
-
content: '';
|
|
2715
|
-
position: absolute;
|
|
2716
|
-
z-index: 1;
|
|
2717
|
-
top: 0;
|
|
2718
|
-
left: -0.5rem;
|
|
2719
|
-
bottom: 0;
|
|
2720
|
-
right: -0.5rem;
|
|
2721
|
-
height: inherit;
|
|
2722
|
-
border-radius: inherit;
|
|
2723
|
-
outline: none; }
|
|
2724
|
-
html[data-whatinput='mouse'] .dnb-core-style table > thead > tr > th.dnb-core-style table--sortable .dnb-anchor:active:not([disabled])::before, html[data-whatinput='mouse']
|
|
2725
|
-
html:not([data-whatintent='touch']) .dnb-core-style table > thead > tr > th.dnb-core-style table--sortable .dnb-anchor:active:not([disabled])::before, html[data-whatinput='mouse']
|
|
2726
|
-
.dnb-core-style table > thead > tr > th.dnb-core-style table--sortable .dnb-button:active:not([disabled])::before, html[data-whatinput='mouse']
|
|
2727
|
-
html:not([data-whatintent='touch'])
|
|
2728
|
-
.dnb-core-style table > thead > tr > th.dnb-core-style table--sortable .dnb-button:active:not([disabled])::before, html[data-whatinput='mouse']
|
|
2729
|
-
.dnb-core-style table .dnb-core-style table__th.dnb-core-style table--sortable .dnb-anchor:active:not([disabled])::before, html[data-whatinput='mouse']
|
|
2730
|
-
html:not([data-whatintent='touch'])
|
|
2731
|
-
.dnb-core-style table .dnb-core-style table__th.dnb-core-style table--sortable .dnb-anchor:active:not([disabled])::before, html[data-whatinput='mouse']
|
|
2732
|
-
.dnb-core-style table .dnb-core-style table__th.dnb-core-style table--sortable .dnb-button:active:not([disabled])::before, html[data-whatinput='mouse']
|
|
2733
|
-
html:not([data-whatintent='touch'])
|
|
2734
|
-
.dnb-core-style table .dnb-core-style table__th.dnb-core-style table--sortable .dnb-button:active:not([disabled])::before {
|
|
2735
|
-
--border-color: var(--color-emerald-green);
|
|
2736
|
-
-webkit-box-shadow: 0 0 0 0.125rem var(--border-color);
|
|
2737
|
-
box-shadow: 0 0 0 0.125rem var(--border-color);
|
|
2738
|
-
border-color: transparent; }
|
|
2739
|
-
@media screen and (-ms-high-contrast: none) {
|
|
2740
|
-
html[data-whatinput='mouse'] .dnb-core-style table > thead > tr > th.dnb-core-style table--sortable .dnb-anchor:active:not([disabled])::before, html[data-whatinput='mouse']
|
|
2741
|
-
html:not([data-whatintent='touch']) .dnb-core-style table > thead > tr > th.dnb-core-style table--sortable .dnb-anchor:active:not([disabled])::before, html[data-whatinput='mouse']
|
|
2742
|
-
.dnb-core-style table > thead > tr > th.dnb-core-style table--sortable .dnb-button:active:not([disabled])::before, html[data-whatinput='mouse']
|
|
2743
|
-
html:not([data-whatintent='touch'])
|
|
2744
|
-
.dnb-core-style table > thead > tr > th.dnb-core-style table--sortable .dnb-button:active:not([disabled])::before, html[data-whatinput='mouse']
|
|
2745
|
-
.dnb-core-style table .dnb-core-style table__th.dnb-core-style table--sortable .dnb-anchor:active:not([disabled])::before, html[data-whatinput='mouse']
|
|
2746
|
-
html:not([data-whatintent='touch'])
|
|
2747
|
-
.dnb-core-style table .dnb-core-style table__th.dnb-core-style table--sortable .dnb-anchor:active:not([disabled])::before, html[data-whatinput='mouse']
|
|
2748
|
-
.dnb-core-style table .dnb-core-style table__th.dnb-core-style table--sortable .dnb-button:active:not([disabled])::before, html[data-whatinput='mouse']
|
|
2749
|
-
html:not([data-whatintent='touch'])
|
|
2750
|
-
.dnb-core-style table .dnb-core-style table__th.dnb-core-style table--sortable .dnb-button:active:not([disabled])::before {
|
|
2751
|
-
-webkit-box-shadow: 0 0 0 0.125rem #14555a;
|
|
2752
|
-
box-shadow: 0 0 0 0.125rem #14555a;
|
|
2753
|
-
-webkit-box-shadow: 0 0 0 0.125rem var(--color-emerald-green);
|
|
2754
|
-
box-shadow: 0 0 0 0.125rem var(--color-emerald-green); } }
|
|
2755
|
-
.dnb-core-style table > thead > tr > th.dnb-core-style table--sortable .dnb-anchor:active:not([disabled])::before,
|
|
2756
|
-
html:not([data-whatintent='touch']) .dnb-core-style table > thead > tr > th.dnb-core-style table--sortable .dnb-anchor:active:not([disabled])::before,
|
|
2757
|
-
.dnb-core-style table > thead > tr > th.dnb-core-style table--sortable .dnb-button:active:not([disabled])::before,
|
|
2758
|
-
html:not([data-whatintent='touch'])
|
|
2759
|
-
.dnb-core-style table > thead > tr > th.dnb-core-style table--sortable .dnb-button:active:not([disabled])::before,
|
|
2760
|
-
.dnb-core-style table .dnb-core-style table__th.dnb-core-style table--sortable .dnb-anchor:active:not([disabled])::before,
|
|
2761
|
-
html:not([data-whatintent='touch'])
|
|
2762
|
-
.dnb-core-style table .dnb-core-style table__th.dnb-core-style table--sortable .dnb-anchor:active:not([disabled])::before,
|
|
2763
|
-
.dnb-core-style table .dnb-core-style table__th.dnb-core-style table--sortable .dnb-button:active:not([disabled])::before,
|
|
2764
|
-
html:not([data-whatintent='touch'])
|
|
2765
|
-
.dnb-core-style table .dnb-core-style table__th.dnb-core-style table--sortable .dnb-button:active:not([disabled])::before {
|
|
2766
|
-
content: '';
|
|
2767
|
-
position: absolute;
|
|
2768
|
-
z-index: 1;
|
|
2769
|
-
top: 0;
|
|
2770
|
-
left: -0.5rem;
|
|
2771
|
-
bottom: 0;
|
|
2772
|
-
right: -0.5rem;
|
|
2773
|
-
height: inherit;
|
|
2774
|
-
border-radius: inherit;
|
|
2775
|
-
outline: none; }
|
|
2776
|
-
html[data-whatinput='touch'] .dnb-core-style table > thead > tr > th.dnb-core-style table--sortable .dnb-anchor:active:not([disabled])::before, html[data-whatinput='touch']
|
|
2777
|
-
html:not([data-whatintent='touch']) .dnb-core-style table > thead > tr > th.dnb-core-style table--sortable .dnb-anchor:active:not([disabled])::before, html[data-whatinput='touch']
|
|
2778
|
-
.dnb-core-style table > thead > tr > th.dnb-core-style table--sortable .dnb-button:active:not([disabled])::before, html[data-whatinput='touch']
|
|
2779
|
-
html:not([data-whatintent='touch'])
|
|
2780
|
-
.dnb-core-style table > thead > tr > th.dnb-core-style table--sortable .dnb-button:active:not([disabled])::before, html[data-whatinput='touch']
|
|
2781
|
-
.dnb-core-style table .dnb-core-style table__th.dnb-core-style table--sortable .dnb-anchor:active:not([disabled])::before, html[data-whatinput='touch']
|
|
2782
|
-
html:not([data-whatintent='touch'])
|
|
2783
|
-
.dnb-core-style table .dnb-core-style table__th.dnb-core-style table--sortable .dnb-anchor:active:not([disabled])::before, html[data-whatinput='touch']
|
|
2784
|
-
.dnb-core-style table .dnb-core-style table__th.dnb-core-style table--sortable .dnb-button:active:not([disabled])::before, html[data-whatinput='touch']
|
|
2785
|
-
html:not([data-whatintent='touch'])
|
|
2786
|
-
.dnb-core-style table .dnb-core-style table__th.dnb-core-style table--sortable .dnb-button:active:not([disabled])::before {
|
|
2787
|
-
--border-color: var(--color-emerald-green);
|
|
2788
|
-
-webkit-box-shadow: 0 0 0 0.125rem var(--border-color);
|
|
2789
|
-
box-shadow: 0 0 0 0.125rem var(--border-color);
|
|
2790
|
-
border-color: transparent; }
|
|
2791
|
-
@media screen and (-ms-high-contrast: none) {
|
|
2792
|
-
html[data-whatinput='touch'] .dnb-core-style table > thead > tr > th.dnb-core-style table--sortable .dnb-anchor:active:not([disabled])::before, html[data-whatinput='touch']
|
|
2793
|
-
html:not([data-whatintent='touch']) .dnb-core-style table > thead > tr > th.dnb-core-style table--sortable .dnb-anchor:active:not([disabled])::before, html[data-whatinput='touch']
|
|
2794
|
-
.dnb-core-style table > thead > tr > th.dnb-core-style table--sortable .dnb-button:active:not([disabled])::before, html[data-whatinput='touch']
|
|
2795
|
-
html:not([data-whatintent='touch'])
|
|
2796
|
-
.dnb-core-style table > thead > tr > th.dnb-core-style table--sortable .dnb-button:active:not([disabled])::before, html[data-whatinput='touch']
|
|
2797
|
-
.dnb-core-style table .dnb-core-style table__th.dnb-core-style table--sortable .dnb-anchor:active:not([disabled])::before, html[data-whatinput='touch']
|
|
2798
|
-
html:not([data-whatintent='touch'])
|
|
2799
|
-
.dnb-core-style table .dnb-core-style table__th.dnb-core-style table--sortable .dnb-anchor:active:not([disabled])::before, html[data-whatinput='touch']
|
|
2800
|
-
.dnb-core-style table .dnb-core-style table__th.dnb-core-style table--sortable .dnb-button:active:not([disabled])::before, html[data-whatinput='touch']
|
|
2801
|
-
html:not([data-whatintent='touch'])
|
|
2802
|
-
.dnb-core-style table .dnb-core-style table__th.dnb-core-style table--sortable .dnb-button:active:not([disabled])::before {
|
|
2803
|
-
-webkit-box-shadow: 0 0 0 0.125rem #14555a;
|
|
2804
|
-
box-shadow: 0 0 0 0.125rem #14555a;
|
|
2805
|
-
-webkit-box-shadow: 0 0 0 0.125rem var(--color-emerald-green);
|
|
2806
|
-
box-shadow: 0 0 0 0.125rem var(--color-emerald-green); } }
|
|
2807
|
-
.dnb-core-style table > thead > tr > th.dnb-core-style table--sortable .dnb-anchor:active:not([disabled])::before,
|
|
2808
|
-
html:not([data-whatintent='touch']) .dnb-core-style table > thead > tr > th.dnb-core-style table--sortable .dnb-anchor:active:not([disabled])::before,
|
|
2809
|
-
.dnb-core-style table > thead > tr > th.dnb-core-style table--sortable .dnb-button:active:not([disabled])::before,
|
|
2810
|
-
html:not([data-whatintent='touch'])
|
|
2811
|
-
.dnb-core-style table > thead > tr > th.dnb-core-style table--sortable .dnb-button:active:not([disabled])::before,
|
|
2812
|
-
.dnb-core-style table .dnb-core-style table__th.dnb-core-style table--sortable .dnb-anchor:active:not([disabled])::before,
|
|
2813
|
-
html:not([data-whatintent='touch'])
|
|
2814
|
-
.dnb-core-style table .dnb-core-style table__th.dnb-core-style table--sortable .dnb-anchor:active:not([disabled])::before,
|
|
2815
|
-
.dnb-core-style table .dnb-core-style table__th.dnb-core-style table--sortable .dnb-button:active:not([disabled])::before,
|
|
2816
|
-
html:not([data-whatintent='touch'])
|
|
2817
|
-
.dnb-core-style table .dnb-core-style table__th.dnb-core-style table--sortable .dnb-button:active:not([disabled])::before {
|
|
2818
|
-
content: '';
|
|
2819
|
-
position: absolute;
|
|
2820
|
-
top: -0.5rem;
|
|
2821
|
-
bottom: -0.5rem;
|
|
2822
|
-
left: -1rem;
|
|
2823
|
-
right: 0.5rem; }
|
|
2824
|
-
.dnb-core-style table > thead > tr > th.dnb-core-style table--sortable .dnb-anchor:active:not([disabled])::before,
|
|
2825
|
-
html:not([data-whatintent='touch']) .dnb-core-style table > thead > tr > th.dnb-core-style table--sortable .dnb-anchor:active:not([disabled])::before,
|
|
2826
|
-
.dnb-core-style table > thead > tr > th.dnb-core-style table--sortable .dnb-button:active:not([disabled])::before,
|
|
2827
|
-
html:not([data-whatintent='touch'])
|
|
2828
|
-
.dnb-core-style table > thead > tr > th.dnb-core-style table--sortable .dnb-button:active:not([disabled])::before,
|
|
2829
|
-
.dnb-core-style table .dnb-core-style table__th.dnb-core-style table--sortable .dnb-anchor:active:not([disabled])::before,
|
|
2830
|
-
html:not([data-whatintent='touch'])
|
|
2831
|
-
.dnb-core-style table .dnb-core-style table__th.dnb-core-style table--sortable .dnb-anchor:active:not([disabled])::before,
|
|
2832
|
-
.dnb-core-style table .dnb-core-style table__th.dnb-core-style table--sortable .dnb-button:active:not([disabled])::before,
|
|
2833
|
-
html:not([data-whatintent='touch'])
|
|
2834
|
-
.dnb-core-style table .dnb-core-style table__th.dnb-core-style table--sortable .dnb-button:active:not([disabled])::before {
|
|
2835
|
-
right: -0.5rem; }
|
|
2836
|
-
.dnb-core-style table > thead > tr > th.dnb-core-style table--sortable .dnb-anchor:hover:focus:not(:active) .dnb-button__text::after,
|
|
2837
|
-
.dnb-core-style table > thead > tr > th.dnb-core-style table--sortable .dnb-button:hover:focus:not(:active) .dnb-button__text::after,
|
|
2838
|
-
.dnb-core-style table .dnb-core-style table__th.dnb-core-style table--sortable .dnb-anchor:hover:focus:not(:active) .dnb-button__text::after,
|
|
2839
|
-
.dnb-core-style table .dnb-core-style table__th.dnb-core-style table--sortable .dnb-button:hover:focus:not(:active) .dnb-button__text::after {
|
|
2840
|
-
visibility: hidden; }
|
|
2841
|
-
.dnb-core-style table > thead > tr > th.dnb-core-style table--active .dnb-anchor:not(:hover) .dnb-button__text::after,
|
|
2842
|
-
.dnb-core-style table > thead > tr > th.dnb-core-style table--active .dnb-button:not(:hover) .dnb-button__text::after,
|
|
2843
|
-
.dnb-core-style table .dnb-core-style table__th.dnb-core-style table--active .dnb-anchor:not(:hover) .dnb-button__text::after,
|
|
2844
|
-
.dnb-core-style table .dnb-core-style table__th.dnb-core-style table--active .dnb-button:not(:hover) .dnb-button__text::after {
|
|
2845
|
-
opacity: 0; }
|
|
2846
|
-
.dnb-core-style table > thead > tr > th.dnb-core-style table--active .dnb-anchor .dnb-icon,
|
|
2847
|
-
.dnb-core-style table > thead > tr > th.dnb-core-style table--active .dnb-button .dnb-icon,
|
|
2848
|
-
.dnb-core-style table .dnb-core-style table__th.dnb-core-style table--active .dnb-anchor .dnb-icon,
|
|
2849
|
-
.dnb-core-style table .dnb-core-style table__th.dnb-core-style table--active .dnb-button .dnb-icon {
|
|
2850
|
-
opacity: 1; }
|
|
2851
|
-
html:not([data-whatintent='touch']) .dnb-core-style table > thead > tr > th.dnb-core-style table--active .dnb-anchor:hover[disabled], html:not([data-whatintent='touch'])
|
|
2852
|
-
.dnb-core-style table > thead > tr > th.dnb-core-style table--active .dnb-button:hover[disabled], html:not([data-whatintent='touch'])
|
|
2853
|
-
.dnb-core-style table .dnb-core-style table__th.dnb-core-style table--active .dnb-anchor:hover[disabled], html:not([data-whatintent='touch'])
|
|
2854
|
-
.dnb-core-style table .dnb-core-style table__th.dnb-core-style table--active .dnb-button:hover[disabled] {
|
|
2855
|
-
cursor: not-allowed; }
|
|
2856
|
-
html:not([data-whatintent='touch']) .dnb-core-style table > thead > tr > th.dnb-core-style table--active .dnb-anchor:hover:not([disabled]) .dnb-button__text::after, html:not([data-whatintent='touch'])
|
|
2857
|
-
.dnb-core-style table > thead > tr > th.dnb-core-style table--active .dnb-button:hover:not([disabled]) .dnb-button__text::after, html:not([data-whatintent='touch'])
|
|
2858
|
-
.dnb-core-style table .dnb-core-style table__th.dnb-core-style table--active .dnb-anchor:hover:not([disabled]) .dnb-button__text::after, html:not([data-whatintent='touch'])
|
|
2859
|
-
.dnb-core-style table .dnb-core-style table__th.dnb-core-style table--active .dnb-button:hover:not([disabled]) .dnb-button__text::after {
|
|
2860
|
-
color: #007272;
|
|
2861
|
-
color: var(--color-sea-green);
|
|
2862
|
-
opacity: 1; }
|
|
2863
|
-
.dnb-core-style table > thead > tr > th.dnb-core-style table--active .dnb-anchor:hover:focus:not(:active) .dnb-button__text::after,
|
|
2864
|
-
.dnb-core-style table > thead > tr > th.dnb-core-style table--active .dnb-button:hover:focus:not(:active) .dnb-button__text::after,
|
|
2865
|
-
.dnb-core-style table .dnb-core-style table__th.dnb-core-style table--active .dnb-anchor:hover:focus:not(:active) .dnb-button__text::after,
|
|
2866
|
-
.dnb-core-style table .dnb-core-style table__th.dnb-core-style table--active .dnb-button:hover:focus:not(:active) .dnb-button__text::after {
|
|
2867
|
-
visibility: visible; }
|
|
2868
|
-
html[data-whatinput='keyboard']
|
|
2869
|
-
.dnb-core-style table > thead > tr > th.dnb-core-style table--active .dnb-anchor:hover:focus .dnb-button__text::after, html[data-whatinput='keyboard']
|
|
2870
|
-
.dnb-core-style table > thead > tr > th.dnb-core-style table--active .dnb-button:hover:focus .dnb-button__text::after, html[data-whatinput='keyboard']
|
|
2871
|
-
.dnb-core-style table .dnb-core-style table__th.dnb-core-style table--active .dnb-anchor:hover:focus .dnb-button__text::after, html[data-whatinput='keyboard']
|
|
2872
|
-
.dnb-core-style table .dnb-core-style table__th.dnb-core-style table--active .dnb-button:hover:focus .dnb-button__text::after {
|
|
2873
|
-
visibility: hidden; }
|
|
2874
|
-
.dnb-core-style table > thead > tr > th.dnb-core-style table--reversed .dnb-anchor .dnb-icon,
|
|
2875
|
-
.dnb-core-style table > thead > tr > th.dnb-core-style table--reversed .dnb-button .dnb-icon,
|
|
2876
|
-
.dnb-core-style table .dnb-core-style table__th.dnb-core-style table--reversed .dnb-anchor .dnb-icon,
|
|
2877
|
-
.dnb-core-style table .dnb-core-style table__th.dnb-core-style table--reversed .dnb-button .dnb-icon {
|
|
2878
|
-
-webkit-transform: rotate(180deg);
|
|
2879
|
-
transform: rotate(180deg);
|
|
2880
|
-
-webkit-transform-origin: 50% 50%;
|
|
2881
|
-
transform-origin: 50% 50%; }
|
|
2882
|
-
.dnb-core-style table > thead > tr > th.dnb-core-style table--no-wrap,
|
|
2883
|
-
.dnb-core-style table > tbody > tr > th.dnb-core-style table--no-wrap,
|
|
2884
|
-
.dnb-core-style table .dnb-core-style table__th.dnb-core-style table--no-wrap {
|
|
2885
|
-
white-space: nowrap; }
|
|
2886
|
-
.dnb-core-style table > tr > td,
|
|
2887
|
-
.dnb-core-style table > tbody > tr > td,
|
|
2888
|
-
.dnb-core-style table .dnb-core-style table__td,
|
|
2889
|
-
.dnb-core-style table > tr > th[scope='row'] {
|
|
2890
|
-
padding: 1rem;
|
|
2891
|
-
padding: var(--spacing-small);
|
|
2892
|
-
padding-top: 1.25rem;
|
|
2893
|
-
padding-top: calc(1rem * 1.25);
|
|
2894
|
-
padding-top: calc(var(--spacing-small)*1.25);
|
|
2895
|
-
padding-top: calc(var(--spacing-small) * 1.25);
|
|
2896
|
-
padding-bottom: 1.188rem;
|
|
2897
|
-
padding-bottom: calc(1rem * 1.188);
|
|
2898
|
-
padding-bottom: calc(var(--spacing-small)*1.188);
|
|
2899
|
-
padding-bottom: calc(var(--spacing-small) * 1.188);
|
|
2900
|
-
/* 19/16 */
|
|
2901
|
-
color: currentColor;
|
|
2902
|
-
color: var(--theme-color-black-80, currentColor); }
|
|
2903
|
-
.dnb-core-style table > tbody > tr,
|
|
2904
|
-
.dnb-core-style table .dnb-core-style table__tr,
|
|
2905
|
-
.dnb-core-style table .dnb-core-style table--odd {
|
|
2906
|
-
background-color: #fff;
|
|
2907
|
-
background-color: var(--color-white); }
|
|
2908
|
-
.dnb-core-style table > tbody > tr:nth-of-type(2n),
|
|
2909
|
-
.dnb-core-style table .dnb-core-style table__tr:nth-of-type(2n),
|
|
2910
|
-
.dnb-core-style table .dnb-core-style table--even {
|
|
2911
|
-
background-color: #f4fbf9;
|
|
2912
|
-
background-color: var(--color-mint-green-12); }
|
|
2913
|
-
.dnb-core-style table > tbody > tr:last-of-type > td,
|
|
2914
|
-
.dnb-core-style table .dnb-core-style table__tr:last-of-type .dnb-core-style table__td {
|
|
2915
|
-
border-bottom: 1px solid #d2f0e9;
|
|
2916
|
-
border-bottom: 1px solid var(--color-mint-green-50); }
|
|
2917
|
-
.dnb-core-style table, .dnb-core-style table--left {
|
|
2918
|
-
text-align: left; }
|
|
2919
|
-
.dnb-core-style table--right {
|
|
2920
|
-
text-align: right; }
|
|
2921
|
-
.dnb-core-style table--center {
|
|
2922
|
-
text-align: center; }
|
|
2923
|
-
.dnb-core-style table > caption {
|
|
2924
|
-
font-size: 1rem;
|
|
2925
|
-
font-size: var(--font-size-small);
|
|
2926
|
-
margin-top: 0.5rem;
|
|
2927
|
-
margin-top: var(--spacing-x-small);
|
|
2928
|
-
caption-side: bottom; }
|
|
2929
|
-
.dnb-core-style table tr.sticky {
|
|
2930
|
-
top: 0; }
|
|
2931
|
-
.dnb-core-style table tr.sticky th {
|
|
2932
|
-
position: sticky;
|
|
2933
|
-
top: inherit;
|
|
2934
|
-
z-index: 2; }
|
|
2935
|
-
.dnb-core-style table tr.sticky th::after {
|
|
2936
|
-
content: '';
|
|
2937
|
-
position: absolute;
|
|
2938
|
-
opacity: 0;
|
|
2939
|
-
left: 0;
|
|
2940
|
-
right: 0;
|
|
2941
|
-
bottom: 0;
|
|
2942
|
-
height: 6px;
|
|
2943
|
-
-webkit-box-shadow: 0 -2px 12px 8px rgba(51, 51, 51, 0.08);
|
|
2944
|
-
box-shadow: 0 -2px 12px 8px rgba(51, 51, 51, 0.08);
|
|
2945
|
-
-webkit-box-shadow: var(--shadow-default-x) -2px 12px 8px var(--shadow-default-color);
|
|
2946
|
-
box-shadow: var(--shadow-default-x) -2px 12px 8px var(--shadow-default-color);
|
|
2947
|
-
-webkit-clip-path: inset(6px 0 -48px 0);
|
|
2948
|
-
clip-path: inset(6px 0 -48px 0);
|
|
2949
|
-
-webkit-transition: opacity 300ms ease-out;
|
|
2950
|
-
transition: opacity 300ms ease-out; }
|
|
2951
|
-
[data-visual-test-wrapper] .dnb-core-style table tr.sticky th::after {
|
|
2952
|
-
-webkit-transition: none;
|
|
2953
|
-
transition: none; }
|
|
2954
|
-
.dnb-core-style table tr.sticky.show-shadow th::after {
|
|
2955
|
-
opacity: 1; }
|
|
2956
|
-
.dnb-core-style table--small,
|
|
2957
|
-
.dnb-core-style table--small > tr > th,
|
|
2958
|
-
.dnb-core-style table--small > tr > td,
|
|
2959
|
-
.dnb-core-style table--small > thead > tr > th,
|
|
2960
|
-
.dnb-core-style table--small > tbody > tr > td {
|
|
2961
|
-
font-size: 1rem;
|
|
2962
|
-
font-size: var(--font-size-small); }
|
|
2963
|
-
.dnb-core-style table > tr.dnb-core-style table--small > th,
|
|
2964
|
-
.dnb-core-style table > tr.dnb-core-style table--small > td,
|
|
2965
|
-
.dnb-core-style table > thead > tr.dnb-core-style table--small > th,
|
|
2966
|
-
.dnb-core-style table > tbody > tr.dnb-core-style table--small > td {
|
|
2967
|
-
font-size: 1rem;
|
|
2968
|
-
font-size: var(--font-size-small); }
|
|
2969
|
-
.dnb-core-style table > tr > th.dnb-core-style table--small,
|
|
2970
|
-
.dnb-core-style table > tr > td.dnb-core-style table--small,
|
|
2971
|
-
.dnb-core-style table > thead > tr > th.dnb-core-style table--small,
|
|
2972
|
-
.dnb-core-style table > tbody > tr > td.dnb-core-style table--small,
|
|
2973
|
-
.dnb-core-style table__th.dnb-core-style table--small,
|
|
2974
|
-
.dnb-core-style table__td.dnb-core-style table--small {
|
|
2975
|
-
font-size: 1rem;
|
|
2976
|
-
font-size: var(--font-size-small); }
|
|
2977
|
-
.dnb-core-style table--x-small,
|
|
2978
|
-
.dnb-core-style table--x-small > tr > th,
|
|
2979
|
-
.dnb-core-style table--x-small > tr > td,
|
|
2980
|
-
.dnb-core-style table--x-small > thead > tr > th,
|
|
2981
|
-
.dnb-core-style table--x-small > tbody > tr > td {
|
|
2982
|
-
font-size: 0.875rem;
|
|
2983
|
-
font-size: var(--font-size-x-small); }
|
|
2984
|
-
.dnb-core-style table > tr.dnb-core-style table--x-small > th,
|
|
2985
|
-
.dnb-core-style table > tr.dnb-core-style table--x-small > td,
|
|
2986
|
-
.dnb-core-style table > thead > tr.dnb-core-style table--x-small > th,
|
|
2987
|
-
.dnb-core-style table > tbody > tr.dnb-core-style table--x-small > td {
|
|
2988
|
-
font-size: 0.875rem;
|
|
2989
|
-
font-size: var(--font-size-x-small); }
|
|
2990
|
-
.dnb-core-style table > tr > th.dnb-core-style table--x-small,
|
|
2991
|
-
.dnb-core-style table > tr > td.dnb-core-style table--x-small,
|
|
2992
|
-
.dnb-core-style table > thead > tr > th.dnb-core-style table--x-small,
|
|
2993
|
-
.dnb-core-style table > tbody > tr > td.dnb-core-style table--x-small,
|
|
2994
|
-
.dnb-core-style table__th.dnb-core-style table--x-small,
|
|
2995
|
-
.dnb-core-style table__td.dnb-core-style table--x-small {
|
|
2996
|
-
font-size: 0.875rem;
|
|
2997
|
-
font-size: var(--font-size-x-small); }
|
|
2998
|
-
.dnb-core-style table.dnb-skeleton > * {
|
|
2999
|
-
-webkit-text-fill-color: #ebebeb;
|
|
3000
|
-
-webkit-text-fill-color: var(--skeleton-color); }
|
|
3001
|
-
|
|
3002
|
-
.dnb-core-style .dnb-spacing table p,
|
|
3003
|
-
.dnb-core-style .dnb-spacing table ul,
|
|
3004
|
-
.dnb-core-style .dnb-spacing table ol,
|
|
3005
|
-
.dnb-core-style .dnb-spacing table dl,
|
|
3006
|
-
.dnb-core-style .dnb-spacing table pre {
|
|
3007
|
-
margin-top: 0;
|
|
3008
|
-
margin-bottom: 0; }
|
|
3009
|
-
|
|
3010
1946
|
.dnb-core-style form {
|
|
3011
1947
|
font-size: 1.125rem;
|
|
3012
1948
|
font-size: var(--font-size-basis);
|