@dnb/eufemia 9.39.1 → 9.40.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +20 -0
- package/cjs/components/accordion/style/_accordion.scss +2 -2
- package/cjs/components/accordion/style/dnb-accordion.css +3 -3
- package/cjs/components/accordion/style/dnb-accordion.min.css +1 -1
- package/cjs/components/dialog/Dialog.d.ts +1 -1
- package/cjs/components/dialog/parts/DialogAction.d.ts +5 -4
- package/cjs/components/dialog/parts/DialogAction.js +23 -4
- package/cjs/components/dialog/style/_dialog.scss +7 -30
- package/cjs/components/dialog/style/dnb-dialog.css +21 -44
- package/cjs/components/dialog/style/dnb-dialog.min.css +1 -1
- package/cjs/components/dialog/style/themes/dnb-dialog-theme-ui.css +20 -0
- package/cjs/components/dialog/style/themes/dnb-dialog-theme-ui.min.css +1 -1
- package/cjs/components/dialog/style/themes/dnb-dialog-theme-ui.scss +29 -0
- package/cjs/components/drawer/style/_drawer.scss +1 -0
- package/cjs/components/drawer/style/dnb-drawer.css +12 -22
- package/cjs/components/drawer/style/dnb-drawer.min.css +1 -1
- package/cjs/components/lib.d.ts +1 -1
- package/cjs/components/modal/style/dnb-modal.css +11 -22
- package/cjs/components/modal/style/dnb-modal.min.css +1 -1
- package/cjs/components/number-format/NumberFormat.js +1 -1
- package/cjs/components/table/Table.js +1 -1
- package/cjs/components/table/TableContainer.js +3 -1
- package/cjs/components/table/TableStickyHeader.d.ts +4 -1
- package/cjs/components/table/TableStickyHeader.js +112 -83
- package/cjs/components/table/TableTh.d.ts +1 -1
- package/cjs/components/table/TableTh.js +4 -1
- package/cjs/components/table/style/_table-cell.scss +4 -4
- package/cjs/components/table/style/_table-container.scss +7 -17
- package/cjs/components/table/style/_table-deprecated.scss +74 -0
- package/cjs/components/table/style/_table-header-buttons.scss +2 -1
- package/cjs/components/table/style/_table-sticky.scss +24 -23
- package/cjs/components/table/style/_table-td.scss +27 -46
- package/cjs/components/table/style/_table-th.scss +44 -0
- package/cjs/components/table/style/_table.scss +13 -71
- package/cjs/components/table/style/dnb-table.css +181 -132
- package/cjs/components/table/style/dnb-table.min.css +1 -1
- package/cjs/components/table/style/themes/dnb-table-theme-ui.css +78 -63
- package/cjs/components/table/style/themes/dnb-table-theme-ui.min.css +1 -1
- package/cjs/components/table/style/themes/dnb-table-theme-ui.scss +42 -17
- package/cjs/components/visually-hidden/VisuallyHidden.d.ts +2 -11
- package/cjs/components/visually-hidden/VisuallyHidden.js +2 -5
- package/cjs/components/visually-hidden/style/_visually-hidden.scss +0 -8
- package/cjs/components/visually-hidden/style/dnb-visually-hidden.css +10 -42
- package/cjs/components/visually-hidden/style/dnb-visually-hidden.min.css +1 -1
- package/cjs/shared/Eufemia.js +1 -1
- package/cjs/style/core/helper-classes/helper-classes.scss +3 -0
- package/cjs/style/core/utilities.scss +15 -16
- package/cjs/style/dnb-ui-basis.css +20 -13
- package/cjs/style/dnb-ui-basis.min.css +1 -1
- package/cjs/style/dnb-ui-components.css +205 -199
- package/cjs/style/dnb-ui-components.min.css +4 -4
- package/cjs/style/dnb-ui-core.css +20 -13
- package/cjs/style/dnb-ui-core.min.css +1 -1
- package/cjs/style/themes/theme-eiendom/dnb-theme-eiendom.css +98 -63
- package/cjs/style/themes/theme-eiendom/dnb-theme-eiendom.min.css +2 -2
- package/cjs/style/themes/theme-ui/dnb-theme-ui.css +98 -63
- package/cjs/style/themes/theme-ui/dnb-theme-ui.min.css +2 -2
- package/components/accordion/style/_accordion.scss +2 -2
- package/components/accordion/style/dnb-accordion.css +3 -3
- package/components/accordion/style/dnb-accordion.min.css +1 -1
- package/components/dialog/Dialog.d.ts +1 -1
- package/components/dialog/parts/DialogAction.d.ts +5 -4
- package/components/dialog/parts/DialogAction.js +19 -11
- package/components/dialog/style/_dialog.scss +7 -30
- package/components/dialog/style/dnb-dialog.css +21 -44
- package/components/dialog/style/dnb-dialog.min.css +1 -1
- package/components/dialog/style/themes/dnb-dialog-theme-ui.css +20 -0
- package/components/dialog/style/themes/dnb-dialog-theme-ui.min.css +1 -1
- package/components/dialog/style/themes/dnb-dialog-theme-ui.scss +29 -0
- package/components/drawer/style/_drawer.scss +1 -0
- package/components/drawer/style/dnb-drawer.css +12 -22
- package/components/drawer/style/dnb-drawer.min.css +1 -1
- package/components/lib.d.ts +1 -1
- package/components/modal/style/dnb-modal.css +11 -22
- package/components/modal/style/dnb-modal.min.css +1 -1
- package/components/number-format/NumberFormat.js +1 -1
- package/components/table/Table.js +1 -1
- package/components/table/TableContainer.js +3 -1
- package/components/table/TableStickyHeader.d.ts +4 -1
- package/components/table/TableStickyHeader.js +112 -51
- package/components/table/TableTh.d.ts +1 -1
- package/components/table/TableTh.js +4 -1
- package/components/table/style/_table-cell.scss +4 -4
- package/components/table/style/_table-container.scss +7 -17
- package/components/table/style/_table-deprecated.scss +74 -0
- package/components/table/style/_table-header-buttons.scss +2 -1
- package/components/table/style/_table-sticky.scss +24 -23
- package/components/table/style/_table-td.scss +27 -46
- package/components/table/style/_table-th.scss +44 -0
- package/components/table/style/_table.scss +13 -71
- package/components/table/style/dnb-table.css +181 -132
- package/components/table/style/dnb-table.min.css +1 -1
- package/components/table/style/themes/dnb-table-theme-ui.css +78 -63
- package/components/table/style/themes/dnb-table-theme-ui.min.css +1 -1
- package/components/table/style/themes/dnb-table-theme-ui.scss +42 -17
- package/components/visually-hidden/VisuallyHidden.d.ts +2 -11
- package/components/visually-hidden/VisuallyHidden.js +2 -5
- package/components/visually-hidden/style/_visually-hidden.scss +0 -8
- package/components/visually-hidden/style/dnb-visually-hidden.css +10 -42
- package/components/visually-hidden/style/dnb-visually-hidden.min.css +1 -1
- package/es/components/accordion/style/_accordion.scss +2 -2
- package/es/components/accordion/style/dnb-accordion.css +3 -3
- package/es/components/accordion/style/dnb-accordion.min.css +1 -1
- package/es/components/dialog/Dialog.d.ts +1 -1
- package/es/components/dialog/parts/DialogAction.d.ts +5 -4
- package/es/components/dialog/parts/DialogAction.js +21 -11
- package/es/components/dialog/style/_dialog.scss +7 -30
- package/es/components/dialog/style/dnb-dialog.css +21 -44
- package/es/components/dialog/style/dnb-dialog.min.css +1 -1
- package/es/components/dialog/style/themes/dnb-dialog-theme-ui.css +20 -0
- package/es/components/dialog/style/themes/dnb-dialog-theme-ui.min.css +1 -1
- package/es/components/dialog/style/themes/dnb-dialog-theme-ui.scss +29 -0
- package/es/components/drawer/style/_drawer.scss +1 -0
- package/es/components/drawer/style/dnb-drawer.css +12 -22
- package/es/components/drawer/style/dnb-drawer.min.css +1 -1
- package/es/components/lib.d.ts +1 -1
- package/es/components/modal/style/dnb-modal.css +11 -22
- package/es/components/modal/style/dnb-modal.min.css +1 -1
- package/es/components/number-format/NumberFormat.js +1 -1
- package/es/components/table/Table.js +1 -1
- package/es/components/table/TableContainer.js +3 -1
- package/es/components/table/TableStickyHeader.d.ts +4 -1
- package/es/components/table/TableStickyHeader.js +112 -48
- package/es/components/table/TableTh.d.ts +1 -1
- package/es/components/table/TableTh.js +4 -1
- package/es/components/table/style/_table-cell.scss +4 -4
- package/es/components/table/style/_table-container.scss +7 -17
- package/es/components/table/style/_table-deprecated.scss +74 -0
- package/es/components/table/style/_table-header-buttons.scss +2 -1
- package/es/components/table/style/_table-sticky.scss +24 -23
- package/es/components/table/style/_table-td.scss +27 -46
- package/es/components/table/style/_table-th.scss +44 -0
- package/es/components/table/style/_table.scss +13 -71
- package/es/components/table/style/dnb-table.css +181 -132
- package/es/components/table/style/dnb-table.min.css +1 -1
- package/es/components/table/style/themes/dnb-table-theme-ui.css +78 -63
- package/es/components/table/style/themes/dnb-table-theme-ui.min.css +1 -1
- package/es/components/table/style/themes/dnb-table-theme-ui.scss +42 -17
- package/es/components/visually-hidden/VisuallyHidden.d.ts +2 -11
- package/es/components/visually-hidden/VisuallyHidden.js +2 -5
- package/es/components/visually-hidden/style/_visually-hidden.scss +0 -8
- package/es/components/visually-hidden/style/dnb-visually-hidden.css +10 -42
- package/es/components/visually-hidden/style/dnb-visually-hidden.min.css +1 -1
- package/es/shared/Eufemia.js +1 -1
- package/es/style/core/helper-classes/helper-classes.scss +3 -0
- package/es/style/core/utilities.scss +15 -16
- package/es/style/dnb-ui-basis.css +20 -13
- package/es/style/dnb-ui-basis.min.css +1 -1
- package/es/style/dnb-ui-components.css +205 -199
- package/es/style/dnb-ui-components.min.css +4 -4
- package/es/style/dnb-ui-core.css +20 -13
- package/es/style/dnb-ui-core.min.css +1 -1
- package/es/style/themes/theme-eiendom/dnb-theme-eiendom.css +98 -63
- package/es/style/themes/theme-eiendom/dnb-theme-eiendom.min.css +2 -2
- package/es/style/themes/theme-ui/dnb-theme-ui.css +98 -63
- package/es/style/themes/theme-ui/dnb-theme-ui.min.css +2 -2
- package/esm/dnb-ui-basis.min.mjs +2 -2
- package/esm/dnb-ui-components.min.mjs +4 -4
- package/esm/dnb-ui-elements.min.mjs +4 -4
- package/esm/dnb-ui-extensions.min.mjs +4 -4
- package/esm/dnb-ui-lib.min.mjs +4 -4
- package/esm/dnb-ui-web-components.min.mjs +4 -4
- package/package.json +2 -2
- package/shared/Eufemia.js +1 -1
- package/style/core/helper-classes/helper-classes.scss +3 -0
- package/style/core/utilities.scss +15 -16
- package/style/dnb-ui-basis.css +20 -13
- package/style/dnb-ui-basis.min.css +1 -1
- package/style/dnb-ui-components.css +205 -199
- package/style/dnb-ui-components.min.css +4 -4
- package/style/dnb-ui-core.css +20 -13
- package/style/dnb-ui-core.min.css +1 -1
- package/style/themes/theme-eiendom/dnb-theme-eiendom.css +98 -63
- package/style/themes/theme-eiendom/dnb-theme-eiendom.min.css +2 -2
- package/style/themes/theme-ui/dnb-theme-ui.css +98 -63
- package/style/themes/theme-ui/dnb-theme-ui.min.css +2 -2
- package/umd/dnb-ui-basis.min.js +3 -3
- package/umd/dnb-ui-components.min.js +5 -5
- package/umd/dnb-ui-elements.min.js +4 -4
- package/umd/dnb-ui-extensions.min.js +5 -5
- package/umd/dnb-ui-lib.min.js +5 -5
- package/umd/dnb-ui-web-components.min.js +5 -5
|
@@ -10,75 +10,90 @@
|
|
|
10
10
|
/*
|
|
11
11
|
* Utilities
|
|
12
12
|
*/
|
|
13
|
-
.dnb-table
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
.dnb-table >
|
|
30
|
-
.dnb-table > tr >
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
font-size: var(--font-size-small);
|
|
44
|
-
line-height: 1.25rem;
|
|
45
|
-
line-height: var(--line-height-small); }
|
|
46
|
-
|
|
47
|
-
.dnb-table__size--small .dnb-table__th {
|
|
48
|
-
padding: 1.25rem 1rem 0.5rem;
|
|
49
|
-
font-size: 1rem;
|
|
50
|
-
font-size: var(--font-size-small);
|
|
51
|
-
line-height: 1.25rem;
|
|
52
|
-
line-height: var(--line-height-small); }
|
|
53
|
-
|
|
54
|
-
.dnb-table__size--medium .dnb-table__td {
|
|
55
|
-
padding: 0.875rem 1rem; }
|
|
56
|
-
.dnb-table__size--medium .dnb-table__td,
|
|
57
|
-
.dnb-table__size--medium .dnb-table__td .dnb-p {
|
|
13
|
+
.dnb-table {
|
|
14
|
+
text-align: left; }
|
|
15
|
+
.dnb-table > tr > th,
|
|
16
|
+
.dnb-table > thead > tr > th, .dnb-table__th {
|
|
17
|
+
padding: 2rem 1rem 1rem;
|
|
18
|
+
font-weight: 500;
|
|
19
|
+
font-weight: var(--font-weight-medium);
|
|
20
|
+
color: currentColor;
|
|
21
|
+
color: var(--theme-color-black-80, currentColor);
|
|
22
|
+
font-size: 1.125rem;
|
|
23
|
+
font-size: var(--font-size-basis);
|
|
24
|
+
line-height: 1.5rem;
|
|
25
|
+
line-height: var(--line-height-basis);
|
|
26
|
+
vertical-align: bottom;
|
|
27
|
+
background-color: #fff;
|
|
28
|
+
background-color: var(--color-white); }
|
|
29
|
+
.dnb-table > tr > td,
|
|
30
|
+
.dnb-table > tbody > tr > td, .dnb-table__td,
|
|
31
|
+
tbody > tr > .dnb-table__th,
|
|
32
|
+
.dnb-table > tr > th[scope='row'] {
|
|
33
|
+
padding: 1rem;
|
|
34
|
+
color: currentColor;
|
|
35
|
+
color: var(--theme-color-black-80, currentColor);
|
|
36
|
+
font-size: 1.125rem;
|
|
37
|
+
font-size: var(--font-size-basis);
|
|
38
|
+
line-height: 1.5rem;
|
|
39
|
+
line-height: var(--line-height-basis);
|
|
40
|
+
vertical-align: baseline; }
|
|
41
|
+
.dnb-table__size--medium .dnb-table__th {
|
|
42
|
+
padding: 1.375rem 1rem 0.875rem;
|
|
58
43
|
font-size: 1rem;
|
|
59
44
|
font-size: var(--font-size-small);
|
|
60
45
|
line-height: 1.25rem;
|
|
61
46
|
line-height: var(--line-height-small); }
|
|
62
|
-
|
|
63
|
-
.
|
|
64
|
-
padding: 0.625rem 1rem; }
|
|
65
|
-
.dnb-table__size--small .dnb-table__td,
|
|
66
|
-
.dnb-table__size--small .dnb-table__td .dnb-p {
|
|
47
|
+
.dnb-table__size--small .dnb-table__th {
|
|
48
|
+
padding: 1.25rem 1rem 0.5rem;
|
|
67
49
|
font-size: 1rem;
|
|
68
50
|
font-size: var(--font-size-small);
|
|
69
51
|
line-height: 1.25rem;
|
|
70
52
|
line-height: var(--line-height-small); }
|
|
53
|
+
tbody > tr > .dnb-table__th {
|
|
54
|
+
padding: 1rem;
|
|
55
|
+
vertical-align: baseline; }
|
|
56
|
+
.dnb-table__size--medium tbody > tr > .dnb-table__th, .dnb-table__size--medium
|
|
57
|
+
tbody > tr > .dnb-table__td {
|
|
58
|
+
padding: 0.875rem 1rem; }
|
|
59
|
+
.dnb-table__size--medium tbody > tr > .dnb-table__th,
|
|
60
|
+
.dnb-table__size--medium tbody > tr > .dnb-table__th .dnb-p, .dnb-table__size--medium
|
|
61
|
+
tbody > tr > .dnb-table__td,
|
|
62
|
+
.dnb-table__size--medium
|
|
63
|
+
tbody > tr > .dnb-table__td .dnb-p {
|
|
64
|
+
font-size: 1rem;
|
|
65
|
+
font-size: var(--font-size-small);
|
|
66
|
+
line-height: 1.25rem;
|
|
67
|
+
line-height: var(--line-height-small); }
|
|
68
|
+
.dnb-table__size--small tbody > tr > .dnb-table__th, .dnb-table__size--small
|
|
69
|
+
tbody > tr > .dnb-table__td {
|
|
70
|
+
padding: 0.625rem 1rem; }
|
|
71
|
+
.dnb-table__size--small tbody > tr > .dnb-table__th,
|
|
72
|
+
.dnb-table__size--small tbody > tr > .dnb-table__th .dnb-p, .dnb-table__size--small
|
|
73
|
+
tbody > tr > .dnb-table__td,
|
|
74
|
+
.dnb-table__size--small
|
|
75
|
+
tbody > tr > .dnb-table__td .dnb-p {
|
|
76
|
+
font-size: 1rem;
|
|
77
|
+
font-size: var(--font-size-small);
|
|
78
|
+
line-height: 1.25rem;
|
|
79
|
+
line-height: var(--line-height-small); }
|
|
80
|
+
.dnb-table > tbody > .dnb-table__tr:last-of-type > .dnb-table__td::after {
|
|
81
|
+
content: '';
|
|
82
|
+
position: absolute;
|
|
83
|
+
left: 0;
|
|
84
|
+
right: 0;
|
|
85
|
+
bottom: 0;
|
|
86
|
+
border-bottom: var(--outline); }
|
|
87
|
+
|
|
88
|
+
.dnb-table__container {
|
|
89
|
+
background-color: #fff;
|
|
90
|
+
background-color: var(--color-white); }
|
|
71
91
|
|
|
72
|
-
.dnb-table
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
.
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
right: 0;
|
|
81
|
-
bottom: -0.0625rem;
|
|
82
|
-
height: 0.0625rem;
|
|
83
|
-
background-color: #ebebeb;
|
|
84
|
-
background-color: var(--color-black-8); }
|
|
92
|
+
.dnb-table,
|
|
93
|
+
.dnb-table__container {
|
|
94
|
+
--border: 0.0625rem solid var(--color-black-8);
|
|
95
|
+
--outline: 0.0625rem solid var(--color-black-8); }
|
|
96
|
+
html[data-visual-test] .dnb-table, html[data-visual-test]
|
|
97
|
+
.dnb-table__container {
|
|
98
|
+
--border: 0.0625rem solid blue;
|
|
99
|
+
--outline: 0.0625rem solid red; }
|
|
@@ -1 +1 @@
|
|
|
1
|
-
.dnb-table>thead>tr>th,.dnb-table>tr>th,.dnb-table__th{background-color:#fff;background-color:var(--color-white);font-weight:500;font-weight:var(--font-weight-medium);padding:2rem 1rem 1rem;vertical-align:bottom}.dnb-table>tbody>tr>td,.dnb-table>thead>tr>th,.dnb-table>tr>td,.dnb-table>tr>th,.dnb-table>tr>th[scope=row],.dnb-table__td,.dnb-table__th{color:currentColor;color:var(--theme-color-black-80,currentColor);font-size:1.125rem;font-size:var(--font-size-basis);line-height:1.5rem;line-height:var(--line-height-basis)}.dnb-table>tbody>tr>td,.dnb-table>tr>td,.dnb-table>tr>th[scope=row],.dnb-table__td{padding:1rem;vertical-align:baseline}.dnb-table__size--medium .dnb-table__th{padding:1.375rem 1rem .875rem}.dnb-table__size--medium .dnb-table__th,.dnb-table__size--small .dnb-table__th{font-size:1rem;font-size:var(--font-size-small);line-height:1.25rem;line-height:var(--line-height-small)}.dnb-table__size--small .dnb-table__th{padding:1.25rem 1rem .5rem}.dnb-table__size--medium
|
|
1
|
+
.dnb-table{text-align:left}.dnb-table>thead>tr>th,.dnb-table>tr>th,.dnb-table__th{background-color:#fff;background-color:var(--color-white);font-weight:500;font-weight:var(--font-weight-medium);padding:2rem 1rem 1rem;vertical-align:bottom}.dnb-table>tbody>tr>td,.dnb-table>thead>tr>th,.dnb-table>tr>td,.dnb-table>tr>th,.dnb-table>tr>th[scope=row],.dnb-table__td,.dnb-table__th,tbody>tr>.dnb-table__th{color:currentColor;color:var(--theme-color-black-80,currentColor);font-size:1.125rem;font-size:var(--font-size-basis);line-height:1.5rem;line-height:var(--line-height-basis)}.dnb-table>tbody>tr>td,.dnb-table>tr>td,.dnb-table>tr>th[scope=row],.dnb-table__td,tbody>tr>.dnb-table__th{padding:1rem;vertical-align:baseline}.dnb-table__size--medium .dnb-table__th{padding:1.375rem 1rem .875rem}.dnb-table__size--medium .dnb-table__th,.dnb-table__size--small .dnb-table__th{font-size:1rem;font-size:var(--font-size-small);line-height:1.25rem;line-height:var(--line-height-small)}.dnb-table__size--small .dnb-table__th{padding:1.25rem 1rem .5rem}tbody>tr>.dnb-table__th{padding:1rem;vertical-align:baseline}.dnb-table__size--medium tbody>tr>.dnb-table__td,.dnb-table__size--medium tbody>tr>.dnb-table__th{padding:.875rem 1rem}.dnb-table__size--medium tbody>tr>.dnb-table__td,.dnb-table__size--medium tbody>tr>.dnb-table__td .dnb-p,.dnb-table__size--medium tbody>tr>.dnb-table__th,.dnb-table__size--medium tbody>tr>.dnb-table__th .dnb-p{font-size:1rem;font-size:var(--font-size-small);line-height:1.25rem;line-height:var(--line-height-small)}.dnb-table__size--small tbody>tr>.dnb-table__td,.dnb-table__size--small tbody>tr>.dnb-table__th{padding:.625rem 1rem}.dnb-table__size--small tbody>tr>.dnb-table__td,.dnb-table__size--small tbody>tr>.dnb-table__td .dnb-p,.dnb-table__size--small tbody>tr>.dnb-table__th,.dnb-table__size--small tbody>tr>.dnb-table__th .dnb-p{font-size:1rem;font-size:var(--font-size-small);line-height:1.25rem;line-height:var(--line-height-small)}.dnb-table>tbody>.dnb-table__tr:last-of-type>.dnb-table__td:after{border-bottom:var(--outline);bottom:0;content:"";left:0;position:absolute;right:0}.dnb-table__container{background-color:#fff;background-color:var(--color-white)}.dnb-table,.dnb-table__container{--border:0.0625rem solid var(--color-black-8);--outline:0.0625rem solid var(--color-black-8)}html[data-visual-test] .dnb-table,html[data-visual-test] .dnb-table__container{--border:0.0625rem solid blue;--outline:0.0625rem solid red}
|
|
@@ -6,9 +6,11 @@
|
|
|
6
6
|
@import '../../../../style/themes/imports.scss';
|
|
7
7
|
|
|
8
8
|
.dnb-table {
|
|
9
|
+
text-align: left;
|
|
10
|
+
|
|
9
11
|
// head
|
|
10
|
-
& > tr > th
|
|
11
|
-
& > thead > tr > th
|
|
12
|
+
& > tr > th,/* should be deprecated */
|
|
13
|
+
& > thead > tr > th,/* should be deprecated */
|
|
12
14
|
&__th {
|
|
13
15
|
// spacing
|
|
14
16
|
padding: 2rem 1rem 1rem;
|
|
@@ -24,10 +26,11 @@
|
|
|
24
26
|
}
|
|
25
27
|
|
|
26
28
|
// body data
|
|
27
|
-
& > tr > td
|
|
28
|
-
& > tbody > tr > td
|
|
29
|
+
& > tr > td,/* should be deprecated */
|
|
30
|
+
& > tbody > tr > td,/* should be deprecated */
|
|
29
31
|
&__td,
|
|
30
|
-
|
|
32
|
+
tbody > tr > &__th,
|
|
33
|
+
& > tr > th[scope='row']/* should be deprecated */ {
|
|
31
34
|
// spacing
|
|
32
35
|
padding: 1rem;
|
|
33
36
|
|
|
@@ -38,6 +41,7 @@
|
|
|
38
41
|
vertical-align: baseline;
|
|
39
42
|
}
|
|
40
43
|
|
|
44
|
+
// stylelint-disable-next-line
|
|
41
45
|
&__th {
|
|
42
46
|
.dnb-table__size--medium & {
|
|
43
47
|
// spacing
|
|
@@ -58,7 +62,18 @@
|
|
|
58
62
|
}
|
|
59
63
|
}
|
|
60
64
|
|
|
61
|
-
|
|
65
|
+
// stylelint-disable-next-line
|
|
66
|
+
tbody > tr > &__th {
|
|
67
|
+
// spacing
|
|
68
|
+
padding: 1rem;
|
|
69
|
+
|
|
70
|
+
// typography
|
|
71
|
+
vertical-align: baseline;
|
|
72
|
+
}
|
|
73
|
+
|
|
74
|
+
// stylelint-disable-next-line
|
|
75
|
+
tbody > tr > &__th,
|
|
76
|
+
tbody > tr > &__td {
|
|
62
77
|
.dnb-table__size--medium & {
|
|
63
78
|
// spacing
|
|
64
79
|
padding: 0.875rem 1rem;
|
|
@@ -89,21 +104,31 @@
|
|
|
89
104
|
// &:not(#{&}--border):not(#{&}--outline) > thead > &__tr > &__th::after,
|
|
90
105
|
|
|
91
106
|
// border
|
|
92
|
-
|
|
93
|
-
> tbody
|
|
94
|
-
> tr:last-of-type
|
|
95
|
-
> td::after,
|
|
96
|
-
&:not(#{&}--border):not(#{&}--outline)
|
|
97
|
-
> tbody
|
|
98
|
-
> &__tr:last-of-type
|
|
99
|
-
> &__td::after {
|
|
107
|
+
& > tbody > &__tr:last-of-type > &__td::after {
|
|
100
108
|
content: '';
|
|
101
109
|
position: absolute;
|
|
102
110
|
left: 0;
|
|
103
111
|
right: 0;
|
|
104
|
-
bottom:
|
|
112
|
+
bottom: 0; // don't use negative value, else it will be hidden when accordion
|
|
113
|
+
|
|
114
|
+
border-bottom: var(--outline);
|
|
115
|
+
}
|
|
116
|
+
}
|
|
117
|
+
|
|
118
|
+
.dnb-table__container {
|
|
119
|
+
background-color: var(--color-white);
|
|
120
|
+
}
|
|
121
|
+
|
|
122
|
+
.dnb-table,
|
|
123
|
+
.dnb-table__container {
|
|
124
|
+
// table border
|
|
125
|
+
--border: 0.0625rem solid var(--color-black-8);
|
|
126
|
+
|
|
127
|
+
// table outline
|
|
128
|
+
--outline: 0.0625rem solid var(--color-black-8);
|
|
105
129
|
|
|
106
|
-
|
|
107
|
-
|
|
130
|
+
html[data-visual-test] & {
|
|
131
|
+
--border: 0.0625rem solid blue;
|
|
132
|
+
--outline: 0.0625rem solid red;
|
|
108
133
|
}
|
|
109
134
|
}
|
|
@@ -1,16 +1,6 @@
|
|
|
1
1
|
import React from 'react';
|
|
2
2
|
import { DynamicElement } from '../../shared/types';
|
|
3
3
|
export interface VisuallyHiddenProps {
|
|
4
|
-
/**
|
|
5
|
-
* The content of the visually hidden element, can be a string or a React Element
|
|
6
|
-
* Default: null
|
|
7
|
-
*/
|
|
8
|
-
children?: string | React.ReactNode;
|
|
9
|
-
/**
|
|
10
|
-
* Custom className on the component root
|
|
11
|
-
* Default: null
|
|
12
|
-
*/
|
|
13
|
-
className?: string;
|
|
14
4
|
/**
|
|
15
5
|
* Hide an element by default, but to display it when it’s focused (e.g. by a keyboard-only user)
|
|
16
6
|
* Default: false
|
|
@@ -22,9 +12,10 @@ export interface VisuallyHiddenProps {
|
|
|
22
12
|
*/
|
|
23
13
|
element?: DynamicElement;
|
|
24
14
|
}
|
|
15
|
+
export declare type VisuallyHiddenAllProps = VisuallyHiddenProps & React.HTMLProps<HTMLSpanElement>;
|
|
25
16
|
export declare const defaultProps: {
|
|
26
17
|
focusable: boolean;
|
|
27
18
|
element: string;
|
|
28
19
|
};
|
|
29
|
-
declare const VisuallyHidden: (localProps:
|
|
20
|
+
declare const VisuallyHidden: (localProps: VisuallyHiddenAllProps) => JSX.Element;
|
|
30
21
|
export default VisuallyHidden;
|
|
@@ -38,21 +38,18 @@ var defaultProps = {
|
|
|
38
38
|
exports.defaultProps = defaultProps;
|
|
39
39
|
|
|
40
40
|
var VisuallyHidden = function VisuallyHidden(localProps) {
|
|
41
|
-
var _context$translation;
|
|
42
|
-
|
|
43
41
|
var context = _react.default.useContext(_Context.default);
|
|
44
42
|
|
|
45
|
-
var _extendPropsWithConte = (0, _componentHelper.extendPropsWithContext)(localProps, defaultProps, context === null || context === void 0 ? void 0 :
|
|
43
|
+
var _extendPropsWithConte = (0, _componentHelper.extendPropsWithContext)(localProps, defaultProps, context === null || context === void 0 ? void 0 : context.VisuallyHidden),
|
|
46
44
|
element = _extendPropsWithConte.element,
|
|
47
45
|
children = _extendPropsWithConte.children,
|
|
48
46
|
className = _extendPropsWithConte.className,
|
|
49
47
|
focusable = _extendPropsWithConte.focusable,
|
|
50
48
|
props = _objectWithoutProperties(_extendPropsWithConte, _excluded);
|
|
51
49
|
|
|
52
|
-
var visuallyHiddenClassNames = (0, _classnames.default)('dnb-visually-hidden', focusable ? 'dnb-visually-hidden--focusable' : 'dnb-
|
|
50
|
+
var visuallyHiddenClassNames = (0, _classnames.default)('dnb-visually-hidden', focusable ? 'dnb-visually-hidden--focusable' : 'dnb-sr-only', className);
|
|
53
51
|
var Element = element || 'span';
|
|
54
52
|
return _react.default.createElement(Element, _extends({
|
|
55
|
-
"data-testid": "visually-hidden",
|
|
56
53
|
className: visuallyHiddenClassNames
|
|
57
54
|
}, props), children);
|
|
58
55
|
};
|
|
@@ -72,39 +72,6 @@
|
|
|
72
72
|
* VisuallyHidden component
|
|
73
73
|
*
|
|
74
74
|
*/
|
|
75
|
-
.dnb-visually-hidden--default {
|
|
76
|
-
-webkit-user-select: none;
|
|
77
|
-
-moz-user-select: none;
|
|
78
|
-
-ms-user-select: none;
|
|
79
|
-
user-select: none;
|
|
80
|
-
-webkit-touch-callout: none;
|
|
81
|
-
pointer-events: none;
|
|
82
|
-
position: absolute;
|
|
83
|
-
clip: rect(1px, 1px, 1px, 1px);
|
|
84
|
-
overflow: hidden;
|
|
85
|
-
white-space: nowrap;
|
|
86
|
-
height: 1px;
|
|
87
|
-
width: 1px;
|
|
88
|
-
margin: -1px 0 0 -1px;
|
|
89
|
-
padding: 0;
|
|
90
|
-
border: 0; }
|
|
91
|
-
.dnb-visually-hidden--default:not(:focus):not(:active) {
|
|
92
|
-
-webkit-user-select: none;
|
|
93
|
-
-moz-user-select: none;
|
|
94
|
-
-ms-user-select: none;
|
|
95
|
-
user-select: none;
|
|
96
|
-
-webkit-touch-callout: none;
|
|
97
|
-
pointer-events: none;
|
|
98
|
-
position: absolute;
|
|
99
|
-
clip: rect(1px, 1px, 1px, 1px);
|
|
100
|
-
overflow: hidden;
|
|
101
|
-
white-space: nowrap;
|
|
102
|
-
height: 1px;
|
|
103
|
-
width: 1px;
|
|
104
|
-
margin: -1px 0 0 -1px;
|
|
105
|
-
padding: 0;
|
|
106
|
-
border: 0; }
|
|
107
|
-
|
|
108
75
|
.dnb-visually-hidden--focusable:not(:focus):not([focus-within]) {
|
|
109
76
|
-webkit-user-select: none;
|
|
110
77
|
-moz-user-select: none;
|
|
@@ -113,15 +80,15 @@
|
|
|
113
80
|
-webkit-touch-callout: none;
|
|
114
81
|
pointer-events: none;
|
|
115
82
|
position: absolute;
|
|
116
|
-
clip:
|
|
83
|
+
-webkit-clip-path: inset(50%);
|
|
84
|
+
clip-path: inset(50%);
|
|
85
|
+
max-width: 1px;
|
|
86
|
+
max-height: 1px;
|
|
117
87
|
overflow: hidden;
|
|
118
88
|
white-space: nowrap;
|
|
119
|
-
height: 1px;
|
|
120
|
-
width: 1px;
|
|
121
|
-
margin: -1px 0 0 -1px;
|
|
122
89
|
padding: 0;
|
|
90
|
+
margin: 0;
|
|
123
91
|
border: 0; }
|
|
124
|
-
|
|
125
92
|
.dnb-visually-hidden--focusable:not(:focus):not(:focus-within) {
|
|
126
93
|
-webkit-user-select: none;
|
|
127
94
|
-moz-user-select: none;
|
|
@@ -130,11 +97,12 @@
|
|
|
130
97
|
-webkit-touch-callout: none;
|
|
131
98
|
pointer-events: none;
|
|
132
99
|
position: absolute;
|
|
133
|
-
clip:
|
|
100
|
+
-webkit-clip-path: inset(50%);
|
|
101
|
+
clip-path: inset(50%);
|
|
102
|
+
max-width: 1px;
|
|
103
|
+
max-height: 1px;
|
|
134
104
|
overflow: hidden;
|
|
135
105
|
white-space: nowrap;
|
|
136
|
-
height: 1px;
|
|
137
|
-
width: 1px;
|
|
138
|
-
margin: -1px 0 0 -1px;
|
|
139
106
|
padding: 0;
|
|
107
|
+
margin: 0;
|
|
140
108
|
border: 0; }
|
|
@@ -1 +1 @@
|
|
|
1
|
-
.dnb-visually-hidden{-moz-osx-font-smoothing:grayscale;-webkit-font-smoothing:antialiased;-webkit-tap-highlight-color:rgba(0,0,0,0);-ms-text-size-adjust:100%;-webkit-text-size-adjust:100%;color:#333;color:var(--color-black-80,#333);font-family:DNB,sans-serif;font-family:var(--font-family-default);font-size:1rem;font-size:var(--font-size-small);font-style:normal;font-weight:400;font-weight:var(--font-weight-basis);line-height:1.5rem;line-height:var(--line-height-basis);margin:0;padding:0;-moz-tab-size:4;-o-tab-size:4;tab-size:4;word-break:break-word}.dnb-visually-hidden *,.dnb-visually-hidden :after,.dnb-visually-hidden :before{background-repeat:no-repeat;-webkit-box-sizing:border-box;box-sizing:border-box}.dnb-visually-hidden :after,.dnb-visually-hidden :before{text-decoration:inherit;vertical-align:inherit}.dnb-visually-hidden--
|
|
1
|
+
.dnb-visually-hidden{-moz-osx-font-smoothing:grayscale;-webkit-font-smoothing:antialiased;-webkit-tap-highlight-color:rgba(0,0,0,0);-ms-text-size-adjust:100%;-webkit-text-size-adjust:100%;color:#333;color:var(--color-black-80,#333);font-family:DNB,sans-serif;font-family:var(--font-family-default);font-size:1rem;font-size:var(--font-size-small);font-style:normal;font-weight:400;font-weight:var(--font-weight-basis);line-height:1.5rem;line-height:var(--line-height-basis);margin:0;padding:0;-moz-tab-size:4;-o-tab-size:4;tab-size:4;word-break:break-word}.dnb-visually-hidden *,.dnb-visually-hidden :after,.dnb-visually-hidden :before{background-repeat:no-repeat;-webkit-box-sizing:border-box;box-sizing:border-box}.dnb-visually-hidden :after,.dnb-visually-hidden :before{text-decoration:inherit;vertical-align:inherit}.dnb-visually-hidden--focusable:not(:focus):not([focus-within]){-webkit-touch-callout:none;border:0;-webkit-clip-path:inset(50%);clip-path:inset(50%);margin:0;max-height:1px;max-width:1px;overflow:hidden;padding:0;pointer-events:none;position:absolute;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;white-space:nowrap}.dnb-visually-hidden--focusable:not(:focus):not(:focus-within){-webkit-touch-callout:none;border:0;-webkit-clip-path:inset(50%);clip-path:inset(50%);margin:0;max-height:1px;max-width:1px;overflow:hidden;padding:0;pointer-events:none;position:absolute;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;white-space:nowrap}
|
package/cjs/shared/Eufemia.js
CHANGED
|
@@ -316,18 +316,21 @@ $breakpoints: (
|
|
|
316
316
|
|
|
317
317
|
position: absolute;
|
|
318
318
|
|
|
319
|
-
clip:
|
|
319
|
+
clip-path: inset(50%);
|
|
320
|
+
max-width: 1px; // if less than 1px, Safari moves the focus-ring to another place
|
|
321
|
+
max-height: 1px; // if less than 1px, Safari moves the focus-ring to another place
|
|
322
|
+
|
|
320
323
|
overflow: hidden;
|
|
321
324
|
white-space: nowrap; // NB: so NVDA not splits up text in multi line
|
|
322
325
|
|
|
323
|
-
height: 1px;
|
|
324
|
-
width: 1px; // splits up in multiline, unless we have nowrap
|
|
325
|
-
margin: -1px 0 0 -1px;
|
|
326
326
|
padding: 0;
|
|
327
|
+
margin: 0;
|
|
327
328
|
|
|
328
329
|
border: 0;
|
|
329
330
|
}
|
|
330
331
|
|
|
332
|
+
// deprecated and can be removed in v10
|
|
333
|
+
// Visual test and docs should be removed as well!
|
|
331
334
|
@mixin srOnlyInline() {
|
|
332
335
|
@include srOnly();
|
|
333
336
|
|
|
@@ -337,28 +340,24 @@ $breakpoints: (
|
|
|
337
340
|
display: inline-block;
|
|
338
341
|
|
|
339
342
|
visibility: visible; // should not be hidden!
|
|
340
|
-
opacity: 0;
|
|
341
343
|
|
|
342
344
|
font-size: 0;
|
|
343
345
|
line-height: 0;
|
|
344
346
|
}
|
|
345
347
|
|
|
346
|
-
//
|
|
347
|
-
//
|
|
348
|
-
// for screen readers only, but we want to force
|
|
349
|
-
// it to show for sighted users under more specific
|
|
350
|
-
// conditions.
|
|
348
|
+
// deprecated and can be removed in v10
|
|
349
|
+
// Visual test and docs should be removed as well!
|
|
351
350
|
@mixin notSrOnly() {
|
|
352
351
|
position: initial;
|
|
353
|
-
|
|
354
|
-
|
|
352
|
+
max-width: initial;
|
|
353
|
+
max-height: initial;
|
|
355
354
|
|
|
355
|
+
clip-path: initial;
|
|
356
356
|
overflow: auto;
|
|
357
|
-
opacity: 1;
|
|
358
357
|
|
|
359
|
-
font-size:
|
|
360
|
-
line-height:
|
|
361
|
-
white-space:
|
|
358
|
+
font-size: initial;
|
|
359
|
+
line-height: initial;
|
|
360
|
+
white-space: initial;
|
|
362
361
|
}
|
|
363
362
|
|
|
364
363
|
@function str-replace($string, $search, $replace: '') {
|
|
@@ -368,13 +368,14 @@ html[data-whatintent='touch'] .dnb-skip-link {
|
|
|
368
368
|
-webkit-touch-callout: none;
|
|
369
369
|
pointer-events: none;
|
|
370
370
|
position: absolute;
|
|
371
|
-
clip:
|
|
371
|
+
-webkit-clip-path: inset(50%);
|
|
372
|
+
clip-path: inset(50%);
|
|
373
|
+
max-width: 1px;
|
|
374
|
+
max-height: 1px;
|
|
372
375
|
overflow: hidden;
|
|
373
376
|
white-space: nowrap;
|
|
374
|
-
height: 1px;
|
|
375
|
-
width: 1px;
|
|
376
|
-
margin: -1px 0 0 -1px;
|
|
377
377
|
padding: 0;
|
|
378
|
+
margin: 0;
|
|
378
379
|
border: 0; }
|
|
379
380
|
|
|
380
381
|
.dnb-sr-only--inline {
|
|
@@ -385,31 +386,37 @@ html[data-whatintent='touch'] .dnb-skip-link {
|
|
|
385
386
|
-webkit-touch-callout: none;
|
|
386
387
|
pointer-events: none;
|
|
387
388
|
position: absolute;
|
|
388
|
-
clip:
|
|
389
|
+
-webkit-clip-path: inset(50%);
|
|
390
|
+
clip-path: inset(50%);
|
|
391
|
+
max-width: 1px;
|
|
392
|
+
max-height: 1px;
|
|
389
393
|
overflow: hidden;
|
|
390
394
|
white-space: nowrap;
|
|
391
|
-
height: 1px;
|
|
392
|
-
width: 1px;
|
|
393
|
-
margin: -1px 0 0 -1px;
|
|
394
395
|
padding: 0;
|
|
396
|
+
margin: 0;
|
|
395
397
|
border: 0;
|
|
396
398
|
position: static;
|
|
397
399
|
display: inline-block;
|
|
398
400
|
visibility: visible;
|
|
399
|
-
opacity: 0;
|
|
400
401
|
font-size: 0;
|
|
401
402
|
line-height: 0; }
|
|
402
403
|
|
|
403
404
|
.dnb-not-sr-only {
|
|
404
405
|
position: static;
|
|
405
406
|
position: initial;
|
|
406
|
-
|
|
407
|
-
width:
|
|
407
|
+
max-width: none;
|
|
408
|
+
max-width: initial;
|
|
409
|
+
max-height: none;
|
|
410
|
+
max-height: initial;
|
|
411
|
+
-webkit-clip-path: initial;
|
|
412
|
+
clip-path: initial;
|
|
408
413
|
overflow: auto;
|
|
409
|
-
opacity: 1;
|
|
410
414
|
font-size: medium;
|
|
415
|
+
font-size: initial;
|
|
411
416
|
line-height: normal;
|
|
412
|
-
|
|
417
|
+
line-height: initial;
|
|
418
|
+
white-space: normal;
|
|
419
|
+
white-space: initial; }
|
|
413
420
|
|
|
414
421
|
.dnb-suffix {
|
|
415
422
|
padding-left: 0.5rem;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
:root{--font-family-default:"DNB",sans-serif;--font-family-monospace:"DNBMono","Menlo","Consolas","Roboto Mono","Ubuntu Monospace","Noto Mono","Oxygen Mono","Liberation Mono",monospace;--font-weight-default:normal;--font-weight-basis:normal;--font-weight-regular:normal;--font-weight-medium:500;--font-weight-bold:600;--font-size-x-small:0.875rem;--font-size-small:1rem;--font-size-basis:1.125rem;--font-size-basis--em:1em;--font-size-medium:1.25rem;--font-size-large:1.625rem;--font-size-x-large:2.125rem;--font-size-xx-large:3rem;--line-height-xx-small--em:1em;--line-height-x-small:1.125rem;--line-height-small:1.25rem;--line-height-basis:1.5rem;--line-height-basis--em:1.333em;--line-height-medium:2rem;--line-height-large:2.5rem;--line-height-x-large:3.5rem;--color-mint-green-50:#d2f0e9;--color-mint-green-25:#e9f8f4;--color-mint-green-12:#f4fbf9;--color-sea-green-30:#b3dada;--color-accent-yellow-30:#feebc1;--color-signal-orange:#ff5400;--color-fire-red:#dc2a2a;--color-success-green:#007b5e;--color-fire-red-8:#fdeeee;--color-black:#000;--color-black-80:#333;--color-black-55:#737373;--color-black-20:#ccc;--color-black-8:#ebebeb;--color-black-3:#f8f8f8;--color-white:#fff;--color-black-border:#cdcdcd;--color-black-background:#fafafa;--color-sea-green:#007272;--color-mint-green:#a5e1d2;--color-summer-green:#28b482;--color-emerald-green:#14555a;--color-ocean-green:#00343e;--color-accent-yellow:#fdbb31;--color-indigo:#23195a;--color-violet:#6e2382;--color-sky-blue:#4bbed2;--color-lavender:#f2f2f5;--color-sand-yellow:#fbf6ec;--color-pistachio:#f2f4ec;--color-mint-green-alt:#ebfffa;--color-indigo-medium:#6e6491;--color-indigo-light:#b9afc8;--color-violet-medium:#a06eaf;--color-violet-light:#cfb9d7;--color-sky-blue-medium:#87d2e1;--color-sky-blue-light:#c3ebf0;--spacing-xx-small:0.25rem;--spacing-x-small:0.5rem;--spacing-small:1rem;--spacing-medium:1.5rem;--spacing-large:2rem;--spacing-x-large:3rem;--spacing-xx-large:3.5rem;--layout-small:40em;--layout-medium:50em;--layout-large:60em;--layout-x-large:72em;--layout-xx-large:80em;--layout-xxx-large:90em;--shadow-default:0 8px 16px rgba(51,51,51,.08);--shadow-default-x:0;--shadow-default-y:8px;--shadow-default-blur-radius:16px;--shadow-default-color:rgba(51,51,51,.08);--easing-default:cubic-bezier(0.42,0,0,1)}.dnb-typo-regular{font-weight:400}.dnb-typo-medium,.dnb-typo-regular{font-family:DNB,sans-serif;font-family:var(--font-family-default);font-style:normal}.dnb-typo-medium{font-weight:500;font-weight:var(--font-weight-medium)}.dnb-typo-bold{font-family:DNB,sans-serif;font-family:var(--font-family-default);font-style:normal;font-weight:600;font-weight:var(--font-weight-bold)}.dnb-typo-mono-regular{font-family:DNBMono,Menlo,Consolas,Roboto Mono,"Ubuntu Monospace",Noto Mono,Oxygen Mono,Liberation Mono,monospace;font-family:var(--font-family-monospace);font-style:normal;font-weight:400}@font-face{font-display:fallback;font-family:DNB;font-style:normal;font-weight:400;src:url(../assets/fonts/DNB-Regular.woff2) format("woff2"),url(../assets/fonts/DNB-Regular.woff) format("woff"),url(../assets/fonts/DNB-Regular.ttf) format("truetype")}@font-face{font-display:fallback;font-family:DNB;font-style:normal;font-weight:500;src:url(../assets/fonts/DNB-Medium.woff2) format("woff2"),url(../assets/fonts/DNB-Medium.woff) format("woff"),url(../assets/fonts/DNB-Medium.ttf) format("truetype")}@font-face{font-display:fallback;font-family:DNB;font-style:normal;font-weight:600;src:url(../assets/fonts/DNB-Bold.woff2) format("woff2"),url(../assets/fonts/DNB-Bold.woff) format("woff"),url(../assets/fonts/DNB-Bold.ttf) format("truetype")}@font-face{font-display:fallback;font-family:DNBMono;font-style:normal;font-weight:400;src:url(../assets/fonts/DNBMono-Regular.woff2) format("woff2"),url(../assets/fonts/DNBMono-Regular.woff) format("woff"),url(../assets/fonts/DNBMono-Regular.ttf) format("truetype")}.dnb-no-focus,.dnb-tab-focus,.dnb-tab-focus:focus{outline:none}html[data-whatinput=keyboard] .dnb-tab-focus:focus{--border-color:var(--color-emerald-green);border-color:transparent;-webkit-box-shadow:0 0 0 .125rem var(--border-color);box-shadow:0 0 0 .125rem var(--border-color)}@media screen and (-ms-high-contrast:none){html[data-whatinput=keyboard] .dnb-tab-focus:focus{-webkit-box-shadow:0 0 0 .125rem #14555a;box-shadow:0 0 0 .125rem #14555a;-webkit-box-shadow:0 0 0 .125rem var(--color-emerald-green);box-shadow:0 0 0 .125rem var(--color-emerald-green)}}.dnb-mouse-focus,.dnb-mouse-focus:focus{outline:none}html[data-whatinput=mouse] .dnb-mouse-focus:focus{--border-color:var(--color-emerald-green);border-color:transparent;-webkit-box-shadow:0 0 0 .125rem var(--border-color);box-shadow:0 0 0 .125rem var(--border-color)}@media screen and (-ms-high-contrast:none){html[data-whatinput=mouse] .dnb-mouse-focus:focus{-webkit-box-shadow:0 0 0 .125rem #14555a;box-shadow:0 0 0 .125rem #14555a;-webkit-box-shadow:0 0 0 .125rem var(--color-emerald-green);box-shadow:0 0 0 .125rem var(--color-emerald-green)}}.dnb-focus-ring{--border-color:var(--color-emerald-green);border-color:transparent;-webkit-box-shadow:0 0 0 .125rem var(--border-color)!important;box-shadow:0 0 0 .125rem var(--border-color)!important}@media screen and (-ms-high-contrast:none){.dnb-focus-ring{-webkit-box-shadow:0 0 0 .125rem #14555a!important;box-shadow:0 0 0 .125rem #14555a!important;-webkit-box-shadow:0 0 0 .125rem var(--color-emerald-green)!important;box-shadow:0 0 0 .125rem var(--color-emerald-green)!important}}.dnb-scrollbar-appearance{-ms-scroll-chaining:none;-webkit-overflow-scrolling:touch;-ms-overflow-style:auto;overscroll-behavior:contain;scrollbar-color:#14555a transparent;scrollbar-color:var(--color-emerald-green) transparent;scrollbar-width:thin}.dnb-skip-link{opacity:.3;position:absolute;top:-100vh;-webkit-transition:opacity .3s ease-out;transition:opacity .3s ease-out;z-index:0}.dnb-skip-link--active,.dnb-skip-link:focus{background-color:transparent;border:none;border-radius:0;-webkit-box-shadow:none;box-shadow:none;color:#007272;color:var(--color-sea-green);font-size:1.125rem;font-size:var(--font-size-basis);left:40%;margin:0;outline:none;padding:.5rem 1rem;position:fixed;text-align:center;text-decoration:none;top:5%;-moz-user-select:none;-ms-user-select:none;user-select:none;-webkit-user-select:none;white-space:nowrap;z-index:9999}.dnb-skip-link--active:after,.dnb-skip-link:focus:after{background-color:hsla(0,0%,100%,.85);-webkit-box-shadow:150vw 150vh 0 0 hsla(0,0%,100%,.85);box-shadow:150vw 150vh 0 0 hsla(0,0%,100%,.85);content:"";height:150vh;left:-200vw;position:absolute;top:-200vh;width:150vw;z-index:-2}.dnb-skip-link--active:before,.dnb-skip-link:focus:before{background-color:#fff;background-color:var(--color-white);border-radius:1.5rem;content:"";height:100%;left:0;outline:none;position:absolute;top:0;width:100%;z-index:-1}html[data-whatinput=mouse] .dnb-skip-link--active:before,html[data-whatinput=mouse] .dnb-skip-link:focus:before{--border-color:var(--color-emerald-green);border-color:transparent;-webkit-box-shadow:0 0 0 .125rem var(--border-color);box-shadow:0 0 0 .125rem var(--border-color)}@media screen and (-ms-high-contrast:none){html[data-whatinput=mouse] .dnb-skip-link--active:before,html[data-whatinput=mouse] .dnb-skip-link:focus:before{-webkit-box-shadow:0 0 0 .125rem #14555a;box-shadow:0 0 0 .125rem #14555a;-webkit-box-shadow:0 0 0 .125rem var(--color-emerald-green);box-shadow:0 0 0 .125rem var(--color-emerald-green)}}.dnb-skip-link--active:hover:before,.dnb-skip-link:focus:hover:before{background-color:#d2f0e9;background-color:var(--color-mint-green-50)}.dnb-skip-link--active:active:before,.dnb-skip-link:focus:active:before{background-color:#14555a;background-color:var(--color-emerald-green)}.dnb-skip-link--active:focus:not(:active):before,.dnb-skip-link:focus:focus:not(:active):before{outline:none}html[data-whatinput=keyboard] .dnb-skip-link--active:focus:not(:active):before,html[data-whatinput=keyboard] .dnb-skip-link:focus:focus:not(:active):before{--border-color:var(--color-emerald-green);border-color:transparent;-webkit-box-shadow:0 0 0 .125rem var(--border-color);box-shadow:0 0 0 .125rem var(--border-color)}@media screen and (-ms-high-contrast:none){html[data-whatinput=keyboard] .dnb-skip-link--active:focus:not(:active):before,html[data-whatinput=keyboard] .dnb-skip-link:focus:focus:not(:active):before{-webkit-box-shadow:0 0 0 .125rem #14555a;box-shadow:0 0 0 .125rem #14555a;-webkit-box-shadow:0 0 0 .125rem var(--color-emerald-green);box-shadow:0 0 0 .125rem var(--color-emerald-green)}}.dnb-skip-link--active:focus,.dnb-skip-link:focus:focus{opacity:1}.dnb-skip-link--active:focus:not(:hover):not(:active),.dnb-skip-link--active:hover,.dnb-skip-link:focus:focus:not(:hover):not(:active),.dnb-skip-link:focus:hover{background-color:transparent;-webkit-box-shadow:none;box-shadow:none;color:#007272;color:var(--color-sea-green)}.dnb-skip-link--active:active,.dnb-skip-link:focus:active{background-color:transparent;color:#fff;color:var(--color-white)}html[data-whatintent=touch] .dnb-skip-link{display:none}.dnb-alignment-helper,.dnb-alignment-helper:before{speak:none;display:inline-block;font-size:1rem;font-size:var(--font-size-small);height:0;width:0}.dnb-alignment-helper:before{content:"\200C"}.dnb-drop-shadow{-webkit-box-shadow:0 8px 16px rgba(51,51,51,.08);box-shadow:0 8px 16px rgba(51,51,51,.08);-webkit-box-shadow:var(--shadow-default);box-shadow:var(--shadow-default)}.dnb-sr-only,.dnb-sr-only--inline{-webkit-touch-callout:none;clip:rect(1px,1px,1px,1px);border:0;height:1px;margin:-1px 0 0 -1px;overflow:hidden;padding:0;pointer-events:none;position:absolute;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;white-space:nowrap;width:1px}.dnb-sr-only--inline{display:inline-block;font-size:0;line-height:0;opacity:0;position:static;visibility:visible}.dnb-not-sr-only{font-size:medium;height:auto;line-height:normal;opacity:1;overflow:auto;position:static;white-space:normal;width:auto}.dnb-suffix{font-size:1.125rem;font-size:var(--font-size-basis);line-height:1.5rem;line-height:var(--line-height-basis);padding-left:.5rem;word-break:normal}html{font-size:100%;scroll-behavior:smooth}@supports (-webkit-touch-callout:none) and (font:-apple-system-body){html{font:-apple-system-body}}html[xmlns="http://www.w3.org/1999/xhtml"] a:hover{text-decoration:none}html[xmlns="http://www.w3.org/1999/xhtml"] .dnb-anchor--active{color:#a5e1d2!important;color:var(--color-mint-green)!important}html[xmlns="http://www.w3.org/1999/xhtml"] .dnb-anchor--contrast:not(:hover){color:#fff!important;color:var(--color-white)!important}html[xmlns="http://www.w3.org/1999/xhtml"] a.dnb-button--primary{color:#fff;color:var(--color-white)}html[xmlns="http://www.w3.org/1999/xhtml"] ul{list-style:disc none outside;list-style:initial}html[xmlns="http://www.w3.org/1999/xhtml"] p{background-color:transparent;background-color:initial;overflow:visible;overflow:initial;text-align:inherit}html[xmlns="http://www.w3.org/1999/xhtml"] i{font-style:italic}html[xmlns="http://www.w3.org/1999/xhtml"] #column_left,html[xmlns="http://www.w3.org/1999/xhtml"] #root{width:100%}html[xmlns="http://www.w3.org/1999/xhtml"] body#dnbLayoutDefault #wrapper,html[xmlns="http://www.w3.org/1999/xhtml"] body#dnbLayoutDefaultStartPage #wrapper{max-width:60rem;width:100%}html[xmlns="http://www.w3.org/1999/xhtml"] #column_content{-webkit-box-shadow:none;box-shadow:none}body{margin:0}.dnb-core-style{-moz-osx-font-smoothing:grayscale;-webkit-font-smoothing:antialiased;-webkit-tap-highlight-color:rgba(0,0,0,0);-ms-text-size-adjust:100%;-webkit-text-size-adjust:100%;color:#333;color:var(--color-black-80,#333);font-family:DNB,sans-serif;font-family:var(--font-family-default);font-size:1rem;font-size:var(--font-size-small);font-style:normal;font-weight:400;font-weight:var(--font-weight-basis);line-height:1.5rem;line-height:var(--line-height-basis);-moz-tab-size:4;-o-tab-size:4;tab-size:4;word-break:break-word}.dnb-core-style *,.dnb-core-style :after,.dnb-core-style :before{background-repeat:no-repeat;-webkit-box-sizing:border-box;box-sizing:border-box}.dnb-core-style :after,.dnb-core-style :before{text-decoration:inherit;vertical-align:inherit}.dnb-core-style hr{height:0;overflow:visible}.dnb-core-style main{display:block}.dnb-core-style nav ol,.dnb-core-style nav ul{list-style:none}.dnb-core-style abbr[title]{text-decoration:underline;-webkit-text-decoration:underline dotted;text-decoration:underline dotted}.dnb-core-style b,.dnb-core-style strong{font-weight:bolder}.dnb-core-style code,.dnb-core-style kbd,.dnb-core-style pre,.dnb-core-style samp{font-family:DNBMono,Menlo,Consolas,Roboto Mono,"Ubuntu Monospace",Noto Mono,Oxygen Mono,Liberation Mono,monospace;font-family:var(--font-family-monospace);font-size:1em;font-size:var(--font-size-basis--em)}.dnb-core-style ::-moz-selection{background-color:#b3d4fc;color:#000;text-shadow:none}.dnb-core-style audio,.dnb-core-style canvas,.dnb-core-style iframe,.dnb-core-style img,.dnb-core-style svg,.dnb-core-style video{vertical-align:middle}.dnb-core-style audio,.dnb-core-style video{display:inline-block}.dnb-core-style audio:not([controls]){display:none;height:0}.dnb-core-style img{border-style:none}.dnb-core-style svg:not([fill]){fill:currentColor}.dnb-core-style svg:not(:root){overflow:hidden}.dnb-core-style table{border-collapse:collapse}.dnb-core-style button,.dnb-core-style input,.dnb-core-style select,.dnb-core-style textarea{font-family:inherit;font-size:inherit;line-height:inherit}.dnb-core-style button,.dnb-core-style figure,.dnb-core-style input,.dnb-core-style select{margin:0}.dnb-core-style button{overflow:visible;text-transform:none}.dnb-core-style fieldset{padding:.35rem .75rem .625rem}.dnb-core-style input{overflow:visible;word-break:normal}.dnb-core-style legend{color:inherit;display:table;max-width:100%;white-space:normal}.dnb-core-style progress{display:inline-block;vertical-align:baseline}.dnb-core-style select{text-transform:none}.dnb-core-style textarea{overflow:auto;resize:vertical}.dnb-core-style [type=checkbox],.dnb-core-style [type=radio]{padding:0}.dnb-core-style input[type=search]{-webkit-appearance:textfield;outline-offset:-2px}.dnb-core-style ::-webkit-inner-spin-button,.dnb-core-style ::-webkit-outer-spin-button{height:auto}.dnb-core-style ::-webkit-input-placeholder{color:inherit;opacity:.54}.dnb-core-style ::-webkit-search-decoration{-webkit-appearance:none}.dnb-core-style ::-webkit-file-upload-button{background-color:transparent;border:none;font:inherit}.dnb-core-style ::-moz-focus-inner{border-style:none;padding:0}.dnb-core-style details{display:block}.dnb-core-style summary{display:list-item}.dnb-core-style canvas{display:inline-block}.dnb-core-style template{display:none}.dnb-core-style [tabindex],.dnb-core-style a,.dnb-core-style area,.dnb-core-style button,.dnb-core-style input,.dnb-core-style label,.dnb-core-style select,.dnb-core-style summary,.dnb-core-style textarea{-ms-touch-action:manipulation;touch-action:manipulation}.dnb-core-style [hidden]{display:none}.dnb-core-style [aria-busy=true]{cursor:progress}.dnb-core-style [aria-controls]:not(input){cursor:pointer}.dnb-core-style [aria-disabled=true],.dnb-core-style [disabled]{cursor:not-allowed}.dnb-core-style [aria-hidden=false][hidden]:not(:focus){clip:rect(0,0,0,0);display:inherit;position:absolute}@media print{.dnb-core-style{background-color:#fff;color:#000}}
|
|
1
|
+
:root{--font-family-default:"DNB",sans-serif;--font-family-monospace:"DNBMono","Menlo","Consolas","Roboto Mono","Ubuntu Monospace","Noto Mono","Oxygen Mono","Liberation Mono",monospace;--font-weight-default:normal;--font-weight-basis:normal;--font-weight-regular:normal;--font-weight-medium:500;--font-weight-bold:600;--font-size-x-small:0.875rem;--font-size-small:1rem;--font-size-basis:1.125rem;--font-size-basis--em:1em;--font-size-medium:1.25rem;--font-size-large:1.625rem;--font-size-x-large:2.125rem;--font-size-xx-large:3rem;--line-height-xx-small--em:1em;--line-height-x-small:1.125rem;--line-height-small:1.25rem;--line-height-basis:1.5rem;--line-height-basis--em:1.333em;--line-height-medium:2rem;--line-height-large:2.5rem;--line-height-x-large:3.5rem;--color-mint-green-50:#d2f0e9;--color-mint-green-25:#e9f8f4;--color-mint-green-12:#f4fbf9;--color-sea-green-30:#b3dada;--color-accent-yellow-30:#feebc1;--color-signal-orange:#ff5400;--color-fire-red:#dc2a2a;--color-success-green:#007b5e;--color-fire-red-8:#fdeeee;--color-black:#000;--color-black-80:#333;--color-black-55:#737373;--color-black-20:#ccc;--color-black-8:#ebebeb;--color-black-3:#f8f8f8;--color-white:#fff;--color-black-border:#cdcdcd;--color-black-background:#fafafa;--color-sea-green:#007272;--color-mint-green:#a5e1d2;--color-summer-green:#28b482;--color-emerald-green:#14555a;--color-ocean-green:#00343e;--color-accent-yellow:#fdbb31;--color-indigo:#23195a;--color-violet:#6e2382;--color-sky-blue:#4bbed2;--color-lavender:#f2f2f5;--color-sand-yellow:#fbf6ec;--color-pistachio:#f2f4ec;--color-mint-green-alt:#ebfffa;--color-indigo-medium:#6e6491;--color-indigo-light:#b9afc8;--color-violet-medium:#a06eaf;--color-violet-light:#cfb9d7;--color-sky-blue-medium:#87d2e1;--color-sky-blue-light:#c3ebf0;--spacing-xx-small:0.25rem;--spacing-x-small:0.5rem;--spacing-small:1rem;--spacing-medium:1.5rem;--spacing-large:2rem;--spacing-x-large:3rem;--spacing-xx-large:3.5rem;--layout-small:40em;--layout-medium:50em;--layout-large:60em;--layout-x-large:72em;--layout-xx-large:80em;--layout-xxx-large:90em;--shadow-default:0 8px 16px rgba(51,51,51,.08);--shadow-default-x:0;--shadow-default-y:8px;--shadow-default-blur-radius:16px;--shadow-default-color:rgba(51,51,51,.08);--easing-default:cubic-bezier(0.42,0,0,1)}.dnb-typo-regular{font-weight:400}.dnb-typo-medium,.dnb-typo-regular{font-family:DNB,sans-serif;font-family:var(--font-family-default);font-style:normal}.dnb-typo-medium{font-weight:500;font-weight:var(--font-weight-medium)}.dnb-typo-bold{font-family:DNB,sans-serif;font-family:var(--font-family-default);font-style:normal;font-weight:600;font-weight:var(--font-weight-bold)}.dnb-typo-mono-regular{font-family:DNBMono,Menlo,Consolas,Roboto Mono,"Ubuntu Monospace",Noto Mono,Oxygen Mono,Liberation Mono,monospace;font-family:var(--font-family-monospace);font-style:normal;font-weight:400}@font-face{font-display:fallback;font-family:DNB;font-style:normal;font-weight:400;src:url(../assets/fonts/DNB-Regular.woff2) format("woff2"),url(../assets/fonts/DNB-Regular.woff) format("woff"),url(../assets/fonts/DNB-Regular.ttf) format("truetype")}@font-face{font-display:fallback;font-family:DNB;font-style:normal;font-weight:500;src:url(../assets/fonts/DNB-Medium.woff2) format("woff2"),url(../assets/fonts/DNB-Medium.woff) format("woff"),url(../assets/fonts/DNB-Medium.ttf) format("truetype")}@font-face{font-display:fallback;font-family:DNB;font-style:normal;font-weight:600;src:url(../assets/fonts/DNB-Bold.woff2) format("woff2"),url(../assets/fonts/DNB-Bold.woff) format("woff"),url(../assets/fonts/DNB-Bold.ttf) format("truetype")}@font-face{font-display:fallback;font-family:DNBMono;font-style:normal;font-weight:400;src:url(../assets/fonts/DNBMono-Regular.woff2) format("woff2"),url(../assets/fonts/DNBMono-Regular.woff) format("woff"),url(../assets/fonts/DNBMono-Regular.ttf) format("truetype")}.dnb-no-focus,.dnb-tab-focus,.dnb-tab-focus:focus{outline:none}html[data-whatinput=keyboard] .dnb-tab-focus:focus{--border-color:var(--color-emerald-green);border-color:transparent;-webkit-box-shadow:0 0 0 .125rem var(--border-color);box-shadow:0 0 0 .125rem var(--border-color)}@media screen and (-ms-high-contrast:none){html[data-whatinput=keyboard] .dnb-tab-focus:focus{-webkit-box-shadow:0 0 0 .125rem #14555a;box-shadow:0 0 0 .125rem #14555a;-webkit-box-shadow:0 0 0 .125rem var(--color-emerald-green);box-shadow:0 0 0 .125rem var(--color-emerald-green)}}.dnb-mouse-focus,.dnb-mouse-focus:focus{outline:none}html[data-whatinput=mouse] .dnb-mouse-focus:focus{--border-color:var(--color-emerald-green);border-color:transparent;-webkit-box-shadow:0 0 0 .125rem var(--border-color);box-shadow:0 0 0 .125rem var(--border-color)}@media screen and (-ms-high-contrast:none){html[data-whatinput=mouse] .dnb-mouse-focus:focus{-webkit-box-shadow:0 0 0 .125rem #14555a;box-shadow:0 0 0 .125rem #14555a;-webkit-box-shadow:0 0 0 .125rem var(--color-emerald-green);box-shadow:0 0 0 .125rem var(--color-emerald-green)}}.dnb-focus-ring{--border-color:var(--color-emerald-green);border-color:transparent;-webkit-box-shadow:0 0 0 .125rem var(--border-color)!important;box-shadow:0 0 0 .125rem var(--border-color)!important}@media screen and (-ms-high-contrast:none){.dnb-focus-ring{-webkit-box-shadow:0 0 0 .125rem #14555a!important;box-shadow:0 0 0 .125rem #14555a!important;-webkit-box-shadow:0 0 0 .125rem var(--color-emerald-green)!important;box-shadow:0 0 0 .125rem var(--color-emerald-green)!important}}.dnb-scrollbar-appearance{-ms-scroll-chaining:none;-webkit-overflow-scrolling:touch;-ms-overflow-style:auto;overscroll-behavior:contain;scrollbar-color:#14555a transparent;scrollbar-color:var(--color-emerald-green) transparent;scrollbar-width:thin}.dnb-skip-link{opacity:.3;position:absolute;top:-100vh;-webkit-transition:opacity .3s ease-out;transition:opacity .3s ease-out;z-index:0}.dnb-skip-link--active,.dnb-skip-link:focus{background-color:transparent;border:none;border-radius:0;-webkit-box-shadow:none;box-shadow:none;color:#007272;color:var(--color-sea-green);font-size:1.125rem;font-size:var(--font-size-basis);left:40%;margin:0;outline:none;padding:.5rem 1rem;position:fixed;text-align:center;text-decoration:none;top:5%;-moz-user-select:none;-ms-user-select:none;user-select:none;-webkit-user-select:none;white-space:nowrap;z-index:9999}.dnb-skip-link--active:after,.dnb-skip-link:focus:after{background-color:hsla(0,0%,100%,.85);-webkit-box-shadow:150vw 150vh 0 0 hsla(0,0%,100%,.85);box-shadow:150vw 150vh 0 0 hsla(0,0%,100%,.85);content:"";height:150vh;left:-200vw;position:absolute;top:-200vh;width:150vw;z-index:-2}.dnb-skip-link--active:before,.dnb-skip-link:focus:before{background-color:#fff;background-color:var(--color-white);border-radius:1.5rem;content:"";height:100%;left:0;outline:none;position:absolute;top:0;width:100%;z-index:-1}html[data-whatinput=mouse] .dnb-skip-link--active:before,html[data-whatinput=mouse] .dnb-skip-link:focus:before{--border-color:var(--color-emerald-green);border-color:transparent;-webkit-box-shadow:0 0 0 .125rem var(--border-color);box-shadow:0 0 0 .125rem var(--border-color)}@media screen and (-ms-high-contrast:none){html[data-whatinput=mouse] .dnb-skip-link--active:before,html[data-whatinput=mouse] .dnb-skip-link:focus:before{-webkit-box-shadow:0 0 0 .125rem #14555a;box-shadow:0 0 0 .125rem #14555a;-webkit-box-shadow:0 0 0 .125rem var(--color-emerald-green);box-shadow:0 0 0 .125rem var(--color-emerald-green)}}.dnb-skip-link--active:hover:before,.dnb-skip-link:focus:hover:before{background-color:#d2f0e9;background-color:var(--color-mint-green-50)}.dnb-skip-link--active:active:before,.dnb-skip-link:focus:active:before{background-color:#14555a;background-color:var(--color-emerald-green)}.dnb-skip-link--active:focus:not(:active):before,.dnb-skip-link:focus:focus:not(:active):before{outline:none}html[data-whatinput=keyboard] .dnb-skip-link--active:focus:not(:active):before,html[data-whatinput=keyboard] .dnb-skip-link:focus:focus:not(:active):before{--border-color:var(--color-emerald-green);border-color:transparent;-webkit-box-shadow:0 0 0 .125rem var(--border-color);box-shadow:0 0 0 .125rem var(--border-color)}@media screen and (-ms-high-contrast:none){html[data-whatinput=keyboard] .dnb-skip-link--active:focus:not(:active):before,html[data-whatinput=keyboard] .dnb-skip-link:focus:focus:not(:active):before{-webkit-box-shadow:0 0 0 .125rem #14555a;box-shadow:0 0 0 .125rem #14555a;-webkit-box-shadow:0 0 0 .125rem var(--color-emerald-green);box-shadow:0 0 0 .125rem var(--color-emerald-green)}}.dnb-skip-link--active:focus,.dnb-skip-link:focus:focus{opacity:1}.dnb-skip-link--active:focus:not(:hover):not(:active),.dnb-skip-link--active:hover,.dnb-skip-link:focus:focus:not(:hover):not(:active),.dnb-skip-link:focus:hover{background-color:transparent;-webkit-box-shadow:none;box-shadow:none;color:#007272;color:var(--color-sea-green)}.dnb-skip-link--active:active,.dnb-skip-link:focus:active{background-color:transparent;color:#fff;color:var(--color-white)}html[data-whatintent=touch] .dnb-skip-link{display:none}.dnb-alignment-helper,.dnb-alignment-helper:before{speak:none;display:inline-block;font-size:1rem;font-size:var(--font-size-small);height:0;width:0}.dnb-alignment-helper:before{content:"\200C"}.dnb-drop-shadow{-webkit-box-shadow:0 8px 16px rgba(51,51,51,.08);box-shadow:0 8px 16px rgba(51,51,51,.08);-webkit-box-shadow:var(--shadow-default);box-shadow:var(--shadow-default)}.dnb-sr-only,.dnb-sr-only--inline{-webkit-touch-callout:none;border:0;-webkit-clip-path:inset(50%);clip-path:inset(50%);margin:0;max-height:1px;max-width:1px;overflow:hidden;padding:0;pointer-events:none;position:absolute;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;white-space:nowrap}.dnb-sr-only--inline{display:inline-block;font-size:0;line-height:0;position:static;visibility:visible}.dnb-not-sr-only{-webkit-clip-path:initial;clip-path:none;font-size:medium;line-height:normal;max-height:none;max-width:none;overflow:auto;position:static;white-space:normal}.dnb-suffix{font-size:1.125rem;font-size:var(--font-size-basis);line-height:1.5rem;line-height:var(--line-height-basis);padding-left:.5rem;word-break:normal}html{font-size:100%;scroll-behavior:smooth}@supports (-webkit-touch-callout:none) and (font:-apple-system-body){html{font:-apple-system-body}}html[xmlns="http://www.w3.org/1999/xhtml"] a:hover{text-decoration:none}html[xmlns="http://www.w3.org/1999/xhtml"] .dnb-anchor--active{color:#a5e1d2!important;color:var(--color-mint-green)!important}html[xmlns="http://www.w3.org/1999/xhtml"] .dnb-anchor--contrast:not(:hover){color:#fff!important;color:var(--color-white)!important}html[xmlns="http://www.w3.org/1999/xhtml"] a.dnb-button--primary{color:#fff;color:var(--color-white)}html[xmlns="http://www.w3.org/1999/xhtml"] ul{list-style:disc none outside;list-style:initial}html[xmlns="http://www.w3.org/1999/xhtml"] p{background-color:transparent;background-color:initial;overflow:visible;overflow:initial;text-align:inherit}html[xmlns="http://www.w3.org/1999/xhtml"] i{font-style:italic}html[xmlns="http://www.w3.org/1999/xhtml"] #column_left,html[xmlns="http://www.w3.org/1999/xhtml"] #root{width:100%}html[xmlns="http://www.w3.org/1999/xhtml"] body#dnbLayoutDefault #wrapper,html[xmlns="http://www.w3.org/1999/xhtml"] body#dnbLayoutDefaultStartPage #wrapper{max-width:60rem;width:100%}html[xmlns="http://www.w3.org/1999/xhtml"] #column_content{-webkit-box-shadow:none;box-shadow:none}body{margin:0}.dnb-core-style{-moz-osx-font-smoothing:grayscale;-webkit-font-smoothing:antialiased;-webkit-tap-highlight-color:rgba(0,0,0,0);-ms-text-size-adjust:100%;-webkit-text-size-adjust:100%;color:#333;color:var(--color-black-80,#333);font-family:DNB,sans-serif;font-family:var(--font-family-default);font-size:1rem;font-size:var(--font-size-small);font-style:normal;font-weight:400;font-weight:var(--font-weight-basis);line-height:1.5rem;line-height:var(--line-height-basis);-moz-tab-size:4;-o-tab-size:4;tab-size:4;word-break:break-word}.dnb-core-style *,.dnb-core-style :after,.dnb-core-style :before{background-repeat:no-repeat;-webkit-box-sizing:border-box;box-sizing:border-box}.dnb-core-style :after,.dnb-core-style :before{text-decoration:inherit;vertical-align:inherit}.dnb-core-style hr{height:0;overflow:visible}.dnb-core-style main{display:block}.dnb-core-style nav ol,.dnb-core-style nav ul{list-style:none}.dnb-core-style abbr[title]{text-decoration:underline;-webkit-text-decoration:underline dotted;text-decoration:underline dotted}.dnb-core-style b,.dnb-core-style strong{font-weight:bolder}.dnb-core-style code,.dnb-core-style kbd,.dnb-core-style pre,.dnb-core-style samp{font-family:DNBMono,Menlo,Consolas,Roboto Mono,"Ubuntu Monospace",Noto Mono,Oxygen Mono,Liberation Mono,monospace;font-family:var(--font-family-monospace);font-size:1em;font-size:var(--font-size-basis--em)}.dnb-core-style ::-moz-selection{background-color:#b3d4fc;color:#000;text-shadow:none}.dnb-core-style audio,.dnb-core-style canvas,.dnb-core-style iframe,.dnb-core-style img,.dnb-core-style svg,.dnb-core-style video{vertical-align:middle}.dnb-core-style audio,.dnb-core-style video{display:inline-block}.dnb-core-style audio:not([controls]){display:none;height:0}.dnb-core-style img{border-style:none}.dnb-core-style svg:not([fill]){fill:currentColor}.dnb-core-style svg:not(:root){overflow:hidden}.dnb-core-style table{border-collapse:collapse}.dnb-core-style button,.dnb-core-style input,.dnb-core-style select,.dnb-core-style textarea{font-family:inherit;font-size:inherit;line-height:inherit}.dnb-core-style button,.dnb-core-style figure,.dnb-core-style input,.dnb-core-style select{margin:0}.dnb-core-style button{overflow:visible;text-transform:none}.dnb-core-style fieldset{padding:.35rem .75rem .625rem}.dnb-core-style input{overflow:visible;word-break:normal}.dnb-core-style legend{color:inherit;display:table;max-width:100%;white-space:normal}.dnb-core-style progress{display:inline-block;vertical-align:baseline}.dnb-core-style select{text-transform:none}.dnb-core-style textarea{overflow:auto;resize:vertical}.dnb-core-style [type=checkbox],.dnb-core-style [type=radio]{padding:0}.dnb-core-style input[type=search]{-webkit-appearance:textfield;outline-offset:-2px}.dnb-core-style ::-webkit-inner-spin-button,.dnb-core-style ::-webkit-outer-spin-button{height:auto}.dnb-core-style ::-webkit-input-placeholder{color:inherit;opacity:.54}.dnb-core-style ::-webkit-search-decoration{-webkit-appearance:none}.dnb-core-style ::-webkit-file-upload-button{background-color:transparent;border:none;font:inherit}.dnb-core-style ::-moz-focus-inner{border-style:none;padding:0}.dnb-core-style details{display:block}.dnb-core-style summary{display:list-item}.dnb-core-style canvas{display:inline-block}.dnb-core-style template{display:none}.dnb-core-style [tabindex],.dnb-core-style a,.dnb-core-style area,.dnb-core-style button,.dnb-core-style input,.dnb-core-style label,.dnb-core-style select,.dnb-core-style summary,.dnb-core-style textarea{-ms-touch-action:manipulation;touch-action:manipulation}.dnb-core-style [hidden]{display:none}.dnb-core-style [aria-busy=true]{cursor:progress}.dnb-core-style [aria-controls]:not(input){cursor:pointer}.dnb-core-style [aria-disabled=true],.dnb-core-style [disabled]{cursor:not-allowed}.dnb-core-style [aria-hidden=false][hidden]:not(:focus){clip:rect(0,0,0,0);display:inherit;position:absolute}@media print{.dnb-core-style{background-color:#fff;color:#000}}
|