@patternfly/patternfly 6.0.0-alpha.76 → 6.0.0-alpha.78
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/base/patternfly-variables.css +26 -23
- package/base/tokens/_tokens-charts.scss +159 -0
- package/base/tokens/_tokens-dark.scss +7 -5
- package/base/tokens/_tokens-default.scss +27 -17
- package/base/tokens/_tokens-palette.scss +4 -4
- package/components/Button/button.css +2 -2
- package/components/Button/button.scss +2 -2
- package/components/CodeBlock/code-block.css +4 -0
- package/components/CodeBlock/code-block.scss +4 -0
- package/components/CodeEditor/code-editor.css +91 -73
- package/components/CodeEditor/code-editor.scss +99 -82
- package/components/FormControl/form-control.css +3 -3
- package/components/FormControl/form-control.scss +3 -3
- package/components/Icon/icon.css +27 -27
- package/components/Icon/icon.scss +27 -27
- package/components/Label/label-group.css +1 -1
- package/components/Label/label-group.scss +1 -1
- package/components/Label/label.css +2 -2
- package/components/Label/label.scss +2 -2
- package/components/MenuToggle/menu-toggle.css +4 -4
- package/components/MenuToggle/menu-toggle.scss +4 -4
- package/components/ProgressStepper/progress-stepper.css +2 -2
- package/components/ProgressStepper/progress-stepper.scss +2 -2
- package/components/Table/table-grid.css +29 -45
- package/components/Table/table-grid.scss +40 -53
- package/components/Table/table-scrollable.css +6 -6
- package/components/Table/table-scrollable.scss +8 -8
- package/components/Table/table-tree-view.css +76 -74
- package/components/Table/table-tree-view.scss +44 -39
- package/components/Table/table.css +54 -74
- package/components/Table/table.scss +68 -86
- package/components/Tile/tile.css +1 -1
- package/components/Tile/tile.scss +1 -1
- package/components/TreeView/tree-view.css +76 -97
- package/components/TreeView/tree-view.scss +82 -113
- package/docs/components/CodeEditor/examples/CodeEditor.md +144 -132
- package/docs/components/TreeView/examples/TreeView.md +7 -57
- package/package.json +1 -1
- package/patternfly-base-no-globals-theme-dark-unversioned.css +26 -23
- package/patternfly-base-no-globals.css +26 -23
- package/patternfly-base-theme-dark-unversioned.css +26 -23
- package/patternfly-base.css +26 -23
- package/patternfly-no-globals.css +404 -442
- package/patternfly-theme-dark-unversioned.css +404 -442
- package/patternfly.css +404 -442
- package/patternfly.min.css +1 -1
- package/patternfly.min.css.map +1 -1
- package/components/CodeEditor/themes/dark/code-editor.scss +0 -14
- package/components/TreeView/themes/dark/tree-view.scss +0 -8
|
@@ -9,30 +9,32 @@ cssPrefix: pf-v5-c-code-editor
|
|
|
9
9
|
```html
|
|
10
10
|
<div class="pf-v5-c-code-editor">
|
|
11
11
|
<div class="pf-v5-c-code-editor__header">
|
|
12
|
-
<div class="pf-v5-c-code-
|
|
13
|
-
<
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
12
|
+
<div class="pf-v5-c-code-editor__header-content">
|
|
13
|
+
<div class="pf-v5-c-code-editor__controls">
|
|
14
|
+
<button
|
|
15
|
+
class="pf-v5-c-button pf-m-plain"
|
|
16
|
+
type="button"
|
|
17
|
+
aria-label="Copy to clipboard"
|
|
18
|
+
>
|
|
19
|
+
<i class="fas fa-copy" aria-hidden="true"></i>
|
|
20
|
+
</button>
|
|
21
|
+
<button
|
|
22
|
+
class="pf-v5-c-button pf-m-plain"
|
|
23
|
+
type="button"
|
|
24
|
+
aria-label="Download code"
|
|
25
|
+
>
|
|
26
|
+
<i class="fas fa-download"></i>
|
|
27
|
+
</button>
|
|
28
|
+
<button
|
|
29
|
+
class="pf-v5-c-button pf-m-plain"
|
|
30
|
+
type="button"
|
|
31
|
+
aria-label="Upload code"
|
|
32
|
+
>
|
|
33
|
+
<i class="fas fa-upload"></i>
|
|
34
|
+
</button>
|
|
35
|
+
</div>
|
|
36
|
+
<div class="pf-v5-c-code-editor__header-main"></div>
|
|
34
37
|
</div>
|
|
35
|
-
<div class="pf-v5-c-code-editor__header-main"></div>
|
|
36
38
|
<div class="pf-v5-c-code-editor__tab">
|
|
37
39
|
<span class="pf-v5-c-code-editor__tab-icon">
|
|
38
40
|
<i class="fas fa-code"></i>
|
|
@@ -56,31 +58,33 @@ cssPrefix: pf-v5-c-code-editor
|
|
|
56
58
|
```html
|
|
57
59
|
<div class="pf-v5-c-code-editor pf-m-read-only">
|
|
58
60
|
<div class="pf-v5-c-code-editor__header">
|
|
59
|
-
<div class="pf-v5-c-code-
|
|
60
|
-
<
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
61
|
+
<div class="pf-v5-c-code-editor__header-content">
|
|
62
|
+
<div class="pf-v5-c-code-editor__controls">
|
|
63
|
+
<button
|
|
64
|
+
class="pf-v5-c-button pf-m-plain"
|
|
65
|
+
type="button"
|
|
66
|
+
aria-label="Copy to clipboard"
|
|
67
|
+
>
|
|
68
|
+
<i class="fas fa-copy" aria-hidden="true"></i>
|
|
69
|
+
</button>
|
|
70
|
+
<button
|
|
71
|
+
class="pf-v5-c-button pf-m-plain"
|
|
72
|
+
type="button"
|
|
73
|
+
aria-label="Download code"
|
|
74
|
+
>
|
|
75
|
+
<i class="fas fa-download"></i>
|
|
76
|
+
</button>
|
|
77
|
+
<button
|
|
78
|
+
class="pf-v5-c-button pf-m-plain"
|
|
79
|
+
type="button"
|
|
80
|
+
aria-label="Upload code"
|
|
81
|
+
disabled
|
|
82
|
+
>
|
|
83
|
+
<i class="fas fa-upload"></i>
|
|
84
|
+
</button>
|
|
85
|
+
</div>
|
|
86
|
+
<div class="pf-v5-c-code-editor__header-main"></div>
|
|
82
87
|
</div>
|
|
83
|
-
<div class="pf-v5-c-code-editor__header-main"></div>
|
|
84
88
|
<div class="pf-v5-c-code-editor__tab">
|
|
85
89
|
<span class="pf-v5-c-code-editor__tab-icon">
|
|
86
90
|
<i class="fas fa-code"></i>
|
|
@@ -113,30 +117,32 @@ cssPrefix: pf-v5-c-code-editor
|
|
|
113
117
|
</div>
|
|
114
118
|
</div>
|
|
115
119
|
<div class="pf-v5-c-code-editor__main">
|
|
116
|
-
<div class="pf-v5-c-
|
|
117
|
-
<div class="pf-v5-c-empty-
|
|
118
|
-
<div class="pf-v5-c-empty-
|
|
119
|
-
<div class="pf-v5-c-empty-
|
|
120
|
-
<
|
|
120
|
+
<div class="pf-v5-c-code-editor__upload">
|
|
121
|
+
<div class="pf-v5-c-empty-state">
|
|
122
|
+
<div class="pf-v5-c-empty-state__content">
|
|
123
|
+
<div class="pf-v5-c-empty-state__header">
|
|
124
|
+
<div class="pf-v5-c-empty-state__icon">
|
|
125
|
+
<i class="fas fa- fa-code" aria-hidden="true"></i>
|
|
126
|
+
</div>
|
|
127
|
+
<div class="pf-v5-c-empty-state__title">
|
|
128
|
+
<h1 class="pf-v5-c-empty-state__title-text">Start editing</h1>
|
|
129
|
+
</div>
|
|
121
130
|
</div>
|
|
122
|
-
<div class="pf-v5-c-empty-state__title">
|
|
123
|
-
<h1 class="pf-v5-c-empty-state__title-text">Start editing</h1>
|
|
124
|
-
</div>
|
|
125
|
-
</div>
|
|
126
131
|
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
132
|
+
<div
|
|
133
|
+
class="pf-v5-c-empty-state__body"
|
|
134
|
+
>Drag a file here or browse to upload.</div>
|
|
130
135
|
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
|
|
136
|
+
<div class="pf-v5-c-empty-state__footer">
|
|
137
|
+
<div class="pf-v5-c-empty-state__actions">
|
|
138
|
+
<button class="pf-v5-c-button pf-m-primary" type="button">Browse</button>
|
|
139
|
+
</div>
|
|
140
|
+
<div class="pf-v5-c-empty-state__actions">
|
|
141
|
+
<button
|
|
142
|
+
class="pf-v5-c-button pf-m-link"
|
|
143
|
+
type="button"
|
|
144
|
+
>Start from scratch</button>
|
|
145
|
+
</div>
|
|
140
146
|
</div>
|
|
141
147
|
</div>
|
|
142
148
|
</div>
|
|
@@ -160,30 +166,32 @@ cssPrefix: pf-v5-c-code-editor
|
|
|
160
166
|
</div>
|
|
161
167
|
</div>
|
|
162
168
|
<div class="pf-v5-c-code-editor__main pf-m-drag-hover">
|
|
163
|
-
<div class="pf-v5-c-
|
|
164
|
-
<div class="pf-v5-c-empty-
|
|
165
|
-
<div class="pf-v5-c-empty-
|
|
166
|
-
<div class="pf-v5-c-empty-
|
|
167
|
-
<
|
|
169
|
+
<div class="pf-v5-c-code-editor__upload">
|
|
170
|
+
<div class="pf-v5-c-empty-state">
|
|
171
|
+
<div class="pf-v5-c-empty-state__content">
|
|
172
|
+
<div class="pf-v5-c-empty-state__header">
|
|
173
|
+
<div class="pf-v5-c-empty-state__icon">
|
|
174
|
+
<i class="fas fa- fa-code" aria-hidden="true"></i>
|
|
175
|
+
</div>
|
|
176
|
+
<div class="pf-v5-c-empty-state__title">
|
|
177
|
+
<h1 class="pf-v5-c-empty-state__title-text">Start editing</h1>
|
|
178
|
+
</div>
|
|
168
179
|
</div>
|
|
169
|
-
<div class="pf-v5-c-empty-state__title">
|
|
170
|
-
<h1 class="pf-v5-c-empty-state__title-text">Start editing</h1>
|
|
171
|
-
</div>
|
|
172
|
-
</div>
|
|
173
180
|
|
|
174
|
-
|
|
175
|
-
|
|
176
|
-
|
|
181
|
+
<div
|
|
182
|
+
class="pf-v5-c-empty-state__body"
|
|
183
|
+
>Drag a file here or browse to upload.</div>
|
|
177
184
|
|
|
178
|
-
|
|
179
|
-
|
|
180
|
-
|
|
181
|
-
|
|
182
|
-
|
|
183
|
-
|
|
184
|
-
|
|
185
|
-
|
|
186
|
-
|
|
185
|
+
<div class="pf-v5-c-empty-state__footer">
|
|
186
|
+
<div class="pf-v5-c-empty-state__actions">
|
|
187
|
+
<button class="pf-v5-c-button pf-m-primary" type="button">Browse</button>
|
|
188
|
+
</div>
|
|
189
|
+
<div class="pf-v5-c-empty-state__actions">
|
|
190
|
+
<button
|
|
191
|
+
class="pf-v5-c-button pf-m-link"
|
|
192
|
+
type="button"
|
|
193
|
+
>Start from scratch</button>
|
|
194
|
+
</div>
|
|
187
195
|
</div>
|
|
188
196
|
</div>
|
|
189
197
|
</div>
|
|
@@ -198,37 +206,39 @@ cssPrefix: pf-v5-c-code-editor
|
|
|
198
206
|
```html
|
|
199
207
|
<div class="pf-v5-c-code-editor">
|
|
200
208
|
<div class="pf-v5-c-code-editor__header">
|
|
201
|
-
<div class="pf-v5-c-code-
|
|
202
|
-
<
|
|
203
|
-
|
|
204
|
-
|
|
205
|
-
|
|
206
|
-
|
|
207
|
-
|
|
208
|
-
|
|
209
|
-
|
|
210
|
-
|
|
211
|
-
|
|
212
|
-
|
|
213
|
-
|
|
214
|
-
|
|
215
|
-
|
|
216
|
-
|
|
217
|
-
|
|
218
|
-
|
|
219
|
-
|
|
220
|
-
|
|
221
|
-
|
|
222
|
-
|
|
223
|
-
|
|
224
|
-
|
|
225
|
-
|
|
226
|
-
<
|
|
227
|
-
<
|
|
228
|
-
<
|
|
229
|
-
|
|
230
|
-
|
|
231
|
-
|
|
209
|
+
<div class="pf-v5-c-code-editor__header-content">
|
|
210
|
+
<div class="pf-v5-c-code-editor__controls">
|
|
211
|
+
<button
|
|
212
|
+
class="pf-v5-c-button pf-m-plain"
|
|
213
|
+
type="button"
|
|
214
|
+
aria-label="Copy to clipboard"
|
|
215
|
+
>
|
|
216
|
+
<i class="fas fa-copy" aria-hidden="true"></i>
|
|
217
|
+
</button>
|
|
218
|
+
<button
|
|
219
|
+
class="pf-v5-c-button pf-m-plain"
|
|
220
|
+
type="button"
|
|
221
|
+
aria-label="Download code"
|
|
222
|
+
>
|
|
223
|
+
<i class="fas fa-download"></i>
|
|
224
|
+
</button>
|
|
225
|
+
<button
|
|
226
|
+
class="pf-v5-c-button pf-m-plain"
|
|
227
|
+
type="button"
|
|
228
|
+
aria-label="Upload code"
|
|
229
|
+
>
|
|
230
|
+
<i class="fas fa-upload"></i>
|
|
231
|
+
</button>
|
|
232
|
+
</div>
|
|
233
|
+
<div class="pf-v5-c-code-editor__header-main">Header main content</div>
|
|
234
|
+
<div class="pf-v5-c-code-editor__keyboard-shortcuts">
|
|
235
|
+
<button class="pf-v5-c-button pf-m-link" type="button">
|
|
236
|
+
<span class="pf-v5-c-button__icon pf-m-start">
|
|
237
|
+
<i class="pf-v5-pficon pf-v5-pficon-help" aria-hidden="true"></i>
|
|
238
|
+
</span>
|
|
239
|
+
View shortcuts
|
|
240
|
+
</button>
|
|
241
|
+
</div>
|
|
232
242
|
</div>
|
|
233
243
|
<div class="pf-v5-c-code-editor__tab">
|
|
234
244
|
<span class="pf-v5-c-code-editor__tab-icon">
|
|
@@ -252,15 +262,17 @@ cssPrefix: pf-v5-c-code-editor
|
|
|
252
262
|
|
|
253
263
|
### Usage
|
|
254
264
|
|
|
255
|
-
| Class
|
|
256
|
-
|
|
|
257
|
-
| `.pf-v5-c-code-editor`
|
|
258
|
-
| `.pf-v5-c-code-editor__header`
|
|
259
|
-
| `.pf-v5-c-code-
|
|
260
|
-
| `.pf-v5-c-code-
|
|
261
|
-
| `.pf-v5-c-code-
|
|
262
|
-
| `.pf-v5-c-code-
|
|
263
|
-
| `.pf-v5-c-code-
|
|
264
|
-
| `.pf-v5-c-code-
|
|
265
|
-
| `.pf-v5-c-code-editor__tab
|
|
266
|
-
| `.pf-v5-c-code-editor__tab-
|
|
265
|
+
| Class | Applied to | Outcome |
|
|
266
|
+
| ------------------------------------------ | ---------- | --------------------------------------------------------------------------------------------- |
|
|
267
|
+
| `.pf-v5-c-code-editor` | `<div>` | Initiates the code editor component. **Required** |
|
|
268
|
+
| `.pf-v5-c-code-editor__header` | `<div>` | Initiates the code editor header used for the controls and tab elements. **Required** |
|
|
269
|
+
| `.pf-v5-c-code-editor__header-content` | `<div>` | Initiates the code editor header content used for the controls and tab elements. **Required** |
|
|
270
|
+
| `.pf-v5-c-code-editor__main` | `<div>` | Initiates the main container for a code editor e.g. Monaco **Required** |
|
|
271
|
+
| `.pf-v5-c-code-editor__code` | `<div>` | Initiates the container for code without a JS code editor. Comes with PatternFly styling. |
|
|
272
|
+
| `.pf-v5-c-code-editor__controls` | `<div>` | Initiates the code editor controls. |
|
|
273
|
+
| `.pf-v5-c-code-editor__header-main` | `<div>` | Initiates the code editor header content area. |
|
|
274
|
+
| `.pf-v5-c-code-editor__keyboard-shortcuts` | `<div>` | Initiates the code editor header keyboard shortcuts area. |
|
|
275
|
+
| `.pf-v5-c-code-editor__tab` | `<div>` | Initiates the code editor tab. |
|
|
276
|
+
| `.pf-v5-c-code-editor__tab-text` | `<span>` | Initiates the code editor tab text. |
|
|
277
|
+
| `.pf-v5-c-code-editor__tab-icon` | `<span>` | Initiates the code editor tab icon. |
|
|
278
|
+
| `.pf-v5-c-code-editor__upload` | `<div>` | Initiates the code editor upload border. |
|
|
@@ -1960,63 +1960,13 @@ cssPrefix: pf-v5-c-tree-view
|
|
|
1960
1960
|
</button>
|
|
1961
1961
|
|
|
1962
1962
|
<div class="pf-v5-c-tree-view__action">
|
|
1963
|
-
<
|
|
1964
|
-
|
|
1965
|
-
|
|
1966
|
-
|
|
1967
|
-
|
|
1968
|
-
|
|
1969
|
-
|
|
1970
|
-
>
|
|
1971
|
-
<i class="fas fa-ellipsis-v" aria-hidden="true"></i>
|
|
1972
|
-
</button>
|
|
1973
|
-
<ul
|
|
1974
|
-
class="pf-v5-c-dropdown__menu pf-m-align-right"
|
|
1975
|
-
aria-labelledby="dropdown-kebab-button"
|
|
1976
|
-
hidden
|
|
1977
|
-
role="menu"
|
|
1978
|
-
>
|
|
1979
|
-
<li role="none">
|
|
1980
|
-
<a
|
|
1981
|
-
class="pf-v5-c-dropdown__menu-item"
|
|
1982
|
-
role="menuitem"
|
|
1983
|
-
href="#"
|
|
1984
|
-
>Link</a>
|
|
1985
|
-
</li>
|
|
1986
|
-
<li role="none">
|
|
1987
|
-
<button
|
|
1988
|
-
class="pf-v5-c-dropdown__menu-item"
|
|
1989
|
-
role="menuitem"
|
|
1990
|
-
type="button"
|
|
1991
|
-
>Action</button>
|
|
1992
|
-
</li>
|
|
1993
|
-
<li role="none">
|
|
1994
|
-
<a
|
|
1995
|
-
class="pf-v5-c-dropdown__menu-item pf-m-disabled"
|
|
1996
|
-
role="menuitem"
|
|
1997
|
-
href="#"
|
|
1998
|
-
aria-disabled="true"
|
|
1999
|
-
tabindex="-1"
|
|
2000
|
-
>Disabled link</a>
|
|
2001
|
-
</li>
|
|
2002
|
-
<li role="none">
|
|
2003
|
-
<button
|
|
2004
|
-
class="pf-v5-c-dropdown__menu-item"
|
|
2005
|
-
role="menuitem"
|
|
2006
|
-
type="button"
|
|
2007
|
-
disabled
|
|
2008
|
-
>Disabled action</button>
|
|
2009
|
-
</li>
|
|
2010
|
-
<li class="pf-v5-c-divider" role="separator"></li>
|
|
2011
|
-
<li role="none">
|
|
2012
|
-
<a
|
|
2013
|
-
class="pf-v5-c-dropdown__menu-item"
|
|
2014
|
-
role="menuitem"
|
|
2015
|
-
href="#"
|
|
2016
|
-
>Separated link</a>
|
|
2017
|
-
</li>
|
|
2018
|
-
</ul>
|
|
2019
|
-
</div>
|
|
1963
|
+
<button
|
|
1964
|
+
class="pf-v5-c-button pf-m-plain"
|
|
1965
|
+
type="button"
|
|
1966
|
+
aria-label="Actions"
|
|
1967
|
+
>
|
|
1968
|
+
<i class="fas fa-ellipsis-v" aria-hidden="true"></i>
|
|
1969
|
+
</button>
|
|
2020
1970
|
</div>
|
|
2021
1971
|
</div>
|
|
2022
1972
|
</li>
|
package/package.json
CHANGED
|
@@ -336,10 +336,6 @@ html .ws-preview {
|
|
|
336
336
|
--pf-t--global--box-shadow--lg: 0px 8px 24px 0px rgb(0 0 0 / 50%);
|
|
337
337
|
}
|
|
338
338
|
|
|
339
|
-
/**
|
|
340
|
-
* Do not edit directly
|
|
341
|
-
* Generated on Tue, 05 Dec 2023 16:11:05 GMT
|
|
342
|
-
*/
|
|
343
339
|
:root {
|
|
344
340
|
--pf-t--color--red--70: #5f0000;
|
|
345
341
|
--pf-t--color--red--60: #a60000;
|
|
@@ -534,10 +530,10 @@ html .ws-preview {
|
|
|
534
530
|
--pf-t--global--border--radius--small: var(--pf-t--global--border--radius--200);
|
|
535
531
|
--pf-t--global--border--radius--tiny: var(--pf-t--global--border--radius--100);
|
|
536
532
|
--pf-t--global--border--radius--sharp: var(--pf-t--global--border--radius--0);
|
|
537
|
-
--pf-t--global--border--width--control--
|
|
533
|
+
--pf-t--global--border--width--control--clicked: var(--pf-t--global--border--width--200);
|
|
538
534
|
--pf-t--global--border--width--control--hover: var(--pf-t--global--border--width--100);
|
|
539
535
|
--pf-t--global--border--width--control--default: var(--pf-t--global--border--width--100);
|
|
540
|
-
--pf-t--global--border--width--button--
|
|
536
|
+
--pf-t--global--border--width--button--clicked: var(--pf-t--global--border--width--200);
|
|
541
537
|
--pf-t--global--border--width--button--hover: var(--pf-t--global--border--width--200);
|
|
542
538
|
--pf-t--global--border--width--button--default: var(--pf-t--global--border--width--100);
|
|
543
539
|
--pf-t--global--border--width--box--status--read: var(--pf-t--global--border--width--100);
|
|
@@ -548,7 +544,7 @@ html .ws-preview {
|
|
|
548
544
|
--pf-t--global--border--width--extra-strong: var(--pf-t--global--border--width--300);
|
|
549
545
|
--pf-t--global--border--width--strong: var(--pf-t--global--border--width--200);
|
|
550
546
|
--pf-t--global--border--width--regular: var(--pf-t--global--border--width--100);
|
|
551
|
-
--pf-t--global--border--width--divider--
|
|
547
|
+
--pf-t--global--border--width--divider--clicked: var(--pf-t--global--border--width--100);
|
|
552
548
|
--pf-t--global--border--width--divider--hover: var(--pf-t--global--border--width--100);
|
|
553
549
|
--pf-t--global--border--width--divider--default: var(--pf-t--global--border--width--100);
|
|
554
550
|
--pf-t--global--icon--color--300: var(--pf-t--color--white);
|
|
@@ -693,7 +689,6 @@ html .ws-preview {
|
|
|
693
689
|
--pf-t--global--border--color--clicked: var(--pf-t--global--color--brand--200);
|
|
694
690
|
--pf-t--global--border--color--hover: var(--pf-t--global--color--brand--100);
|
|
695
691
|
--pf-t--global--border--color--default: var(--pf-t--global--border--color--100);
|
|
696
|
-
--pf-t--global--border--color--disabled: var(--pf-t--global--background--color--disabled--default);
|
|
697
692
|
--pf-t--global--border--color--status--warning--clicked: var(--pf-t--global--color--status--warning--300);
|
|
698
693
|
--pf-t--global--border--color--status--warning--hover: var(--pf-t--global--color--status--warning--300);
|
|
699
694
|
--pf-t--global--border--color--status--warning--default: var(--pf-t--global--color--status--warning--200);
|
|
@@ -705,6 +700,14 @@ html .ws-preview {
|
|
|
705
700
|
--pf-t--global--icon--color--status--warning--clicked: var(--pf-t--global--color--status--warning--300);
|
|
706
701
|
--pf-t--global--icon--color--status--warning--hover: var(--pf-t--global--color--status--warning--300);
|
|
707
702
|
--pf-t--global--icon--color--status--warning--default: var(--pf-t--global--color--status--warning--200);
|
|
703
|
+
--pf-t--global--icon--size--font--4xl: var(--pf-t--global--font--size--4xl);
|
|
704
|
+
--pf-t--global--icon--size--font--3xl: var(--pf-t--global--font--size--3xl);
|
|
705
|
+
--pf-t--global--icon--size--font--2xl: var(--pf-t--global--font--size--2xl);
|
|
706
|
+
--pf-t--global--icon--size--font--xl: var(--pf-t--global--font--size--xl);
|
|
707
|
+
--pf-t--global--icon--size--font--lg: var(--pf-t--global--font--size--lg);
|
|
708
|
+
--pf-t--global--icon--size--font--md: var(--pf-t--global--font--size--md);
|
|
709
|
+
--pf-t--global--icon--size--font--sm: var(--pf-t--global--font--size--sm);
|
|
710
|
+
--pf-t--global--icon--size--font--xs: var(--pf-t--global--font--size--xs);
|
|
708
711
|
--pf-t--global--text--color--nonstatus--on-gray--clicked: var(--pf-t--global--text--color--regular);
|
|
709
712
|
--pf-t--global--text--color--nonstatus--on-gray--hover: var(--pf-t--global--text--color--regular);
|
|
710
713
|
--pf-t--global--text--color--nonstatus--on-gray--default: var(--pf-t--global--text--color--regular);
|
|
@@ -773,10 +776,12 @@ html .ws-preview {
|
|
|
773
776
|
--pf-t--global--color--status--unread--attention--hover: var(--pf-t--global--color--status--danger--hover);
|
|
774
777
|
--pf-t--global--color--status--unread--attention--clicked: var(--pf-t--global--color--status--danger--clicked);
|
|
775
778
|
--pf-t--global--color--status--unread--attention--default: var(--pf-t--global--color--status--danger--default);
|
|
776
|
-
--pf-t--global--color--status--unread--default--
|
|
779
|
+
--pf-t--global--color--status--unread--default--clicked: var(--pf-t--global--color--brand--clicked);
|
|
777
780
|
--pf-t--global--color--status--unread--default--hover: var(--pf-t--global--color--brand--hover);
|
|
778
781
|
--pf-t--global--color--status--unread--default--default: var(--pf-t--global--color--brand--default);
|
|
779
782
|
--pf-t--global--background--color--control--default: var(--pf-t--global--background--color--primary--default);
|
|
783
|
+
--pf-t--global--border--color--alt: var(--pf-t--global--background--color--primary--default);
|
|
784
|
+
--pf-t--global--border--color--disabled: var(--pf-t--global--background--color--disabled--default);
|
|
780
785
|
--pf-t--global--border--color--status--custom--clicked: var(--pf-t--global--color--status--custom--clicked);
|
|
781
786
|
--pf-t--global--border--color--status--custom--hover: var(--pf-t--global--color--status--custom--hover);
|
|
782
787
|
--pf-t--global--border--color--status--custom--default: var(--pf-t--global--color--status--custom--default);
|
|
@@ -861,22 +866,18 @@ html .ws-preview {
|
|
|
861
866
|
--pf-t--global--icon--color--brand--clicked: var(--pf-t--global--color--brand--clicked);
|
|
862
867
|
--pf-t--global--icon--color--brand--hover: var(--pf-t--global--color--brand--hover);
|
|
863
868
|
--pf-t--global--icon--color--brand--default: var(--pf-t--global--color--brand--default);
|
|
864
|
-
--pf-t--global--icon--size--body--lg: var(--pf-t--global--font--size--body--lg);
|
|
865
|
-
--pf-t--global--icon--size--body--default: var(--pf-t--global--font--size--body--default);
|
|
866
|
-
--pf-t--global--icon--size--body--sm: var(--pf-t--global--font--size--body--sm);
|
|
867
|
-
--pf-t--global--icon--size--heading--h6: var(--pf-t--global--font--size--heading--h6);
|
|
868
|
-
--pf-t--global--icon--size--heading--h5: var(--pf-t--global--font--size--heading--h5);
|
|
869
|
-
--pf-t--global--icon--size--heading--h4: var(--pf-t--global--font--size--heading--h4);
|
|
870
|
-
--pf-t--global--icon--size--heading--h3: var(--pf-t--global--font--size--heading--h3);
|
|
871
|
-
--pf-t--global--icon--size--heading--h2: var(--pf-t--global--font--size--heading--h2);
|
|
872
|
-
--pf-t--global--icon--size--heading--h1: var(--pf-t--global--font--size--heading--h1);
|
|
869
|
+
--pf-t--global--icon--size--font--body--lg: var(--pf-t--global--font--size--body--lg);
|
|
870
|
+
--pf-t--global--icon--size--font--body--default: var(--pf-t--global--font--size--body--default);
|
|
871
|
+
--pf-t--global--icon--size--font--body--sm: var(--pf-t--global--font--size--body--sm);
|
|
872
|
+
--pf-t--global--icon--size--font--heading--h6: var(--pf-t--global--font--size--heading--h6);
|
|
873
|
+
--pf-t--global--icon--size--font--heading--h5: var(--pf-t--global--font--size--heading--h5);
|
|
874
|
+
--pf-t--global--icon--size--font--heading--h4: var(--pf-t--global--font--size--heading--h4);
|
|
875
|
+
--pf-t--global--icon--size--font--heading--h3: var(--pf-t--global--font--size--heading--h3);
|
|
876
|
+
--pf-t--global--icon--size--font--heading--h2: var(--pf-t--global--font--size--heading--h2);
|
|
877
|
+
--pf-t--global--icon--size--font--heading--h1: var(--pf-t--global--font--size--heading--h1);
|
|
873
878
|
--pf-t--global--color--status--read--on-secondary: var(--pf-t--global--background--color--control--default);
|
|
874
879
|
}
|
|
875
880
|
|
|
876
|
-
/**
|
|
877
|
-
* Do not edit directly
|
|
878
|
-
* Generated on Tue, 05 Dec 2023 16:11:05 GMT
|
|
879
|
-
*/
|
|
880
881
|
:root:where(.pf-v5-theme-dark) {
|
|
881
882
|
--pf-t--global--background--color--action--plain--default: rgba(0, 0, 0, 0.0000);
|
|
882
883
|
--pf-t--global--dark--background--color--500: rgba(21, 21, 21, 0.8000);
|
|
@@ -1127,6 +1128,8 @@ html .ws-preview {
|
|
|
1127
1128
|
--pf-t--global--text--color--on-brand--clicked: var(--pf-t--global--text--color--inverse);
|
|
1128
1129
|
--pf-t--global--text--color--on-brand--hover: var(--pf-t--global--text--color--inverse);
|
|
1129
1130
|
--pf-t--global--text--color--on-brand--default: var(--pf-t--global--text--color--inverse);
|
|
1131
|
+
--pf-t--global--border--color--alt: var(--pf-t--global--background--color--primary--default);
|
|
1132
|
+
--pf-t--global--border--color--disabled: var(--pf-t--global--background--color--disabled--default);
|
|
1130
1133
|
--pf-t--global--border--color--status--custom--clicked: var(--pf-t--global--color--status--custom--clicked);
|
|
1131
1134
|
--pf-t--global--border--color--status--custom--hover: var(--pf-t--global--color--status--custom--hover);
|
|
1132
1135
|
--pf-t--global--border--color--status--custom--default: var(--pf-t--global--color--status--custom--default);
|
|
@@ -1219,7 +1222,7 @@ html .ws-preview {
|
|
|
1219
1222
|
--pf-t--global--color--status--unread--attention--hover: var(--pf-t--global--color--status--danger--hover);
|
|
1220
1223
|
--pf-t--global--color--status--unread--attention--clicked: var(--pf-t--global--color--status--danger--clicked);
|
|
1221
1224
|
--pf-t--global--color--status--unread--attention--default: var(--pf-t--global--color--status--danger--default);
|
|
1222
|
-
--pf-t--global--color--status--unread--default--
|
|
1225
|
+
--pf-t--global--color--status--unread--default--clicked: var(--pf-t--global--color--brand--clicked);
|
|
1223
1226
|
--pf-t--global--color--status--unread--default--hover: var(--pf-t--global--color--brand--hover);
|
|
1224
1227
|
--pf-t--global--color--status--unread--default--default: var(--pf-t--global--color--brand--default);
|
|
1225
1228
|
--pf-t--global--background--color--floating--clicked: var(--pf-t--global--background--color--action--plain--hover);
|