@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.
Files changed (607) hide show
  1. package/CHANGELOG.md +51 -0
  2. package/assets/icons/bookmark.svg +1 -0
  3. package/assets/icons/bookmark_medium.svg +1 -0
  4. package/assets/icons/calendar_cancel.svg +1 -0
  5. package/assets/icons/calendar_cancel_medium.svg +1 -0
  6. package/assets/icons/eufemia-icons-pdf-categorized.tgz +0 -0
  7. package/assets/icons/eufemia-icons-pdf.tgz +0 -0
  8. package/assets/icons/exclamation.svg +1 -1
  9. package/assets/icons/exclamation_circled.svg +1 -1
  10. package/assets/icons/exclamation_medium.svg +1 -1
  11. package/assets/icons/reply.svg +1 -1
  12. package/assets/icons/reply_medium.svg +1 -1
  13. package/assets/icons/stopwatch.svg +1 -1
  14. package/cjs/components/Style.d.ts +1 -0
  15. package/cjs/components/Style.js +52 -0
  16. package/cjs/components/Table.d.ts +3 -0
  17. package/cjs/components/Table.js +52 -0
  18. package/cjs/components/accordion/AccordionContent.js +1 -1
  19. package/cjs/components/autocomplete/Autocomplete.d.ts +9 -0
  20. package/cjs/components/autocomplete/Autocomplete.js +49 -23
  21. package/cjs/components/autocomplete/style/_autocomplete.scss +57 -6
  22. package/cjs/components/autocomplete/style/dnb-autocomplete.css +45 -13
  23. package/cjs/components/autocomplete/style/dnb-autocomplete.min.css +2 -2
  24. package/cjs/components/autocomplete/style/themes/dnb-autocomplete-theme-ui.css +7 -0
  25. package/cjs/components/autocomplete/style/themes/dnb-autocomplete-theme-ui.min.css +1 -1
  26. package/cjs/components/autocomplete/style/themes/dnb-autocomplete-theme-ui.scss +8 -0
  27. package/cjs/components/avatar/Avatar.js +14 -12
  28. package/cjs/components/breadcrumb/Breadcrumb.js +20 -18
  29. package/cjs/components/button/Button.d.ts +5 -3
  30. package/cjs/components/date-picker/DatePicker.d.ts +6 -0
  31. package/cjs/components/date-picker/DatePicker.js +9 -4
  32. package/cjs/components/date-picker/DatePickerFooter.js +3 -3
  33. package/cjs/components/date-picker/DatePickerInput.d.ts +6 -0
  34. package/cjs/components/date-picker/DatePickerInput.js +37 -23
  35. package/cjs/components/date-picker/style/_date-picker.scss +40 -0
  36. package/cjs/components/date-picker/style/dnb-date-picker.css +52 -8
  37. package/cjs/components/date-picker/style/dnb-date-picker.min.css +2 -2
  38. package/cjs/components/dialog/Dialog.js +7 -3
  39. package/cjs/components/dialog/DialogContent.js +6 -3
  40. package/cjs/components/dialog/style/_dialog.scss +24 -35
  41. package/cjs/components/dialog/style/dnb-dialog.css +57 -80
  42. package/cjs/components/dialog/style/dnb-dialog.min.css +1 -1
  43. package/cjs/components/dialog/types.d.ts +9 -2
  44. package/cjs/components/drawer/style/dnb-drawer.css +33 -40
  45. package/cjs/components/drawer/style/dnb-drawer.min.css +1 -1
  46. package/cjs/components/dropdown/Dropdown.d.ts +25 -0
  47. package/cjs/components/dropdown/Dropdown.js +1 -1
  48. package/cjs/components/form-row/FormRow.js +2 -12
  49. package/cjs/components/form-row/FormRowHelpers.d.ts +6 -0
  50. package/cjs/components/form-row/FormRowHelpers.js +18 -0
  51. package/cjs/components/icon/Icon.js +5 -9
  52. package/cjs/components/icon/IconHelpers.d.ts +1 -0
  53. package/cjs/components/icon/IconHelpers.js +16 -0
  54. package/cjs/components/index.d.ts +2 -1
  55. package/cjs/components/index.js +8 -0
  56. package/cjs/components/input/Input.d.ts +6 -1
  57. package/cjs/components/input/Input.js +12 -2
  58. package/cjs/components/input/style/_input.scss +11 -9
  59. package/cjs/components/input/style/dnb-input.css +7 -8
  60. package/cjs/components/input/style/dnb-input.min.css +1 -1
  61. package/cjs/components/input-masked/InputMasked.d.ts +6 -1
  62. package/cjs/components/input-masked/InputMaskedUtils.js +11 -4
  63. package/cjs/components/input-masked/addons/createNumberMask.d.ts +1 -2
  64. package/cjs/components/input-masked/addons/createNumberMask.js +1 -14
  65. package/cjs/components/input-masked/style/dnb-input-masked.css +7 -8
  66. package/cjs/components/input-masked/style/dnb-input-masked.min.css +1 -1
  67. package/cjs/components/lib.d.ts +6 -1
  68. package/cjs/components/lib.js +9 -0
  69. package/cjs/components/modal/Modal.d.ts +1 -22
  70. package/cjs/components/modal/Modal.js +4 -1
  71. package/cjs/components/modal/ModalContent.d.ts +7 -2
  72. package/cjs/components/modal/ModalContent.js +111 -70
  73. package/cjs/components/modal/ModalContext.d.ts +1 -0
  74. package/cjs/components/modal/ModalContext.js +1 -0
  75. package/cjs/components/modal/parts/CloseButton.d.ts +3 -24
  76. package/cjs/components/modal/parts/ModalHeader.d.ts +1 -0
  77. package/cjs/components/modal/parts/ModalHeaderBar.d.ts +3 -2
  78. package/cjs/components/modal/parts/ModalInner.d.ts +1 -0
  79. package/cjs/components/modal/style/_modal-mixins.scss +1 -0
  80. package/cjs/components/modal/style/dnb-modal.css +30 -40
  81. package/cjs/components/modal/style/dnb-modal.min.css +1 -1
  82. package/cjs/components/modal/types.d.ts +16 -38
  83. package/cjs/components/number-format/NumberFormat.d.ts +5 -0
  84. package/cjs/components/number-format/NumberFormat.js +7 -2
  85. package/cjs/components/pagination/PaginationBar.d.ts +7 -6
  86. package/cjs/components/radio/Radio.js +5 -2
  87. package/cjs/components/skeleton/SkeletonHelper.d.ts +4 -4
  88. package/cjs/components/table/Table.d.ts +40 -0
  89. package/cjs/components/table/Table.js +91 -0
  90. package/cjs/components/table/TableStickyHeader.d.ts +21 -0
  91. package/cjs/components/table/TableStickyHeader.js +159 -0
  92. package/cjs/components/table/TableTd.d.ts +15 -0
  93. package/cjs/components/table/TableTd.js +42 -0
  94. package/cjs/components/table/TableTh.d.ts +14 -0
  95. package/cjs/components/table/TableTh.js +42 -0
  96. package/cjs/components/table/TableTr.d.ts +15 -0
  97. package/cjs/components/table/TableTr.js +41 -0
  98. package/cjs/components/table/index.d.ts +3 -0
  99. package/cjs/components/table/index.js +52 -0
  100. package/cjs/components/table/style/_table.scss +147 -0
  101. package/cjs/components/table/style/dnb-table.css +181 -0
  102. package/cjs/components/table/style/dnb-table.min.css +1 -0
  103. package/cjs/components/table/style/dnb-table.scss +12 -0
  104. package/cjs/components/table/style/index.d.ts +6 -0
  105. package/cjs/components/table/style/index.js +3 -0
  106. package/cjs/components/table/style/themes/dnb-table-theme-ui.css +444 -0
  107. package/cjs/components/table/style/themes/dnb-table-theme-ui.min.css +2 -0
  108. package/cjs/components/table/style/themes/dnb-table-theme-ui.scss +97 -0
  109. package/cjs/components/table/style/themes/table-basis.scss +161 -0
  110. package/cjs/components/table/style/themes/ui.d.ts +1 -0
  111. package/cjs/components/table/style/themes/ui.js +3 -0
  112. package/cjs/components/table/style.d.ts +1 -0
  113. package/cjs/components/table/style.js +3 -0
  114. package/cjs/components/tag/Tag.js +16 -13
  115. package/cjs/components/timeline/Timeline.js +11 -7
  116. package/cjs/components/timeline/TimelineItem.d.ts +12 -4
  117. package/cjs/components/timeline/TimelineItem.js +60 -24
  118. package/cjs/components/timeline/style/_timeline.scss +2 -2
  119. package/cjs/components/timeline/style/dnb-timeline.css +6 -6
  120. package/cjs/components/timeline/style/dnb-timeline.min.css +1 -1
  121. package/cjs/components/timeline/style/themes/dnb-timeline-theme-ui.css +4 -4
  122. package/cjs/components/timeline/style/themes/dnb-timeline-theme-ui.min.css +1 -1
  123. package/cjs/components/timeline/style/themes/dnb-timeline-theme-ui.scss +4 -4
  124. package/cjs/elements/Table.d.ts +3 -35
  125. package/cjs/elements/Table.js +25 -270
  126. package/cjs/elements/Td.d.ts +2 -28
  127. package/cjs/elements/Td.js +32 -40
  128. package/cjs/elements/Th.d.ts +2 -28
  129. package/cjs/elements/Th.js +32 -40
  130. package/cjs/elements/Tr.d.ts +2 -28
  131. package/cjs/elements/Tr.js +32 -40
  132. package/cjs/elements/lib.d.ts +4 -6
  133. package/cjs/elements/lib.js +0 -9
  134. package/cjs/fragments/drawer-list/DrawerList.d.ts +13 -0
  135. package/cjs/fragments/drawer-list/DrawerList.js +25 -10
  136. package/cjs/fragments/drawer-list/DrawerListHelpers.d.ts +20 -0
  137. package/cjs/fragments/drawer-list/DrawerListHelpers.js +18 -1
  138. package/cjs/fragments/drawer-list/DrawerListProvider.d.ts +6 -9
  139. package/cjs/fragments/drawer-list/DrawerListProvider.js +28 -42
  140. package/cjs/fragments/drawer-list/style/_drawer-list.scss +40 -5
  141. package/cjs/fragments/drawer-list/style/themes/dnb-drawer-list-theme-ui.scss +58 -38
  142. package/cjs/icons/bookmark.d.ts +2 -0
  143. package/cjs/icons/bookmark.js +36 -0
  144. package/cjs/icons/bookmark_medium.d.ts +2 -0
  145. package/cjs/icons/bookmark_medium.js +36 -0
  146. package/cjs/icons/calendar_cancel.d.ts +2 -0
  147. package/cjs/icons/calendar_cancel.js +32 -0
  148. package/cjs/icons/calendar_cancel_medium.d.ts +2 -0
  149. package/cjs/icons/calendar_cancel_medium.js +32 -0
  150. package/cjs/icons/exclamation.js +5 -2
  151. package/cjs/icons/exclamation_circled.js +1 -1
  152. package/cjs/icons/exclamation_medium.js +5 -2
  153. package/cjs/icons/icons-meta.json +232 -198
  154. package/cjs/icons/icons-pdf.lock +6294 -0
  155. package/cjs/icons/icons-svg.lock +6294 -1
  156. package/cjs/icons/index.d.ts +5 -1
  157. package/cjs/icons/index.js +32 -0
  158. package/cjs/icons/reply.js +2 -1
  159. package/cjs/icons/reply_medium.js +2 -1
  160. package/cjs/icons/secondary_icons.d.ts +3 -1
  161. package/cjs/icons/secondary_icons.js +16 -0
  162. package/cjs/icons/secondary_icons_medium.d.ts +3 -1
  163. package/cjs/icons/secondary_icons_medium.js +16 -0
  164. package/cjs/icons/stopwatch.js +1 -1
  165. package/cjs/index.d.ts +30 -30
  166. package/cjs/index.js +58 -58
  167. package/cjs/shared/AnimateHeight.d.ts +1 -0
  168. package/cjs/shared/AnimateHeight.js +18 -2
  169. package/cjs/shared/Context.d.ts +92 -44
  170. package/cjs/shared/Context.js +3 -16
  171. package/cjs/shared/Eufemia.js +1 -1
  172. package/cjs/shared/MediaQuery.d.ts +18 -37
  173. package/cjs/shared/MediaQuery.js +3 -19
  174. package/cjs/shared/MediaQueryUtils.d.ts +61 -23
  175. package/cjs/shared/MediaQueryUtils.js +2 -2
  176. package/cjs/shared/Provider.d.ts +36 -12
  177. package/cjs/shared/Provider.js +6 -15
  178. package/cjs/shared/component-helper.d.ts +1 -1
  179. package/cjs/shared/component-helper.js +5 -5
  180. package/cjs/shared/interfaces.d.ts +13 -0
  181. package/cjs/shared/locales/en-GB.d.ts +1 -0
  182. package/cjs/shared/locales/en-GB.js +1 -0
  183. package/cjs/shared/locales/en-US.d.ts +1 -0
  184. package/cjs/shared/locales/index.d.ts +2 -0
  185. package/cjs/shared/locales/nb-NO.d.ts +1 -0
  186. package/cjs/shared/locales/nb-NO.js +1 -0
  187. package/cjs/shared/useMediaQuery.d.ts +3 -1
  188. package/cjs/shared/useTranslation.d.ts +1 -22
  189. package/cjs/style/dnb-ui-components.css +275 -74
  190. package/cjs/style/dnb-ui-components.min.css +3 -3
  191. package/cjs/style/dnb-ui-components.scss +1 -0
  192. package/cjs/style/dnb-ui-elements.css +1 -534
  193. package/cjs/style/dnb-ui-elements.min.css +1 -2
  194. package/cjs/style/dnb-ui-fragments.css +37 -15
  195. package/cjs/style/dnb-ui-fragments.min.css +1 -1
  196. package/cjs/style/dnb-ui-tags.css +1 -1065
  197. package/cjs/style/dnb-ui-tags.min.css +1 -3
  198. package/cjs/style/elements/table.scss +1 -389
  199. package/cjs/style/elements/ui-tags.scss +2 -2
  200. package/cjs/style/themes/theme-eiendom/dnb-theme-eiendom.css +511 -574
  201. package/cjs/style/themes/theme-eiendom/dnb-theme-eiendom.min.css +7 -5
  202. package/cjs/style/themes/theme-ui/dnb-theme-ui.css +511 -574
  203. package/cjs/style/themes/theme-ui/dnb-theme-ui.min.css +7 -5
  204. package/cjs/style/themes/theme-ui/dnb-theme-ui.scss +1 -0
  205. package/components/Style.d.ts +1 -0
  206. package/components/Style.js +3 -0
  207. package/components/Table.d.ts +3 -0
  208. package/components/Table.js +3 -0
  209. package/components/accordion/AccordionContent.js +1 -1
  210. package/components/autocomplete/Autocomplete.d.ts +9 -0
  211. package/components/autocomplete/Autocomplete.js +49 -23
  212. package/components/autocomplete/style/_autocomplete.scss +57 -6
  213. package/components/autocomplete/style/dnb-autocomplete.css +45 -13
  214. package/components/autocomplete/style/dnb-autocomplete.min.css +2 -2
  215. package/components/autocomplete/style/themes/dnb-autocomplete-theme-ui.css +7 -0
  216. package/components/autocomplete/style/themes/dnb-autocomplete-theme-ui.min.css +1 -1
  217. package/components/autocomplete/style/themes/dnb-autocomplete-theme-ui.scss +8 -0
  218. package/components/avatar/Avatar.js +15 -14
  219. package/components/breadcrumb/Breadcrumb.js +21 -20
  220. package/components/button/Button.d.ts +5 -3
  221. package/components/date-picker/DatePicker.d.ts +6 -0
  222. package/components/date-picker/DatePicker.js +9 -4
  223. package/components/date-picker/DatePickerFooter.js +3 -3
  224. package/components/date-picker/DatePickerInput.d.ts +6 -0
  225. package/components/date-picker/DatePickerInput.js +37 -23
  226. package/components/date-picker/style/_date-picker.scss +40 -0
  227. package/components/date-picker/style/dnb-date-picker.css +52 -8
  228. package/components/date-picker/style/dnb-date-picker.min.css +2 -2
  229. package/components/dialog/Dialog.js +7 -3
  230. package/components/dialog/DialogContent.js +7 -4
  231. package/components/dialog/style/_dialog.scss +24 -35
  232. package/components/dialog/style/dnb-dialog.css +57 -80
  233. package/components/dialog/style/dnb-dialog.min.css +1 -1
  234. package/components/dialog/types.d.ts +9 -2
  235. package/components/drawer/style/dnb-drawer.css +33 -40
  236. package/components/drawer/style/dnb-drawer.min.css +1 -1
  237. package/components/dropdown/Dropdown.d.ts +25 -0
  238. package/components/dropdown/Dropdown.js +2 -2
  239. package/components/form-row/FormRow.js +0 -7
  240. package/components/form-row/FormRowHelpers.d.ts +6 -0
  241. package/components/form-row/FormRowHelpers.js +8 -0
  242. package/components/icon/Icon.js +1 -3
  243. package/components/icon/IconHelpers.d.ts +1 -0
  244. package/components/icon/IconHelpers.js +5 -0
  245. package/components/index.d.ts +2 -1
  246. package/components/index.js +2 -1
  247. package/components/input/Input.d.ts +6 -1
  248. package/components/input/Input.js +12 -2
  249. package/components/input/style/_input.scss +11 -9
  250. package/components/input/style/dnb-input.css +7 -8
  251. package/components/input/style/dnb-input.min.css +1 -1
  252. package/components/input-masked/InputMasked.d.ts +6 -1
  253. package/components/input-masked/InputMaskedUtils.js +11 -4
  254. package/components/input-masked/addons/createNumberMask.d.ts +1 -2
  255. package/components/input-masked/addons/createNumberMask.js +1 -12
  256. package/components/input-masked/style/dnb-input-masked.css +7 -8
  257. package/components/input-masked/style/dnb-input-masked.min.css +1 -1
  258. package/components/lib.d.ts +6 -1
  259. package/components/lib.js +3 -1
  260. package/components/modal/Modal.d.ts +1 -22
  261. package/components/modal/Modal.js +4 -1
  262. package/components/modal/ModalContent.d.ts +7 -2
  263. package/components/modal/ModalContent.js +81 -60
  264. package/components/modal/ModalContext.d.ts +1 -0
  265. package/components/modal/ModalContext.js +1 -0
  266. package/components/modal/parts/CloseButton.d.ts +3 -24
  267. package/components/modal/parts/ModalHeader.d.ts +1 -0
  268. package/components/modal/parts/ModalHeaderBar.d.ts +3 -2
  269. package/components/modal/parts/ModalInner.d.ts +1 -0
  270. package/components/modal/style/_modal-mixins.scss +1 -0
  271. package/components/modal/style/dnb-modal.css +30 -40
  272. package/components/modal/style/dnb-modal.min.css +1 -1
  273. package/components/modal/types.d.ts +16 -38
  274. package/components/number-format/NumberFormat.d.ts +5 -0
  275. package/components/number-format/NumberFormat.js +7 -2
  276. package/components/pagination/PaginationBar.d.ts +7 -6
  277. package/components/radio/Radio.js +5 -2
  278. package/components/skeleton/SkeletonHelper.d.ts +4 -4
  279. package/components/table/Table.d.ts +40 -0
  280. package/components/table/Table.js +51 -0
  281. package/components/table/TableStickyHeader.d.ts +21 -0
  282. package/components/table/TableStickyHeader.js +105 -0
  283. package/components/table/TableTd.d.ts +15 -0
  284. package/components/table/TableTd.js +18 -0
  285. package/components/table/TableTh.d.ts +14 -0
  286. package/components/table/TableTh.js +18 -0
  287. package/components/table/TableTr.d.ts +15 -0
  288. package/components/table/TableTr.js +17 -0
  289. package/components/table/index.d.ts +3 -0
  290. package/components/table/index.js +3 -0
  291. package/components/table/style/_table.scss +147 -0
  292. package/components/table/style/dnb-table.css +181 -0
  293. package/components/table/style/dnb-table.min.css +1 -0
  294. package/components/table/style/dnb-table.scss +12 -0
  295. package/components/table/style/index.d.ts +6 -0
  296. package/components/table/style/index.js +1 -0
  297. package/components/table/style/themes/dnb-table-theme-ui.css +444 -0
  298. package/components/table/style/themes/dnb-table-theme-ui.min.css +2 -0
  299. package/components/table/style/themes/dnb-table-theme-ui.scss +97 -0
  300. package/components/table/style/themes/table-basis.scss +161 -0
  301. package/components/table/style/themes/ui.d.ts +1 -0
  302. package/components/table/style/themes/ui.js +1 -0
  303. package/components/table/style.d.ts +1 -0
  304. package/components/table/style.js +1 -0
  305. package/components/tag/Tag.js +14 -13
  306. package/components/timeline/Timeline.js +10 -8
  307. package/components/timeline/TimelineItem.d.ts +12 -4
  308. package/components/timeline/TimelineItem.js +59 -24
  309. package/components/timeline/style/_timeline.scss +2 -2
  310. package/components/timeline/style/dnb-timeline.css +6 -6
  311. package/components/timeline/style/dnb-timeline.min.css +1 -1
  312. package/components/timeline/style/themes/dnb-timeline-theme-ui.css +4 -4
  313. package/components/timeline/style/themes/dnb-timeline-theme-ui.min.css +1 -1
  314. package/components/timeline/style/themes/dnb-timeline-theme-ui.scss +4 -4
  315. package/elements/Table.d.ts +3 -35
  316. package/elements/Table.js +3 -218
  317. package/elements/Td.d.ts +2 -28
  318. package/elements/Td.js +2 -36
  319. package/elements/Th.d.ts +2 -28
  320. package/elements/Th.js +2 -36
  321. package/elements/Tr.d.ts +2 -28
  322. package/elements/Tr.js +2 -36
  323. package/elements/lib.d.ts +4 -6
  324. package/elements/lib.js +1 -3
  325. package/es/components/Style.d.ts +1 -0
  326. package/es/components/Style.js +3 -0
  327. package/es/components/Table.d.ts +3 -0
  328. package/es/components/Table.js +3 -0
  329. package/es/components/accordion/AccordionContent.js +1 -1
  330. package/es/components/autocomplete/Autocomplete.d.ts +9 -0
  331. package/es/components/autocomplete/Autocomplete.js +43 -18
  332. package/es/components/autocomplete/style/_autocomplete.scss +57 -6
  333. package/es/components/autocomplete/style/dnb-autocomplete.css +45 -13
  334. package/es/components/autocomplete/style/dnb-autocomplete.min.css +2 -2
  335. package/es/components/autocomplete/style/themes/dnb-autocomplete-theme-ui.css +7 -0
  336. package/es/components/autocomplete/style/themes/dnb-autocomplete-theme-ui.min.css +1 -1
  337. package/es/components/autocomplete/style/themes/dnb-autocomplete-theme-ui.scss +8 -0
  338. package/es/components/avatar/Avatar.js +8 -7
  339. package/es/components/breadcrumb/Breadcrumb.js +8 -7
  340. package/es/components/button/Button.d.ts +5 -3
  341. package/es/components/date-picker/DatePicker.d.ts +6 -0
  342. package/es/components/date-picker/DatePicker.js +9 -4
  343. package/es/components/date-picker/DatePickerFooter.js +3 -3
  344. package/es/components/date-picker/DatePickerInput.d.ts +6 -0
  345. package/es/components/date-picker/DatePickerInput.js +43 -32
  346. package/es/components/date-picker/style/_date-picker.scss +40 -0
  347. package/es/components/date-picker/style/dnb-date-picker.css +52 -8
  348. package/es/components/date-picker/style/dnb-date-picker.min.css +2 -2
  349. package/es/components/dialog/Dialog.js +7 -3
  350. package/es/components/dialog/DialogContent.js +7 -4
  351. package/es/components/dialog/style/_dialog.scss +24 -35
  352. package/es/components/dialog/style/dnb-dialog.css +57 -80
  353. package/es/components/dialog/style/dnb-dialog.min.css +1 -1
  354. package/es/components/dialog/types.d.ts +9 -2
  355. package/es/components/drawer/style/dnb-drawer.css +33 -40
  356. package/es/components/drawer/style/dnb-drawer.min.css +1 -1
  357. package/es/components/dropdown/Dropdown.d.ts +25 -0
  358. package/es/components/dropdown/Dropdown.js +2 -2
  359. package/es/components/form-row/FormRow.js +0 -7
  360. package/es/components/form-row/FormRowHelpers.d.ts +6 -0
  361. package/es/components/form-row/FormRowHelpers.js +8 -0
  362. package/es/components/icon/Icon.js +2 -2
  363. package/es/components/icon/IconHelpers.d.ts +1 -0
  364. package/es/components/icon/IconHelpers.js +1 -0
  365. package/es/components/index.d.ts +2 -1
  366. package/es/components/index.js +2 -1
  367. package/es/components/input/Input.d.ts +6 -1
  368. package/es/components/input/Input.js +11 -2
  369. package/es/components/input/style/_input.scss +11 -9
  370. package/es/components/input/style/dnb-input.css +7 -8
  371. package/es/components/input/style/dnb-input.min.css +1 -1
  372. package/es/components/input-masked/InputMasked.d.ts +6 -1
  373. package/es/components/input-masked/InputMaskedUtils.js +11 -4
  374. package/es/components/input-masked/addons/createNumberMask.d.ts +1 -2
  375. package/es/components/input-masked/addons/createNumberMask.js +1 -9
  376. package/es/components/input-masked/style/dnb-input-masked.css +7 -8
  377. package/es/components/input-masked/style/dnb-input-masked.min.css +1 -1
  378. package/es/components/lib.d.ts +6 -1
  379. package/es/components/lib.js +3 -1
  380. package/es/components/modal/Modal.d.ts +1 -22
  381. package/es/components/modal/Modal.js +3 -1
  382. package/es/components/modal/ModalContent.d.ts +7 -2
  383. package/es/components/modal/ModalContent.js +27 -8
  384. package/es/components/modal/ModalContext.d.ts +1 -0
  385. package/es/components/modal/ModalContext.js +1 -0
  386. package/es/components/modal/parts/CloseButton.d.ts +3 -24
  387. package/es/components/modal/parts/ModalHeader.d.ts +1 -0
  388. package/es/components/modal/parts/ModalHeaderBar.d.ts +3 -2
  389. package/es/components/modal/parts/ModalInner.d.ts +1 -0
  390. package/es/components/modal/style/_modal-mixins.scss +1 -0
  391. package/es/components/modal/style/dnb-modal.css +30 -40
  392. package/es/components/modal/style/dnb-modal.min.css +1 -1
  393. package/es/components/modal/types.d.ts +16 -38
  394. package/es/components/number-format/NumberFormat.d.ts +5 -0
  395. package/es/components/number-format/NumberFormat.js +7 -2
  396. package/es/components/pagination/PaginationBar.d.ts +7 -6
  397. package/es/components/radio/Radio.js +5 -2
  398. package/es/components/skeleton/SkeletonHelper.d.ts +4 -4
  399. package/es/components/table/Table.d.ts +40 -0
  400. package/es/components/table/Table.js +51 -0
  401. package/es/components/table/TableStickyHeader.d.ts +21 -0
  402. package/es/components/table/TableStickyHeader.js +98 -0
  403. package/es/components/table/TableTd.d.ts +15 -0
  404. package/es/components/table/TableTd.js +20 -0
  405. package/es/components/table/TableTh.d.ts +14 -0
  406. package/es/components/table/TableTh.js +20 -0
  407. package/es/components/table/TableTr.d.ts +15 -0
  408. package/es/components/table/TableTr.js +19 -0
  409. package/es/components/table/index.d.ts +3 -0
  410. package/es/components/table/index.js +3 -0
  411. package/es/components/table/style/_table.scss +147 -0
  412. package/es/components/table/style/dnb-table.css +181 -0
  413. package/es/components/table/style/dnb-table.min.css +1 -0
  414. package/es/components/table/style/dnb-table.scss +12 -0
  415. package/es/components/table/style/index.d.ts +6 -0
  416. package/es/components/table/style/index.js +1 -0
  417. package/es/components/table/style/themes/dnb-table-theme-ui.css +444 -0
  418. package/es/components/table/style/themes/dnb-table-theme-ui.min.css +2 -0
  419. package/es/components/table/style/themes/dnb-table-theme-ui.scss +97 -0
  420. package/es/components/table/style/themes/table-basis.scss +161 -0
  421. package/es/components/table/style/themes/ui.d.ts +1 -0
  422. package/es/components/table/style/themes/ui.js +1 -0
  423. package/es/components/table/style.d.ts +1 -0
  424. package/es/components/table/style.js +1 -0
  425. package/es/components/tag/Tag.js +8 -7
  426. package/es/components/timeline/Timeline.js +8 -6
  427. package/es/components/timeline/TimelineItem.d.ts +12 -4
  428. package/es/components/timeline/TimelineItem.js +52 -21
  429. package/es/components/timeline/style/_timeline.scss +2 -2
  430. package/es/components/timeline/style/dnb-timeline.css +6 -6
  431. package/es/components/timeline/style/dnb-timeline.min.css +1 -1
  432. package/es/components/timeline/style/themes/dnb-timeline-theme-ui.css +4 -4
  433. package/es/components/timeline/style/themes/dnb-timeline-theme-ui.min.css +1 -1
  434. package/es/components/timeline/style/themes/dnb-timeline-theme-ui.scss +4 -4
  435. package/es/elements/Table.d.ts +3 -35
  436. package/es/elements/Table.js +3 -170
  437. package/es/elements/Td.d.ts +2 -28
  438. package/es/elements/Td.js +2 -26
  439. package/es/elements/Th.d.ts +2 -28
  440. package/es/elements/Th.js +2 -26
  441. package/es/elements/Tr.d.ts +2 -28
  442. package/es/elements/Tr.js +2 -26
  443. package/es/elements/lib.d.ts +4 -6
  444. package/es/elements/lib.js +1 -3
  445. package/es/fragments/drawer-list/DrawerList.d.ts +13 -0
  446. package/es/fragments/drawer-list/DrawerList.js +25 -13
  447. package/es/fragments/drawer-list/DrawerListHelpers.d.ts +20 -0
  448. package/es/fragments/drawer-list/DrawerListHelpers.js +15 -0
  449. package/es/fragments/drawer-list/DrawerListProvider.d.ts +6 -9
  450. package/es/fragments/drawer-list/DrawerListProvider.js +31 -44
  451. package/es/fragments/drawer-list/style/_drawer-list.scss +40 -5
  452. package/es/fragments/drawer-list/style/themes/dnb-drawer-list-theme-ui.scss +58 -38
  453. package/es/icons/bookmark.d.ts +2 -0
  454. package/es/icons/bookmark.js +22 -0
  455. package/es/icons/bookmark_medium.d.ts +2 -0
  456. package/es/icons/bookmark_medium.js +22 -0
  457. package/es/icons/calendar_cancel.d.ts +2 -0
  458. package/es/icons/calendar_cancel.js +18 -0
  459. package/es/icons/calendar_cancel_medium.d.ts +2 -0
  460. package/es/icons/calendar_cancel_medium.js +18 -0
  461. package/es/icons/exclamation.js +5 -2
  462. package/es/icons/exclamation_circled.js +1 -1
  463. package/es/icons/exclamation_medium.js +5 -2
  464. package/es/icons/icons-meta.json +232 -198
  465. package/es/icons/icons-pdf.lock +6294 -0
  466. package/es/icons/icons-svg.lock +6294 -1
  467. package/es/icons/index.d.ts +5 -1
  468. package/es/icons/index.js +5 -1
  469. package/es/icons/reply.js +2 -1
  470. package/es/icons/reply_medium.js +2 -1
  471. package/es/icons/secondary_icons.d.ts +3 -1
  472. package/es/icons/secondary_icons.js +3 -1
  473. package/es/icons/secondary_icons_medium.d.ts +3 -1
  474. package/es/icons/secondary_icons_medium.js +3 -1
  475. package/es/icons/stopwatch.js +1 -1
  476. package/es/index.d.ts +30 -30
  477. package/es/index.js +30 -30
  478. package/es/shared/AnimateHeight.d.ts +1 -0
  479. package/es/shared/AnimateHeight.js +18 -2
  480. package/es/shared/Context.d.ts +92 -44
  481. package/es/shared/Context.js +4 -17
  482. package/es/shared/Eufemia.js +1 -1
  483. package/es/shared/MediaQuery.d.ts +18 -37
  484. package/es/shared/MediaQuery.js +3 -18
  485. package/es/shared/MediaQueryUtils.d.ts +61 -23
  486. package/es/shared/MediaQueryUtils.js +2 -2
  487. package/es/shared/Provider.d.ts +36 -12
  488. package/es/shared/Provider.js +6 -14
  489. package/es/shared/component-helper.d.ts +1 -1
  490. package/es/shared/component-helper.js +5 -5
  491. package/es/shared/interfaces.d.ts +13 -0
  492. package/es/shared/locales/en-GB.d.ts +1 -0
  493. package/es/shared/locales/en-GB.js +1 -0
  494. package/es/shared/locales/en-US.d.ts +1 -0
  495. package/es/shared/locales/index.d.ts +2 -0
  496. package/es/shared/locales/nb-NO.d.ts +1 -0
  497. package/es/shared/locales/nb-NO.js +1 -0
  498. package/es/shared/useMediaQuery.d.ts +3 -1
  499. package/es/shared/useTranslation.d.ts +1 -22
  500. package/es/style/dnb-ui-components.css +275 -74
  501. package/es/style/dnb-ui-components.min.css +3 -3
  502. package/es/style/dnb-ui-components.scss +1 -0
  503. package/es/style/dnb-ui-elements.css +1 -534
  504. package/es/style/dnb-ui-elements.min.css +1 -2
  505. package/es/style/dnb-ui-fragments.css +37 -15
  506. package/es/style/dnb-ui-fragments.min.css +1 -1
  507. package/es/style/dnb-ui-tags.css +1 -1065
  508. package/es/style/dnb-ui-tags.min.css +1 -3
  509. package/es/style/elements/table.scss +1 -389
  510. package/es/style/elements/ui-tags.scss +2 -2
  511. package/es/style/themes/theme-eiendom/dnb-theme-eiendom.css +511 -574
  512. package/es/style/themes/theme-eiendom/dnb-theme-eiendom.min.css +7 -5
  513. package/es/style/themes/theme-ui/dnb-theme-ui.css +511 -574
  514. package/es/style/themes/theme-ui/dnb-theme-ui.min.css +7 -5
  515. package/es/style/themes/theme-ui/dnb-theme-ui.scss +1 -0
  516. package/esm/dnb-ui-basis.min.mjs +1 -1
  517. package/esm/dnb-ui-components.min.mjs +3 -3
  518. package/esm/dnb-ui-elements.min.mjs +3 -3
  519. package/esm/dnb-ui-extensions.min.mjs +4 -4
  520. package/esm/dnb-ui-icons.min.mjs +1 -1
  521. package/esm/dnb-ui-lib.min.mjs +4 -4
  522. package/esm/dnb-ui-web-components.min.mjs +4 -4
  523. package/fragments/drawer-list/DrawerList.d.ts +13 -0
  524. package/fragments/drawer-list/DrawerList.js +24 -12
  525. package/fragments/drawer-list/DrawerListHelpers.d.ts +20 -0
  526. package/fragments/drawer-list/DrawerListHelpers.js +15 -0
  527. package/fragments/drawer-list/DrawerListProvider.d.ts +6 -9
  528. package/fragments/drawer-list/DrawerListProvider.js +29 -43
  529. package/fragments/drawer-list/style/_drawer-list.scss +40 -5
  530. package/fragments/drawer-list/style/themes/dnb-drawer-list-theme-ui.scss +58 -38
  531. package/icons/bookmark.d.ts +2 -0
  532. package/icons/bookmark.js +24 -0
  533. package/icons/bookmark_medium.d.ts +2 -0
  534. package/icons/bookmark_medium.js +24 -0
  535. package/icons/calendar_cancel.d.ts +2 -0
  536. package/icons/calendar_cancel.js +20 -0
  537. package/icons/calendar_cancel_medium.d.ts +2 -0
  538. package/icons/calendar_cancel_medium.js +20 -0
  539. package/icons/exclamation.js +5 -2
  540. package/icons/exclamation_circled.js +1 -1
  541. package/icons/exclamation_medium.js +5 -2
  542. package/icons/icons-meta.json +232 -198
  543. package/icons/icons-pdf.lock +6294 -0
  544. package/icons/icons-svg.lock +6294 -1
  545. package/icons/index.d.ts +5 -1
  546. package/icons/index.js +5 -1
  547. package/icons/reply.js +2 -1
  548. package/icons/reply_medium.js +2 -1
  549. package/icons/secondary_icons.d.ts +3 -1
  550. package/icons/secondary_icons.js +3 -1
  551. package/icons/secondary_icons_medium.d.ts +3 -1
  552. package/icons/secondary_icons_medium.js +3 -1
  553. package/icons/stopwatch.js +1 -1
  554. package/index.d.ts +30 -30
  555. package/index.js +30 -30
  556. package/package.json +1 -1
  557. package/shared/AnimateHeight.d.ts +1 -0
  558. package/shared/AnimateHeight.js +18 -2
  559. package/shared/Context.d.ts +92 -44
  560. package/shared/Context.js +3 -16
  561. package/shared/Eufemia.js +1 -1
  562. package/shared/MediaQuery.d.ts +18 -37
  563. package/shared/MediaQuery.js +3 -17
  564. package/shared/MediaQueryUtils.d.ts +61 -23
  565. package/shared/MediaQueryUtils.js +2 -2
  566. package/shared/Provider.d.ts +36 -12
  567. package/shared/Provider.js +5 -12
  568. package/shared/component-helper.d.ts +1 -1
  569. package/shared/component-helper.js +5 -5
  570. package/shared/interfaces.d.ts +13 -0
  571. package/shared/locales/en-GB.d.ts +1 -0
  572. package/shared/locales/en-GB.js +1 -0
  573. package/shared/locales/en-US.d.ts +1 -0
  574. package/shared/locales/index.d.ts +2 -0
  575. package/shared/locales/nb-NO.d.ts +1 -0
  576. package/shared/locales/nb-NO.js +1 -0
  577. package/shared/useMediaQuery.d.ts +3 -1
  578. package/shared/useTranslation.d.ts +1 -22
  579. package/style/dnb-ui-components.css +275 -74
  580. package/style/dnb-ui-components.min.css +3 -3
  581. package/style/dnb-ui-components.scss +1 -0
  582. package/style/dnb-ui-elements.css +1 -534
  583. package/style/dnb-ui-elements.min.css +1 -2
  584. package/style/dnb-ui-fragments.css +37 -15
  585. package/style/dnb-ui-fragments.min.css +1 -1
  586. package/style/dnb-ui-tags.css +1 -1065
  587. package/style/dnb-ui-tags.min.css +1 -3
  588. package/style/elements/table.scss +1 -389
  589. package/style/elements/ui-tags.scss +2 -2
  590. package/style/themes/theme-eiendom/dnb-theme-eiendom.css +511 -574
  591. package/style/themes/theme-eiendom/dnb-theme-eiendom.min.css +7 -5
  592. package/style/themes/theme-ui/dnb-theme-ui.css +511 -574
  593. package/style/themes/theme-ui/dnb-theme-ui.min.css +7 -5
  594. package/style/themes/theme-ui/dnb-theme-ui.scss +1 -0
  595. package/umd/dnb-ui-basis.min.js +1 -1
  596. package/umd/dnb-ui-components.min.js +3 -3
  597. package/umd/dnb-ui-elements.min.js +5 -5
  598. package/umd/dnb-ui-extensions.min.js +5 -5
  599. package/umd/dnb-ui-icons.min.js +1 -1
  600. package/umd/dnb-ui-lib.min.js +3 -3
  601. package/umd/dnb-ui-web-components.min.js +4 -4
  602. package/cjs/style/themes/theme-ui/prism/dnb-prism-styles.d.ts +0 -6
  603. package/cjs/style/themes/theme-ui/prism/dnb-prism-styles.js +0 -9
  604. package/es/style/themes/theme-ui/prism/dnb-prism-styles.d.ts +0 -6
  605. package/es/style/themes/theme-ui/prism/dnb-prism-styles.js +0 -93
  606. package/style/themes/theme-ui/prism/dnb-prism-styles.d.ts +0 -6
  607. package/style/themes/theme-ui/prism/dnb-prism-styles.js +0 -2
@@ -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);