@patternfly/patternfly 6.3.0-prerelease.6 → 6.3.0-prerelease.61
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/README.md +22 -14
- package/assets/images/icon-help.hbs +3 -0
- package/assets/images/icon-outlined-star.hbs +3 -0
- package/assets/images/icon-star.hbs +3 -0
- package/base/normalize.scss +4 -0
- package/base/patternfly-common.css +46 -11
- package/base/patternfly-common.scss +58 -13
- package/base/patternfly-variables.css +1172 -1
- package/base/patternfly-variables.scss +10 -0
- package/base/tokens/tokens-charts-dark.scss +1 -1
- package/base/tokens/tokens-charts.scss +1 -1
- package/base/tokens/tokens-dark.scss +13 -1
- package/base/tokens/tokens-default.scss +60 -2
- package/base/tokens/tokens-highcontrast-dark.scss +396 -0
- package/base/tokens/tokens-highcontrast.scss +703 -0
- package/base/tokens/tokens-local.scss +1 -0
- package/base/tokens/tokens-palette.scss +9 -1
- package/components/Accordion/accordion.css +102 -6
- package/components/Accordion/accordion.scss +112 -10
- package/components/Alert/alert-group.css +67 -33
- package/components/Alert/alert-group.scss +95 -48
- package/components/Badge/badge.css +2 -0
- package/components/Badge/badge.scss +2 -0
- package/components/Banner/banner.css +4 -0
- package/components/Banner/banner.scss +4 -0
- package/components/Button/button.css +187 -9
- package/components/Button/button.scss +195 -13
- package/components/CalendarMonth/calendar-month.css +16 -0
- package/components/CalendarMonth/calendar-month.scss +16 -0
- package/components/Card/card.css +5 -4
- package/components/Card/card.scss +5 -4
- package/components/CodeBlock/code-block.css +3 -0
- package/components/CodeBlock/code-block.scss +3 -0
- package/components/CodeEditor/code-editor.css +8 -3
- package/components/CodeEditor/code-editor.scss +11 -6
- package/components/DataList/data-list.css +2 -2
- package/components/DataList/data-list.scss +2 -2
- package/components/DatePicker/date-picker.css +3 -0
- package/components/DatePicker/date-picker.scss +4 -0
- package/components/Drawer/drawer.css +44 -41
- package/components/Drawer/drawer.scss +42 -36
- package/components/DualListSelector/dual-list-selector.css +55 -1
- package/components/DualListSelector/dual-list-selector.scss +63 -1
- package/components/ExpandableSection/expandable-section.css +63 -1
- package/components/ExpandableSection/expandable-section.scss +76 -2
- package/components/FileUpload/file-upload.css +3 -3
- package/components/FileUpload/file-upload.scss +3 -3
- package/components/Form/form.css +40 -1
- package/components/Form/form.scss +47 -1
- package/components/FormControl/form-control.css +16 -0
- package/components/FormControl/form-control.scss +9 -0
- package/components/InputGroup/input-group.css +80 -0
- package/components/InputGroup/input-group.scss +95 -0
- package/components/Label/label.css +20 -11
- package/components/Label/label.scss +21 -11
- package/components/Login/login.css +3 -0
- package/components/Login/login.scss +3 -0
- package/components/Menu/menu.css +42 -4
- package/components/Menu/menu.scss +39 -6
- package/components/MenuToggle/menu-toggle.css +51 -10
- package/components/MenuToggle/menu-toggle.scss +61 -9
- package/components/ModalBox/modal-box.css +3 -0
- package/components/ModalBox/modal-box.scss +3 -0
- package/components/Nav/nav.css +39 -8
- package/components/Nav/nav.scss +42 -9
- package/components/Page/page.css +124 -26
- package/components/Page/page.scss +86 -16
- package/components/Pagination/pagination.css +14 -1
- package/components/Pagination/pagination.scss +14 -1
- package/components/Panel/panel.css +14 -1
- package/components/Panel/panel.scss +14 -1
- package/components/Popover/popover.css +4 -0
- package/components/Popover/popover.scss +4 -0
- package/components/Progress/progress.css +26 -0
- package/components/Progress/progress.scss +22 -1
- package/components/ProgressStepper/progress-stepper.scss +1 -0
- package/components/SimpleList/simple-list.css +15 -0
- package/components/SimpleList/simple-list.scss +17 -1
- package/components/Skeleton/skeleton.css +22 -2
- package/components/Skeleton/skeleton.scss +25 -3
- package/components/Spinner/spinner.css +5 -0
- package/components/Spinner/spinner.scss +6 -0
- package/components/Table/table-grid.css +51 -5
- package/components/Table/table-grid.scss +22 -1
- package/components/Table/table.css +124 -2
- package/components/Table/table.scss +171 -3
- package/components/Tabs/tabs.css +32 -15
- package/components/Tabs/tabs.scss +34 -14
- package/components/TextInputGroup/text-input-group.css +23 -0
- package/components/TextInputGroup/text-input-group.scss +16 -1
- package/components/Timestamp/timestamp.css +4 -0
- package/components/Timestamp/timestamp.scss +7 -0
- package/components/TreeView/tree-view.css +54 -0
- package/components/TreeView/tree-view.scss +59 -2
- package/components/Truncate/truncate.css +1 -0
- package/components/Truncate/truncate.scss +3 -0
- package/components/Wizard/wizard.css +33 -6
- package/components/Wizard/wizard.scss +38 -8
- package/components/_index.css +1404 -195
- package/docs/components/Alert/examples/Alert.md +2 -2
- package/docs/components/Breadcrumb/examples/Breadcrumb.md +1 -1
- package/docs/components/Button/examples/Button.md +159 -6
- package/docs/components/Card/examples/Card.md +8 -8
- package/docs/components/ClipboardCopy/examples/ClipboardCopy.md +24 -32
- package/docs/components/CodeBlock/examples/CodeBlock.md +10 -10
- package/docs/components/CodeEditor/examples/CodeEditor.md +29 -5
- package/docs/components/DataList/examples/DataList.md +83 -207
- package/docs/components/DescriptionList/examples/DescriptionList.md +78 -22
- package/docs/components/DualListSelector/examples/DualListSelector.md +642 -319
- package/docs/components/EmptyState/examples/EmptyState.md +6 -6
- package/docs/components/ExpandableSection/examples/ExpandableSection.md +26 -15
- package/docs/components/Form/examples/Form.md +1178 -113
- package/docs/components/Hint/examples/Hint.md +3 -3
- package/docs/components/InlineEdit/examples/InlineEdit.md +2 -6
- package/docs/components/InputGroup/examples/InputGroup.md +5 -1
- package/docs/components/Label/examples/Label.md +2 -2
- package/docs/components/Login/examples/Login.md +22 -22
- package/docs/components/Masthead/examples/masthead.md +90 -12
- package/docs/components/Menu/examples/Menu.md +122 -6
- package/docs/components/MenuToggle/examples/MenuToggle.md +93 -55
- package/docs/components/ModalBox/examples/ModalBox.md +13 -1
- package/docs/components/OverflowMenu/examples/overflow-menu.md +5 -5
- package/docs/components/Page/examples/Page.md +147 -14
- package/docs/components/Pagination/examples/Pagination.md +123 -12
- package/docs/components/Popover/examples/Popover.md +0 -4
- package/docs/components/Progress/examples/Progress.md +222 -210
- package/docs/components/ProgressStepper/examples/ProgressStepper.md +32 -6
- package/docs/components/Skeleton/examples/Skeleton.md +21 -7
- package/docs/components/Slider/examples/Slider.md +2 -2
- package/docs/components/Spinner/examples/Spinner.md +10 -0
- package/docs/components/Table/examples/Table.md +7699 -4896
- package/docs/components/Tabs/examples/Tabs.md +1214 -6729
- package/docs/components/TextInputGroup/examples/TextInputGroup.md +168 -49
- package/docs/components/Title/examples/Title.md +8 -8
- package/docs/components/Toolbar/examples/Toolbar.md +7 -7
- package/docs/components/Wizard/examples/Wizard.md +583 -0
- package/docs/demos/AboutModal/examples/AboutModal.md +22 -3
- package/docs/demos/Alert/examples/Alert.md +66 -9
- package/docs/demos/BackToTop/examples/BackToTop.md +22 -3
- package/docs/demos/Banner/examples/Banner.md +47 -6
- package/docs/demos/Card/examples/Card.md +13 -67
- package/docs/demos/CardView/examples/CardView.md +24 -5
- package/docs/demos/Dashboard/examples/Dashboard.md +34 -27
- package/docs/demos/DataList/examples/DataList.md +628 -192
- package/docs/demos/DescriptionList/examples/DescriptionList.md +79 -50
- package/docs/demos/Drawer/examples/Drawer.md +110 -53
- package/docs/demos/Form/examples/BasicForms.md +146 -26
- package/docs/demos/JumpLinks/examples/JumpLinks.md +132 -18
- package/docs/demos/Masthead/examples/Masthead.md +170 -18
- package/docs/demos/Modal/examples/Modal.md +171 -21
- package/docs/demos/Nav/examples/Nav.md +111 -16
- package/docs/demos/NotificationDrawer/examples/NotificationDrawer.md +114 -19
- package/docs/demos/Page/examples/Page.md +309 -43
- package/docs/demos/PasswordGenerator/examples/PasswordGenerator.md +13 -1
- package/docs/demos/PrimaryDetail/examples/PrimaryDetail.md +886 -415
- package/docs/demos/Skeleton/examples/Skeleton.md +25 -4
- package/docs/demos/Table/examples/Table.md +480 -177
- package/docs/demos/Tabs/examples/Tabs.md +139 -594
- package/docs/demos/Toolbar/examples/Toolbar.md +72 -34
- package/docs/demos/Wizard/examples/Wizard.md +198 -27
- package/package.json +12 -7
- package/patternfly-base-no-globals.css +1217 -12
- package/patternfly-base.css +1221 -12
- package/patternfly-no-globals.css +2851 -437
- package/patternfly.css +2853 -435
- package/patternfly.min.css +1 -1
- package/patternfly.min.css.map +1 -1
- package/sass-utilities/mixins.scss +54 -0
|
@@ -493,7 +493,7 @@ cssPrefix: ['pf-v6-c-alert','pf-v6-c-alert-group']
|
|
|
493
493
|
>
|
|
494
494
|
<div class="pf-v6-c-alert__toggle">
|
|
495
495
|
<button
|
|
496
|
-
class="pf-v6-c-button pf-m-
|
|
496
|
+
class="pf-v6-c-button pf-m-plain"
|
|
497
497
|
id="alert-expandable-example-2-toggle"
|
|
498
498
|
type="button"
|
|
499
499
|
aria-expanded="true"
|
|
@@ -594,7 +594,7 @@ cssPrefix: ['pf-v6-c-alert','pf-v6-c-alert-group']
|
|
|
594
594
|
>
|
|
595
595
|
<div class="pf-v6-c-alert__toggle">
|
|
596
596
|
<button
|
|
597
|
-
class="pf-v6-c-button pf-m-
|
|
597
|
+
class="pf-v6-c-button pf-m-plain"
|
|
598
598
|
id="alert-expandable-example-4-toggle"
|
|
599
599
|
type="button"
|
|
600
600
|
aria-expanded="true"
|
|
@@ -161,7 +161,7 @@ cssPrefix: pf-v6-c-breadcrumb
|
|
|
161
161
|
</span>
|
|
162
162
|
<span class="pf-v6-c-breadcrumb__dropdown">
|
|
163
163
|
<button
|
|
164
|
-
class="pf-v6-c-menu-toggle pf-m-
|
|
164
|
+
class="pf-v6-c-menu-toggle pf-m-text pf-m-small pf-m-plain"
|
|
165
165
|
type="button"
|
|
166
166
|
aria-expanded="false"
|
|
167
167
|
aria-label="Menu toggle"
|
|
@@ -1906,7 +1906,19 @@ For when a plain/icon button is placed inline with text
|
|
|
1906
1906
|
aria-label="More info"
|
|
1907
1907
|
>
|
|
1908
1908
|
<span class="pf-v6-c-button__icon">
|
|
1909
|
-
<
|
|
1909
|
+
<svg
|
|
1910
|
+
class="pf-v6-svg"
|
|
1911
|
+
viewBox="0 0 1024 1024"
|
|
1912
|
+
fill="currentColor"
|
|
1913
|
+
aria-hidden="true"
|
|
1914
|
+
role="img"
|
|
1915
|
+
width="1em"
|
|
1916
|
+
height="1em"
|
|
1917
|
+
>
|
|
1918
|
+
<path
|
|
1919
|
+
d="M521.3,576 C627.5,576 713.7,502 713.7,413.7 C713.7,325.4 627.6,253.6 521.3,253.6 C366,253.6 334.5,337.7 329.2,407.2 C329.2,414.3 335.2,416 343.5,416 L445,416 C450.5,416 458,415.5 460.8,406.5 C460.8,362.6 582.9,357.1 582.9,413.6 C582.9,441.9 556.2,470.9 521.3,473 C486.4,475.1 447.3,479.8 447.3,521.7 L447.3,553.8 C447.3,570.8 456.1,576 472,576 C487.9,576 521.3,576 521.3,576 M575.3,751.3 L575.3,655.3 C575.313862,651.055109 573.620137,646.982962 570.6,644 C567.638831,640.947672 563.552355,639.247987 559.3,639.29884 L463.3,639.29884 C459.055109,639.286138 454.982962,640.979863 452,644 C448.947672,646.961169 447.247987,651.047645 447.29884,655.3 L447.29884,751.3 C447.286138,755.544891 448.979863,759.617038 452,762.6 C454.961169,765.652328 459.047645,767.352013 463.3,767.30116 L559.3,767.30116 C563.544891,767.313862 567.617038,765.620137 570.6,762.6 C573.659349,759.643612 575.360354,755.553963 575.3,751.3 M512,896 C300.2,896 128,723.9 128,512 C128,300.3 300.2,128 512,128 C723.8,128 896,300.2 896,512 C896,723.8 723.7,896 512,896 M512.1,0 C229.7,0 0,229.8 0,512 C0,794.2 229.8,1024 512.1,1024 C794.4,1024 1024,794.3 1024,512 C1024,229.7 794.4,0 512.1,0"
|
|
1920
|
+
/>
|
|
1921
|
+
</svg>
|
|
1910
1922
|
</span>
|
|
1911
1923
|
</button>
|
|
1912
1924
|
.
|
|
@@ -2010,7 +2022,36 @@ A favorite button should use a plain button with the star icon. Applying `.pf-m-
|
|
|
2010
2022
|
aria-label="not starred"
|
|
2011
2023
|
>
|
|
2012
2024
|
<span class="pf-v6-c-button__icon">
|
|
2013
|
-
<
|
|
2025
|
+
<span class="pf-v6-c-button__icon-favorite">
|
|
2026
|
+
<svg
|
|
2027
|
+
class="pf-v6-svg"
|
|
2028
|
+
viewBox="0 0 576 512"
|
|
2029
|
+
fill="currentColor"
|
|
2030
|
+
aria-hidden="true"
|
|
2031
|
+
role="img"
|
|
2032
|
+
width="1em"
|
|
2033
|
+
height="1em"
|
|
2034
|
+
>
|
|
2035
|
+
<path
|
|
2036
|
+
d="M528.1 171.5L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0L194 150.2 47.9 171.5c-26.2 3.8-36.7 36.1-17.7 54.6l105.7 103-25 145.5c-4.5 26.3 23.2 46 46.4 33.7L288 439.6l130.7 68.7c23.2 12.2 50.9-7.4 46.4-33.7l-25-145.5 105.7-103c19-18.5 8.5-50.8-17.7-54.6zM388.6 312.3l23.7 138.4L288 385.4l-124.3 65.3 23.7-138.4-100.6-98 139-20.2 62.2-126 62.2 126 139 20.2-100.6 98z"
|
|
2037
|
+
/>
|
|
2038
|
+
</svg>
|
|
2039
|
+
</span>
|
|
2040
|
+
<span class="pf-v6-c-button__icon-favorited">
|
|
2041
|
+
<svg
|
|
2042
|
+
class="pf-v6-svg"
|
|
2043
|
+
viewBox="0 0 576 512"
|
|
2044
|
+
fill="currentColor"
|
|
2045
|
+
aria-hidden="true"
|
|
2046
|
+
role="img"
|
|
2047
|
+
width="1em"
|
|
2048
|
+
height="1em"
|
|
2049
|
+
>
|
|
2050
|
+
<path
|
|
2051
|
+
d="M259.3 17.8L194 150.2 47.9 171.5c-26.2 3.8-36.7 36.1-17.7 54.6l105.7 103-25 145.5c-4.5 26.3 23.2 46 46.4 33.7L288 439.6l130.7 68.7c23.2 12.2 50.9-7.4 46.4-33.7l-25-145.5 105.7-103c19-18.5 8.5-50.8-17.7-54.6L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0z"
|
|
2052
|
+
/>
|
|
2053
|
+
</svg>
|
|
2054
|
+
</span>
|
|
2014
2055
|
</span>
|
|
2015
2056
|
</button>
|
|
2016
2057
|
<button
|
|
@@ -2019,7 +2060,115 @@ A favorite button should use a plain button with the star icon. Applying `.pf-m-
|
|
|
2019
2060
|
aria-label="starred"
|
|
2020
2061
|
>
|
|
2021
2062
|
<span class="pf-v6-c-button__icon">
|
|
2022
|
-
<
|
|
2063
|
+
<span class="pf-v6-c-button__icon-favorite">
|
|
2064
|
+
<svg
|
|
2065
|
+
class="pf-v6-svg"
|
|
2066
|
+
viewBox="0 0 576 512"
|
|
2067
|
+
fill="currentColor"
|
|
2068
|
+
aria-hidden="true"
|
|
2069
|
+
role="img"
|
|
2070
|
+
width="1em"
|
|
2071
|
+
height="1em"
|
|
2072
|
+
>
|
|
2073
|
+
<path
|
|
2074
|
+
d="M528.1 171.5L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0L194 150.2 47.9 171.5c-26.2 3.8-36.7 36.1-17.7 54.6l105.7 103-25 145.5c-4.5 26.3 23.2 46 46.4 33.7L288 439.6l130.7 68.7c23.2 12.2 50.9-7.4 46.4-33.7l-25-145.5 105.7-103c19-18.5 8.5-50.8-17.7-54.6zM388.6 312.3l23.7 138.4L288 385.4l-124.3 65.3 23.7-138.4-100.6-98 139-20.2 62.2-126 62.2 126 139 20.2-100.6 98z"
|
|
2075
|
+
/>
|
|
2076
|
+
</svg>
|
|
2077
|
+
</span>
|
|
2078
|
+
<span class="pf-v6-c-button__icon-favorited">
|
|
2079
|
+
<svg
|
|
2080
|
+
class="pf-v6-svg"
|
|
2081
|
+
viewBox="0 0 576 512"
|
|
2082
|
+
fill="currentColor"
|
|
2083
|
+
aria-hidden="true"
|
|
2084
|
+
role="img"
|
|
2085
|
+
width="1em"
|
|
2086
|
+
height="1em"
|
|
2087
|
+
>
|
|
2088
|
+
<path
|
|
2089
|
+
d="M259.3 17.8L194 150.2 47.9 171.5c-26.2 3.8-36.7 36.1-17.7 54.6l105.7 103-25 145.5c-4.5 26.3 23.2 46 46.4 33.7L288 439.6l130.7 68.7c23.2 12.2 50.9-7.4 46.4-33.7l-25-145.5 105.7-103c19-18.5 8.5-50.8-17.7-54.6L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0z"
|
|
2090
|
+
/>
|
|
2091
|
+
</svg>
|
|
2092
|
+
</span>
|
|
2093
|
+
</span>
|
|
2094
|
+
</button>
|
|
2095
|
+
|
|
2096
|
+
```
|
|
2097
|
+
|
|
2098
|
+
### Settings
|
|
2099
|
+
|
|
2100
|
+
```html
|
|
2101
|
+
<button
|
|
2102
|
+
class="pf-v6-c-button pf-m-settings pf-m-plain"
|
|
2103
|
+
type="button"
|
|
2104
|
+
aria-label="Settings"
|
|
2105
|
+
>
|
|
2106
|
+
<span class="pf-v6-c-button__icon">
|
|
2107
|
+
<i class="fas fa-cog" aria-hidden="true"></i>
|
|
2108
|
+
</span>
|
|
2109
|
+
</button>
|
|
2110
|
+
|
|
2111
|
+
```
|
|
2112
|
+
|
|
2113
|
+
### Hamburger
|
|
2114
|
+
|
|
2115
|
+
```html
|
|
2116
|
+
<button
|
|
2117
|
+
class="pf-v6-c-button pf-m-hamburger pf-m-plain"
|
|
2118
|
+
type="button"
|
|
2119
|
+
aria-label="Hamburger"
|
|
2120
|
+
>
|
|
2121
|
+
<span class="pf-v6-c-button__icon">
|
|
2122
|
+
<svg
|
|
2123
|
+
viewBox="0 0 10 10"
|
|
2124
|
+
class="pf-v6-c-button--hamburger-icon pf-v6-svg"
|
|
2125
|
+
width="1em"
|
|
2126
|
+
height="1em"
|
|
2127
|
+
>
|
|
2128
|
+
<path class="pf-v6-c-button--hamburger-icon--top" d="M1,1 L9,1" />
|
|
2129
|
+
<path class="pf-v6-c-button--hamburger-icon--middle" d="M1,5 L9,5" />
|
|
2130
|
+
<path class="pf-v6-c-button--hamburger-icon--arrow" d="M1,5 L1,5 L1,5" />
|
|
2131
|
+
<path class="pf-v6-c-button--hamburger-icon--bottom" d="M9,9 L1,9" />
|
|
2132
|
+
</svg>
|
|
2133
|
+
</span>
|
|
2134
|
+
</button>
|
|
2135
|
+
<button
|
|
2136
|
+
class="pf-v6-c-button pf-m-expand pf-m-hamburger pf-m-plain"
|
|
2137
|
+
type="button"
|
|
2138
|
+
aria-label="Hamburger"
|
|
2139
|
+
>
|
|
2140
|
+
<span class="pf-v6-c-button__icon">
|
|
2141
|
+
<svg
|
|
2142
|
+
viewBox="0 0 10 10"
|
|
2143
|
+
class="pf-v6-c-button--hamburger-icon pf-v6-svg"
|
|
2144
|
+
width="1em"
|
|
2145
|
+
height="1em"
|
|
2146
|
+
>
|
|
2147
|
+
<path class="pf-v6-c-button--hamburger-icon--top" d="M1,1 L9,1" />
|
|
2148
|
+
<path class="pf-v6-c-button--hamburger-icon--middle" d="M1,5 L9,5" />
|
|
2149
|
+
<path class="pf-v6-c-button--hamburger-icon--arrow" d="M1,5 L1,5 L1,5" />
|
|
2150
|
+
<path class="pf-v6-c-button--hamburger-icon--bottom" d="M9,9 L1,9" />
|
|
2151
|
+
</svg>
|
|
2152
|
+
</span>
|
|
2153
|
+
</button>
|
|
2154
|
+
<button
|
|
2155
|
+
class="pf-v6-c-button pf-m-collapse pf-m-hamburger pf-m-plain"
|
|
2156
|
+
type="button"
|
|
2157
|
+
aria-expanded="true"
|
|
2158
|
+
aria-label="Hamburger"
|
|
2159
|
+
>
|
|
2160
|
+
<span class="pf-v6-c-button__icon">
|
|
2161
|
+
<svg
|
|
2162
|
+
viewBox="0 0 10 10"
|
|
2163
|
+
class="pf-v6-c-button--hamburger-icon pf-v6-svg"
|
|
2164
|
+
width="1em"
|
|
2165
|
+
height="1em"
|
|
2166
|
+
>
|
|
2167
|
+
<path class="pf-v6-c-button--hamburger-icon--top" d="M1,1 L9,1" />
|
|
2168
|
+
<path class="pf-v6-c-button--hamburger-icon--middle" d="M1,5 L9,5" />
|
|
2169
|
+
<path class="pf-v6-c-button--hamburger-icon--arrow" d="M1,5 L1,5 L1,5" />
|
|
2170
|
+
<path class="pf-v6-c-button--hamburger-icon--bottom" d="M9,9 L1,9" />
|
|
2171
|
+
</svg>
|
|
2023
2172
|
</span>
|
|
2024
2173
|
</button>
|
|
2025
2174
|
|
|
@@ -2056,7 +2205,7 @@ Semantic buttons and links are important for usability as well as accessibility.
|
|
|
2056
2205
|
| `.pf-v6-c-button` | `<button>, <span>` | Initiates a button. Always use it with a modifier class. **Required** |
|
|
2057
2206
|
| `.pf-v6-c-button__icon` | `<span>` | Initiates a button icon. |
|
|
2058
2207
|
| `.pf-v6-c-button__progress` | `<span>` | Initiates a button progress container. |
|
|
2059
|
-
| `.pf-v6-c-button__count` | `<span>` | Initiates a button count container. **Note:** Count should only be used on link buttons
|
|
2208
|
+
| `.pf-v6-c-button__count` | `<span>` | Initiates a button count container. **Note:** Count should only be used on link buttons. |
|
|
2060
2209
|
| `.pf-m-primary` | `.pf-v6-c-button` | Modifies for primary styles. |
|
|
2061
2210
|
| `.pf-m-secondary` | `.pf-v6-c-button` | Modifies for secondary styles. |
|
|
2062
2211
|
| `.pf-m-tertiary` | `.pf-v6-c-button` | Modifies for tertiary styles. |
|
|
@@ -2079,5 +2228,9 @@ Semantic buttons and links are important for usability as well as accessibility.
|
|
|
2079
2228
|
| `.pf-m-in-progress` | `.pf-v6-c-button` | Indicates that the button is in the in progress state. |
|
|
2080
2229
|
| `.pf-m-stateful` | `.pf-v6-c-button` | Indicates that the button is used for one of read, unread, and attention states. **Note:** Always use with a modifier of `.pf-m-read`, `.pf-m-unread`, or `.pf-m-attention`. |
|
|
2081
2230
|
| `.pf-m-notify` | `.pf-v6-c-button` | Indicates that the button should show the user notification of an event. **Note:** This is intended for use with a bell icon in the notification badge. |
|
|
2082
|
-
| `.pf-m-favorite` | `.pf-v6-c-button
|
|
2083
|
-
| `.pf-m-favorited` | `.pf-v6-c-button
|
|
2231
|
+
| `.pf-m-favorite` | `.pf-v6-c-button.pf-m-plain` | Modifies a plain button to be a favorite button. **Note:** This is intended for use with a star icon. |
|
|
2232
|
+
| `.pf-m-favorited` | `.pf-v6-c-button.pf-m-plain.pf-m-favorite` | Modifies a favorite button to indicate that item is favorited. |
|
|
2233
|
+
| `.pf-m-settings` | `.pf-v6-c-button.pf-m-plain` | Modifies a plain button to be a settings button. |
|
|
2234
|
+
| `.pf-m-hamburger` | `.pf-v6-c-button.pf-m-plain` | Modifies a plain button to be a hamburger button. |
|
|
2235
|
+
| `.pf-m-expand` | `.pf-v6-c-button.pf-m-hamburger` | Modifies a hamburger button to indicate that it will expand a menu. |
|
|
2236
|
+
| `.pf-m-collapse` | `.pf-v6-c-button.pf-m-hamburger` | Modifies a hamburger button to indicate that it will collapse a menu. |
|
|
@@ -101,7 +101,7 @@ cssPrefix: pf-v6-c-card
|
|
|
101
101
|
class="pf-v6-c-menu-toggle pf-m-plain"
|
|
102
102
|
type="button"
|
|
103
103
|
aria-expanded="false"
|
|
104
|
-
aria-label="
|
|
104
|
+
aria-label="Card menu toggle"
|
|
105
105
|
id="card-action-example-1-menu-toggle-kebab"
|
|
106
106
|
>
|
|
107
107
|
<span class="pf-v6-c-menu-toggle__icon">
|
|
@@ -142,7 +142,7 @@ cssPrefix: pf-v6-c-card
|
|
|
142
142
|
class="pf-v6-c-menu-toggle pf-m-plain"
|
|
143
143
|
type="button"
|
|
144
144
|
aria-expanded="false"
|
|
145
|
-
aria-label="
|
|
145
|
+
aria-label="Card menu toggle"
|
|
146
146
|
id="card-action-example-2-menu-toggle-kebab"
|
|
147
147
|
>
|
|
148
148
|
<span class="pf-v6-c-menu-toggle__icon">
|
|
@@ -185,7 +185,7 @@ cssPrefix: pf-v6-c-card
|
|
|
185
185
|
class="pf-v6-c-menu-toggle pf-m-plain"
|
|
186
186
|
type="button"
|
|
187
187
|
aria-expanded="false"
|
|
188
|
-
aria-label="
|
|
188
|
+
aria-label="Card menu toggle"
|
|
189
189
|
id="card-action-example-3-menu-toggle-kebab"
|
|
190
190
|
>
|
|
191
191
|
<span class="pf-v6-c-menu-toggle__icon">
|
|
@@ -1434,7 +1434,7 @@ cssPrefix: pf-v6-c-card
|
|
|
1434
1434
|
class="pf-v6-c-menu-toggle pf-m-plain"
|
|
1435
1435
|
type="button"
|
|
1436
1436
|
aria-expanded="false"
|
|
1437
|
-
aria-label="
|
|
1437
|
+
aria-label="Card menu toggle"
|
|
1438
1438
|
id="card-expandable-example-menu-toggle-kebab"
|
|
1439
1439
|
>
|
|
1440
1440
|
<span class="pf-v6-c-menu-toggle__icon">
|
|
@@ -1497,7 +1497,7 @@ cssPrefix: pf-v6-c-card
|
|
|
1497
1497
|
class="pf-v6-c-menu-toggle pf-m-plain"
|
|
1498
1498
|
type="button"
|
|
1499
1499
|
aria-expanded="false"
|
|
1500
|
-
aria-label="
|
|
1500
|
+
aria-label="Card menu toggle"
|
|
1501
1501
|
id="card-expandable-image-example-menu-toggle-kebab"
|
|
1502
1502
|
>
|
|
1503
1503
|
<span class="pf-v6-c-menu-toggle__icon">
|
|
@@ -1545,7 +1545,7 @@ cssPrefix: pf-v6-c-card
|
|
|
1545
1545
|
class="pf-v6-c-menu-toggle pf-m-plain"
|
|
1546
1546
|
type="button"
|
|
1547
1547
|
aria-expanded="false"
|
|
1548
|
-
aria-label="
|
|
1548
|
+
aria-label="Card menu toggle"
|
|
1549
1549
|
id="card-expanded-example-menu-toggle-kebab"
|
|
1550
1550
|
>
|
|
1551
1551
|
<span class="pf-v6-c-menu-toggle__icon">
|
|
@@ -1588,7 +1588,7 @@ cssPrefix: pf-v6-c-card
|
|
|
1588
1588
|
class="pf-v6-c-menu-toggle pf-m-plain"
|
|
1589
1589
|
type="button"
|
|
1590
1590
|
aria-expanded="false"
|
|
1591
|
-
aria-label="
|
|
1591
|
+
aria-label="Card menu toggle"
|
|
1592
1592
|
id="card-full-height-example-menu-toggle-kebab"
|
|
1593
1593
|
>
|
|
1594
1594
|
<span class="pf-v6-c-menu-toggle__icon">
|
|
@@ -1631,7 +1631,7 @@ cssPrefix: pf-v6-c-card
|
|
|
1631
1631
|
class="pf-v6-c-menu-toggle pf-m-plain"
|
|
1632
1632
|
type="button"
|
|
1633
1633
|
aria-expanded="false"
|
|
1634
|
-
aria-label="
|
|
1634
|
+
aria-label="Card menu toggle"
|
|
1635
1635
|
id="card-toggle-on-right-example-menu-toggle-kebab"
|
|
1636
1636
|
>
|
|
1637
1637
|
<span class="pf-v6-c-menu-toggle__icon">
|
|
@@ -21,8 +21,7 @@ cssPrefix: pf-v6-c-clipboard-copy
|
|
|
21
21
|
class="pf-v6-c-button pf-m-control"
|
|
22
22
|
id="basic-editable-copy-button"
|
|
23
23
|
type="button"
|
|
24
|
-
aria-
|
|
25
|
-
aria-label="Copy to clipboard"
|
|
24
|
+
aria-label="Copy to clipboard basic editable example"
|
|
26
25
|
>
|
|
27
26
|
<span class="pf-v6-c-button__icon">
|
|
28
27
|
<i class="fas fa-copy" aria-hidden="true"></i>
|
|
@@ -46,8 +45,7 @@ cssPrefix: pf-v6-c-clipboard-copy
|
|
|
46
45
|
class="pf-v6-c-button pf-m-control"
|
|
47
46
|
id="basic-readonly-copy-button"
|
|
48
47
|
type="button"
|
|
49
|
-
aria-
|
|
50
|
-
aria-label="Copy to clipboard"
|
|
48
|
+
aria-label="Copy to clipboard basic read-only example"
|
|
51
49
|
>
|
|
52
50
|
<span class="pf-v6-c-button__icon">
|
|
53
51
|
<i class="fas fa-copy" aria-hidden="true"></i>
|
|
@@ -68,7 +66,7 @@ cssPrefix: pf-v6-c-clipboard-copy
|
|
|
68
66
|
class="pf-v6-c-button pf-m-control"
|
|
69
67
|
type="button"
|
|
70
68
|
id="expandable-not-expanded-editable-toggle"
|
|
71
|
-
aria-
|
|
69
|
+
aria-label="Toggle unexpanded editable example"
|
|
72
70
|
aria-controls="expandable-not-expanded-editable-content"
|
|
73
71
|
>
|
|
74
72
|
<span class="pf-v6-c-button__icon">
|
|
@@ -88,9 +86,8 @@ cssPrefix: pf-v6-c-clipboard-copy
|
|
|
88
86
|
<button
|
|
89
87
|
class="pf-v6-c-button pf-m-control"
|
|
90
88
|
type="button"
|
|
91
|
-
aria-label="Copy to clipboard"
|
|
89
|
+
aria-label="Copy to clipboard unexpanded editable example"
|
|
92
90
|
id="expandable-not-expanded-editable-copy-button"
|
|
93
|
-
aria-labelledby="expandable-not-expanded-editable-copy-button expandable-not-expanded-editable-text-input"
|
|
94
91
|
>
|
|
95
92
|
<span class="pf-v6-c-button__icon">
|
|
96
93
|
<i class="fas fa-copy" aria-hidden="true"></i>
|
|
@@ -107,11 +104,11 @@ cssPrefix: pf-v6-c-clipboard-copy
|
|
|
107
104
|
<div class="pf-v6-c-clipboard-copy pf-m-expanded">
|
|
108
105
|
<div class="pf-v6-c-clipboard-copy__group">
|
|
109
106
|
<button
|
|
110
|
-
class="pf-v6-c-button pf-m-
|
|
107
|
+
class="pf-v6-c-button pf-m-control"
|
|
111
108
|
type="button"
|
|
112
109
|
aria-expanded="true"
|
|
113
110
|
id="expandable-expanded-editable-toggle"
|
|
114
|
-
aria-
|
|
111
|
+
aria-label="Toggle expanded editable example"
|
|
115
112
|
aria-controls="expandable-expanded-editable-content"
|
|
116
113
|
>
|
|
117
114
|
<span class="pf-v6-c-button__icon">
|
|
@@ -132,9 +129,8 @@ cssPrefix: pf-v6-c-clipboard-copy
|
|
|
132
129
|
<button
|
|
133
130
|
class="pf-v6-c-button pf-m-control"
|
|
134
131
|
type="button"
|
|
135
|
-
aria-label="Copy to clipboard"
|
|
132
|
+
aria-label="Copy to clipboard expanded editable example"
|
|
136
133
|
id="expandable-expanded-editable-copy-button"
|
|
137
|
-
aria-labelledby="expandable-expanded-editable-copy-button expandable-expanded-editable-text-input"
|
|
138
134
|
>
|
|
139
135
|
<span class="pf-v6-c-button__icon">
|
|
140
136
|
<i class="fas fa-copy" aria-hidden="true"></i>
|
|
@@ -155,7 +151,7 @@ cssPrefix: pf-v6-c-clipboard-copy
|
|
|
155
151
|
class="pf-v6-c-button pf-m-control"
|
|
156
152
|
type="button"
|
|
157
153
|
id="expandable-not-expanded-readonly-toggle"
|
|
158
|
-
aria-
|
|
154
|
+
aria-label="Toggle read-only unexpanded example"
|
|
159
155
|
aria-controls="expandable-not-expanded-readonly-content"
|
|
160
156
|
>
|
|
161
157
|
<span class="pf-v6-c-button__icon">
|
|
@@ -176,9 +172,8 @@ cssPrefix: pf-v6-c-clipboard-copy
|
|
|
176
172
|
<button
|
|
177
173
|
class="pf-v6-c-button pf-m-control"
|
|
178
174
|
type="button"
|
|
179
|
-
aria-label="Copy to clipboard"
|
|
175
|
+
aria-label="Copy to clipboard read-only collapsed example"
|
|
180
176
|
id="expandable-not-expanded-readonly-copy-button"
|
|
181
|
-
aria-labelledby="expandable-not-expanded-readonly-copy-button expandable-not-expanded-readonly-text-input"
|
|
182
177
|
>
|
|
183
178
|
<span class="pf-v6-c-button__icon">
|
|
184
179
|
<i class="fas fa-copy" aria-hidden="true"></i>
|
|
@@ -195,11 +190,11 @@ cssPrefix: pf-v6-c-clipboard-copy
|
|
|
195
190
|
<div class="pf-v6-c-clipboard-copy pf-m-expanded">
|
|
196
191
|
<div class="pf-v6-c-clipboard-copy__group">
|
|
197
192
|
<button
|
|
198
|
-
class="pf-v6-c-button pf-m-
|
|
193
|
+
class="pf-v6-c-button pf-m-control"
|
|
199
194
|
type="button"
|
|
200
195
|
aria-expanded="true"
|
|
201
196
|
id="expandable-expanded-readonly-toggle"
|
|
202
|
-
aria-
|
|
197
|
+
aria-label="Toggle read-only expanded example"
|
|
203
198
|
aria-controls="expandable-expanded-readonly-content"
|
|
204
199
|
>
|
|
205
200
|
<span class="pf-v6-c-button__icon">
|
|
@@ -220,9 +215,8 @@ cssPrefix: pf-v6-c-clipboard-copy
|
|
|
220
215
|
<button
|
|
221
216
|
class="pf-v6-c-button pf-m-control"
|
|
222
217
|
type="button"
|
|
223
|
-
aria-label="Copy to clipboard"
|
|
218
|
+
aria-label="Copy to clipboard read-only expanded example"
|
|
224
219
|
id="expandable-expanded-readonly-copy-button"
|
|
225
|
-
aria-labelledby="expandable-expanded-readonly-copy-button expandable-expanded-readonly-text-input"
|
|
226
220
|
>
|
|
227
221
|
<span class="pf-v6-c-button__icon">
|
|
228
222
|
<i class="fas fa-copy" aria-hidden="true"></i>
|
|
@@ -242,7 +236,7 @@ cssPrefix: pf-v6-c-clipboard-copy
|
|
|
242
236
|
class="pf-v6-c-button pf-m-control"
|
|
243
237
|
type="button"
|
|
244
238
|
id="expandable-not-expanded-code-toggle"
|
|
245
|
-
aria-
|
|
239
|
+
aria-label="Toggle code unexpanded example"
|
|
246
240
|
aria-controls="expandable-not-expanded-code-content"
|
|
247
241
|
>
|
|
248
242
|
<span class="pf-v6-c-button__icon">
|
|
@@ -263,9 +257,8 @@ cssPrefix: pf-v6-c-clipboard-copy
|
|
|
263
257
|
<button
|
|
264
258
|
class="pf-v6-c-button pf-m-control"
|
|
265
259
|
type="button"
|
|
266
|
-
aria-label="Copy to clipboard"
|
|
260
|
+
aria-label="Copy to clipboard code unexpanded example"
|
|
267
261
|
id="expandable-not-expanded-code-copy-button"
|
|
268
|
-
aria-labelledby="expandable-not-expanded-code-copy-button expandable-not-expanded-code-text-input"
|
|
269
262
|
>
|
|
270
263
|
<span class="pf-v6-c-button__icon">
|
|
271
264
|
<i class="fas fa-copy" aria-hidden="true"></i>
|
|
@@ -295,11 +288,11 @@ cssPrefix: pf-v6-c-clipboard-copy
|
|
|
295
288
|
<div class="pf-v6-c-clipboard-copy pf-m-expanded">
|
|
296
289
|
<div class="pf-v6-c-clipboard-copy__group">
|
|
297
290
|
<button
|
|
298
|
-
class="pf-v6-c-button pf-m-
|
|
291
|
+
class="pf-v6-c-button pf-m-control"
|
|
299
292
|
type="button"
|
|
300
293
|
aria-expanded="true"
|
|
301
294
|
id="expandable-expanded-code-toggle"
|
|
302
|
-
aria-
|
|
295
|
+
aria-label="Toggle code expanded example"
|
|
303
296
|
aria-controls="expandable-expanded-code-content"
|
|
304
297
|
>
|
|
305
298
|
<span class="pf-v6-c-button__icon">
|
|
@@ -321,9 +314,8 @@ cssPrefix: pf-v6-c-clipboard-copy
|
|
|
321
314
|
<button
|
|
322
315
|
class="pf-v6-c-button pf-m-control"
|
|
323
316
|
type="button"
|
|
324
|
-
aria-label="Copy to clipboard"
|
|
317
|
+
aria-label="Copy to clipboard code expanded example"
|
|
325
318
|
id="expandable-expanded-code-copy-button"
|
|
326
|
-
aria-labelledby="expandable-expanded-code-copy-button expandable-expanded-code-text-input"
|
|
327
319
|
>
|
|
328
320
|
<span class="pf-v6-c-button__icon">
|
|
329
321
|
<i class="fas fa-copy" aria-hidden="true"></i>
|
|
@@ -362,7 +354,7 @@ cssPrefix: pf-v6-c-clipboard-copy
|
|
|
362
354
|
<button
|
|
363
355
|
class="pf-v6-c-button pf-m-no-padding pf-m-plain"
|
|
364
356
|
type="button"
|
|
365
|
-
aria-label="Copy to clipboard"
|
|
357
|
+
aria-label="Copy to clipboard inline compact example"
|
|
366
358
|
>
|
|
367
359
|
<span class="pf-v6-c-button__icon">
|
|
368
360
|
<i class="fas fa-copy" aria-hidden="true"></i>
|
|
@@ -384,7 +376,7 @@ cssPrefix: pf-v6-c-clipboard-copy
|
|
|
384
376
|
<button
|
|
385
377
|
class="pf-v6-c-button pf-m-no-padding pf-m-plain"
|
|
386
378
|
type="button"
|
|
387
|
-
aria-label="Copy to clipboard"
|
|
379
|
+
aria-label="Copy to clipboard inline compact code example"
|
|
388
380
|
>
|
|
389
381
|
<span class="pf-v6-c-button__icon">
|
|
390
382
|
<i class="fas fa-copy" aria-hidden="true"></i>
|
|
@@ -406,7 +398,7 @@ cssPrefix: pf-v6-c-clipboard-copy
|
|
|
406
398
|
<button
|
|
407
399
|
class="pf-v6-c-button pf-m-no-padding pf-m-plain"
|
|
408
400
|
type="button"
|
|
409
|
-
aria-label="Copy to clipboard"
|
|
401
|
+
aria-label="Copy to clipboard inline compact with additional action example"
|
|
410
402
|
>
|
|
411
403
|
<span class="pf-v6-c-button__icon">
|
|
412
404
|
<i class="fas fa-copy" aria-hidden="true"></i>
|
|
@@ -442,7 +434,7 @@ cssPrefix: pf-v6-c-clipboard-copy
|
|
|
442
434
|
<button
|
|
443
435
|
class="pf-v6-c-button pf-m-no-padding pf-m-plain"
|
|
444
436
|
type="button"
|
|
445
|
-
aria-label="Copy to clipboard"
|
|
437
|
+
aria-label="Copy to clipboard basic inline compact example"
|
|
446
438
|
>
|
|
447
439
|
<span class="pf-v6-c-button__icon">
|
|
448
440
|
<i class="fas fa-copy" aria-hidden="true"></i>
|
|
@@ -467,7 +459,7 @@ cssPrefix: pf-v6-c-clipboard-copy
|
|
|
467
459
|
<button
|
|
468
460
|
class="pf-v6-c-button pf-m-no-padding pf-m-plain"
|
|
469
461
|
type="button"
|
|
470
|
-
aria-label="Copy to clipboard"
|
|
462
|
+
aria-label="Copy to clipboard long inline compact example"
|
|
471
463
|
>
|
|
472
464
|
<span class="pf-v6-c-button__icon">
|
|
473
465
|
<i class="fas fa-copy" aria-hidden="true"></i>
|
|
@@ -491,7 +483,7 @@ cssPrefix: pf-v6-c-clipboard-copy
|
|
|
491
483
|
<button
|
|
492
484
|
class="pf-v6-c-button pf-m-no-padding pf-m-plain"
|
|
493
485
|
type="button"
|
|
494
|
-
aria-label="Copy to clipboard"
|
|
486
|
+
aria-label="Copy to clipboard long block compact example"
|
|
495
487
|
>
|
|
496
488
|
<span class="pf-v6-c-button__icon">
|
|
497
489
|
<i class="fas fa-copy" aria-hidden="true"></i>
|
|
@@ -519,7 +511,7 @@ cssPrefix: pf-v6-c-clipboard-copy
|
|
|
519
511
|
<button
|
|
520
512
|
class="pf-v6-c-button pf-m-no-padding pf-m-plain"
|
|
521
513
|
type="button"
|
|
522
|
-
aria-label="Copy to clipboard"
|
|
514
|
+
aria-label="Copy to clipboard inline compact with truncation example"
|
|
523
515
|
>
|
|
524
516
|
<span class="pf-v6-c-button__icon">
|
|
525
517
|
<i class="fas fa-copy" aria-hidden="true"></i>
|
|
@@ -14,7 +14,7 @@ cssPrefix: pf-v6-c-code-block
|
|
|
14
14
|
<button
|
|
15
15
|
class="pf-v6-c-button pf-m-plain"
|
|
16
16
|
type="button"
|
|
17
|
-
aria-label="Copy to clipboard"
|
|
17
|
+
aria-label="Copy to clipboard basic example code content"
|
|
18
18
|
>
|
|
19
19
|
<span class="pf-v6-c-button__icon">
|
|
20
20
|
<i class="fas fa-copy" aria-hidden="true"></i>
|
|
@@ -25,7 +25,7 @@ cssPrefix: pf-v6-c-code-block
|
|
|
25
25
|
<button
|
|
26
26
|
class="pf-v6-c-button pf-m-plain"
|
|
27
27
|
type="button"
|
|
28
|
-
aria-label="Run in Web Terminal"
|
|
28
|
+
aria-label="Run basic example code in Web Terminal"
|
|
29
29
|
>
|
|
30
30
|
<span class="pf-v6-c-button__icon">
|
|
31
31
|
<i class="fas fa-play" aria-hidden="true"></i>
|
|
@@ -58,7 +58,7 @@ url: https://raw.githubusercontent.com/Azure-Samples/helm-charts/master/docs</co
|
|
|
58
58
|
<button
|
|
59
59
|
class="pf-v6-c-button pf-m-plain"
|
|
60
60
|
type="button"
|
|
61
|
-
aria-label="Copy to clipboard"
|
|
61
|
+
aria-label="Copy to clipboard expandable example code content"
|
|
62
62
|
>
|
|
63
63
|
<span class="pf-v6-c-button__icon">
|
|
64
64
|
<i class="fas fa-copy" aria-hidden="true"></i>
|
|
@@ -69,7 +69,7 @@ url: https://raw.githubusercontent.com/Azure-Samples/helm-charts/master/docs</co
|
|
|
69
69
|
<button
|
|
70
70
|
class="pf-v6-c-button pf-m-plain"
|
|
71
71
|
type="button"
|
|
72
|
-
aria-label="Run in Web Terminal"
|
|
72
|
+
aria-label="Run expandable example code in Web Terminal"
|
|
73
73
|
>
|
|
74
74
|
<span class="pf-v6-c-button__icon">
|
|
75
75
|
<i class="fas fa-play" aria-hidden="true"></i>
|
|
@@ -83,7 +83,7 @@ url: https://raw.githubusercontent.com/Azure-Samples/helm-charts/master/docs</co
|
|
|
83
83
|
kind: HelmChartRepository
|
|
84
84
|
metadata:
|
|
85
85
|
name: azure-sample-repo<div
|
|
86
|
-
class="pf-v6-c-expandable-section"
|
|
86
|
+
class="pf-v6-c-expandable-section pf-m-detached"
|
|
87
87
|
><div
|
|
88
88
|
class="pf-v6-c-expandable-section__content"
|
|
89
89
|
hidden
|
|
@@ -95,7 +95,7 @@ name: azure-sample-repo<div
|
|
|
95
95
|
</div>
|
|
96
96
|
</code>
|
|
97
97
|
</pre>
|
|
98
|
-
<div class="pf-v6-c-expandable-section">
|
|
98
|
+
<div class="pf-v6-c-expandable-section pf-m-detached">
|
|
99
99
|
<div class="pf-v6-c-expandable-section__toggle">
|
|
100
100
|
<button
|
|
101
101
|
class="pf-v6-c-button pf-m-link"
|
|
@@ -128,7 +128,7 @@ name: azure-sample-repo<div
|
|
|
128
128
|
<button
|
|
129
129
|
class="pf-v6-c-button pf-m-plain"
|
|
130
130
|
type="button"
|
|
131
|
-
aria-label="Copy to clipboard"
|
|
131
|
+
aria-label="Copy to clipboard expandable expanded example code content"
|
|
132
132
|
>
|
|
133
133
|
<span class="pf-v6-c-button__icon">
|
|
134
134
|
<i class="fas fa-copy" aria-hidden="true"></i>
|
|
@@ -139,7 +139,7 @@ name: azure-sample-repo<div
|
|
|
139
139
|
<button
|
|
140
140
|
class="pf-v6-c-button pf-m-plain"
|
|
141
141
|
type="button"
|
|
142
|
-
aria-label="Run in Web Terminal"
|
|
142
|
+
aria-label="Run expandable expanded example code in Web Terminal"
|
|
143
143
|
>
|
|
144
144
|
<span class="pf-v6-c-button__icon">
|
|
145
145
|
<i class="fas fa-play" aria-hidden="true"></i>
|
|
@@ -153,7 +153,7 @@ name: azure-sample-repo<div
|
|
|
153
153
|
kind: HelmChartRepository
|
|
154
154
|
metadata:
|
|
155
155
|
name: azure-sample-repo<div
|
|
156
|
-
class="pf-v6-c-expandable-section pf-m-expanded"
|
|
156
|
+
class="pf-v6-c-expandable-section pf-m-expanded pf-m-detached"
|
|
157
157
|
><div
|
|
158
158
|
class="pf-v6-c-expandable-section__content"
|
|
159
159
|
id="code-block-expandable-expanded-content"
|
|
@@ -164,7 +164,7 @@ name: azure-sample-repo<div
|
|
|
164
164
|
</div>
|
|
165
165
|
</code>
|
|
166
166
|
</pre>
|
|
167
|
-
<div class="pf-v6-c-expandable-section pf-m-expanded">
|
|
167
|
+
<div class="pf-v6-c-expandable-section pf-m-expanded pf-m-detached">
|
|
168
168
|
<div class="pf-v6-c-expandable-section__toggle">
|
|
169
169
|
<button
|
|
170
170
|
class="pf-v6-c-button pf-m-link"
|