@ndwnu/design-system 14.2.0 → 14.2.2
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/CLAUDE.md +1525 -1525
- package/README.md +4 -4
- package/assets/icons.ts +83 -83
- package/fesm2022/ndwnu-design-system.mjs +161 -158
- package/fesm2022/ndwnu-design-system.mjs.map +1 -1
- package/package.json +1 -1
- package/styles/FONTS.md +46 -46
- package/styles/base/_colors.scss +246 -246
- package/styles/base/_fonts.scss +13 -13
- package/styles/base/_material.scss +17 -17
- package/styles/base/_typography.scss +133 -133
- package/styles/base/_variables.scss +92 -92
- package/styles/base/colors.stories.model.ts +85 -85
- package/styles/base/colors.stories.ts +24 -24
- package/styles/base/index.scss +5 -5
- package/styles/base/typography.stories.ts +111 -111
- package/styles/components/_button.scss +133 -133
- package/styles/components/_card.scss +3 -3
- package/styles/components/_datepicker.scss +134 -134
- package/styles/components/_divider.scss +10 -10
- package/styles/components/_dropdown.scss +8 -8
- package/styles/components/_edit-bar.scss +97 -97
- package/styles/components/_filter-button.scss +39 -39
- package/styles/components/_guided-tour.scss +70 -70
- package/styles/components/_input.scss +253 -253
- package/styles/components/_label.scss +23 -23
- package/styles/components/_link.scss +36 -36
- package/styles/components/_list-item.scss +7 -7
- package/styles/components/_map.scss +137 -114
- package/styles/components/_menu-button.scss +37 -37
- package/styles/components/_popover.scss +19 -19
- package/styles/components/_summary-card.scss +183 -183
- package/styles/components/_table.scss +8 -8
- package/styles/components/divider.stories.ts +80 -80
- package/styles/components/index.scss +17 -17
- package/styles/components/link.stories.ts +154 -154
- package/styles/index.scss +4 -4
- package/styles/layout/_grid.scss +165 -165
- package/styles/layout/_overlay.scss +7 -7
- package/styles/layout/grid.stories.ts +168 -168
- package/styles/layout/index.scss +2 -2
- package/styles/storybook/_core.scss +60 -60
- package/styles/storybook/_reset.scss +21 -21
- package/styles/storybook/index.scss +17 -17
- package/styles/storybook/overrides/_buttons.scss +95 -95
- package/styles/storybook/overrides/_code-previews.scss +97 -97
- package/styles/storybook/overrides/_content.scss +24 -24
- package/styles/storybook/overrides/_headers.scss +31 -31
- package/styles/storybook/overrides/_layout.scss +44 -44
- package/styles/storybook/overrides/_table.scss +112 -112
- package/styles/storybook/overrides/index.scss +6 -6
- package/styles/storybook/overrides.css +355 -355
- package/styles/utils/_screenreader.scss +13 -13
- package/styles/utils/classes.stories.ts +157 -157
- package/styles/utils/index.scss +1 -1
- package/types/ndwnu-design-system.d.ts +6 -3
|
@@ -1,23 +1,23 @@
|
|
|
1
|
-
[ndwLabel] {
|
|
2
|
-
align-content: center;
|
|
3
|
-
align-items: center;
|
|
4
|
-
display: grid;
|
|
5
|
-
font-family: var(--ndw-font-family-body);
|
|
6
|
-
font-size: var(--ndw-font-size-sm);
|
|
7
|
-
font-weight: var(--ndw-font-weight-bold);
|
|
8
|
-
gap: var(--ndw-spacing-3xs);
|
|
9
|
-
grid-template-columns: repeat(3, auto);
|
|
10
|
-
justify-content: start;
|
|
11
|
-
line-height: 100%;
|
|
12
|
-
margin-bottom: var(--ndw-spacing-2xs);
|
|
13
|
-
|
|
14
|
-
ndw-icon {
|
|
15
|
-
color: var(--ndw-color-grey-400);
|
|
16
|
-
font-size: var(--ndw-icon-size-md);
|
|
17
|
-
margin-top: calc(var(--ndw-spacing-3xs) * -1);
|
|
18
|
-
}
|
|
19
|
-
|
|
20
|
-
.required {
|
|
21
|
-
color: var(--ndw-color-grey-400);
|
|
22
|
-
}
|
|
23
|
-
}
|
|
1
|
+
[ndwLabel] {
|
|
2
|
+
align-content: center;
|
|
3
|
+
align-items: center;
|
|
4
|
+
display: grid;
|
|
5
|
+
font-family: var(--ndw-font-family-body);
|
|
6
|
+
font-size: var(--ndw-font-size-sm);
|
|
7
|
+
font-weight: var(--ndw-font-weight-bold);
|
|
8
|
+
gap: var(--ndw-spacing-3xs);
|
|
9
|
+
grid-template-columns: repeat(3, auto);
|
|
10
|
+
justify-content: start;
|
|
11
|
+
line-height: 100%;
|
|
12
|
+
margin-bottom: var(--ndw-spacing-2xs);
|
|
13
|
+
|
|
14
|
+
ndw-icon {
|
|
15
|
+
color: var(--ndw-color-grey-400);
|
|
16
|
+
font-size: var(--ndw-icon-size-md);
|
|
17
|
+
margin-top: calc(var(--ndw-spacing-3xs) * -1);
|
|
18
|
+
}
|
|
19
|
+
|
|
20
|
+
.required {
|
|
21
|
+
color: var(--ndw-color-grey-400);
|
|
22
|
+
}
|
|
23
|
+
}
|
|
@@ -1,36 +1,36 @@
|
|
|
1
|
-
[ndwLink] {
|
|
2
|
-
display: inline-flex;
|
|
3
|
-
align-items: baseline;
|
|
4
|
-
gap: var(--ndw-spacing-2xs);
|
|
5
|
-
padding: 0;
|
|
6
|
-
border: 0;
|
|
7
|
-
|
|
8
|
-
font-size: inherit;
|
|
9
|
-
font-family: var(--ndw-font-family-body);
|
|
10
|
-
text-decoration: underline var(--ndw-border-size-sm) transparent;
|
|
11
|
-
text-underline-offset: var(--ndw-border-size-md);
|
|
12
|
-
|
|
13
|
-
color: var(--ndw-color-link-400);
|
|
14
|
-
background-color: transparent;
|
|
15
|
-
transition: text-decoration-color var(--ndw-animation-speed-fast) ease-in-out;
|
|
16
|
-
|
|
17
|
-
> * {
|
|
18
|
-
align-self: center;
|
|
19
|
-
}
|
|
20
|
-
|
|
21
|
-
ndw-icon {
|
|
22
|
-
font-size: 1.25em;
|
|
23
|
-
overflow: hidden;
|
|
24
|
-
}
|
|
25
|
-
|
|
26
|
-
&:hover {
|
|
27
|
-
color: var(--ndw-color-link-500);
|
|
28
|
-
text-decoration-color: var(--ndw-color-link-500);
|
|
29
|
-
}
|
|
30
|
-
|
|
31
|
-
&[disabled] {
|
|
32
|
-
color: var(--ndw-color-grey-400);
|
|
33
|
-
pointer-events: none;
|
|
34
|
-
user-select: none;
|
|
35
|
-
}
|
|
36
|
-
}
|
|
1
|
+
[ndwLink] {
|
|
2
|
+
display: inline-flex;
|
|
3
|
+
align-items: baseline;
|
|
4
|
+
gap: var(--ndw-spacing-2xs);
|
|
5
|
+
padding: 0;
|
|
6
|
+
border: 0;
|
|
7
|
+
|
|
8
|
+
font-size: inherit;
|
|
9
|
+
font-family: var(--ndw-font-family-body);
|
|
10
|
+
text-decoration: underline var(--ndw-border-size-sm) transparent;
|
|
11
|
+
text-underline-offset: var(--ndw-border-size-md);
|
|
12
|
+
|
|
13
|
+
color: var(--ndw-color-link-400);
|
|
14
|
+
background-color: transparent;
|
|
15
|
+
transition: text-decoration-color var(--ndw-animation-speed-fast) ease-in-out;
|
|
16
|
+
|
|
17
|
+
> * {
|
|
18
|
+
align-self: center;
|
|
19
|
+
}
|
|
20
|
+
|
|
21
|
+
ndw-icon {
|
|
22
|
+
font-size: 1.25em;
|
|
23
|
+
overflow: hidden;
|
|
24
|
+
}
|
|
25
|
+
|
|
26
|
+
&:hover {
|
|
27
|
+
color: var(--ndw-color-link-500);
|
|
28
|
+
text-decoration-color: var(--ndw-color-link-500);
|
|
29
|
+
}
|
|
30
|
+
|
|
31
|
+
&[disabled] {
|
|
32
|
+
color: var(--ndw-color-grey-400);
|
|
33
|
+
pointer-events: none;
|
|
34
|
+
user-select: none;
|
|
35
|
+
}
|
|
36
|
+
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
@use '../base/typography' as *;
|
|
2
|
-
|
|
3
|
-
[ndw-list-item] {
|
|
4
|
-
cursor: pointer;
|
|
5
|
-
|
|
6
|
-
@include ndw-paragraph-md;
|
|
7
|
-
}
|
|
1
|
+
@use '../base/typography' as *;
|
|
2
|
+
|
|
3
|
+
[ndw-list-item] {
|
|
4
|
+
cursor: pointer;
|
|
5
|
+
|
|
6
|
+
@include ndw-paragraph-md;
|
|
7
|
+
}
|
|
@@ -1,114 +1,137 @@
|
|
|
1
|
-
@use '../base/typography' as *;
|
|
2
|
-
|
|
3
|
-
.map-control {
|
|
4
|
-
position: relative;
|
|
5
|
-
overflow: hidden;
|
|
6
|
-
display: inline-flex;
|
|
7
|
-
align-items: center;
|
|
8
|
-
|
|
9
|
-
height: 40px;
|
|
10
|
-
min-width: 40px;
|
|
11
|
-
line-height: 100%;
|
|
12
|
-
|
|
13
|
-
border: var(--ndw-border-size-sm) solid var(--ndw-color-grey-200);
|
|
14
|
-
border-radius: var(--ndw-border-radius-sm);
|
|
15
|
-
box-shadow: var(--ndw-elevation-content);
|
|
16
|
-
|
|
17
|
-
@include ndw-paragraph-bold-md;
|
|
18
|
-
color: var(--ndw-color-grey-500);
|
|
19
|
-
background-color: var(--ndw-color-white);
|
|
20
|
-
transition: var(--ndw-animation-speed-default);
|
|
21
|
-
will-change: background-color, color;
|
|
22
|
-
|
|
23
|
-
&:hover {
|
|
24
|
-
background-color: var(--ndw-color-grey-100);
|
|
25
|
-
}
|
|
26
|
-
|
|
27
|
-
&.active {
|
|
28
|
-
color: var(--ndw-color-primary-500);
|
|
29
|
-
|
|
30
|
-
ndw-icon {
|
|
31
|
-
font-variation-settings: 'FILL' 1;
|
|
32
|
-
}
|
|
33
|
-
|
|
34
|
-
.map-control__chevron {
|
|
35
|
-
rotate: 180deg;
|
|
36
|
-
}
|
|
37
|
-
}
|
|
38
|
-
|
|
39
|
-
&:disabled,
|
|
40
|
-
&.disabled {
|
|
41
|
-
pointer-events: none;
|
|
42
|
-
color: var(--ndw-color-grey-300);
|
|
43
|
-
}
|
|
44
|
-
|
|
45
|
-
.map-control__chevron {
|
|
46
|
-
pointer-events: none;
|
|
47
|
-
padding: 0.25rem;
|
|
48
|
-
color: var(--ndw-color-primary);
|
|
49
|
-
|
|
50
|
-
transition-property: rotate;
|
|
51
|
-
transition-duration: var(--ndw-animation-speed-fast);
|
|
52
|
-
transition-timing-function: ease-out;
|
|
53
|
-
transition-delay: 0s;
|
|
54
|
-
}
|
|
55
|
-
|
|
56
|
-
.content-wrapper:not(:empty) {
|
|
57
|
-
@include ndw-paragraph-bold-md;
|
|
58
|
-
line-height: 1rem;
|
|
59
|
-
padding-inline: var(--ndw-spacing-xs);
|
|
60
|
-
}
|
|
61
|
-
|
|
62
|
-
> button {
|
|
63
|
-
@include ndw-paragraph-bold-md;
|
|
64
|
-
|
|
65
|
-
border: none;
|
|
66
|
-
background: none;
|
|
67
|
-
padding: var(--ndw-spacing-xs);
|
|
68
|
-
|
|
69
|
-
color: var(--ndw-color-grey-600);
|
|
70
|
-
font-size: var(--ndw-font-size-sm);
|
|
71
|
-
font-weight: var(--ndw-font-weight-bold);
|
|
72
|
-
|
|
73
|
-
&:after {
|
|
74
|
-
content: '';
|
|
75
|
-
position: absolute;
|
|
76
|
-
inset: 0;
|
|
77
|
-
}
|
|
78
|
-
}
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
1
|
+
@use '../base/typography' as *;
|
|
2
|
+
|
|
3
|
+
.map-control {
|
|
4
|
+
position: relative;
|
|
5
|
+
overflow: hidden;
|
|
6
|
+
display: inline-flex;
|
|
7
|
+
align-items: center;
|
|
8
|
+
|
|
9
|
+
height: 40px;
|
|
10
|
+
min-width: 40px;
|
|
11
|
+
line-height: 100%;
|
|
12
|
+
|
|
13
|
+
border: var(--ndw-border-size-sm) solid var(--ndw-color-grey-200);
|
|
14
|
+
border-radius: var(--ndw-border-radius-sm);
|
|
15
|
+
box-shadow: var(--ndw-elevation-content);
|
|
16
|
+
|
|
17
|
+
@include ndw-paragraph-bold-md;
|
|
18
|
+
color: var(--ndw-color-grey-500);
|
|
19
|
+
background-color: var(--ndw-color-white);
|
|
20
|
+
transition: var(--ndw-animation-speed-default);
|
|
21
|
+
will-change: background-color, color;
|
|
22
|
+
|
|
23
|
+
&:hover {
|
|
24
|
+
background-color: var(--ndw-color-grey-100);
|
|
25
|
+
}
|
|
26
|
+
|
|
27
|
+
&.active {
|
|
28
|
+
color: var(--ndw-color-primary-500);
|
|
29
|
+
|
|
30
|
+
ndw-icon {
|
|
31
|
+
font-variation-settings: 'FILL' 1;
|
|
32
|
+
}
|
|
33
|
+
|
|
34
|
+
.map-control__chevron {
|
|
35
|
+
rotate: 180deg;
|
|
36
|
+
}
|
|
37
|
+
}
|
|
38
|
+
|
|
39
|
+
&:disabled,
|
|
40
|
+
&.disabled {
|
|
41
|
+
pointer-events: none;
|
|
42
|
+
color: var(--ndw-color-grey-300);
|
|
43
|
+
}
|
|
44
|
+
|
|
45
|
+
.map-control__chevron {
|
|
46
|
+
pointer-events: none;
|
|
47
|
+
padding: 0.25rem;
|
|
48
|
+
color: var(--ndw-color-primary);
|
|
49
|
+
|
|
50
|
+
transition-property: rotate;
|
|
51
|
+
transition-duration: var(--ndw-animation-speed-fast);
|
|
52
|
+
transition-timing-function: ease-out;
|
|
53
|
+
transition-delay: 0s;
|
|
54
|
+
}
|
|
55
|
+
|
|
56
|
+
.content-wrapper:not(:empty) {
|
|
57
|
+
@include ndw-paragraph-bold-md;
|
|
58
|
+
line-height: 1rem;
|
|
59
|
+
padding-inline: var(--ndw-spacing-xs);
|
|
60
|
+
}
|
|
61
|
+
|
|
62
|
+
> button {
|
|
63
|
+
@include ndw-paragraph-bold-md;
|
|
64
|
+
|
|
65
|
+
border: none;
|
|
66
|
+
background: none;
|
|
67
|
+
padding: var(--ndw-spacing-xs);
|
|
68
|
+
|
|
69
|
+
color: var(--ndw-color-grey-600);
|
|
70
|
+
font-size: var(--ndw-font-size-sm);
|
|
71
|
+
font-weight: var(--ndw-font-weight-bold);
|
|
72
|
+
|
|
73
|
+
&:after {
|
|
74
|
+
content: '';
|
|
75
|
+
position: absolute;
|
|
76
|
+
inset: 0;
|
|
77
|
+
}
|
|
78
|
+
}
|
|
79
|
+
|
|
80
|
+
&--compact {
|
|
81
|
+
height: 32px;
|
|
82
|
+
min-width: 32px;
|
|
83
|
+
|
|
84
|
+
> svg,
|
|
85
|
+
> ndw-icon {
|
|
86
|
+
width: 20px;
|
|
87
|
+
height: 20px;
|
|
88
|
+
font-size: 20px;
|
|
89
|
+
}
|
|
90
|
+
|
|
91
|
+
> button {
|
|
92
|
+
padding: 0;
|
|
93
|
+
}
|
|
94
|
+
|
|
95
|
+
ndw-map-display-option img,
|
|
96
|
+
ndw-map-display-option ndw-icon {
|
|
97
|
+
width: 24px;
|
|
98
|
+
height: 24px;
|
|
99
|
+
padding: var(--ndw-spacing-3xs);
|
|
100
|
+
}
|
|
101
|
+
}
|
|
102
|
+
}
|
|
103
|
+
|
|
104
|
+
.map-control-dropdown {
|
|
105
|
+
display: grid;
|
|
106
|
+
grid-template-rows: max-content 1fr;
|
|
107
|
+
padding: var(--ndw-spacing-2xs);
|
|
108
|
+
width: 240px;
|
|
109
|
+
|
|
110
|
+
border: var(--ndw-border-size-sm) solid var(--ndw-color-grey-200);
|
|
111
|
+
border-radius: var(--ndw-border-radius-sm);
|
|
112
|
+
box-shadow: var(--ndw-elevation-dropdown);
|
|
113
|
+
|
|
114
|
+
background-color: var(--ndw-color-white);
|
|
115
|
+
|
|
116
|
+
&:not(.fixed) {
|
|
117
|
+
max-height: 380px;
|
|
118
|
+
}
|
|
119
|
+
|
|
120
|
+
header {
|
|
121
|
+
display: flex;
|
|
122
|
+
justify-content: space-between;
|
|
123
|
+
align-items: center;
|
|
124
|
+
gap: var(--ndw-spacing-xs);
|
|
125
|
+
padding: var(--ndw-spacing-xs) 0 var(--ndw-spacing-xs) var(--ndw-spacing-2xs);
|
|
126
|
+
|
|
127
|
+
h3 {
|
|
128
|
+
color: var(--ndw-color-grey-600);
|
|
129
|
+
margin-block: 0;
|
|
130
|
+
}
|
|
131
|
+
}
|
|
132
|
+
|
|
133
|
+
&__content {
|
|
134
|
+
flex: 1;
|
|
135
|
+
overflow-y: auto;
|
|
136
|
+
}
|
|
137
|
+
}
|
|
@@ -1,37 +1,37 @@
|
|
|
1
|
-
[ndwButton] {
|
|
2
|
-
&[menu] {
|
|
3
|
-
background-color: transparent;
|
|
4
|
-
border-color: transparent;
|
|
5
|
-
color: var(--ndw-color-grey-700);
|
|
6
|
-
gap: var(--ndw-spacing-xs);
|
|
7
|
-
height: 2.625rem;
|
|
8
|
-
margin-inline: var(--ndw-spacing-xs);
|
|
9
|
-
padding-inline: 0;
|
|
10
|
-
position: relative;
|
|
11
|
-
width: calc(100% - var(--ndw-spacing-xs) * 2);
|
|
12
|
-
border-radius: var(--ndw-border-radius-md);
|
|
13
|
-
cursor: default;
|
|
14
|
-
transition: var(--ndw-animation-speed-fast);
|
|
15
|
-
|
|
16
|
-
&:hover {
|
|
17
|
-
background-color: var(--ndw-color-grey-100);
|
|
18
|
-
border-color: var(--ndw-color-grey-100);
|
|
19
|
-
cursor: pointer;
|
|
20
|
-
}
|
|
21
|
-
|
|
22
|
-
&:active,
|
|
23
|
-
&[active],
|
|
24
|
-
&[selected] {
|
|
25
|
-
background-color: var(--ndw-color-info-100);
|
|
26
|
-
border-color: var(--ndw-color-info-100);
|
|
27
|
-
&:hover {
|
|
28
|
-
background-color: var(--ndw-color-info-200);
|
|
29
|
-
border-color: var(--ndw-color-info-200);
|
|
30
|
-
}
|
|
31
|
-
}
|
|
32
|
-
|
|
33
|
-
&:not([clickable]) {
|
|
34
|
-
cursor: default;
|
|
35
|
-
}
|
|
36
|
-
}
|
|
37
|
-
}
|
|
1
|
+
[ndwButton] {
|
|
2
|
+
&[menu] {
|
|
3
|
+
background-color: transparent;
|
|
4
|
+
border-color: transparent;
|
|
5
|
+
color: var(--ndw-color-grey-700);
|
|
6
|
+
gap: var(--ndw-spacing-xs);
|
|
7
|
+
height: 2.625rem;
|
|
8
|
+
margin-inline: var(--ndw-spacing-xs);
|
|
9
|
+
padding-inline: 0;
|
|
10
|
+
position: relative;
|
|
11
|
+
width: calc(100% - var(--ndw-spacing-xs) * 2);
|
|
12
|
+
border-radius: var(--ndw-border-radius-md);
|
|
13
|
+
cursor: default;
|
|
14
|
+
transition: var(--ndw-animation-speed-fast);
|
|
15
|
+
|
|
16
|
+
&:hover {
|
|
17
|
+
background-color: var(--ndw-color-grey-100);
|
|
18
|
+
border-color: var(--ndw-color-grey-100);
|
|
19
|
+
cursor: pointer;
|
|
20
|
+
}
|
|
21
|
+
|
|
22
|
+
&:active,
|
|
23
|
+
&[active],
|
|
24
|
+
&[selected] {
|
|
25
|
+
background-color: var(--ndw-color-info-100);
|
|
26
|
+
border-color: var(--ndw-color-info-100);
|
|
27
|
+
&:hover {
|
|
28
|
+
background-color: var(--ndw-color-info-200);
|
|
29
|
+
border-color: var(--ndw-color-info-200);
|
|
30
|
+
}
|
|
31
|
+
}
|
|
32
|
+
|
|
33
|
+
&:not([clickable]) {
|
|
34
|
+
cursor: default;
|
|
35
|
+
}
|
|
36
|
+
}
|
|
37
|
+
}
|
|
@@ -1,19 +1,19 @@
|
|
|
1
|
-
@keyframes show {
|
|
2
|
-
from {
|
|
3
|
-
opacity: 0;
|
|
4
|
-
}
|
|
5
|
-
to {
|
|
6
|
-
opacity: 1;
|
|
7
|
-
}
|
|
8
|
-
}
|
|
9
|
-
|
|
10
|
-
.cdk-overlay-pane {
|
|
11
|
-
&.ndw-popover-panel {
|
|
12
|
-
animation: show var(--ndw-animation-speed-fast) ease-out;
|
|
13
|
-
background-color: var(--ndw-color-white);
|
|
14
|
-
border-radius: var(--ndw-border-radius-md);
|
|
15
|
-
box-shadow: var(--ndw-elevation-popover);
|
|
16
|
-
display: grid;
|
|
17
|
-
padding: var(--ndw-spacing-sm);
|
|
18
|
-
}
|
|
19
|
-
}
|
|
1
|
+
@keyframes show {
|
|
2
|
+
from {
|
|
3
|
+
opacity: 0;
|
|
4
|
+
}
|
|
5
|
+
to {
|
|
6
|
+
opacity: 1;
|
|
7
|
+
}
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
.cdk-overlay-pane {
|
|
11
|
+
&.ndw-popover-panel {
|
|
12
|
+
animation: show var(--ndw-animation-speed-fast) ease-out;
|
|
13
|
+
background-color: var(--ndw-color-white);
|
|
14
|
+
border-radius: var(--ndw-border-radius-md);
|
|
15
|
+
box-shadow: var(--ndw-elevation-popover);
|
|
16
|
+
display: grid;
|
|
17
|
+
padding: var(--ndw-spacing-sm);
|
|
18
|
+
}
|
|
19
|
+
}
|