@patternfly/patternfly 6.3.0-prerelease.77 → 6.3.0-prerelease.79
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/CodeEditor/code-editor.css +17 -2
- package/components/CodeEditor/code-editor.scss +20 -2
- package/components/FormControl/form-control.css +0 -6
- package/components/FormControl/form-control.scss +0 -7
- package/components/Label/label.css +3 -3
- package/components/Label/label.scss +3 -3
- package/components/Panel/panel.css +2 -2
- package/components/Panel/panel.scss +2 -2
- package/components/Progress/progress.css +1 -1
- package/components/Progress/progress.scss +1 -1
- package/components/ToggleGroup/toggle-group.css +18 -9
- package/components/ToggleGroup/toggle-group.scss +24 -17
- package/components/_index.css +41 -23
- package/docs/components/CodeEditor/examples/CodeEditor.md +17 -3
- package/docs/demos/Form/examples/BasicForms.md +89 -37
- package/package.json +2 -2
- package/patternfly-no-globals.css +41 -23
- package/patternfly.css +41 -23
- package/patternfly.min.css +1 -1
- package/patternfly.min.css.map +1 -1
|
@@ -121,7 +121,6 @@ cssPrefix: pf-v6-c-code-editor
|
|
|
121
121
|
```html
|
|
122
122
|
<div class="pf-v6-c-code-editor">
|
|
123
123
|
<div class="pf-v6-c-code-editor__header">
|
|
124
|
-
<div class="pf-v6-c-code-editor__header-main"></div>
|
|
125
124
|
<div class="pf-v6-c-code-editor__tab">
|
|
126
125
|
<span class="pf-v6-c-code-editor__tab-icon">
|
|
127
126
|
<i class="fas fa-code" aria-hidden="true"></i>
|
|
@@ -166,12 +165,27 @@ cssPrefix: pf-v6-c-code-editor
|
|
|
166
165
|
|
|
167
166
|
```
|
|
168
167
|
|
|
168
|
+
### Without language tab
|
|
169
|
+
|
|
170
|
+
```html
|
|
171
|
+
<div class="pf-v6-c-code-editor">
|
|
172
|
+
<div class="pf-v6-c-code-editor__header"></div>
|
|
173
|
+
<div class="pf-v6-c-code-editor__main">
|
|
174
|
+
<div dir="ltr" class="pf-v6-c-code-editor__code">
|
|
175
|
+
<pre class="pf-v6-c-code-editor__code-pre">
|
|
176
|
+
code goes here
|
|
177
|
+
</pre>
|
|
178
|
+
</div>
|
|
179
|
+
</div>
|
|
180
|
+
</div>
|
|
181
|
+
|
|
182
|
+
```
|
|
183
|
+
|
|
169
184
|
### Drag file and hover over component
|
|
170
185
|
|
|
171
186
|
```html
|
|
172
187
|
<div class="pf-v6-c-code-editor">
|
|
173
188
|
<div class="pf-v6-c-code-editor__header">
|
|
174
|
-
<div class="pf-v6-c-code-editor__header-main"></div>
|
|
175
189
|
<div class="pf-v6-c-code-editor__tab">
|
|
176
190
|
<span class="pf-v6-c-code-editor__tab-icon">
|
|
177
191
|
<i class="fas fa-code" aria-hidden="true"></i>
|
|
@@ -457,7 +471,7 @@ This is an extra container used in React to prevent event propagation if upload
|
|
|
457
471
|
| Class | Applied to | Outcome |
|
|
458
472
|
| ------------------------------------------ | ---------- | --------------------------------------------------------------------------------------------- |
|
|
459
473
|
| `.pf-v6-c-code-editor` | `<div>` | Initiates the code editor component. **Required** |
|
|
460
|
-
| `.pf-v6-c-code-editor__header` | `<div>` | Initiates the code editor header used for the controls and tab elements.
|
|
474
|
+
| `.pf-v6-c-code-editor__header` | `<div>` | Initiates the code editor header used for the controls and tab elements. |
|
|
461
475
|
| `.pf-v6-c-code-editor__header-content` | `<div>` | Initiates the code editor header content used for the controls and tab elements. **Required** |
|
|
462
476
|
| `.pf-v6-c-code-editor__main` | `<div>` | Initiates the main container for a code editor e.g. Monaco **Required** |
|
|
463
477
|
| `.pf-v6-c-code-editor__code` | `<div>` | Initiates the container for code without a JS code editor. Comes with PatternFly styling. |
|
|
@@ -9,7 +9,31 @@ subsection: forms
|
|
|
9
9
|
```html
|
|
10
10
|
<form class="pf-v6-c-form" novalidate>
|
|
11
11
|
<div class="pf-v6-c-form__group">
|
|
12
|
-
<div class="pf-v6-c-form__group-label"><label class="pf-v6-c-form__label" for="-
|
|
12
|
+
<div class="pf-v6-c-form__group-label"><label class="pf-v6-c-form__label" for="form-demo-basic-title">
|
|
13
|
+
<span class="pf-v6-c-form__label-text">Title</span></label>
|
|
14
|
+
</div>
|
|
15
|
+
<div class="pf-v6-c-form__group-control">
|
|
16
|
+
<span class="pf-v6-c-form-control pf-m-placeholder">
|
|
17
|
+
<select id="form-demo-basic-title" name="form-demo-basic-title">
|
|
18
|
+
<option value selected>Selectable one</option>
|
|
19
|
+
<option value="Mr">Mr</option>
|
|
20
|
+
<option value="Miss">Miss</option>
|
|
21
|
+
<option value="Mrs">Mrs</option>
|
|
22
|
+
<option value="Ms">Ms</option>
|
|
23
|
+
<option value="Dr">Dr</option>
|
|
24
|
+
<option value="Dr" disabled>Disabled option</option>
|
|
25
|
+
<option value="Other">Other</option>
|
|
26
|
+
</select>
|
|
27
|
+
<span class="pf-v6-c-form-control__utilities">
|
|
28
|
+
<span class="pf-v6-c-form-control__toggle-icon">
|
|
29
|
+
<i class="fas fa-caret-down" aria-hidden="true"></i>
|
|
30
|
+
</span>
|
|
31
|
+
</span>
|
|
32
|
+
</span>
|
|
33
|
+
</div>
|
|
34
|
+
</div>
|
|
35
|
+
<div class="pf-v6-c-form__group">
|
|
36
|
+
<div class="pf-v6-c-form__group-label"><label class="pf-v6-c-form__label" for="form-demo-basic-name">
|
|
13
37
|
<span class="pf-v6-c-form__label-text">Full name</span> <span class="pf-v6-c-form__label-required" aria-hidden="true">*</span></label>
|
|
14
38
|
</div>
|
|
15
39
|
<div class="pf-v6-c-form__group-control">
|
|
@@ -17,15 +41,18 @@ subsection: forms
|
|
|
17
41
|
<input
|
|
18
42
|
required
|
|
19
43
|
type="text"
|
|
20
|
-
id="-name"
|
|
21
|
-
name="-name"
|
|
22
|
-
aria-describedby="-name-helper"
|
|
44
|
+
id="form-demo-basic-name"
|
|
45
|
+
name="form-demo-basic-name"
|
|
46
|
+
aria-describedby="form-demo-basic-name-helper"
|
|
23
47
|
/>
|
|
24
48
|
</span>
|
|
25
49
|
|
|
26
50
|
<div class="pf-v6-c-form__helper-text" aria-live="polite">
|
|
27
51
|
<div class="pf-v6-c-helper-text">
|
|
28
|
-
<div
|
|
52
|
+
<div
|
|
53
|
+
class="pf-v6-c-helper-text__item"
|
|
54
|
+
id="form-demo-basic-name-helper"
|
|
55
|
+
>
|
|
29
56
|
<span
|
|
30
57
|
class="pf-v6-c-helper-text__item-text"
|
|
31
58
|
>Include your middle name if you have one.</span>
|
|
@@ -35,17 +62,21 @@ subsection: forms
|
|
|
35
62
|
</div>
|
|
36
63
|
</div>
|
|
37
64
|
<div class="pf-v6-c-form__group">
|
|
38
|
-
<div class="pf-v6-c-form__group-label"><label class="pf-v6-c-form__label" for="-email">
|
|
65
|
+
<div class="pf-v6-c-form__group-label"><label class="pf-v6-c-form__label" for="form-demo-basic-email">
|
|
39
66
|
<span class="pf-v6-c-form__label-text">Email</span></label>
|
|
40
67
|
</div>
|
|
41
68
|
<div class="pf-v6-c-form__group-control">
|
|
42
69
|
<span class="pf-v6-c-form-control">
|
|
43
|
-
<input
|
|
70
|
+
<input
|
|
71
|
+
type="email"
|
|
72
|
+
id="form-demo-basic-email"
|
|
73
|
+
name="form-demo-basic-email"
|
|
74
|
+
/>
|
|
44
75
|
</span>
|
|
45
76
|
</div>
|
|
46
77
|
</div>
|
|
47
78
|
<div class="pf-v6-c-form__group">
|
|
48
|
-
<div class="pf-v6-c-form__group-label"><label class="pf-v6-c-form__label" for="-phone">
|
|
79
|
+
<div class="pf-v6-c-form__group-label"><label class="pf-v6-c-form__label" for="form-demo-basic-phone">
|
|
49
80
|
<span class="pf-v6-c-form__label-text">Phone number</span> <span class="pf-v6-c-form__label-required" aria-hidden="true">*</span></label> <span class="pf-v6-c-form__group-label-help">
|
|
50
81
|
<span
|
|
51
82
|
class="pf-v6-c-button pf-m-no-padding pf-m-plain"
|
|
@@ -53,7 +84,7 @@ subsection: forms
|
|
|
53
84
|
role="button"
|
|
54
85
|
tabindex="0"
|
|
55
86
|
aria-label="More information for phone number field"
|
|
56
|
-
aria-describedby="-phone"
|
|
87
|
+
aria-describedby="form-demo-basic-phone"
|
|
57
88
|
>
|
|
58
89
|
<span class="pf-v6-c-button__icon">
|
|
59
90
|
<svg
|
|
@@ -78,8 +109,8 @@ subsection: forms
|
|
|
78
109
|
required
|
|
79
110
|
type="tel"
|
|
80
111
|
placeholder="555-555-5555"
|
|
81
|
-
id="-phone"
|
|
82
|
-
name="-phone"
|
|
112
|
+
id="form-demo-basic-phone"
|
|
113
|
+
name="form-demo-basic-phone"
|
|
83
114
|
/>
|
|
84
115
|
</span>
|
|
85
116
|
</div>
|
|
@@ -87,9 +118,12 @@ subsection: forms
|
|
|
87
118
|
<div
|
|
88
119
|
class="pf-v6-c-form__group"
|
|
89
120
|
role="group"
|
|
90
|
-
aria-labelledby="form-demo-basic-contact-legend"
|
|
121
|
+
aria-labelledby="form-demo-basicform-demo-basic-contact-legend"
|
|
91
122
|
>
|
|
92
|
-
<div
|
|
123
|
+
<div
|
|
124
|
+
class="pf-v6-c-form__group-label"
|
|
125
|
+
id="form-demo-basicform-demo-basic-contact-legend"
|
|
126
|
+
><span class="pf-v6-c-form__label">
|
|
93
127
|
<span class="pf-v6-c-form__label-text">How can we contact you?</span></span>
|
|
94
128
|
</div>
|
|
95
129
|
<div class="pf-v6-c-form__group-control pf-m-inline">
|
|
@@ -97,42 +131,51 @@ subsection: forms
|
|
|
97
131
|
<input
|
|
98
132
|
class="pf-v6-c-check__input"
|
|
99
133
|
type="checkbox"
|
|
100
|
-
id="-contact-check-1"
|
|
101
|
-
name="-contact-check-1"
|
|
134
|
+
id="form-demo-basic-contact-check-1"
|
|
135
|
+
name="form-demo-basic-contact-check-1"
|
|
102
136
|
/>
|
|
103
137
|
|
|
104
|
-
<label
|
|
138
|
+
<label
|
|
139
|
+
class="pf-v6-c-check__label"
|
|
140
|
+
for="form-demo-basic-contact-check-1"
|
|
141
|
+
>Email</label>
|
|
105
142
|
</div>
|
|
106
143
|
<div class="pf-v6-c-check">
|
|
107
144
|
<input
|
|
108
145
|
class="pf-v6-c-check__input"
|
|
109
146
|
type="checkbox"
|
|
110
|
-
id="-contact-check-2"
|
|
111
|
-
name="-contact-check-2"
|
|
147
|
+
id="form-demo-basic-contact-check-2"
|
|
148
|
+
name="form-demo-basic-contact-check-2"
|
|
112
149
|
/>
|
|
113
150
|
|
|
114
|
-
<label
|
|
151
|
+
<label
|
|
152
|
+
class="pf-v6-c-check__label"
|
|
153
|
+
for="form-demo-basic-contact-check-2"
|
|
154
|
+
>Phone</label>
|
|
115
155
|
</div>
|
|
116
156
|
<div class="pf-v6-c-check">
|
|
117
157
|
<input
|
|
118
158
|
class="pf-v6-c-check__input"
|
|
119
159
|
type="checkbox"
|
|
120
|
-
id="-contact-check-3"
|
|
121
|
-
name="-contact-check-3"
|
|
160
|
+
id="form-demo-basic-contact-check-3"
|
|
161
|
+
name="form-demo-basic-contact-check-3"
|
|
122
162
|
/>
|
|
123
163
|
|
|
124
|
-
<label
|
|
164
|
+
<label
|
|
165
|
+
class="pf-v6-c-check__label"
|
|
166
|
+
for="form-demo-basic-contact-check-3"
|
|
167
|
+
>Mail</label>
|
|
125
168
|
</div>
|
|
126
169
|
</div>
|
|
127
170
|
</div>
|
|
128
171
|
<div
|
|
129
172
|
class="pf-v6-c-form__group"
|
|
130
173
|
role="radiogroup"
|
|
131
|
-
aria-labelledby="form-demo-basic-time-zone-legend"
|
|
174
|
+
aria-labelledby="form-demo-basicform-demo-basic-time-zone-legend"
|
|
132
175
|
>
|
|
133
176
|
<div
|
|
134
177
|
class="pf-v6-c-form__group-label"
|
|
135
|
-
id="form-demo-basic-time-zone-legend"
|
|
178
|
+
id="form-demo-basicform-demo-basic-time-zone-legend"
|
|
136
179
|
><span class="pf-v6-c-form__label">
|
|
137
180
|
<span class="pf-v6-c-form__label-text">Time zone</span></span>
|
|
138
181
|
</div>
|
|
@@ -141,31 +184,40 @@ subsection: forms
|
|
|
141
184
|
<input
|
|
142
185
|
class="pf-v6-c-radio__input"
|
|
143
186
|
type="radio"
|
|
144
|
-
id="-time-zone-radio-1"
|
|
145
|
-
name="-time-zone-radio"
|
|
187
|
+
id="form-demo-basic-time-zone-radio-1"
|
|
188
|
+
name="form-demo-basic-time-zone-radio"
|
|
146
189
|
/>
|
|
147
190
|
|
|
148
|
-
<label
|
|
191
|
+
<label
|
|
192
|
+
class="pf-v6-c-radio__label"
|
|
193
|
+
for="form-demo-basic-time-zone-radio-1"
|
|
194
|
+
>Eastern</label>
|
|
149
195
|
</div>
|
|
150
196
|
<div class="pf-v6-c-radio">
|
|
151
197
|
<input
|
|
152
198
|
class="pf-v6-c-radio__input"
|
|
153
199
|
type="radio"
|
|
154
|
-
id="-time-zone-radio-2"
|
|
155
|
-
name="-time-zone-radio"
|
|
200
|
+
id="form-demo-basic-time-zone-radio-2"
|
|
201
|
+
name="form-demo-basic-time-zone-radio"
|
|
156
202
|
/>
|
|
157
203
|
|
|
158
|
-
<label
|
|
204
|
+
<label
|
|
205
|
+
class="pf-v6-c-radio__label"
|
|
206
|
+
for="form-demo-basic-time-zone-radio-2"
|
|
207
|
+
>Central</label>
|
|
159
208
|
</div>
|
|
160
209
|
<div class="pf-v6-c-radio">
|
|
161
210
|
<input
|
|
162
211
|
class="pf-v6-c-radio__input"
|
|
163
212
|
type="radio"
|
|
164
|
-
id="-time-zone-radio-3"
|
|
165
|
-
name="-time-zone-radio"
|
|
213
|
+
id="form-demo-basic-time-zone-radio-3"
|
|
214
|
+
name="form-demo-basic-time-zone-radio"
|
|
166
215
|
/>
|
|
167
216
|
|
|
168
|
-
<label
|
|
217
|
+
<label
|
|
218
|
+
class="pf-v6-c-radio__label"
|
|
219
|
+
for="form-demo-basic-time-zone-radio-3"
|
|
220
|
+
>Pacific</label>
|
|
169
221
|
</div>
|
|
170
222
|
</div>
|
|
171
223
|
</div>
|
|
@@ -1268,7 +1320,7 @@ subsection: forms
|
|
|
1268
1320
|
<div class="pf-v6-c-form__group">
|
|
1269
1321
|
<div class="pf-v6-c-form__group-label"><label
|
|
1270
1322
|
class="pf-v6-c-form__label"
|
|
1271
|
-
id="-node-selector-terms-title"
|
|
1323
|
+
id="form-demo-sections-complex-form-node-selector-terms-title"
|
|
1272
1324
|
>
|
|
1273
1325
|
<span class="pf-v6-c-form__label-text">Node selector terms</span> <span
|
|
1274
1326
|
class="pf-v6-c-form__label-required"
|
|
@@ -1282,9 +1334,9 @@ subsection: forms
|
|
|
1282
1334
|
<input
|
|
1283
1335
|
required
|
|
1284
1336
|
type="text"
|
|
1285
|
-
id="-node-selector-terms-input-1"
|
|
1286
|
-
name="-node-selector-terms-input-1"
|
|
1287
|
-
aria-labelledby="-node-selector-terms -node-selector-terms-title"
|
|
1337
|
+
id="form-demo-sections-complex-form-node-selector-terms-input-1"
|
|
1338
|
+
name="form-demo-sections-complex-form-node-selector-terms-input-1"
|
|
1339
|
+
aria-labelledby="form-demo-sections-complex-form-node-selector-terms form-demo-sections-complex-form-node-selector-terms-title"
|
|
1288
1340
|
/>
|
|
1289
1341
|
</span>
|
|
1290
1342
|
</div>
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@patternfly/patternfly",
|
|
3
3
|
"description": "Assets, source, tooling, and content for PatternFly 4",
|
|
4
|
-
"version": "6.3.0-prerelease.
|
|
4
|
+
"version": "6.3.0-prerelease.79",
|
|
5
5
|
"keywords": [],
|
|
6
6
|
"license": "MIT",
|
|
7
7
|
"engines": {
|
|
@@ -114,5 +114,5 @@
|
|
|
114
114
|
"registry": "https://registry.npmjs.org/",
|
|
115
115
|
"access": "public"
|
|
116
116
|
},
|
|
117
|
-
"packageManager": "yarn@4.
|
|
117
|
+
"packageManager": "yarn@4.10.3"
|
|
118
118
|
}
|
|
@@ -11951,6 +11951,7 @@ label.pf-v6-c-check, .pf-v6-c-check__label,
|
|
|
11951
11951
|
--pf-v6-c-code-editor__header-main--PaddingInlineEnd: var(--pf-t--global--spacer--sm);
|
|
11952
11952
|
--pf-v6-c-code-editor__header-main--PaddingInlineStart: var(--pf-t--global--spacer--sm);
|
|
11953
11953
|
--pf-v6-c-code-editor__tab--BackgroundColor: var(--pf-t--global--background--color--primary--default);
|
|
11954
|
+
--pf-v6-c-code-editor--m-read-only__tab--BackgroundColor: var(--pf-v6-c-code-editor--m-read-only__main--BackgroundColor);
|
|
11954
11955
|
--pf-v6-c-code-editor__tab--Color: var(--pf-t--global--text--color--subtle);
|
|
11955
11956
|
--pf-v6-c-code-editor__tab--PaddingBlockStart: var(--pf-t--global--spacer--sm);
|
|
11956
11957
|
--pf-v6-c-code-editor__tab--PaddingInlineEnd: var( --pf-t--global--spacer--sm);
|
|
@@ -11970,6 +11971,7 @@ label.pf-v6-c-check, .pf-v6-c-check__label,
|
|
|
11970
11971
|
flex-direction: column;
|
|
11971
11972
|
}
|
|
11972
11973
|
.pf-v6-c-code-editor.pf-m-read-only {
|
|
11974
|
+
--pf-v6-c-code-editor__tab--BackgroundColor: var(--pf-v6-c-code-editor--m-read-only__tab--BackgroundColor);
|
|
11973
11975
|
--pf-v6-c-code-editor__main--BackgroundColor: var(--pf-v6-c-code-editor--m-read-only__main--BackgroundColor);
|
|
11974
11976
|
}
|
|
11975
11977
|
.pf-v6-c-code-editor.pf-m-full-height {
|
|
@@ -11986,17 +11988,29 @@ label.pf-v6-c-check, .pf-v6-c-check__label,
|
|
|
11986
11988
|
position: relative;
|
|
11987
11989
|
display: flex;
|
|
11988
11990
|
}
|
|
11989
|
-
.pf-v6-c-code-editor__header::before {
|
|
11991
|
+
.pf-v6-c-code-editor__header::before, .pf-v6-c-code-editor__header::after {
|
|
11992
|
+
position: absolute;
|
|
11993
|
+
pointer-events: none;
|
|
11994
|
+
content: "";
|
|
11995
|
+
}
|
|
11996
|
+
.pf-v6-c-code-editor__header::after {
|
|
11990
11997
|
position: absolute;
|
|
11991
11998
|
inset: 0;
|
|
11992
11999
|
pointer-events: none;
|
|
11993
12000
|
content: "";
|
|
11994
12001
|
border: var(--pf-v6-c-code-editor__header--BorderWidth) solid var(--pf-v6-c-code-editor__header--BorderColor);
|
|
11995
|
-
border-block-end:
|
|
12002
|
+
border-block-end-width: 0;
|
|
11996
12003
|
border-start-start-radius: var(--pf-v6-c-code-editor__header--BorderStartStartRadius);
|
|
11997
12004
|
border-start-end-radius: var(--pf-v6-c-code-editor__header--BorderStartEndRadius);
|
|
11998
12005
|
}
|
|
12006
|
+
.pf-v6-c-code-editor__header::before {
|
|
12007
|
+
inset-block-end: 0;
|
|
12008
|
+
inset-inline-start: 0;
|
|
12009
|
+
inset-inline-end: 0;
|
|
12010
|
+
border-block-end: var(--pf-v6-c-code-editor__header--before--BorderBlockEndWidth) solid var(--pf-v6-c-code-editor__header--before--BorderBlockEndColor);
|
|
12011
|
+
}
|
|
11999
12012
|
.pf-v6-c-code-editor__header.pf-m-plain {
|
|
12013
|
+
--pf-v6-c-code-editor__header--BorderWidth: 0;
|
|
12000
12014
|
--pf-v6-c-code-editor__header-content--BackgroundColor: var(--pf-v6-c-code-editor__header-content--m-plain--BackgroundColor);
|
|
12001
12015
|
}
|
|
12002
12016
|
|
|
@@ -12093,6 +12107,7 @@ label.pf-v6-c-check, .pf-v6-c-check__label,
|
|
|
12093
12107
|
padding-block-end: var(--pf-v6-c-code-editor__tab--PaddingBlockEnd);
|
|
12094
12108
|
padding-inline-start: var(--pf-v6-c-code-editor__tab--PaddingInlineStart);
|
|
12095
12109
|
padding-inline-end: var(--pf-v6-c-code-editor__tab--PaddingInlineEnd);
|
|
12110
|
+
margin-inline-start: auto;
|
|
12096
12111
|
color: var(--pf-v6-c-code-editor__tab--Color);
|
|
12097
12112
|
background-color: var(--pf-v6-c-code-editor__tab--BackgroundColor);
|
|
12098
12113
|
border-color: var(--pf-v6-c-code-editor__tab--BorderColor);
|
|
@@ -16434,12 +16449,6 @@ ul) {
|
|
|
16434
16449
|
.pf-v6-c-form-control:has(select) .pf-v6-c-form-control__utilities {
|
|
16435
16450
|
padding-inline-end: var(--pf-v6-c-form-control__utilities--select--PaddingInlineEnd);
|
|
16436
16451
|
}
|
|
16437
|
-
@-moz-document url-prefix() {
|
|
16438
|
-
.pf-v6-c-form-control:has(select) {
|
|
16439
|
-
--pf-v6-c-form-control--PaddingInlineEnd: calc(var(--pf-v6-c-form-control__select--PaddingInlineEnd) - 1px);
|
|
16440
|
-
--pf-v6-c-form-control--PaddingInlineStart: calc(var(--pf-v6-c-form-control__select--PaddingInlineStart) - 4px);
|
|
16441
|
-
}
|
|
16442
|
-
}
|
|
16443
16452
|
.pf-v6-c-form-control.pf-m-placeholder > select {
|
|
16444
16453
|
--pf-v6-c-form-control--Color: var(--pf-v6-c-form-control--m-placeholder--Color);
|
|
16445
16454
|
}
|
|
@@ -17404,7 +17413,7 @@ label.pf-v6-c-input-group__text {
|
|
|
17404
17413
|
--pf-v6-c-label--PaddingInlineStart: var(--pf-t--global--spacer--sm);
|
|
17405
17414
|
--pf-v6-c-label--MaxWidth: 100%;
|
|
17406
17415
|
--pf-v6-c-label--MinWidth: calc((var(--pf-v6-c-label--FontSize) * var(--pf-t--global--font--line-height--body) + var(--pf-v6-c-label--PaddingBlockStart) + var(--pf-v6-c-label--PaddingBlockEnd)));
|
|
17407
|
-
--pf-v6-c-label--BorderWidth: var(--pf-t--global--border--width--regular);
|
|
17416
|
+
--pf-v6-c-label--BorderWidth: var(--pf-t--global--border--width--high-contrast--regular);
|
|
17408
17417
|
--pf-v6-c-label--BorderColor: var(--pf-t--global--border--color--high-contrast);
|
|
17409
17418
|
--pf-v6-c-label--BorderRadius: var(--pf-t--global--border--radius--pill);
|
|
17410
17419
|
--pf-v6-c-label--FontSize: var(--pf-t--global--font--size--body--sm);
|
|
@@ -17545,10 +17554,10 @@ label.pf-v6-c-input-group__text {
|
|
|
17545
17554
|
--pf-v6-c-label--m-outline--m-clickable--hover__icon--Color: var(--pf-t--global--icon--color--regular);
|
|
17546
17555
|
--pf-v6-c-label--m-overflow--Color: var(--pf-t--global--text--color--brand--default);
|
|
17547
17556
|
--pf-v6-c-label--m-overflow--BackgroundColor: var(--pf-t--global--background--color--action--plain--default);
|
|
17548
|
-
--pf-v6-c-label--m-overflow--BorderWidth: var(--pf-t--global--border--width--action--default);
|
|
17557
|
+
--pf-v6-c-label--m-overflow--BorderWidth: var(--pf-t--global--border--width--action--plain--default);
|
|
17549
17558
|
--pf-v6-c-label--m-overflow--hover--Color: var(--pf-t--global--text--color--brand--hover);
|
|
17550
17559
|
--pf-v6-c-label--m-overflow--hover--BackgroundColor: var(--pf-t--global--background--color--action--plain--hover);
|
|
17551
|
-
--pf-v6-c-label--m-overflow--hover--BorderWidth: var(--pf-t--global--border--width--action--hover);
|
|
17560
|
+
--pf-v6-c-label--m-overflow--hover--BorderWidth: var(--pf-t--global--border--width--action--plain--hover);
|
|
17552
17561
|
--pf-v6-c-label--m-add--Color: var(--pf-t--global--text--color--brand--default);
|
|
17553
17562
|
--pf-v6-c-label--m-add--BackgroundColor: transparent;
|
|
17554
17563
|
--pf-v6-c-label--m-add--BorderColor: var(--pf-t--global--border--color--default);
|
|
@@ -22297,12 +22306,12 @@ ul.pf-v6-c-list {
|
|
|
22297
22306
|
--pf-v6-c-panel--before--BorderWidth: 0;
|
|
22298
22307
|
--pf-v6-c-panel--before--BorderColor: var(--pf-t--global--border--color--high-contrast);
|
|
22299
22308
|
--pf-v6-c-panel--m-secondary--BackgroundColor: var(--pf-t--global--background--color--secondary--default);
|
|
22300
|
-
--pf-v6-c-panel--m-secondary--before--BorderWidth: var(--pf-t--global--border--width--
|
|
22309
|
+
--pf-v6-c-panel--m-secondary--before--BorderWidth: var(--pf-t--global--border--width--high-contrast--regular);
|
|
22301
22310
|
--pf-v6-c-panel--m-bordered--before--BorderWidth: var(--pf-t--global--border--width--box--default);
|
|
22302
22311
|
--pf-v6-c-panel--m-bordered--before--BorderColor: var(--pf-t--global--border--color--default);
|
|
22303
22312
|
--pf-v6-c-panel--m-raised--BoxShadow: var(--pf-t--global--box-shadow--md);
|
|
22304
22313
|
--pf-v6-c-panel--m-raised--BackgroundColor: var(--pf-t--global--background--color--floating--default);
|
|
22305
|
-
--pf-v6-c-panel--m-raised--before--BorderWidth: var(--pf-t--global--border--width--
|
|
22314
|
+
--pf-v6-c-panel--m-raised--before--BorderWidth: var(--pf-t--global--border--width--high-contrast--regular);
|
|
22306
22315
|
--pf-v6-c-panel__header--PaddingBlockStart: var(--pf-t--global--spacer--md);
|
|
22307
22316
|
--pf-v6-c-panel__header--PaddingInlineEnd: var(--pf-t--global--spacer--lg);
|
|
22308
22317
|
--pf-v6-c-panel__header--PaddingBlockEnd: var(--pf-t--global--spacer--md);
|
|
@@ -22611,7 +22620,7 @@ ul.pf-v6-c-list {
|
|
|
22611
22620
|
--pf-v6-c-progress__bar--BackgroundColor: var(--pf-t--global--color--nonstatus--gray--default);
|
|
22612
22621
|
--pf-v6-c-progress__bar--BorderRadius: var(--pf-t--global--border--radius--medium);
|
|
22613
22622
|
--pf-v6-c-progress__bar--BorderColor: var(--pf-t--global--border--color--high-contrast);
|
|
22614
|
-
--pf-v6-c-progress__bar--BorderWidth: var(--pf-t--global--border--width--regular);
|
|
22623
|
+
--pf-v6-c-progress__bar--BorderWidth: var(--pf-t--global--border--width--high-contrast--regular);
|
|
22615
22624
|
--pf-v6-c-progress__measure--m-static-width--MinWidth: 4.5ch;
|
|
22616
22625
|
--pf-v6-c-progress__status--Gap: var(--pf-t--global--spacer--sm);
|
|
22617
22626
|
--pf-v6-c-progress__status-icon--Color: var(--pf-t--global--icon--color--regular);
|
|
@@ -29529,6 +29538,7 @@ thead .pf-v6-c-table__check .pf-v6-c-radio.pf-m-standalone {
|
|
|
29529
29538
|
--pf-v6-c-toggle-group__button--hover--BackgroundColor: var(--pf-t--global--background--color--primary--hover);
|
|
29530
29539
|
--pf-v6-c-toggle-group__button--hover--ZIndex: var(--pf-t--global--z-index--xs);
|
|
29531
29540
|
--pf-v6-c-toggle-group__button--hover--before--BorderColor: var(--pf-t--global--border--color--default);
|
|
29541
|
+
--pf-v6-c-toggle-group__button--hover--after--BorderWidth: var(--pf-t--global--border--width--high-contrast--regular);
|
|
29532
29542
|
--pf-v6-c-toggle-group__button--before--BorderWidth: var(--pf-t--global--border--width--control--default);
|
|
29533
29543
|
--pf-v6-c-toggle-group__button--before--BorderColor: var(--pf-t--global--border--color--default);
|
|
29534
29544
|
--pf-v6-c-toggle-group__item--item--MarginInlineStart: calc(-1 * var(--pf-t--global--border--width--control--default));
|
|
@@ -29540,12 +29550,13 @@ thead .pf-v6-c-table__check .pf-v6-c-radio.pf-m-standalone {
|
|
|
29540
29550
|
--pf-v6-c-toggle-group__button--m-selected--BackgroundColor: var(--pf-t--global--color--brand--default);
|
|
29541
29551
|
--pf-v6-c-toggle-group__button--m-selected--Color: var(--pf-t--global--text--color--on-brand--default);
|
|
29542
29552
|
--pf-v6-c-toggle-group__button--m-selected--before--BorderColor: var(--pf-t--global--border--color--clicked);
|
|
29543
|
-
--pf-v6-c-toggle-group__button--m-selected-selected--before--BorderInlineStartColor: var(--pf-t--global--border--color--
|
|
29553
|
+
--pf-v6-c-toggle-group__button--m-selected-selected--before--BorderInlineStartColor: var(--pf-t--global--border--color--alt);
|
|
29544
29554
|
--pf-v6-c-toggle-group__button--m-selected--ZIndex: var(--pf-t--global--z-index--xs);
|
|
29555
|
+
--pf-v6-c-toggle-group__button--m-selected--after--BorderWidth: var(--pf-t--global--border--width--high-contrast--strong);
|
|
29545
29556
|
--pf-v6-c-toggle-group__button--disabled--BackgroundColor: var(--pf-t--global--background--color--disabled--default);
|
|
29546
29557
|
--pf-v6-c-toggle-group__button--disabled--Color: var(--pf-t--global--text--color--on-disabled);
|
|
29547
29558
|
--pf-v6-c-toggle-group__button--disabled--before--BorderColor: var(--pf-t--global--border--color--disabled);
|
|
29548
|
-
--pf-v6-c-toggle-group__button--disabled-disabled--before--BorderInlineStartColor: var(--pf-t--global--border--color--
|
|
29559
|
+
--pf-v6-c-toggle-group__button--disabled-disabled--before--BorderInlineStartColor: var(--pf-t--global--border--color--disabled);
|
|
29549
29560
|
--pf-v6-c-toggle-group__button--disabled--ZIndex: var(--pf-t--global--z-index--xs);
|
|
29550
29561
|
--pf-v6-c-toggle-group--m-compact__button--PaddingBlockStart: 0;
|
|
29551
29562
|
--pf-v6-c-toggle-group--m-compact__button--PaddingInlineEnd: var(--pf-t--global--spacer--sm);
|
|
@@ -29568,11 +29579,11 @@ thead .pf-v6-c-table__check .pf-v6-c-radio.pf-m-standalone {
|
|
|
29568
29579
|
.pf-v6-c-toggle-group__item + .pf-v6-c-toggle-group__item {
|
|
29569
29580
|
margin-inline-start: var(--pf-v6-c-toggle-group__item--item--MarginInlineStart);
|
|
29570
29581
|
}
|
|
29571
|
-
.pf-v6-c-toggle-group__item:first-child .pf-v6-c-toggle-group__button
|
|
29582
|
+
.pf-v6-c-toggle-group__item:first-child .pf-v6-c-toggle-group__button {
|
|
29572
29583
|
border-start-start-radius: var(--pf-v6-c-toggle-group__item--first-child__button--BorderStartStartRadius);
|
|
29573
29584
|
border-end-start-radius: var(--pf-v6-c-toggle-group__item--first-child__button--BorderEndStartRadius);
|
|
29574
29585
|
}
|
|
29575
|
-
.pf-v6-c-toggle-group__item:last-child .pf-v6-c-toggle-group__button
|
|
29586
|
+
.pf-v6-c-toggle-group__item:last-child .pf-v6-c-toggle-group__button {
|
|
29576
29587
|
border-start-end-radius: var(--pf-v6-c-toggle-group__item--last-child__button--BorderStartEndRadius);
|
|
29577
29588
|
border-end-end-radius: var(--pf-v6-c-toggle-group__item--last-child__button--BorderEndEndRadius);
|
|
29578
29589
|
}
|
|
@@ -29591,25 +29602,31 @@ thead .pf-v6-c-table__check .pf-v6-c-radio.pf-m-standalone {
|
|
|
29591
29602
|
background-color: var(--pf-v6-c-toggle-group__button--BackgroundColor);
|
|
29592
29603
|
border: 0;
|
|
29593
29604
|
}
|
|
29594
|
-
.pf-v6-c-toggle-group__button::before {
|
|
29605
|
+
.pf-v6-c-toggle-group__button::before, .pf-v6-c-toggle-group__button::after {
|
|
29595
29606
|
position: absolute;
|
|
29596
|
-
inset
|
|
29597
|
-
inset-block-end: 0;
|
|
29598
|
-
inset-inline-start: 0;
|
|
29599
|
-
inset-inline-end: 0;
|
|
29607
|
+
inset: 0;
|
|
29600
29608
|
pointer-events: none;
|
|
29601
29609
|
content: "";
|
|
29602
29610
|
border-style: solid;
|
|
29611
|
+
border-radius: inherit;
|
|
29612
|
+
}
|
|
29613
|
+
.pf-v6-c-toggle-group__button::before {
|
|
29603
29614
|
border-width: var(--pf-v6-c-toggle-group__button--before--BorderWidth);
|
|
29604
29615
|
border-block-start-color: var(--pf-v6-c-toggle-group__button--before--BorderBlockStartColor, var(--pf-v6-c-toggle-group__button--before--BorderColor));
|
|
29605
29616
|
border-block-end-color: var(--pf-v6-c-toggle-group__button--before--BorderBlockEndColor, var(--pf-v6-c-toggle-group__button--before--BorderColor));
|
|
29606
29617
|
border-inline-start-color: var(--pf-v6-c-toggle-group__button--before--BorderInlineStartColor, var(--pf-v6-c-toggle-group__button--before--BorderColor));
|
|
29607
29618
|
border-inline-end-color: var(--pf-v6-c-toggle-group__button--before--BorderInlineEndColor, var(--pf-v6-c-toggle-group__button--before--BorderColor));
|
|
29608
29619
|
}
|
|
29620
|
+
.pf-v6-c-toggle-group__button::after {
|
|
29621
|
+
inset: var(--pf-v6-c-toggle-group__button--before--BorderWidth);
|
|
29622
|
+
border-color: var(--pf-v6-c-toggle-group__button--after--BorderColor, transparent);
|
|
29623
|
+
border-width: var(--pf-v6-c-toggle-group__button--after--BorderWidth, 0);
|
|
29624
|
+
}
|
|
29609
29625
|
.pf-v6-c-toggle-group__button:is(:hover, :focus) {
|
|
29610
29626
|
--pf-v6-c-toggle-group__button--BackgroundColor: var(--pf-v6-c-toggle-group__button--hover--BackgroundColor);
|
|
29611
29627
|
--pf-v6-c-toggle-group__button--ZIndex: var(--pf-v6-c-toggle-group__button--hover--ZIndex);
|
|
29612
29628
|
--pf-v6-c-toggle-group__button--before--BorderColor: var(--pf-v6-c-toggle-group__button--hover--before--BorderColor);
|
|
29629
|
+
--pf-v6-c-toggle-group__button--after--BorderWidth: var(--pf-v6-c-toggle-group__button--hover--after--BorderWidth);
|
|
29613
29630
|
text-decoration-line: none;
|
|
29614
29631
|
}
|
|
29615
29632
|
.pf-v6-c-toggle-group__button.pf-m-selected {
|
|
@@ -29617,6 +29634,7 @@ thead .pf-v6-c-table__check .pf-v6-c-radio.pf-m-standalone {
|
|
|
29617
29634
|
--pf-v6-c-toggle-group__button--Color: var(--pf-v6-c-toggle-group__button--m-selected--Color, inherit);
|
|
29618
29635
|
--pf-v6-c-toggle-group__button--ZIndex: var(--pf-v6-c-toggle-group__button--m-selected--ZIndex);
|
|
29619
29636
|
--pf-v6-c-toggle-group__button--before--BorderColor: var(--pf-v6-c-toggle-group__button--m-selected--before--BorderColor);
|
|
29637
|
+
--pf-v6-c-toggle-group__button--after--BorderWidth: var(--pf-v6-c-toggle-group__button--m-selected--after--BorderWidth);
|
|
29620
29638
|
}
|
|
29621
29639
|
.pf-v6-c-toggle-group__button:is(:disabled, .pf-m-disabled) {
|
|
29622
29640
|
--pf-v6-c-toggle-group__button--BackgroundColor: var(--pf-v6-c-toggle-group__button--disabled--BackgroundColor);
|