@patternfly/patternfly 5.1.0 → 5.2.0-prerelease.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/assets/images/logo__pf--reverse-on-md.svg +1 -1
- package/assets/images/pf-c-brand__logo-on-lg-white.svg +32 -0
- package/assets/images/pf-c-brand__logo-on-md-white.svg +42 -0
- package/assets/images/pf-c-brand__logo-on-sm-white.svg +17 -0
- package/assets/images/pf-c-brand__logo-on-sm.svg +1 -1
- package/assets/images/pf-c-brand__logo-on-xl-white.svg +39 -0
- package/assets/images/pf_logo_white.hbs +35 -0
- package/assets/images/pf_logo_white.svg +38 -0
- package/components/Check/check.css +10 -8
- package/components/Check/check.scss +15 -10
- package/components/Dropdown/dropdown.css +1 -3
- package/components/Dropdown/dropdown.scss +2 -6
- package/components/Menu/menu.css +3 -0
- package/components/Menu/menu.scss +7 -3
- package/components/MenuToggle/menu-toggle.css +1 -2
- package/components/MenuToggle/menu-toggle.scss +5 -9
- package/components/Radio/radio.css +13 -10
- package/components/Radio/radio.scss +17 -11
- package/components/Table/table.css +6 -2
- package/components/Table/table.scss +8 -2
- package/components/Toolbar/toolbar.css +9 -1
- package/components/Toolbar/toolbar.scss +16 -3
- package/docs/components/Brand/examples/Brand.css +12 -0
- package/docs/components/Brand/examples/Brand.md +75 -32
- package/docs/components/Card/examples/Card.md +123 -15
- package/docs/components/Check/examples/Check.md +71 -59
- package/docs/components/LogViewer/examples/LogViewer.md +120 -30
- package/docs/components/MenuToggle/examples/MenuToggle.md +60 -39
- package/docs/components/Radio/examples/Radio.md +63 -55
- package/docs/components/Select/deprecated/Select.md +184 -177
- package/docs/components/Toolbar/examples/Toolbar.md +460 -380
- package/docs/demos/CardView/examples/CardView.md +24 -20
- package/docs/demos/PrimaryDetail/examples/PrimaryDetail.md +144 -120
- package/docs/demos/Table/examples/Table.md +288 -240
- package/docs/demos/Tabs/examples/Tabs.md +24 -20
- package/docs/demos/Toolbar/examples/Toolbar.css +5 -0
- package/docs/demos/Toolbar/examples/Toolbar.md +44 -44
- package/package.json +5 -5
- package/patternfly-no-globals.css +43 -26
- package/patternfly-theme-dark-unversioned.css +43 -26
- package/patternfly.css +43 -26
- package/patternfly.min.css +1 -1
- package/patternfly.min.css.map +1 -1
|
@@ -115,6 +115,9 @@
|
|
|
115
115
|
--pf-v5-c-toolbar__item--m-label--spacer: var(--pf-v5-c-toolbar__item--spacer);
|
|
116
116
|
--pf-v5-c-toolbar__item--m-label--TranslateY: var(--pf-v5-global--spacer--form-element);
|
|
117
117
|
--pf-v5-c-toolbar__item--m-label--FontWeight: var(--pf-v5-global--FontWeight--bold);
|
|
118
|
+
--pf-v5-c-toolbar__item--m-form-element--spacer: var(--pf-v5-c-toolbar__item--spacer);
|
|
119
|
+
--pf-v5-c-toolbar__item--m-form-element--TranslateY: var(--pf-v5-global--spacer--form-element);
|
|
120
|
+
--pf-v5-c-toolbar__item--m-form-element--FontWeight: var(--pf-v5-global--FontWeight--bold);
|
|
118
121
|
--pf-v5-c-toolbar__item--m-form-control--TranslateY: var(--pf-v5-global--spacer--form-element);
|
|
119
122
|
--pf-v5-c-toolbar__expandable-content__item--m-label--MarginBottom: calc(-1 * var(--pf-v5-c-toolbar__expandable-content--m-expanded--GridRowGap) + var(--pf-v5-global--spacer--sm));
|
|
120
123
|
--pf-v5-c-toolbar__expandable-content__item--m-label--FontSize: var(--pf-v5-global--FontSize--sm);
|
|
@@ -361,7 +364,12 @@
|
|
|
361
364
|
.pf-v5-c-toolbar__item.pf-m-label {
|
|
362
365
|
--pf-v5-c-toolbar--spacer: var(--pf-v5-c-toolbar__item--m-label--spacer);
|
|
363
366
|
font-weight: var(--pf-v5-c-toolbar__item--m-label--FontWeight);
|
|
364
|
-
transform: translateY(var(--pf-v5-
|
|
367
|
+
transform: translateY(var(--pf-v5-c-toolbar__item--m-label--TranslateY));
|
|
368
|
+
}
|
|
369
|
+
.pf-v5-c-toolbar__item.pf-m-form-element {
|
|
370
|
+
--pf-v5-c-toolbar--spacer: var(--pf-v5-c-toolbar__item--m-form-element--spacer);
|
|
371
|
+
font-weight: var(--pf-v5-c-toolbar__item--m-form-element--FontWeight);
|
|
372
|
+
transform: translateY(var(--pf-v5-c-toolbar__item--m-form-element--TranslateY));
|
|
365
373
|
}
|
|
366
374
|
.pf-v5-c-toolbar__item.pf-m-pagination {
|
|
367
375
|
margin-inline-start: auto;
|
|
@@ -117,11 +117,16 @@ $pf-v5-c-toolbar--inset-map: build-spacer-map("none", "sm", "md", "lg", "xl", "2
|
|
|
117
117
|
|
|
118
118
|
// Label
|
|
119
119
|
--#{$toolbar}__item--m-label--spacer: var(--#{$toolbar}__item--spacer);
|
|
120
|
-
--#{$toolbar}__item--m-label--TranslateY: var(
|
|
120
|
+
--#{$toolbar}__item--m-label--TranslateY: var(--#{$pf-global}--spacer--form-element);
|
|
121
121
|
--#{$toolbar}__item--m-label--FontWeight: var(--#{$pf-global}--FontWeight--bold);
|
|
122
122
|
|
|
123
|
+
// Form control inline
|
|
124
|
+
--#{$toolbar}__item--m-form-element--spacer: var(--#{$toolbar}__item--spacer);
|
|
125
|
+
--#{$toolbar}__item--m-form-element--TranslateY: var(--#{$pf-global}--spacer--form-element);
|
|
126
|
+
--#{$toolbar}__item--m-form-element--FontWeight: var(--#{$pf-global}--FontWeight--bold);
|
|
127
|
+
|
|
123
128
|
// Input
|
|
124
|
-
--#{$toolbar}__item--m-form-control--TranslateY: var(
|
|
129
|
+
--#{$toolbar}__item--m-form-control--TranslateY: var(--#{$pf-global}--spacer--form-element);
|
|
125
130
|
|
|
126
131
|
// Label in expanded content
|
|
127
132
|
--#{$toolbar}__expandable-content__item--m-label--MarginBottom: calc(-1 * var(--#{$toolbar}__expandable-content--m-expanded--GridRowGap) + var(--#{$pf-global}--spacer--sm));
|
|
@@ -379,7 +384,15 @@ $pf-v5-c-toolbar--inset-map: build-spacer-map("none", "sm", "md", "lg", "xl", "2
|
|
|
379
384
|
--#{$toolbar}--spacer: var(--#{$toolbar}__item--m-label--spacer);
|
|
380
385
|
|
|
381
386
|
font-weight: var(--#{$toolbar}__item--m-label--FontWeight);
|
|
382
|
-
transform: translateY(var(--#{$
|
|
387
|
+
transform: translateY(var(--#{$toolbar}__item--m-label--TranslateY));
|
|
388
|
+
}
|
|
389
|
+
|
|
390
|
+
// Form element
|
|
391
|
+
&.pf-m-form-element {
|
|
392
|
+
--#{$toolbar}--spacer: var(--#{$toolbar}__item--m-form-element--spacer);
|
|
393
|
+
|
|
394
|
+
font-weight: var(--#{$toolbar}__item--m-form-element--FontWeight);
|
|
395
|
+
transform: translateY(var(--#{$toolbar}__item--m-form-element--TranslateY));
|
|
383
396
|
}
|
|
384
397
|
|
|
385
398
|
// Total items
|
|
@@ -1,48 +1,91 @@
|
|
|
1
1
|
---
|
|
2
2
|
id: Brand
|
|
3
3
|
section: components
|
|
4
|
-
|
|
4
|
+
---import './Brand.css'
|
|
5
|
+
|
|
6
|
+
## Examples
|
|
5
7
|
|
|
6
8
|
### Basic
|
|
7
9
|
|
|
8
10
|
```html
|
|
9
|
-
<
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
11
|
+
<div class="show-light">
|
|
12
|
+
<img
|
|
13
|
+
class="pf-v5-c-brand"
|
|
14
|
+
src="/assets/images/pf_logo.svg"
|
|
15
|
+
alt="PatternFly logo"
|
|
16
|
+
/>
|
|
17
|
+
</div>
|
|
18
|
+
|
|
19
|
+
<div class="show-dark">
|
|
20
|
+
<img
|
|
21
|
+
class="pf-v5-c-brand"
|
|
22
|
+
src="/assets/images/pf_logo_white.svg"
|
|
23
|
+
alt="PatternFly logo"
|
|
24
|
+
/>
|
|
25
|
+
</div>
|
|
14
26
|
|
|
15
27
|
```
|
|
16
28
|
|
|
17
29
|
### Responsive
|
|
18
30
|
|
|
19
31
|
```html
|
|
20
|
-
<
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
32
|
+
<div class="show-light">
|
|
33
|
+
<picture
|
|
34
|
+
class="pf-v5-c-brand pf-m-picture"
|
|
35
|
+
style="--pf-v5-c-brand--Width: 40px; --pf-v5-c-brand--Width-on-sm: 60px; --pf-v5-c-brand--Width-on-md: 220px;"
|
|
36
|
+
>
|
|
37
|
+
<source
|
|
38
|
+
media="(min-width: 1200px)"
|
|
39
|
+
srcset="/assets/images/pf-c-brand__logo-on-xl.svg"
|
|
40
|
+
/>
|
|
41
|
+
<source
|
|
42
|
+
media="(min-width: 992px)"
|
|
43
|
+
srcset="/assets/images/pf-c-brand__logo-on-lg.svg"
|
|
44
|
+
/>
|
|
45
|
+
<source
|
|
46
|
+
media="(min-width: 768px)"
|
|
47
|
+
srcset="/assets/images/pf-c-brand__logo-on-md.svg"
|
|
48
|
+
/>
|
|
49
|
+
<source
|
|
50
|
+
media="(min-width: 576px)"
|
|
51
|
+
srcset="/assets/images/pf-c-brand__logo-on-sm.svg"
|
|
52
|
+
/>
|
|
53
|
+
<source srcset="/assets/images/pf-c-brand__logo.svg" />
|
|
54
|
+
<img
|
|
55
|
+
src="/assets/images/pf_logo.svg"
|
|
56
|
+
alt="Fallback patternFly default logo"
|
|
57
|
+
/>
|
|
58
|
+
</picture>
|
|
59
|
+
</div>
|
|
60
|
+
|
|
61
|
+
<div class="show-dark">
|
|
62
|
+
<picture
|
|
63
|
+
class="pf-v5-c-brand pf-m-picture"
|
|
64
|
+
style="--pf-v5-c-brand--Width: 40px; --pf-v5-c-brand--Width-on-sm: 60px; --pf-v5-c-brand--Width-on-md: 220px;"
|
|
65
|
+
>
|
|
66
|
+
<source
|
|
67
|
+
media="(min-width: 1200px)"
|
|
68
|
+
srcset="/assets/images/pf-c-brand__logo-on-xl-white.svg"
|
|
69
|
+
/>
|
|
70
|
+
<source
|
|
71
|
+
media="(min-width: 992px)"
|
|
72
|
+
srcset="/assets/images/pf-c-brand__logo-on-lg-white.svg"
|
|
73
|
+
/>
|
|
74
|
+
<source
|
|
75
|
+
media="(min-width: 768px)"
|
|
76
|
+
srcset="/assets/images/pf-c-brand__logo-on-md-white.svg"
|
|
77
|
+
/>
|
|
78
|
+
<source
|
|
79
|
+
media="(min-width: 576px)"
|
|
80
|
+
srcset="/assets/images/pf-c-brand__logo-on-sm-white.svg"
|
|
81
|
+
/>
|
|
82
|
+
<source srcset="/assets/images/pf-c-brand__logo-white.svg" />
|
|
83
|
+
<img
|
|
84
|
+
src="/assets/images/pf_logo-white.svg"
|
|
85
|
+
alt="Fallback patternFly default logo"
|
|
86
|
+
/>
|
|
87
|
+
</picture>
|
|
88
|
+
</div>
|
|
46
89
|
|
|
47
90
|
```
|
|
48
91
|
|
|
@@ -25,7 +25,61 @@ cssPrefix: pf-v5-c-card
|
|
|
25
25
|
<div class="pf-v5-c-card" id="card-action-example-1">
|
|
26
26
|
<div class="pf-v5-c-card__header">
|
|
27
27
|
<div class="pf-v5-c-card__header-main">
|
|
28
|
-
<
|
|
28
|
+
<svg
|
|
29
|
+
version="1.1"
|
|
30
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
31
|
+
viewBox="0 0 706.3 132.5"
|
|
32
|
+
fill="currentColor"
|
|
33
|
+
width="300px"
|
|
34
|
+
>
|
|
35
|
+
<g>
|
|
36
|
+
<path
|
|
37
|
+
d="M197.2,83.9V48.6h15.2c2.2,0,4.1,0.3,5.6,1c1.5,0.7,2.8,1.5,3.7,2.6c1,1.1,1.6,2.3,2.1,3.6
|
|
38
|
+
c0.4,1.3,0.6,2.7,0.6,4c0,0.9-0.1,1.7-0.3,2.6c-0.2,0.9-0.5,1.7-0.9,2.6c-0.4,0.8-0.9,1.6-1.6,2.3c-0.6,0.7-1.4,1.4-2.3,1.9
|
|
39
|
+
c-0.9,0.5-1.9,1-3.1,1.3c-1.2,0.3-2.5,0.5-3.9,0.5h-8.3v13H197.2z M212.7,64.4c0.9,0,1.6-0.1,2.2-0.4c0.6-0.3,1.1-0.6,1.4-1.1
|
|
40
|
+
c0.4-0.4,0.6-0.9,0.8-1.5c0.2-0.6,0.3-1.1,0.3-1.7c0-0.5-0.1-1-0.2-1.6c-0.1-0.5-0.4-1-0.7-1.5c-0.4-0.5-0.8-0.8-1.4-1.1
|
|
41
|
+
c-0.6-0.3-1.4-0.4-2.3-0.4h-8.6v9.4H212.7z"
|
|
42
|
+
/>
|
|
43
|
+
<path
|
|
44
|
+
d="M271.6,83.9l-2.7-7.3h-13.6l-2.7,7.3h-7.3l13.5-35.4h6.7l13.5,35.4H271.6z M263.2,61.2
|
|
45
|
+
c-0.2-0.4-0.4-0.9-0.6-1.5c-0.2-0.6-0.4-1.1-0.5-1.7c-0.1,0.5-0.3,1.1-0.5,1.7c-0.2,0.6-0.4,1.1-0.6,1.5l-3.5,9.2h9.2L263.2,61.2z"
|
|
46
|
+
/>
|
|
47
|
+
<path d="M317.3,55.2v28.8h-6.8V55.2h-10.1v-6.6h27v6.6H317.3z" />
|
|
48
|
+
<path d="M370.2,55.2v28.8h-6.8V55.2h-10.1v-6.6h27v6.6H370.2z" />
|
|
49
|
+
<path
|
|
50
|
+
d="M408.5,83.9V48.6h24.1v6.5h-17.3v7.4h10.2v6.5h-10.2v8.5h18.4v6.5H408.5z"
|
|
51
|
+
/>
|
|
52
|
+
<path
|
|
53
|
+
d="M462.4,83.9V48.6h16.4c2.2,0,4.1,0.3,5.6,0.9c1.5,0.6,2.7,1.4,3.6,2.5c0.9,1,1.6,2.2,2,3.5
|
|
54
|
+
c0.4,1.3,0.6,2.7,0.6,4.2c0,1-0.1,2-0.4,3c-0.3,1-0.7,2-1.3,2.9c-0.6,0.9-1.3,1.8-2.1,2.5c-0.9,0.7-1.8,1.3-3,1.7l6.9,14.1H483
|
|
55
|
+
l-6.6-13.2h-7.1v13.2H462.4z M478.9,64.3c0.9,0,1.6-0.1,2.2-0.4c0.6-0.3,1.1-0.6,1.4-1c0.4-0.4,0.6-0.9,0.8-1.5
|
|
56
|
+
c0.2-0.6,0.2-1.1,0.2-1.7c0-0.6-0.1-1.1-0.2-1.7c-0.1-0.6-0.4-1-0.7-1.5c-0.3-0.4-0.8-0.8-1.4-1c-0.6-0.3-1.4-0.4-2.3-0.4h-9.7v9.2
|
|
57
|
+
H478.9z"
|
|
58
|
+
/>
|
|
59
|
+
<path
|
|
60
|
+
d="M541.9,83.9l-14-20.6c-0.2-0.3-0.5-0.8-0.8-1.3c-0.3-0.5-0.5-1-0.7-1.4c0.1,0.4,0.1,0.8,0.1,1.3
|
|
61
|
+
c0,0.5,0,1,0,1.3v20.6h-6.8V48.6h6.4l13.7,20.4c0.2,0.3,0.5,0.7,0.7,1.2c0.3,0.5,0.5,1,0.7,1.4c0-0.5-0.1-1-0.1-1.4
|
|
62
|
+
c0-0.5,0-0.9,0-1.2V48.6h6.8v35.4H541.9z"
|
|
63
|
+
/>
|
|
64
|
+
<path
|
|
65
|
+
d="M578.4,83.9V48.6h23.7v6.5h-16.9v7.4H596v6.5h-10.7v15H578.4z"
|
|
66
|
+
/>
|
|
67
|
+
<path d="M629.8,83.9V48.6h6.8v28.8h17.1v6.6H629.8z" />
|
|
68
|
+
<path
|
|
69
|
+
d="M686.4,83.9V70.2l-13.1-21.6h7.7l8.7,14.5l8.7-14.5h7.7l-13.1,21.6v13.8H686.4z"
|
|
70
|
+
/>
|
|
71
|
+
</g>
|
|
72
|
+
<g>
|
|
73
|
+
<path
|
|
74
|
+
d="M49,103l-21.2,4.9L0,68.4L70,0l70,68.4l-27.8,39.4L91,103l-21,29.5L49,103z M70,128.7l18.6-26.2l-7.2-1.7
|
|
75
|
+
l-11,16.2l-11.9-16.2l-7.2,1.7L70,128.7z M70.4,113.1l9.2-13.5L70,6.7l-9.5,92.9L70.4,113.1z M28.8,105.4l18.8-4.3L33.8,81.7
|
|
76
|
+
l4.1-9.3L25.2,55L58,14.9L2.9,68.7L28.8,105.4z M111.2,105.4l16.3-23.1l9.6-13.6L82,14.9L114.9,55l-12.8,17.4l4.1,9.3L92.4,101
|
|
77
|
+
L111.2,105.4z M90.1,100.5l13.6-19.1l-3-6.9L82.7,98.8L90.1,100.5z M50,100.5l7.3-1.7L39.4,74.5l-3,6.9L50,100.5z M81.9,96.2
|
|
78
|
+
l17.6-24.1L72.9,11.6L81.9,96.2z M58.1,96.2l9-84.6L40.5,72.1L58.1,96.2z M39,70L66.1,8.5L28,55.1L39,70z M101.1,70l11-15L74,8.5
|
|
79
|
+
L101.1,70z"
|
|
80
|
+
/>
|
|
81
|
+
</g>
|
|
82
|
+
</svg>
|
|
29
83
|
</div>
|
|
30
84
|
<div class="pf-v5-c-card__actions">
|
|
31
85
|
<div class="pf-v5-c-dropdown">
|
|
@@ -293,7 +347,61 @@ cssPrefix: pf-v5-c-card
|
|
|
293
347
|
<div class="pf-v5-c-card" id="card-image-head-example">
|
|
294
348
|
<div class="pf-v5-c-card__header">
|
|
295
349
|
<div class="pf-v5-c-card__header-main">
|
|
296
|
-
<
|
|
350
|
+
<svg
|
|
351
|
+
version="1.1"
|
|
352
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
353
|
+
viewBox="0 0 706.3 132.5"
|
|
354
|
+
fill="currentColor"
|
|
355
|
+
width="300px"
|
|
356
|
+
>
|
|
357
|
+
<g>
|
|
358
|
+
<path
|
|
359
|
+
d="M197.2,83.9V48.6h15.2c2.2,0,4.1,0.3,5.6,1c1.5,0.7,2.8,1.5,3.7,2.6c1,1.1,1.6,2.3,2.1,3.6
|
|
360
|
+
c0.4,1.3,0.6,2.7,0.6,4c0,0.9-0.1,1.7-0.3,2.6c-0.2,0.9-0.5,1.7-0.9,2.6c-0.4,0.8-0.9,1.6-1.6,2.3c-0.6,0.7-1.4,1.4-2.3,1.9
|
|
361
|
+
c-0.9,0.5-1.9,1-3.1,1.3c-1.2,0.3-2.5,0.5-3.9,0.5h-8.3v13H197.2z M212.7,64.4c0.9,0,1.6-0.1,2.2-0.4c0.6-0.3,1.1-0.6,1.4-1.1
|
|
362
|
+
c0.4-0.4,0.6-0.9,0.8-1.5c0.2-0.6,0.3-1.1,0.3-1.7c0-0.5-0.1-1-0.2-1.6c-0.1-0.5-0.4-1-0.7-1.5c-0.4-0.5-0.8-0.8-1.4-1.1
|
|
363
|
+
c-0.6-0.3-1.4-0.4-2.3-0.4h-8.6v9.4H212.7z"
|
|
364
|
+
/>
|
|
365
|
+
<path
|
|
366
|
+
d="M271.6,83.9l-2.7-7.3h-13.6l-2.7,7.3h-7.3l13.5-35.4h6.7l13.5,35.4H271.6z M263.2,61.2
|
|
367
|
+
c-0.2-0.4-0.4-0.9-0.6-1.5c-0.2-0.6-0.4-1.1-0.5-1.7c-0.1,0.5-0.3,1.1-0.5,1.7c-0.2,0.6-0.4,1.1-0.6,1.5l-3.5,9.2h9.2L263.2,61.2z"
|
|
368
|
+
/>
|
|
369
|
+
<path d="M317.3,55.2v28.8h-6.8V55.2h-10.1v-6.6h27v6.6H317.3z" />
|
|
370
|
+
<path d="M370.2,55.2v28.8h-6.8V55.2h-10.1v-6.6h27v6.6H370.2z" />
|
|
371
|
+
<path
|
|
372
|
+
d="M408.5,83.9V48.6h24.1v6.5h-17.3v7.4h10.2v6.5h-10.2v8.5h18.4v6.5H408.5z"
|
|
373
|
+
/>
|
|
374
|
+
<path
|
|
375
|
+
d="M462.4,83.9V48.6h16.4c2.2,0,4.1,0.3,5.6,0.9c1.5,0.6,2.7,1.4,3.6,2.5c0.9,1,1.6,2.2,2,3.5
|
|
376
|
+
c0.4,1.3,0.6,2.7,0.6,4.2c0,1-0.1,2-0.4,3c-0.3,1-0.7,2-1.3,2.9c-0.6,0.9-1.3,1.8-2.1,2.5c-0.9,0.7-1.8,1.3-3,1.7l6.9,14.1H483
|
|
377
|
+
l-6.6-13.2h-7.1v13.2H462.4z M478.9,64.3c0.9,0,1.6-0.1,2.2-0.4c0.6-0.3,1.1-0.6,1.4-1c0.4-0.4,0.6-0.9,0.8-1.5
|
|
378
|
+
c0.2-0.6,0.2-1.1,0.2-1.7c0-0.6-0.1-1.1-0.2-1.7c-0.1-0.6-0.4-1-0.7-1.5c-0.3-0.4-0.8-0.8-1.4-1c-0.6-0.3-1.4-0.4-2.3-0.4h-9.7v9.2
|
|
379
|
+
H478.9z"
|
|
380
|
+
/>
|
|
381
|
+
<path
|
|
382
|
+
d="M541.9,83.9l-14-20.6c-0.2-0.3-0.5-0.8-0.8-1.3c-0.3-0.5-0.5-1-0.7-1.4c0.1,0.4,0.1,0.8,0.1,1.3
|
|
383
|
+
c0,0.5,0,1,0,1.3v20.6h-6.8V48.6h6.4l13.7,20.4c0.2,0.3,0.5,0.7,0.7,1.2c0.3,0.5,0.5,1,0.7,1.4c0-0.5-0.1-1-0.1-1.4
|
|
384
|
+
c0-0.5,0-0.9,0-1.2V48.6h6.8v35.4H541.9z"
|
|
385
|
+
/>
|
|
386
|
+
<path
|
|
387
|
+
d="M578.4,83.9V48.6h23.7v6.5h-16.9v7.4H596v6.5h-10.7v15H578.4z"
|
|
388
|
+
/>
|
|
389
|
+
<path d="M629.8,83.9V48.6h6.8v28.8h17.1v6.6H629.8z" />
|
|
390
|
+
<path
|
|
391
|
+
d="M686.4,83.9V70.2l-13.1-21.6h7.7l8.7,14.5l8.7-14.5h7.7l-13.1,21.6v13.8H686.4z"
|
|
392
|
+
/>
|
|
393
|
+
</g>
|
|
394
|
+
<g>
|
|
395
|
+
<path
|
|
396
|
+
d="M49,103l-21.2,4.9L0,68.4L70,0l70,68.4l-27.8,39.4L91,103l-21,29.5L49,103z M70,128.7l18.6-26.2l-7.2-1.7
|
|
397
|
+
l-11,16.2l-11.9-16.2l-7.2,1.7L70,128.7z M70.4,113.1l9.2-13.5L70,6.7l-9.5,92.9L70.4,113.1z M28.8,105.4l18.8-4.3L33.8,81.7
|
|
398
|
+
l4.1-9.3L25.2,55L58,14.9L2.9,68.7L28.8,105.4z M111.2,105.4l16.3-23.1l9.6-13.6L82,14.9L114.9,55l-12.8,17.4l4.1,9.3L92.4,101
|
|
399
|
+
L111.2,105.4z M90.1,100.5l13.6-19.1l-3-6.9L82.7,98.8L90.1,100.5z M50,100.5l7.3-1.7L39.4,74.5l-3,6.9L50,100.5z M81.9,96.2
|
|
400
|
+
l17.6-24.1L72.9,11.6L81.9,96.2z M58.1,96.2l9-84.6L40.5,72.1L58.1,96.2z M39,70L66.1,8.5L28,55.1L39,70z M101.1,70l11-15L74,8.5
|
|
401
|
+
L101.1,70z"
|
|
402
|
+
/>
|
|
403
|
+
</g>
|
|
404
|
+
</svg>
|
|
297
405
|
</div>
|
|
298
406
|
</div>
|
|
299
407
|
<div class="pf-v5-c-card__title">
|
|
@@ -411,9 +519,9 @@ cssPrefix: pf-v5-c-card
|
|
|
411
519
|
|
|
412
520
|
<label
|
|
413
521
|
class="pf-v5-c-check__label"
|
|
522
|
+
for="card-selectable-example-check"
|
|
414
523
|
id="card-selectable-example-check-label"
|
|
415
524
|
name="card-selectable-example-check"
|
|
416
|
-
for="card-selectable-example-check"
|
|
417
525
|
></label>
|
|
418
526
|
</div>
|
|
419
527
|
</div>
|
|
@@ -447,9 +555,9 @@ cssPrefix: pf-v5-c-card
|
|
|
447
555
|
|
|
448
556
|
<label
|
|
449
557
|
class="pf-v5-c-check__label pf-m-disabled"
|
|
558
|
+
for="card-selectable-example-disabled-check"
|
|
450
559
|
id="card-selectable-example-disabled-check-label"
|
|
451
560
|
name="card-selectable-example-disabled-check"
|
|
452
|
-
for="card-selectable-example-disabled-check"
|
|
453
561
|
></label>
|
|
454
562
|
</div>
|
|
455
563
|
</div>
|
|
@@ -487,9 +595,9 @@ cssPrefix: pf-v5-c-card
|
|
|
487
595
|
|
|
488
596
|
<label
|
|
489
597
|
class="pf-v5-c-check__label pf-m-disabled"
|
|
598
|
+
for="card-selectable-example-selected-disabled-check"
|
|
490
599
|
id="card-selectable-example-selected-disabled-check-label"
|
|
491
600
|
name="card-selectable-example-selected-disabled-check"
|
|
492
|
-
for="card-selectable-example-selected-disabled-check"
|
|
493
601
|
></label>
|
|
494
602
|
</div>
|
|
495
603
|
</div>
|
|
@@ -529,9 +637,9 @@ cssPrefix: pf-v5-c-card
|
|
|
529
637
|
|
|
530
638
|
<label
|
|
531
639
|
class="pf-v5-c-radio__label"
|
|
640
|
+
for="card-single-selectable-example-radio"
|
|
532
641
|
id="card-single-selectable-example-radio-label"
|
|
533
642
|
name="card-single-selectable-example-radio"
|
|
534
|
-
for="card-single-selectable-example-radio"
|
|
535
643
|
></label>
|
|
536
644
|
</div>
|
|
537
645
|
</div>
|
|
@@ -568,9 +676,9 @@ cssPrefix: pf-v5-c-card
|
|
|
568
676
|
|
|
569
677
|
<label
|
|
570
678
|
class="pf-v5-c-radio__label pf-m-disabled"
|
|
679
|
+
for="card-single-selectable-example-disabled-radio"
|
|
571
680
|
id="card-single-selectable-example-disabled-radio-label"
|
|
572
681
|
name="card-single-selectable-example-disabled-radio"
|
|
573
|
-
for="card-single-selectable-example-disabled-radio"
|
|
574
682
|
></label>
|
|
575
683
|
</div>
|
|
576
684
|
</div>
|
|
@@ -608,9 +716,9 @@ cssPrefix: pf-v5-c-card
|
|
|
608
716
|
|
|
609
717
|
<label
|
|
610
718
|
class="pf-v5-c-radio__label pf-m-disabled"
|
|
719
|
+
for="card-single-selectable-example-selected-disabled-radio"
|
|
611
720
|
id="card-single-selectable-example-selected-disabled-radio-label"
|
|
612
721
|
name="card-single-selectable-example-selected-disabled-radio"
|
|
613
|
-
for="card-single-selectable-example-selected-disabled-radio"
|
|
614
722
|
></label>
|
|
615
723
|
</div>
|
|
616
724
|
</div>
|
|
@@ -650,9 +758,9 @@ cssPrefix: pf-v5-c-card
|
|
|
650
758
|
|
|
651
759
|
<label
|
|
652
760
|
class="pf-v5-c-radio__label"
|
|
761
|
+
for="card-clickable-example-sr-only-radio"
|
|
653
762
|
id="card-clickable-example-sr-only-radio-label"
|
|
654
763
|
name="card-clickable-example-sr-only-radio"
|
|
655
|
-
for="card-clickable-example-sr-only-radio"
|
|
656
764
|
></label>
|
|
657
765
|
</div>
|
|
658
766
|
</div>
|
|
@@ -686,9 +794,9 @@ cssPrefix: pf-v5-c-card
|
|
|
686
794
|
|
|
687
795
|
<label
|
|
688
796
|
class="pf-v5-c-radio__label pf-m-disabled"
|
|
797
|
+
for="card-clickable-example-disabled-sr-only-radio"
|
|
689
798
|
id="card-clickable-example-disabled-sr-only-radio-label"
|
|
690
799
|
name="card-clickable-example-disabled-sr-only-radio"
|
|
691
|
-
for="card-clickable-example-disabled-sr-only-radio"
|
|
692
800
|
></label>
|
|
693
801
|
</div>
|
|
694
802
|
</div>
|
|
@@ -725,9 +833,9 @@ cssPrefix: pf-v5-c-card
|
|
|
725
833
|
|
|
726
834
|
<label
|
|
727
835
|
class="pf-v5-c-radio__label pf-m-disabled"
|
|
836
|
+
for="card-clickable-example-selected-disabled-sr-only-radio"
|
|
728
837
|
id="card-clickable-example-selected-disabled-sr-only-radio-label"
|
|
729
838
|
name="card-clickable-example-selected-disabled-sr-only-radio"
|
|
730
|
-
for="card-clickable-example-selected-disabled-sr-only-radio"
|
|
731
839
|
></label>
|
|
732
840
|
</div>
|
|
733
841
|
</div>
|
|
@@ -770,9 +878,9 @@ cssPrefix: pf-v5-c-card
|
|
|
770
878
|
|
|
771
879
|
<label
|
|
772
880
|
class="pf-v5-c-check__label"
|
|
881
|
+
for="card-clickable-selectable-example-check"
|
|
773
882
|
id="card-clickable-selectable-example-check-label"
|
|
774
883
|
name="card-clickable-selectable-example-check"
|
|
775
|
-
for="card-clickable-selectable-example-check"
|
|
776
884
|
></label>
|
|
777
885
|
</div>
|
|
778
886
|
</div>
|
|
@@ -811,9 +919,9 @@ cssPrefix: pf-v5-c-card
|
|
|
811
919
|
|
|
812
920
|
<label
|
|
813
921
|
class="pf-v5-c-check__label"
|
|
922
|
+
for="card-clickable-selectable-current-example-check"
|
|
814
923
|
id="card-clickable-selectable-current-example-check-label"
|
|
815
924
|
name="card-clickable-selectable-current-example-check"
|
|
816
|
-
for="card-clickable-selectable-current-example-check"
|
|
817
925
|
></label>
|
|
818
926
|
</div>
|
|
819
927
|
</div>
|
|
@@ -853,9 +961,9 @@ cssPrefix: pf-v5-c-card
|
|
|
853
961
|
|
|
854
962
|
<label
|
|
855
963
|
class="pf-v5-c-check__label pf-m-disabled"
|
|
964
|
+
for="card-clickable-selectable-example-disabled-check"
|
|
856
965
|
id="card-clickable-selectable-example-disabled-check-label"
|
|
857
966
|
name="card-clickable-selectable-example-disabled-check"
|
|
858
|
-
for="card-clickable-selectable-example-disabled-check"
|
|
859
967
|
></label>
|
|
860
968
|
</div>
|
|
861
969
|
</div>
|
|
@@ -897,9 +1005,9 @@ cssPrefix: pf-v5-c-card
|
|
|
897
1005
|
|
|
898
1006
|
<label
|
|
899
1007
|
class="pf-v5-c-check__label pf-m-disabled"
|
|
1008
|
+
for="card-clickable-selectable-example-selected-disabled-check"
|
|
900
1009
|
id="card-clickable-selectable-example-selected-disabled-check-label"
|
|
901
1010
|
name="card-clickable-selectable-example-selected-disabled-check"
|
|
902
|
-
for="card-clickable-selectable-example-selected-disabled-check"
|
|
903
1011
|
></label>
|
|
904
1012
|
</div>
|
|
905
1013
|
</div>
|