@patternfly/patternfly 6.0.0-alpha.56 → 6.0.0-alpha.58
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/components/Button/button.css +26 -11
- package/components/Button/button.scss +27 -12
- package/components/CodeBlock/code-block.css +18 -9
- package/components/CodeBlock/code-block.scss +18 -10
- package/components/DescriptionList/description-list.css +39 -34
- package/components/DescriptionList/description-list.scss +25 -25
- package/components/FileUpload/file-upload.css +28 -34
- package/components/FileUpload/file-upload.scss +30 -42
- package/components/Icon/icon.css +154 -18
- package/components/Icon/icon.scss +187 -20
- package/components/Label/label-group.css +39 -44
- package/components/Label/label-group.scss +39 -45
- package/components/Label/label.css +258 -355
- package/components/Label/label.scss +297 -347
- package/components/Sidebar/sidebar.css +20 -9
- package/components/Sidebar/sidebar.scss +23 -11
- package/components/SimpleList/simple-list.css +1 -1
- package/components/SimpleList/simple-list.scss +1 -1
- package/components/ToggleGroup/toggle-group.css +34 -47
- package/components/ToggleGroup/toggle-group.scss +34 -45
- package/docs/components/FileUpload/examples/FileUpload.md +112 -53
- package/docs/components/Icon/examples/Icon.md +82 -11
- package/docs/components/Label/examples/Label.css +4 -0
- package/docs/components/Label/examples/Label.md +999 -223
- package/docs/components/Sidebar/examples/Sidebar.md +19 -0
- package/docs/demos/Form/examples/BasicForms.md +2 -2
- package/package.json +1 -1
- package/patternfly-no-globals.css +701 -570
- package/patternfly-theme-dark-unversioned.css +701 -570
- package/patternfly.css +701 -570
- package/patternfly.min.css +1 -1
- package/patternfly.min.css.map +1 -1
- package/sass-utilities/mixins.scss +18 -0
- package/components/Label/themes/dark/label.scss +0 -53
- package/components/ToggleGroup/themes/dark/toggle-group.scss +0 -12
package/components/Icon/icon.css
CHANGED
|
@@ -1,30 +1,67 @@
|
|
|
1
|
-
|
|
1
|
+
:root,
|
|
2
|
+
:where(.pf-v5-c-icon) {
|
|
2
3
|
--pf-v5-c-icon--Width: 1em;
|
|
3
4
|
--pf-v5-c-icon--Height: 1em;
|
|
4
|
-
--pf-v5-c-icon--m-sm--Width: var(--pf-
|
|
5
|
-
--pf-v5-c-icon--m-sm--Height: var(--pf-
|
|
6
|
-
--pf-v5-c-icon--m-md--Width: var(--pf-
|
|
7
|
-
--pf-v5-c-icon--m-md--Height: var(--pf-
|
|
8
|
-
--pf-v5-c-icon--m-lg--Width: var(--pf-
|
|
9
|
-
--pf-v5-c-icon--m-lg--Height: var(--pf-
|
|
10
|
-
--pf-v5-c-icon--m-xl--Width: var(--pf-
|
|
11
|
-
--pf-v5-c-icon--m-xl--Height: var(--pf-
|
|
5
|
+
--pf-v5-c-icon--m-sm--Width: var(--pf-t--global--icon--size--sm);
|
|
6
|
+
--pf-v5-c-icon--m-sm--Height: var(--pf-t--global--icon--size--sm);
|
|
7
|
+
--pf-v5-c-icon--m-md--Width: var(--pf-t--global--icon--size--md);
|
|
8
|
+
--pf-v5-c-icon--m-md--Height: var(--pf-t--global--icon--size--md);
|
|
9
|
+
--pf-v5-c-icon--m-lg--Width: var(--pf-t--global--icon--size--lg);
|
|
10
|
+
--pf-v5-c-icon--m-lg--Height: var(--pf-t--global--icon--size--lg);
|
|
11
|
+
--pf-v5-c-icon--m-xl--Width: var(--pf-t--global--icon--size--xl);
|
|
12
|
+
--pf-v5-c-icon--m-xl--Height: var(--pf-t--global--icon--size--xl);
|
|
13
|
+
--pf-v5-c-icon--m-2xl--Width: var(--pf-t--global--icon--size--2xl);
|
|
14
|
+
--pf-v5-c-icon--m-2xl--Height: var(--pf-t--global--icon--size--2xl);
|
|
15
|
+
--pf-v5-c-icon--m-3xl--Width: var(--pf-t--global--icon--size--3xl);
|
|
16
|
+
--pf-v5-c-icon--m-3xl--Height: var(--pf-t--global--icon--size--3xl);
|
|
17
|
+
--pf-v5-c-icon--m-body-sm--Width: var(--pf-t--global--icon--size--body--sm);
|
|
18
|
+
--pf-v5-c-icon--m-body-sm--Height: var(--pf-t--global--icon--size--body--sm);
|
|
19
|
+
--pf-v5-c-icon--m-body-default--Width: var(--pf-t--global--icon--size--body--default);
|
|
20
|
+
--pf-v5-c-icon--m-body-default--Height: var(--pf-t--global--icon--size--body--default);
|
|
21
|
+
--pf-v5-c-icon--m-body-lg--Width: var(--pf-t--global--icon--size--body--lg);
|
|
22
|
+
--pf-v5-c-icon--m-body-lg--Height: var(--pf-t--global--icon--size--body--lg);
|
|
23
|
+
--pf-v5-c-icon--m-heading-sm--Width: var(--pf-t--global--icon--size--heading--h6);
|
|
24
|
+
--pf-v5-c-icon--m-heading-sm--Height: var(--pf-t--global--icon--size--heading--h6);
|
|
25
|
+
--pf-v5-c-icon--m-heading-md--Width: var(--pf-t--global--icon--size--heading--h5);
|
|
26
|
+
--pf-v5-c-icon--m-heading-md--Height: var(--pf-t--global--icon--size--heading--h5);
|
|
27
|
+
--pf-v5-c-icon--m-heading-lg--Width: var(--pf-t--global--icon--size--heading--h4);
|
|
28
|
+
--pf-v5-c-icon--m-heading-lg--Height: var(--pf-t--global--icon--size--heading--h4);
|
|
29
|
+
--pf-v5-c-icon--m-heading-xl--Width: var(--pf-t--global--icon--size--heading--h3);
|
|
30
|
+
--pf-v5-c-icon--m-heading-xl--Height: var(--pf-t--global--icon--size--heading--h3);
|
|
31
|
+
--pf-v5-c-icon--m-heading-2xl--Width: var(--pf-t--global--icon--size--heading--h2);
|
|
32
|
+
--pf-v5-c-icon--m-heading-2xl--Height: var(--pf-t--global--icon--size--heading--h2);
|
|
33
|
+
--pf-v5-c-icon--m-heading-3xl--Width: var(--pf-t--global--icon--size--heading--h1);
|
|
34
|
+
--pf-v5-c-icon--m-heading-3xl--Height: var(--pf-t--global--icon--size--heading--h1);
|
|
12
35
|
--pf-v5-c-icon--m-inline--Width: 1em;
|
|
13
36
|
--pf-v5-c-icon--m-inline--Height: 1em;
|
|
14
37
|
--pf-v5-c-icon__content--svg--VerticalAlign: -.125em;
|
|
15
38
|
--pf-v5-c-icon__content--Color: initial;
|
|
16
|
-
--pf-v5-c-icon__content--m-danger--Color: var(--pf-
|
|
17
|
-
--pf-v5-c-icon__content--m-warning--Color: var(--pf-
|
|
18
|
-
--pf-v5-c-icon__content--m-success--Color: var(--pf-
|
|
19
|
-
--pf-v5-c-icon__content--m-info--Color: var(--pf-
|
|
20
|
-
--pf-v5-c-icon__content--m-custom--Color: var(--pf-
|
|
39
|
+
--pf-v5-c-icon__content--m-danger--Color: var(--pf-t--global--color--status--danger--default);
|
|
40
|
+
--pf-v5-c-icon__content--m-warning--Color: var(--pf-t--global--color--status--warning--default);
|
|
41
|
+
--pf-v5-c-icon__content--m-success--Color: var(--pf-t--global--color--status--success--default);
|
|
42
|
+
--pf-v5-c-icon__content--m-info--Color: var(--pf-t--global--color--status--info--default);
|
|
43
|
+
--pf-v5-c-icon__content--m-custom--Color: var(--pf-t--global--color--status--custom--default);
|
|
21
44
|
--pf-v5-c-icon--m-inline__content--Color: initial;
|
|
22
45
|
--pf-v5-c-icon__content--FontSize: 1em;
|
|
23
|
-
--pf-v5-c-icon--m-sm__content--FontSize: var(--pf-
|
|
24
|
-
--pf-v5-c-icon--m-md__content--FontSize: var(--pf-
|
|
25
|
-
--pf-v5-c-icon--m-lg__content--FontSize: var(--pf-
|
|
26
|
-
--pf-v5-c-icon--m-xl__content--FontSize: var(--pf-
|
|
46
|
+
--pf-v5-c-icon--m-sm__content--FontSize: var(--pf-t--global--icon--size--sm);
|
|
47
|
+
--pf-v5-c-icon--m-md__content--FontSize: var(--pf-t--global--icon--size--md);
|
|
48
|
+
--pf-v5-c-icon--m-lg__content--FontSize: var(--pf-t--global--icon--size--lg);
|
|
49
|
+
--pf-v5-c-icon--m-xl__content--FontSize: var(--pf-t--global--icon--size--xl);
|
|
50
|
+
--pf-v5-c-icon--m-2xl__content--FontSize: var(--pf-t--global--icon--size--2xl);
|
|
51
|
+
--pf-v5-c-icon--m-3xl__content--FontSize: var(--pf-t--global--icon--size--3xl);
|
|
52
|
+
--pf-v5-c-icon--m-body-sm__content--FontSize: var(--pf-t--global--icon--size--body--sm);
|
|
53
|
+
--pf-v5-c-icon--m-body-default__content--FontSize: var(--pf-t--global--icon--size--body--default);
|
|
54
|
+
--pf-v5-c-icon--m-body-lg__content--FontSize: var(--pf-t--global--icon--size--body--lg);
|
|
55
|
+
--pf-v5-c-icon--m-heading-sm__content--FontSize: var(--pf-t--global--icon--size--heading--h6);
|
|
56
|
+
--pf-v5-c-icon--m-heading-md__content--FontSize: var(--pf-t--global--icon--size--heading--h5);
|
|
57
|
+
--pf-v5-c-icon--m-heading-lg__content--FontSize: var(--pf-t--global--icon--size--heading--h4);
|
|
58
|
+
--pf-v5-c-icon--m-heading-xl__content--FontSize: var(--pf-t--global--icon--size--heading--h3);
|
|
59
|
+
--pf-v5-c-icon--m-heading-2xl__content--FontSize: var(--pf-t--global--icon--size--heading--h2);
|
|
60
|
+
--pf-v5-c-icon--m-heading-3xl__content--FontSize: var(--pf-t--global--icon--size--heading--h1);
|
|
27
61
|
--pf-v5-c-icon--m-inline__content--FontSize: 1em;
|
|
62
|
+
}
|
|
63
|
+
|
|
64
|
+
.pf-v5-c-icon {
|
|
28
65
|
position: relative;
|
|
29
66
|
display: inline-flex;
|
|
30
67
|
align-items: center;
|
|
@@ -62,6 +99,61 @@
|
|
|
62
99
|
--pf-v5-c-icon--Height: var(--pf-v5-c-icon--m-xl--Height);
|
|
63
100
|
--pf-v5-c-icon__content--FontSize: var(--pf-v5-c-icon--m-xl__content--FontSize);
|
|
64
101
|
}
|
|
102
|
+
.pf-v5-c-icon.pf-m-2xl {
|
|
103
|
+
--pf-v5-c-icon--Width: var(--pf-v5-c-icon--m-2xl--Width);
|
|
104
|
+
--pf-v5-c-icon--Height: var(--pf-v5-c-icon--m-2xl--Height);
|
|
105
|
+
--pf-v5-c-icon__content--FontSize: var(--pf-v5-c-icon--m-2xl__content--FontSize);
|
|
106
|
+
}
|
|
107
|
+
.pf-v5-c-icon.pf-m-3xl {
|
|
108
|
+
--pf-v5-c-icon--Width: var(--pf-v5-c-icon--m-3xl--Width);
|
|
109
|
+
--pf-v5-c-icon--Height: var(--pf-v5-c-icon--m-3xl--Height);
|
|
110
|
+
--pf-v5-c-icon__content--FontSize: var(--pf-v5-c-icon--m-3xl__content--FontSize);
|
|
111
|
+
}
|
|
112
|
+
.pf-v5-c-icon.pf-m-body-sm {
|
|
113
|
+
--pf-v5-c-icon--Width: var(--pf-v5-c-icon--m-body-sm--Width);
|
|
114
|
+
--pf-v5-c-icon--Height: var(--pf-v5-c-icon--m-body-sm--Height);
|
|
115
|
+
--pf-v5-c-icon__content--FontSize: var(--pf-v5-c-icon--m-body-sm__content--FontSize);
|
|
116
|
+
}
|
|
117
|
+
.pf-v5-c-icon.pf-m-body-default {
|
|
118
|
+
--pf-v5-c-icon--Width: var(--pf-v5-c-icon--m-body-default--Width);
|
|
119
|
+
--pf-v5-c-icon--Height: var(--pf-v5-c-icon--m-body-default--Height);
|
|
120
|
+
--pf-v5-c-icon__content--FontSize: var(--pf-v5-c-icon--m-body-default__content--FontSize);
|
|
121
|
+
}
|
|
122
|
+
.pf-v5-c-icon.pf-m-body-lg {
|
|
123
|
+
--pf-v5-c-icon--Width: var(--pf-v5-c-icon--m-body-lg--Width);
|
|
124
|
+
--pf-v5-c-icon--Height: var(--pf-v5-c-icon--m-body-lg--Height);
|
|
125
|
+
--pf-v5-c-icon__content--FontSize: var(--pf-v5-c-icon--m-lg__content--FontSize);
|
|
126
|
+
}
|
|
127
|
+
.pf-v5-c-icon.pf-m-heading-sm {
|
|
128
|
+
--pf-v5-c-icon--Width: var(--pf-v5-c-icon--m-heading-sm--Width);
|
|
129
|
+
--pf-v5-c-icon--Height: var(--pf-v5-c-icon--m-heading-sm--Height);
|
|
130
|
+
--pf-v5-c-icon__content--FontSize: var(--pf-v5-c-icon--m-heading-sm__content--FontSize);
|
|
131
|
+
}
|
|
132
|
+
.pf-v5-c-icon.pf-m-heading-md {
|
|
133
|
+
--pf-v5-c-icon--Width: var(--pf-v5-c-icon--m-heading-md--Width);
|
|
134
|
+
--pf-v5-c-icon--Height: var(--pf-v5-c-icon--m-heading-md--Height);
|
|
135
|
+
--pf-v5-c-icon__content--FontSize: var(--pf-v5-c-icon--m-heading-md__content--FontSize);
|
|
136
|
+
}
|
|
137
|
+
.pf-v5-c-icon.pf-m-heading-lg {
|
|
138
|
+
--pf-v5-c-icon--Width: var(--pf-v5-c-icon--m-heading-lg--Width);
|
|
139
|
+
--pf-v5-c-icon--Height: var(--pf-v5-c-icon--m-heading-lg--Height);
|
|
140
|
+
--pf-v5-c-icon__content--FontSize: var(--pf-v5-c-icon--m-heading-lg__content--FontSize);
|
|
141
|
+
}
|
|
142
|
+
.pf-v5-c-icon.pf-m-heading-xl {
|
|
143
|
+
--pf-v5-c-icon--Width: var(--pf-v5-c-icon--m-heading-xl--Width);
|
|
144
|
+
--pf-v5-c-icon--Height: var(--pf-v5-c-icon--m-heading-xl--Height);
|
|
145
|
+
--pf-v5-c-icon__content--FontSize: var(--pf-v5-c-icon--m-heading-xl__content--FontSize);
|
|
146
|
+
}
|
|
147
|
+
.pf-v5-c-icon.pf-m-heading-2xl {
|
|
148
|
+
--pf-v5-c-icon--Width: var(--pf-v5-c-icon--m-heading-2xl--Width);
|
|
149
|
+
--pf-v5-c-icon--Height: var(--pf-v5-c-icon--m-heading-2xl--Height);
|
|
150
|
+
--pf-v5-c-icon__content--FontSize: var(--pf-v5-c-icon--m-heading-2xl__content--FontSize);
|
|
151
|
+
}
|
|
152
|
+
.pf-v5-c-icon.pf-m-heading-3xl {
|
|
153
|
+
--pf-v5-c-icon--Width: var(--pf-v5-c-icon--m-heading-3xl--Width);
|
|
154
|
+
--pf-v5-c-icon--Height: var(--pf-v5-c-icon--m-heading-3xl--Height);
|
|
155
|
+
--pf-v5-c-icon__content--FontSize: var(--pf-v5-c-icon--m-heading-3xl__content--FontSize);
|
|
156
|
+
}
|
|
65
157
|
.pf-v5-c-icon.pf-m-in-progress {
|
|
66
158
|
--pf-v5-c-icon__content--Opacity: 0;
|
|
67
159
|
--pf-v5-c-icon__progress--Opacity: 1;
|
|
@@ -91,6 +183,50 @@
|
|
|
91
183
|
.pf-v5-c-icon__progress.pf-m-xl {
|
|
92
184
|
--pf-v5-c-icon__content--FontSize: var(--pf-v5-c-icon--m-xl__content--FontSize);
|
|
93
185
|
}
|
|
186
|
+
.pf-v5-c-icon__content.pf-m-2xl,
|
|
187
|
+
.pf-v5-c-icon__progress.pf-m-2xl {
|
|
188
|
+
--pf-v5-c-icon__content--FontSize: var(--pf-v5-c-icon--m-2xl__content--FontSize);
|
|
189
|
+
}
|
|
190
|
+
.pf-v5-c-icon__content.pf-m-3xl,
|
|
191
|
+
.pf-v5-c-icon__progress.pf-m-3xl {
|
|
192
|
+
--pf-v5-c-icon__content--FontSize: var(--pf-v5-c-icon--m-3xl__content--FontSize);
|
|
193
|
+
}
|
|
194
|
+
.pf-v5-c-icon__content.pf-m-body-sm,
|
|
195
|
+
.pf-v5-c-icon__progress.pf-m-body-sm {
|
|
196
|
+
--pf-v5-c-icon__content--FontSize: var(--pf-v5-c-icon--m-body-sm__content--FontSize);
|
|
197
|
+
}
|
|
198
|
+
.pf-v5-c-icon__content.pf-m-body-default,
|
|
199
|
+
.pf-v5-c-icon__progress.pf-m-body-default {
|
|
200
|
+
--pf-v5-c-icon__content--FontSize: var(--pf-v5-c-icon--m-md__content--FontSize);
|
|
201
|
+
}
|
|
202
|
+
.pf-v5-c-icon__content.pf-m-body-lg,
|
|
203
|
+
.pf-v5-c-icon__progress.pf-m-body-lg {
|
|
204
|
+
--pf-v5-c-icon__content--FontSize: var(--pf-v5-c-icon--m-lg__content--FontSize);
|
|
205
|
+
}
|
|
206
|
+
.pf-v5-c-icon__content.pf-m-heading-sm,
|
|
207
|
+
.pf-v5-c-icon__progress.pf-m-heading-sm {
|
|
208
|
+
--pf-v5-c-icon__content--FontSize: var(--pf-v5-c-icon--m-heading-sm__content--FontSize);
|
|
209
|
+
}
|
|
210
|
+
.pf-v5-c-icon__content.pf-m-heading-md,
|
|
211
|
+
.pf-v5-c-icon__progress.pf-m-heading-md {
|
|
212
|
+
--pf-v5-c-icon__content--FontSize: var(--pf-v5-c-icon--m-heading-md__content--FontSize);
|
|
213
|
+
}
|
|
214
|
+
.pf-v5-c-icon__content.pf-m-heading-lg,
|
|
215
|
+
.pf-v5-c-icon__progress.pf-m-heading-lg {
|
|
216
|
+
--pf-v5-c-icon__content--FontSize: var(--pf-v5-c-icon--m-heading-lg__content--FontSize);
|
|
217
|
+
}
|
|
218
|
+
.pf-v5-c-icon__content.pf-m-heading-xl,
|
|
219
|
+
.pf-v5-c-icon__progress.pf-m-heading-xl {
|
|
220
|
+
--pf-v5-c-icon__content--FontSize: var(--pf-v5-c-icon--m-heading-xl__content--FontSize);
|
|
221
|
+
}
|
|
222
|
+
.pf-v5-c-icon__content.pf-m-heading-2xl,
|
|
223
|
+
.pf-v5-c-icon__progress.pf-m-heading-2xl {
|
|
224
|
+
--pf-v5-c-icon__content--FontSize: var(--pf-v5-c-icon--m-heading-2xl__content--FontSize);
|
|
225
|
+
}
|
|
226
|
+
.pf-v5-c-icon__content.pf-m-heading-3xl,
|
|
227
|
+
.pf-v5-c-icon__progress.pf-m-heading-3xl {
|
|
228
|
+
--pf-v5-c-icon__content--FontSize: var(--pf-v5-c-icon--m-heading-3xl__content--FontSize);
|
|
229
|
+
}
|
|
94
230
|
|
|
95
231
|
.pf-v5-c-icon__content {
|
|
96
232
|
color: var(--pf-v5-c-icon__content--Color, inherit);
|
|
@@ -1,17 +1,48 @@
|
|
|
1
1
|
// @debug $icon; // check your variable names located in src/patternfly/sass-utilities/component-namespaces.scss
|
|
2
2
|
|
|
3
|
-
|
|
3
|
+
:root,
|
|
4
|
+
:where(.#{$icon}) {
|
|
4
5
|
// Sizes
|
|
5
6
|
--#{$icon}--Width: 1em;
|
|
6
7
|
--#{$icon}--Height: 1em;
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
--#{$icon}--m-
|
|
10
|
-
--#{$icon}--m-
|
|
11
|
-
--#{$icon}--m-
|
|
12
|
-
--#{$icon}--m-
|
|
13
|
-
--#{$icon}--m-
|
|
14
|
-
--#{$icon}--m-
|
|
8
|
+
|
|
9
|
+
// Standalone icon sizes
|
|
10
|
+
--#{$icon}--m-sm--Width: var(--pf-t--global--icon--size--sm);
|
|
11
|
+
--#{$icon}--m-sm--Height: var(--pf-t--global--icon--size--sm);
|
|
12
|
+
--#{$icon}--m-md--Width: var(--pf-t--global--icon--size--md);
|
|
13
|
+
--#{$icon}--m-md--Height: var(--pf-t--global--icon--size--md);
|
|
14
|
+
--#{$icon}--m-lg--Width: var(--pf-t--global--icon--size--lg);
|
|
15
|
+
--#{$icon}--m-lg--Height: var(--pf-t--global--icon--size--lg);
|
|
16
|
+
--#{$icon}--m-xl--Width: var(--pf-t--global--icon--size--xl);
|
|
17
|
+
--#{$icon}--m-xl--Height: var(--pf-t--global--icon--size--xl);
|
|
18
|
+
--#{$icon}--m-2xl--Width: var(--pf-t--global--icon--size--2xl);
|
|
19
|
+
--#{$icon}--m-2xl--Height: var(--pf-t--global--icon--size--2xl);
|
|
20
|
+
--#{$icon}--m-3xl--Width: var(--pf-t--global--icon--size--3xl);
|
|
21
|
+
--#{$icon}--m-3xl--Height: var(--pf-t--global--icon--size--3xl);
|
|
22
|
+
|
|
23
|
+
// Body sizes
|
|
24
|
+
--#{$icon}--m-body-sm--Width: var(--pf-t--global--icon--size--body--sm);
|
|
25
|
+
--#{$icon}--m-body-sm--Height: var(--pf-t--global--icon--size--body--sm);
|
|
26
|
+
--#{$icon}--m-body-default--Width: var(--pf-t--global--icon--size--body--default);
|
|
27
|
+
--#{$icon}--m-body-default--Height: var(--pf-t--global--icon--size--body--default);
|
|
28
|
+
--#{$icon}--m-body-lg--Width: var(--pf-t--global--icon--size--body--lg);
|
|
29
|
+
--#{$icon}--m-body-lg--Height: var(--pf-t--global--icon--size--body--lg);
|
|
30
|
+
|
|
31
|
+
// Heading sizes
|
|
32
|
+
--#{$icon}--m-heading-sm--Width: var(--pf-t--global--icon--size--heading--h6);
|
|
33
|
+
--#{$icon}--m-heading-sm--Height: var(--pf-t--global--icon--size--heading--h6);
|
|
34
|
+
--#{$icon}--m-heading-md--Width: var(--pf-t--global--icon--size--heading--h5);
|
|
35
|
+
--#{$icon}--m-heading-md--Height: var(--pf-t--global--icon--size--heading--h5);
|
|
36
|
+
--#{$icon}--m-heading-lg--Width: var(--pf-t--global--icon--size--heading--h4);
|
|
37
|
+
--#{$icon}--m-heading-lg--Height: var(--pf-t--global--icon--size--heading--h4);
|
|
38
|
+
--#{$icon}--m-heading-xl--Width: var(--pf-t--global--icon--size--heading--h3);
|
|
39
|
+
--#{$icon}--m-heading-xl--Height: var(--pf-t--global--icon--size--heading--h3);
|
|
40
|
+
--#{$icon}--m-heading-2xl--Width: var(--pf-t--global--icon--size--heading--h2);
|
|
41
|
+
--#{$icon}--m-heading-2xl--Height: var(--pf-t--global--icon--size--heading--h2);
|
|
42
|
+
--#{$icon}--m-heading-3xl--Width: var(--pf-t--global--icon--size--heading--h1);
|
|
43
|
+
--#{$icon}--m-heading-3xl--Height: var(--pf-t--global--icon--size--heading--h1);
|
|
44
|
+
|
|
45
|
+
// Inline sizes
|
|
15
46
|
--#{$icon}--m-inline--Width: 1em;
|
|
16
47
|
--#{$icon}--m-inline--Height: 1em;
|
|
17
48
|
|
|
@@ -20,21 +51,42 @@
|
|
|
20
51
|
|
|
21
52
|
// Content color
|
|
22
53
|
--#{$icon}__content--Color: initial;
|
|
23
|
-
--#{$icon}__content--m-danger--Color: var(
|
|
24
|
-
--#{$icon}__content--m-warning--Color: var(
|
|
25
|
-
--#{$icon}__content--m-success--Color: var(
|
|
26
|
-
--#{$icon}__content--m-info--Color: var(
|
|
27
|
-
--#{$icon}__content--m-custom--Color: var(
|
|
54
|
+
--#{$icon}__content--m-danger--Color: var(--pf-t--global--color--status--danger--default);
|
|
55
|
+
--#{$icon}__content--m-warning--Color: var(--pf-t--global--color--status--warning--default);
|
|
56
|
+
--#{$icon}__content--m-success--Color: var(--pf-t--global--color--status--success--default);
|
|
57
|
+
--#{$icon}__content--m-info--Color: var(--pf-t--global--color--status--info--default);
|
|
58
|
+
--#{$icon}__content--m-custom--Color: var(--pf-t--global--color--status--custom--default);
|
|
28
59
|
--#{$icon}--m-inline__content--Color: initial;
|
|
29
60
|
|
|
30
61
|
// Content sizes
|
|
31
62
|
--#{$icon}__content--FontSize: 1em;
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
--#{$icon}--m-
|
|
35
|
-
--#{$icon}--m-
|
|
63
|
+
|
|
64
|
+
// Standalone content sizes
|
|
65
|
+
--#{$icon}--m-sm__content--FontSize: var(--pf-t--global--icon--size--sm);
|
|
66
|
+
--#{$icon}--m-md__content--FontSize: var(--pf-t--global--icon--size--md);
|
|
67
|
+
--#{$icon}--m-lg__content--FontSize: var(--pf-t--global--icon--size--lg);
|
|
68
|
+
--#{$icon}--m-xl__content--FontSize: var(--pf-t--global--icon--size--xl);
|
|
69
|
+
--#{$icon}--m-2xl__content--FontSize: var(--pf-t--global--icon--size--2xl);
|
|
70
|
+
--#{$icon}--m-3xl__content--FontSize: var(--pf-t--global--icon--size--3xl);
|
|
71
|
+
|
|
72
|
+
// Body content sizes
|
|
73
|
+
--#{$icon}--m-body-sm__content--FontSize: var(--pf-t--global--icon--size--body--sm);
|
|
74
|
+
--#{$icon}--m-body-default__content--FontSize: var(--pf-t--global--icon--size--body--default);
|
|
75
|
+
--#{$icon}--m-body-lg__content--FontSize: var(--pf-t--global--icon--size--body--lg);
|
|
76
|
+
|
|
77
|
+
// Heading content sizes
|
|
78
|
+
--#{$icon}--m-heading-sm__content--FontSize: var(--pf-t--global--icon--size--heading--h6);
|
|
79
|
+
--#{$icon}--m-heading-md__content--FontSize: var(--pf-t--global--icon--size--heading--h5);
|
|
80
|
+
--#{$icon}--m-heading-lg__content--FontSize: var(--pf-t--global--icon--size--heading--h4);
|
|
81
|
+
--#{$icon}--m-heading-xl__content--FontSize: var(--pf-t--global--icon--size--heading--h3);
|
|
82
|
+
--#{$icon}--m-heading-2xl__content--FontSize: var(--pf-t--global--icon--size--heading--h2);
|
|
83
|
+
--#{$icon}--m-heading-3xl__content--FontSize: var(--pf-t--global--icon--size--heading--h1);
|
|
84
|
+
|
|
85
|
+
// Inline sizes
|
|
36
86
|
--#{$icon}--m-inline__content--FontSize: 1em;
|
|
87
|
+
}
|
|
37
88
|
|
|
89
|
+
.#{$icon} {
|
|
38
90
|
position: relative;
|
|
39
91
|
display: inline-flex;
|
|
40
92
|
align-items: center;
|
|
@@ -56,7 +108,7 @@
|
|
|
56
108
|
}
|
|
57
109
|
}
|
|
58
110
|
|
|
59
|
-
//
|
|
111
|
+
// Standalone size modifiers
|
|
60
112
|
&.pf-m-sm {
|
|
61
113
|
--#{$icon}--Width: var(--#{$icon}--m-sm--Width);
|
|
62
114
|
--#{$icon}--Height: var(--#{$icon}--m-sm--Height);
|
|
@@ -81,6 +133,75 @@
|
|
|
81
133
|
--#{$icon}__content--FontSize: var(--#{$icon}--m-xl__content--FontSize);
|
|
82
134
|
}
|
|
83
135
|
|
|
136
|
+
&.pf-m-2xl {
|
|
137
|
+
--#{$icon}--Width: var(--#{$icon}--m-2xl--Width);
|
|
138
|
+
--#{$icon}--Height: var(--#{$icon}--m-2xl--Height);
|
|
139
|
+
--#{$icon}__content--FontSize: var(--#{$icon}--m-2xl__content--FontSize);
|
|
140
|
+
}
|
|
141
|
+
|
|
142
|
+
&.pf-m-3xl {
|
|
143
|
+
--#{$icon}--Width: var(--#{$icon}--m-3xl--Width);
|
|
144
|
+
--#{$icon}--Height: var(--#{$icon}--m-3xl--Height);
|
|
145
|
+
--#{$icon}__content--FontSize: var(--#{$icon}--m-3xl__content--FontSize);
|
|
146
|
+
}
|
|
147
|
+
|
|
148
|
+
// Body size modifiers
|
|
149
|
+
&.pf-m-body-sm {
|
|
150
|
+
--#{$icon}--Width: var(--#{$icon}--m-body-sm--Width);
|
|
151
|
+
--#{$icon}--Height: var(--#{$icon}--m-body-sm--Height);
|
|
152
|
+
--#{$icon}__content--FontSize: var(--#{$icon}--m-body-sm__content--FontSize);
|
|
153
|
+
}
|
|
154
|
+
|
|
155
|
+
&.pf-m-body-default {
|
|
156
|
+
--#{$icon}--Width: var(--#{$icon}--m-body-default--Width);
|
|
157
|
+
--#{$icon}--Height: var(--#{$icon}--m-body-default--Height);
|
|
158
|
+
--#{$icon}__content--FontSize: var(--#{$icon}--m-body-default__content--FontSize);
|
|
159
|
+
}
|
|
160
|
+
|
|
161
|
+
&.pf-m-body-lg {
|
|
162
|
+
--#{$icon}--Width: var(--#{$icon}--m-body-lg--Width);
|
|
163
|
+
--#{$icon}--Height: var(--#{$icon}--m-body-lg--Height);
|
|
164
|
+
--#{$icon}__content--FontSize: var(--#{$icon}--m-lg__content--FontSize);
|
|
165
|
+
}
|
|
166
|
+
|
|
167
|
+
// Heading size modifiers
|
|
168
|
+
&.pf-m-heading-sm {
|
|
169
|
+
--#{$icon}--Width: var(--#{$icon}--m-heading-sm--Width);
|
|
170
|
+
--#{$icon}--Height: var(--#{$icon}--m-heading-sm--Height);
|
|
171
|
+
--#{$icon}__content--FontSize: var(--#{$icon}--m-heading-sm__content--FontSize);
|
|
172
|
+
}
|
|
173
|
+
|
|
174
|
+
&.pf-m-heading-md {
|
|
175
|
+
--#{$icon}--Width: var(--#{$icon}--m-heading-md--Width);
|
|
176
|
+
--#{$icon}--Height: var(--#{$icon}--m-heading-md--Height);
|
|
177
|
+
--#{$icon}__content--FontSize: var(--#{$icon}--m-heading-md__content--FontSize);
|
|
178
|
+
}
|
|
179
|
+
|
|
180
|
+
&.pf-m-heading-lg {
|
|
181
|
+
--#{$icon}--Width: var(--#{$icon}--m-heading-lg--Width);
|
|
182
|
+
--#{$icon}--Height: var(--#{$icon}--m-heading-lg--Height);
|
|
183
|
+
--#{$icon}__content--FontSize: var(--#{$icon}--m-heading-lg__content--FontSize);
|
|
184
|
+
}
|
|
185
|
+
|
|
186
|
+
&.pf-m-heading-xl {
|
|
187
|
+
--#{$icon}--Width: var(--#{$icon}--m-heading-xl--Width);
|
|
188
|
+
--#{$icon}--Height: var(--#{$icon}--m-heading-xl--Height);
|
|
189
|
+
--#{$icon}__content--FontSize: var(--#{$icon}--m-heading-xl__content--FontSize);
|
|
190
|
+
}
|
|
191
|
+
|
|
192
|
+
&.pf-m-heading-2xl {
|
|
193
|
+
--#{$icon}--Width: var(--#{$icon}--m-heading-2xl--Width);
|
|
194
|
+
--#{$icon}--Height: var(--#{$icon}--m-heading-2xl--Height);
|
|
195
|
+
--#{$icon}__content--FontSize: var(--#{$icon}--m-heading-2xl__content--FontSize);
|
|
196
|
+
}
|
|
197
|
+
|
|
198
|
+
&.pf-m-heading-3xl {
|
|
199
|
+
--#{$icon}--Width: var(--#{$icon}--m-heading-3xl--Width);
|
|
200
|
+
--#{$icon}--Height: var(--#{$icon}--m-heading-3xl--Height);
|
|
201
|
+
--#{$icon}__content--FontSize: var(--#{$icon}--m-heading-3xl__content--FontSize);
|
|
202
|
+
}
|
|
203
|
+
|
|
204
|
+
// Progress modifier
|
|
84
205
|
&.pf-m-in-progress {
|
|
85
206
|
--#{$icon}__content--Opacity: 0;
|
|
86
207
|
--#{$icon}__progress--Opacity: 1;
|
|
@@ -96,7 +217,7 @@
|
|
|
96
217
|
vertical-align: var(--#{$icon}__content--svg--VerticalAlign);
|
|
97
218
|
}
|
|
98
219
|
|
|
99
|
-
//
|
|
220
|
+
// Standalone font size modifiers
|
|
100
221
|
&.pf-m-sm {
|
|
101
222
|
--#{$icon}__content--FontSize: var(--#{$icon}--m-sm__content--FontSize);
|
|
102
223
|
}
|
|
@@ -112,6 +233,52 @@
|
|
|
112
233
|
&.pf-m-xl {
|
|
113
234
|
--#{$icon}__content--FontSize: var(--#{$icon}--m-xl__content--FontSize);
|
|
114
235
|
}
|
|
236
|
+
|
|
237
|
+
&.pf-m-2xl {
|
|
238
|
+
--#{$icon}__content--FontSize: var(--#{$icon}--m-2xl__content--FontSize);
|
|
239
|
+
}
|
|
240
|
+
|
|
241
|
+
&.pf-m-3xl {
|
|
242
|
+
--#{$icon}__content--FontSize: var(--#{$icon}--m-3xl__content--FontSize);
|
|
243
|
+
}
|
|
244
|
+
|
|
245
|
+
// Body font size modifiers
|
|
246
|
+
&.pf-m-body-sm {
|
|
247
|
+
--#{$icon}__content--FontSize: var(--#{$icon}--m-body-sm__content--FontSize);
|
|
248
|
+
}
|
|
249
|
+
|
|
250
|
+
&.pf-m-body-default {
|
|
251
|
+
--#{$icon}__content--FontSize: var(--#{$icon}--m-md__content--FontSize);
|
|
252
|
+
}
|
|
253
|
+
|
|
254
|
+
&.pf-m-body-lg {
|
|
255
|
+
--#{$icon}__content--FontSize: var(--#{$icon}--m-lg__content--FontSize);
|
|
256
|
+
}
|
|
257
|
+
|
|
258
|
+
// Heading font size modifiers
|
|
259
|
+
&.pf-m-heading-sm {
|
|
260
|
+
--#{$icon}__content--FontSize: var(--#{$icon}--m-heading-sm__content--FontSize);
|
|
261
|
+
}
|
|
262
|
+
|
|
263
|
+
&.pf-m-heading-md {
|
|
264
|
+
--#{$icon}__content--FontSize: var(--#{$icon}--m-heading-md__content--FontSize);
|
|
265
|
+
}
|
|
266
|
+
|
|
267
|
+
&.pf-m-heading-lg {
|
|
268
|
+
--#{$icon}__content--FontSize: var(--#{$icon}--m-heading-lg__content--FontSize);
|
|
269
|
+
}
|
|
270
|
+
|
|
271
|
+
&.pf-m-heading-xl {
|
|
272
|
+
--#{$icon}__content--FontSize: var(--#{$icon}--m-heading-xl__content--FontSize);
|
|
273
|
+
}
|
|
274
|
+
|
|
275
|
+
&.pf-m-heading-2xl {
|
|
276
|
+
--#{$icon}__content--FontSize: var(--#{$icon}--m-heading-2xl__content--FontSize);
|
|
277
|
+
}
|
|
278
|
+
|
|
279
|
+
&.pf-m-heading-3xl {
|
|
280
|
+
--#{$icon}__content--FontSize: var(--#{$icon}--m-heading-3xl__content--FontSize);
|
|
281
|
+
}
|
|
115
282
|
}
|
|
116
283
|
|
|
117
284
|
// Content element
|
|
@@ -1,38 +1,39 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
--pf-v5-c-label-group--
|
|
4
|
-
--pf-v5-c-label-group--
|
|
5
|
-
--pf-v5-c-label-group--m-vertical--
|
|
6
|
-
--pf-v5-c-label-
|
|
7
|
-
--pf-v5-c-label-group__main--
|
|
8
|
-
--pf-v5-c-label-
|
|
9
|
-
--pf-v5-c-label-group--m-vertical__main--
|
|
10
|
-
--pf-v5-c-label-
|
|
11
|
-
--pf-v5-c-label-group__list--
|
|
12
|
-
--pf-v5-c-label-
|
|
13
|
-
--pf-v5-c-label-group--m-vertical__list--
|
|
14
|
-
--pf-v5-c-label-group--m-
|
|
15
|
-
--pf-v5-c-label-group--m-category--
|
|
16
|
-
--pf-v5-c-label-group--m-category--
|
|
17
|
-
--pf-v5-c-label-group--m-category--
|
|
18
|
-
--pf-v5-c-label-group--m-
|
|
19
|
-
--pf-v5-c-label-group--m-category--BorderRadius: var(--pf-
|
|
20
|
-
--pf-v5-c-label-group--m-category--BorderWidth: var(--pf-
|
|
21
|
-
--pf-v5-c-label-group--m-category--BorderColor: var(--pf-
|
|
22
|
-
--pf-v5-c-label-group--m-category--
|
|
23
|
-
--pf-v5-c-label-group__label--FontSize: var(--pf-v5-global--FontSize--sm);
|
|
1
|
+
:where(:root),
|
|
2
|
+
:where(.pf-v5-c-label-group) {
|
|
3
|
+
--pf-v5-c-label-group--RowGap: var(--pf-t--global--spacer--sm);
|
|
4
|
+
--pf-v5-c-label-group--ColumnGap: var(--pf-t--global--spacer--xs);
|
|
5
|
+
--pf-v5-c-label-group--m-vertical--RowGap: var(--pf-t--global--spacer--sm);
|
|
6
|
+
--pf-v5-c-label-group--m-vertical--ColumnGap: var(--pf-t--global--spacer--sm);
|
|
7
|
+
--pf-v5-c-label-group__main--RowGap: var(--pf-t--global--spacer--xs);
|
|
8
|
+
--pf-v5-c-label-group__main--ColumnGap: var(--pf-t--global--spacer--sm);
|
|
9
|
+
--pf-v5-c-label-group--m-vertical__main--RowGap: var(--pf-t--global--spacer--sm);
|
|
10
|
+
--pf-v5-c-label-group--m-vertical__main--ColumnGap: var(--pf-t--global--spacer--xs);
|
|
11
|
+
--pf-v5-c-label-group__list--RowGap: var(--pf-t--global--spacer--xs);
|
|
12
|
+
--pf-v5-c-label-group__list--ColumnGap: var(--pf-t--global--spacer--xs);
|
|
13
|
+
--pf-v5-c-label-group--m-vertical__list--RowGap: var(--pf-t--global--spacer--xs);
|
|
14
|
+
--pf-v5-c-label-group--m-vertical__list--ColumnGap: var(--pf-t--global--spacer--xs);
|
|
15
|
+
--pf-v5-c-label-group--m-category--PaddingTop: var(--pf-t--global--spacer--xs);
|
|
16
|
+
--pf-v5-c-label-group--m-category--PaddingRight: var(--pf-t--global--spacer--sm);
|
|
17
|
+
--pf-v5-c-label-group--m-category--PaddingBottom: var(--pf-t--global--spacer--xs);
|
|
18
|
+
--pf-v5-c-label-group--m-category--PaddingLeft: var(--pf-t--global--spacer--sm);
|
|
19
|
+
--pf-v5-c-label-group--m-category--BorderRadius: var(--pf-t--global--border--radius--small);
|
|
20
|
+
--pf-v5-c-label-group--m-category--BorderWidth: var(--pf-t--global--border--width--regular);
|
|
21
|
+
--pf-v5-c-label-group--m-category--BorderColor: var(--pf-t--global--border--color--default);
|
|
22
|
+
--pf-v5-c-label-group--m-vertical--m-category--PaddingRight: var(--pf-t--global--spacer--sm);
|
|
24
23
|
--pf-v5-c-label-group__label--MaxWidth: 18ch;
|
|
25
|
-
--pf-v5-c-label-group__close--
|
|
26
|
-
--pf-v5-c-label-group__close--
|
|
27
|
-
--pf-v5-c-label-
|
|
28
|
-
--pf-v5-c-label-
|
|
29
|
-
--pf-v5-c-label-
|
|
30
|
-
--pf-v5-c-label-group--m-vertical__close--c-button--PaddingLeft: var(--pf-v5-global--spacer--sm);
|
|
24
|
+
--pf-v5-c-label-group__close--c-button--FontSize: var(--pf-t--global--icon--size--body--sm);
|
|
25
|
+
--pf-v5-c-label-group__close--c-button--PaddingTop: var(--pf-t--global--spacer--xs);
|
|
26
|
+
--pf-v5-c-label-group__close--c-button--PaddingRight: var(--pf-t--global--spacer--sm);
|
|
27
|
+
--pf-v5-c-label-group__close--c-button--PaddingBottom: var(--pf-t--global--spacer--xs);
|
|
28
|
+
--pf-v5-c-label-group__close--c-button--PaddingLeft: var(--pf-t--global--spacer--sm);
|
|
31
29
|
--pf-v5-c-label-group__textarea--MinWidth: 12.5rem;
|
|
32
30
|
--pf-v5-c-label-group__textarea--PaddingTop: 0.125rem;
|
|
33
|
-
--pf-v5-c-label-group__textarea--PaddingRight: var(--pf-
|
|
31
|
+
--pf-v5-c-label-group__textarea--PaddingRight: var(--pf-t--global--spacer--xs);
|
|
34
32
|
--pf-v5-c-label-group__textarea--PaddingBottom: 0;
|
|
35
|
-
--pf-v5-c-label-group__textarea--PaddingLeft: var(--pf-
|
|
33
|
+
--pf-v5-c-label-group__textarea--PaddingLeft: var(--pf-t--global--spacer--xs);
|
|
34
|
+
}
|
|
35
|
+
|
|
36
|
+
.pf-v5-c-label-group {
|
|
36
37
|
display: inline-flex;
|
|
37
38
|
row-gap: var(--pf-v5-c-label-group--RowGap);
|
|
38
39
|
column-gap: var(--pf-v5-c-label-group--ColumnGap);
|
|
@@ -54,10 +55,6 @@
|
|
|
54
55
|
--pf-v5-c-label-group__main--ColumnGap: var(--pf-v5-c-label-group--m-vertical__main--ColumnGap);
|
|
55
56
|
--pf-v5-c-label-group__list--RowGap: var(--pf-v5-c-label-group--m-vertical__list--RowGap);
|
|
56
57
|
--pf-v5-c-label-group__list--ColumnGap: var(--pf-v5-c-label-group--m-vertical__list--ColumnGap);
|
|
57
|
-
--pf-v5-c-label-group__close--MarginTop: var(--pf-v5-c-label-group--m-vertical__close--MarginTop);
|
|
58
|
-
--pf-v5-c-label-group__close--MarginLeft: var(--pf-v5-c-label-group--m-vertical__close--MarginLeft);
|
|
59
|
-
--pf-v5-c-label-group__close--MarginBottom: 0;
|
|
60
|
-
--pf-v5-c-label-group__close--MarginRight: var(--pf-v5-c-label-group--m-vertical__close--MarginRight);
|
|
61
58
|
--pf-v5-c-label-group--m-category--PaddingRight: var(--pf-v5-c-label-group--m-vertical--m-category--PaddingRight);
|
|
62
59
|
}
|
|
63
60
|
.pf-v5-c-label-group.pf-m-vertical.pf-v5-c-label-group {
|
|
@@ -70,10 +67,6 @@
|
|
|
70
67
|
.pf-v5-c-label-group.pf-m-vertical .pf-v5-c-label-group__main {
|
|
71
68
|
flex-direction: column;
|
|
72
69
|
}
|
|
73
|
-
.pf-v5-c-label-group.pf-m-vertical .pf-v5-c-label-group__close .pf-v5-c-button {
|
|
74
|
-
--pf-v5-c-button--PaddingLeft: var(--pf-v5-c-label-group--m-vertical__close--c-button--PaddingLeft);
|
|
75
|
-
--pf-v5-c-button--PaddingRight: var(--pf-v5-c-label-group--m-vertical__close--c-button--PaddingRight);
|
|
76
|
-
}
|
|
77
70
|
.pf-v5-c-label-group.pf-m-editable,
|
|
78
71
|
.pf-v5-c-label-group.pf-m-editable .pf-v5-c-label-group__main,
|
|
79
72
|
.pf-v5-c-label-group.pf-m-editable .pf-v5-c-label-group__list {
|
|
@@ -111,16 +104,18 @@
|
|
|
111
104
|
text-overflow: ellipsis;
|
|
112
105
|
white-space: nowrap;
|
|
113
106
|
max-width: var(--pf-v5-c-label-group__label--MaxWidth);
|
|
114
|
-
font-size: var(--pf-v5-c-label-group__label--FontSize);
|
|
115
107
|
}
|
|
116
108
|
|
|
117
109
|
.pf-v5-c-label-group__close {
|
|
118
110
|
display: flex;
|
|
119
111
|
align-self: flex-start;
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
112
|
+
}
|
|
113
|
+
.pf-v5-c-label-group__close .pf-v5-c-button {
|
|
114
|
+
--pf-v5-c-button--FontSize: var(--pf-v5-c-label-group__close--c-button--FontSize);
|
|
115
|
+
--pf-v5-c-button--m-plain--m-no-padding--PaddingTop: var(--pf-v5-c-label-group__close--c-button--PaddingTop);
|
|
116
|
+
--pf-v5-c-button--m-plain--m-no-padding--PaddingRight: var(--pf-v5-c-label-group__close--c-button--PaddingRight);
|
|
117
|
+
--pf-v5-c-button--m-plain--m-no-padding--PaddingBottom: var(--pf-v5-c-label-group__close--c-button--PaddingBottom);
|
|
118
|
+
--pf-v5-c-button--m-plain--m-no-padding--PaddingLeft: var(--pf-v5-c-label-group__close--c-button--PaddingLeft);
|
|
124
119
|
}
|
|
125
120
|
|
|
126
121
|
.pf-v5-c-label-group__textarea {
|