@patternfly/react-styles 5.0.0-alpha.2 → 5.0.0-alpha.4
Sign up to get free protection for your applications and to get access to all the features.
- package/CHANGELOG.md +12 -0
- package/css/components/Accordion/accordion.css +2 -0
- package/css/components/AppLauncher/app-launcher.css +2 -0
- package/css/components/Breadcrumb/breadcrumb.css +2 -0
- package/css/components/Chip/chip.css +33 -24
- package/css/components/Chip/chip.d.ts +2 -1
- package/css/components/Chip/chip.js +2 -1
- package/css/components/Chip/chip.mjs +2 -1
- package/css/components/ContextSelector/context-selector.css +5 -1
- package/css/components/DataList/data-list.css +2 -1
- package/css/components/Drawer/drawer.css +13 -13
- package/css/components/Dropdown/dropdown.css +12 -10
- package/css/components/ExpandableSection/expandable-section.css +2 -0
- package/css/components/Label/label.css +37 -24
- package/css/components/Label/label.d.ts +1 -0
- package/css/components/Label/label.js +1 -0
- package/css/components/Label/label.mjs +1 -0
- package/css/components/Login/login.css +1 -1
- package/css/components/Menu/menu.css +3 -0
- package/css/components/MenuToggle/menu-toggle.css +2 -0
- package/css/components/ModalBox/modal-box.css +9 -8
- package/css/components/ModalBox/modal-box.d.ts +1 -0
- package/css/components/ModalBox/modal-box.js +1 -0
- package/css/components/ModalBox/modal-box.mjs +1 -0
- package/css/components/Page/page.css +60 -60
- package/css/components/Pagination/pagination.css +2 -2
- package/css/components/Popover/popover.css +21 -24
- package/css/components/Popover/popover.d.ts +4 -5
- package/css/components/Popover/popover.js +4 -5
- package/css/components/Popover/popover.mjs +4 -5
- package/css/components/Progress/progress.css +5 -2
- package/css/components/SearchInput/search-input.css +2 -0
- package/css/components/Table/table-grid.css +28 -28
- package/css/components/Table/table-tree-view.css +14 -4
- package/css/components/Table/table-tree-view.d.ts +1 -0
- package/css/components/Table/table-tree-view.js +1 -0
- package/css/components/Table/table-tree-view.mjs +1 -0
- package/css/components/Table/table.css +4 -0
- package/css/components/TextInputGroup/text-input-group.css +4 -2
- package/css/components/Toolbar/toolbar.css +35 -35
- package/css/components/TreeView/tree-view.css +7 -15
- package/css/components/Wizard/wizard.css +2 -0
- package/css/docs/components/ContextSelector/examples/context-selector.css +5 -1
- package/css/docs/components/Dropdown/examples/Dropdown.css +5 -2
- package/css/layouts/Grid/grid.css +5 -5
- package/package.json +3 -3
package/CHANGELOG.md
CHANGED
@@ -3,6 +3,18 @@
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
4
4
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
5
5
|
|
6
|
+
# 5.0.0-alpha.4 (2023-03-02)
|
7
|
+
|
8
|
+
### Bug Fixes
|
9
|
+
|
10
|
+
- **core:** update core to alpha.24 ([#8768](https://github.com/patternfly/patternfly-react/issues/8768)) ([6dd5e01](https://github.com/patternfly/patternfly-react/commit/6dd5e01e16bc94fe4b954b79ba67adaaab9c7135))
|
11
|
+
|
12
|
+
# 5.0.0-alpha.3 (2023-02-15)
|
13
|
+
|
14
|
+
### Bug Fixes
|
15
|
+
|
16
|
+
- **deps:** updated to the latest core alpha ([#8688](https://github.com/patternfly/patternfly-react/issues/8688)) ([5f81928](https://github.com/patternfly/patternfly-react/commit/5f819288d7baaa3806b23c0da8fb26dd4ec12d6b))
|
17
|
+
|
6
18
|
# 5.0.0-alpha.2 (2023-02-08)
|
7
19
|
|
8
20
|
**Note:** Version bump only for package @patternfly/react-styles
|
@@ -23,6 +23,7 @@
|
|
23
23
|
--pf-c-accordion__toggle--before--Width: var(--pf-global--BorderWidth--lg);
|
24
24
|
--pf-c-accordion__toggle--after--Width: var(--pf-global--BorderWidth--lg);
|
25
25
|
--pf-c-accordion__toggle--m-expanded--after--BackgroundColor: var(--pf-global--primary-color--100);
|
26
|
+
--pf-c-accordion__toggle--BackgroundColor: transparent;
|
26
27
|
--pf-c-accordion__toggle-text--MaxWidth: calc(100% - var(--pf-global--spacer--lg));
|
27
28
|
--pf-c-accordion__toggle--hover__toggle-text--Color: var(--pf-global--link--Color);
|
28
29
|
--pf-c-accordion__toggle--active__toggle-text--Color: var(--pf-global--link--Color);
|
@@ -137,6 +138,7 @@
|
|
137
138
|
padding: var(--pf-c-accordion__toggle--PaddingTop) var(--pf-c-accordion__toggle--PaddingRight) var(--pf-c-accordion__toggle--PaddingBottom) var(--pf-c-accordion__toggle--PaddingLeft);
|
138
139
|
font-family: var(--pf-c-accordion__toggle--FontFamily, inherit);
|
139
140
|
font-size: var(--pf-c-accordion__toggle--FontSize, inherit);
|
141
|
+
background-color: var(--pf-c-accordion__toggle--BackgroundColor);
|
140
142
|
border: 0;
|
141
143
|
}
|
142
144
|
.pf-c-accordion__toggle::after {
|
@@ -17,6 +17,7 @@
|
|
17
17
|
--pf-c-app-launcher__toggle--focus--Color: var(--pf-global--Color--100);
|
18
18
|
--pf-c-app-launcher__toggle--disabled--Color: var(--pf-global--disabled-color--200);
|
19
19
|
--pf-c-app-launcher__toggle--m-expanded--Color: var(--pf-global--Color--100);
|
20
|
+
--pf-c-app-launcher__toggle--BackgroundColor: transparent;
|
20
21
|
--pf-c-app-launcher__menu-search--PaddingTop: var(--pf-global--spacer--sm);
|
21
22
|
--pf-c-app-launcher__menu-search--PaddingRight: var(--pf-global--spacer--md);
|
22
23
|
--pf-c-app-launcher__menu-search--PaddingBottom: var(--pf-global--spacer--md);
|
@@ -79,6 +80,7 @@
|
|
79
80
|
.pf-c-app-launcher__toggle {
|
80
81
|
padding: var(--pf-c-app-launcher__toggle--PaddingTop) var(--pf-c-app-launcher__toggle--PaddingRight) var(--pf-c-app-launcher__toggle--PaddingBottom) var(--pf-c-app-launcher__toggle--PaddingLeft);
|
81
82
|
color: var(--pf-c-app-launcher__toggle--Color);
|
83
|
+
background-color: var(--pf-c-app-launcher__toggle--BackgroundColor);
|
82
84
|
border: none;
|
83
85
|
}
|
84
86
|
.pf-c-app-launcher__toggle:hover {
|
@@ -10,6 +10,7 @@
|
|
10
10
|
--pf-c-breadcrumb__link--hover--Color: var(--pf-global--link--Color--hover);
|
11
11
|
--pf-c-breadcrumb__link--hover--TextDecoration: var(--pf-global--link--TextDecoration--hover);
|
12
12
|
--pf-c-breadcrumb__link--m-current--Color: var(--pf-global--Color--100);
|
13
|
+
--pf-c-breadcrumb__link--BackgroundColor: transparent;
|
13
14
|
--pf-c-breadcrumb__heading--FontSize: var(--pf-global--FontSize--sm);
|
14
15
|
--pf-c-breadcrumb__dropdown--MarginTop: calc(var(--pf-global--spacer--form-element) * -1);
|
15
16
|
--pf-c-breadcrumb__dropdown--MarginRight: calc(var(--pf-c-breadcrumb__item--MarginRight) * -1);
|
@@ -52,6 +53,7 @@
|
|
52
53
|
color: var(--pf-c-breadcrumb__link--Color);
|
53
54
|
text-decoration: var(--pf-c-breadcrumb__link--TextDecoration);
|
54
55
|
word-break: break-word;
|
56
|
+
background-color: var(--pf-c-breadcrumb__link--BackgroundColor);
|
55
57
|
}
|
56
58
|
.pf-c-breadcrumb__link:hover {
|
57
59
|
--pf-c-breadcrumb__link--Color: var(--pf-c-breadcrumb__link--hover--Color);
|
@@ -22,18 +22,19 @@
|
|
22
22
|
--pf-c-chip--m-draggable--BackgroundColor: var(--pf-global--BackgroundColor--200);
|
23
23
|
--pf-c-chip--m-draggable--BoxShadow: var(--pf-global--BoxShadow--sm);
|
24
24
|
--pf-c-chip--m-draggable__icon--FontSize: var(--pf-global--icon--FontSize--sm);
|
25
|
-
--pf-c-
|
25
|
+
--pf-c-chip__content--FontSize: var(--pf-global--FontSize--xs);
|
26
|
+
--pf-c-chip__content--ColumnGap: var(--pf-global--spacer--xs);
|
26
27
|
--pf-c-chip__text--Color: var(--pf-global--Color--100);
|
27
28
|
--pf-c-chip__text--MaxWidth: 16ch;
|
28
|
-
--pf-c-
|
29
|
-
--pf-c-
|
30
|
-
--pf-c-
|
31
|
-
--pf-c-
|
32
|
-
--pf-c-
|
33
|
-
--pf-c-
|
34
|
-
--pf-c-
|
35
|
-
--pf-c-
|
36
|
-
--pf-c-
|
29
|
+
--pf-c-chip__actions--FontSize: var(--pf-global--FontSize--xs);
|
30
|
+
--pf-c-chip__actions--c-button--PaddingTop: var(--pf-global--spacer--xs);
|
31
|
+
--pf-c-chip__actions--c-button--PaddingRight: var(--pf-global--spacer--sm);
|
32
|
+
--pf-c-chip__actions--c-button--PaddingBottom: var(--pf-global--spacer--xs);
|
33
|
+
--pf-c-chip__actions--c-button--PaddingLeft: var(--pf-global--spacer--sm);
|
34
|
+
--pf-c-chip__actions--c-button--MarginTop: calc(var(--pf-c-chip--PaddingTop) * -1);
|
35
|
+
--pf-c-chip__actions--c-button--MarginRight: calc(var(--pf-c-chip--PaddingRight) / 2 * -1);
|
36
|
+
--pf-c-chip__actions--c-button--MarginBottom: calc(var(--pf-c-chip--PaddingBottom) * -1);
|
37
|
+
--pf-c-chip__actions--c-button--FontSize: var(--pf-global--FontSize--xs);
|
37
38
|
--pf-c-chip__icon--MarginLeft: var(--pf-global--spacer--sm);
|
38
39
|
color: var(--pf-global--Color--100);
|
39
40
|
position: relative;
|
@@ -68,19 +69,6 @@
|
|
68
69
|
.pf-c-chip.pf-m-draggable .pf-c-chip__icon {
|
69
70
|
font-size: var(--pf-c-chip--m-draggable__icon--FontSize);
|
70
71
|
}
|
71
|
-
.pf-c-chip .pf-c-button {
|
72
|
-
--pf-c-button--PaddingTop: var(--pf-c-chip__c-button--PaddingTop);
|
73
|
-
--pf-c-button--PaddingRight: var(--pf-c-chip__c-button--PaddingRight);
|
74
|
-
--pf-c-button--PaddingBottom: var(--pf-c-chip__c-button--PaddingBottom);
|
75
|
-
--pf-c-button--PaddingLeft: var(--pf-c-chip__c-button--PaddingLeft);
|
76
|
-
--pf-c-button--FontSize: var(--pf-c-chip__c-button--FontSize);
|
77
|
-
margin-top: var(--pf-c-chip__c-button--MarginTop);
|
78
|
-
margin-right: var(--pf-c-chip__c-button--MarginRight);
|
79
|
-
margin-bottom: var(--pf-c-chip__c-button--MarginBottom);
|
80
|
-
}
|
81
|
-
.pf-c-chip .pf-c-badge {
|
82
|
-
margin-left: var(--pf-c-chip__c-badge--MarginLeft);
|
83
|
-
}
|
84
72
|
|
85
73
|
.pf-c-chip__text {
|
86
74
|
overflow: hidden;
|
@@ -88,7 +76,6 @@
|
|
88
76
|
white-space: nowrap;
|
89
77
|
position: relative;
|
90
78
|
max-width: var(--pf-c-chip__text--MaxWidth);
|
91
|
-
font-size: var(--pf-c-chip__text--FontSize);
|
92
79
|
color: var(--pf-c-chip__text--Color);
|
93
80
|
}
|
94
81
|
|
@@ -97,6 +84,28 @@
|
|
97
84
|
margin-left: var(--pf-c-chip__icon--MarginLeft);
|
98
85
|
}
|
99
86
|
|
87
|
+
.pf-c-chip__content {
|
88
|
+
display: flex;
|
89
|
+
align-items: center;
|
90
|
+
column-gap: var(--pf-c-chip__content--ColumnGap);
|
91
|
+
font-size: var(--pf-c-chip__content--FontSize);
|
92
|
+
}
|
93
|
+
|
94
|
+
.pf-c-chip__actions {
|
95
|
+
font-size: var(--pf-c-chip__actions--FontSize);
|
96
|
+
}
|
97
|
+
.pf-c-chip__actions .pf-c-button {
|
98
|
+
--pf-c-button--PaddingTop: var(--pf-c-chip__actions--c-button--PaddingTop);
|
99
|
+
--pf-c-button--PaddingRight: var(--pf-c-chip__actions--c-button--PaddingRight);
|
100
|
+
--pf-c-button--PaddingBottom: var(--pf-c-chip__actions--c-button--PaddingBottom);
|
101
|
+
--pf-c-button--PaddingLeft: var(--pf-c-chip__actions--c-button--PaddingLeft);
|
102
|
+
--pf-c-button--FontSize: var(--pf-c-chip__actions--c-button--FontSize);
|
103
|
+
margin-top: var(--pf-c-chip__actions--c-button--MarginTop);
|
104
|
+
margin-right: var(--pf-c-chip__actions--c-button--MarginRight);
|
105
|
+
margin-bottom: var(--pf-c-chip__actions--c-button--MarginBottom);
|
106
|
+
line-height: 1;
|
107
|
+
}
|
108
|
+
|
100
109
|
:where(.pf-theme-dark) .pf-c-chip {
|
101
110
|
--pf-c-chip--BackgroundColor: var(--pf-global--BackgroundColor--100);
|
102
111
|
--pf-c-chip--before--BorderColor: var(--pf-global--BorderColor--100);
|
@@ -1,8 +1,9 @@
|
|
1
1
|
import './chip.css';
|
2
2
|
declare const _default: {
|
3
|
-
"badge": "pf-c-badge",
|
4
3
|
"button": "pf-c-button",
|
5
4
|
"chip": "pf-c-chip",
|
5
|
+
"chipActions": "pf-c-chip__actions",
|
6
|
+
"chipContent": "pf-c-chip__content",
|
6
7
|
"chipIcon": "pf-c-chip__icon",
|
7
8
|
"chipText": "pf-c-chip__text",
|
8
9
|
"modifiers": {
|
@@ -2,9 +2,10 @@
|
|
2
2
|
exports.__esModule = true;
|
3
3
|
require('./chip.css');
|
4
4
|
exports.default = {
|
5
|
-
"badge": "pf-c-badge",
|
6
5
|
"button": "pf-c-button",
|
7
6
|
"chip": "pf-c-chip",
|
7
|
+
"chipActions": "pf-c-chip__actions",
|
8
|
+
"chipContent": "pf-c-chip__content",
|
8
9
|
"chipIcon": "pf-c-chip__icon",
|
9
10
|
"chipText": "pf-c-chip__text",
|
10
11
|
"modifiers": {
|
@@ -1,8 +1,9 @@
|
|
1
1
|
import './chip.css';
|
2
2
|
export default {
|
3
|
-
"badge": "pf-c-badge",
|
4
3
|
"button": "pf-c-button",
|
5
4
|
"chip": "pf-c-chip",
|
5
|
+
"chipActions": "pf-c-chip__actions",
|
6
|
+
"chipContent": "pf-c-chip__content",
|
6
7
|
"chipIcon": "pf-c-chip__icon",
|
7
8
|
"chipText": "pf-c-chip__text",
|
8
9
|
"modifiers": {
|
@@ -26,6 +26,7 @@
|
|
26
26
|
--pf-c-context-selector__toggle--active--BorderBottomColor: var(--pf-global--active-color--100);
|
27
27
|
--pf-c-context-selector__toggle--expanded--BorderBottomWidth: var(--pf-global--BorderWidth--md);
|
28
28
|
--pf-c-context-selector__toggle--expanded--BorderBottomColor: var(--pf-global--active-color--100);
|
29
|
+
--pf-c-context-selector__toggle--BackgroundColor: transparent;
|
29
30
|
--pf-c-context-selector__toggle--m-plain--Color: var(--pf-global--Color--200);
|
30
31
|
--pf-c-context-selector__toggle--m-plain--hover--Color: var(--pf-global--Color--100);
|
31
32
|
--pf-c-context-selector__toggle--m-plain--disabled--Color: var(--pf-global--disabled-color--200);
|
@@ -64,6 +65,7 @@
|
|
64
65
|
--pf-c-context-selector__menu-list-item--PaddingRight: var(--pf-global--spacer--lg);
|
65
66
|
--pf-c-context-selector__menu-list-item--PaddingBottom: var(--pf-global--spacer--sm);
|
66
67
|
--pf-c-context-selector__menu-list-item--PaddingLeft: var(--pf-global--spacer--lg);
|
68
|
+
--pf-c-context-selector__menu-list-item--BackgroundColor: transparent;
|
67
69
|
--pf-c-context-selector__menu-list-item--hover--BackgroundColor: var(--pf-global--BackgroundColor--light-300);
|
68
70
|
--pf-c-context-selector__menu-list-item--disabled--Color: var(--pf-global--Color--dark-200);
|
69
71
|
--pf-c-context-selector__menu-item-icon--Color: var(--pf-global--active-color--100);
|
@@ -175,6 +177,7 @@
|
|
175
177
|
color: var(--pf-c-context-selector__toggle--Color);
|
176
178
|
white-space: nowrap;
|
177
179
|
cursor: pointer;
|
180
|
+
background-color: var(--pf-c-context-selector__toggle--BackgroundColor);
|
178
181
|
border: none;
|
179
182
|
}
|
180
183
|
.pf-c-context-selector__toggle::before {
|
@@ -283,11 +286,12 @@
|
|
283
286
|
padding: var(--pf-c-context-selector__menu-list-item--PaddingTop) var(--pf-c-context-selector__menu-list-item--PaddingRight) var(--pf-c-context-selector__menu-list-item--PaddingBottom) var(--pf-c-context-selector__menu-list-item--PaddingLeft);
|
284
287
|
color: var(--pf-c-context-selector__menu-list-item--Color);
|
285
288
|
white-space: nowrap;
|
289
|
+
background-color: var(--pf-c-context-selector__menu-list-item--BackgroundColor);
|
286
290
|
border: none;
|
287
291
|
}
|
288
292
|
.pf-c-context-selector__menu-list-item:hover, .pf-c-context-selector__menu-list-item:focus {
|
293
|
+
--pf-c-context-selector__menu-list-item--BackgroundColor: var(--pf-c-context-selector__menu-list-item--hover--BackgroundColor);
|
289
294
|
text-decoration: none;
|
290
|
-
background-color: var(--pf-c-context-selector__menu-list-item--hover--BackgroundColor);
|
291
295
|
}
|
292
296
|
.pf-c-context-selector__menu-list-item.pf-m-disabled, .pf-c-context-selector__menu-list-item:disabled {
|
293
297
|
--pf-c-context-selector__menu-list-item--Color: var(--pf-c-context-selector__menu-list-item--disabled--Color);
|
@@ -546,6 +546,7 @@
|
|
546
546
|
--pf-c-data-list__toggle-icon--Transition: .2s ease-in 0s;
|
547
547
|
--pf-c-data-list__toggle-icon--Rotate: 0;
|
548
548
|
--pf-c-data-list__item--m-expanded__toggle-icon--Rotate: 90deg;
|
549
|
+
--pf-c-data-list__item-draggable-button--BackgroundColor: transparent;
|
549
550
|
--pf-c-data-list__item-draggable-button--PaddingLeft: var(--pf-global--spacer--md);
|
550
551
|
--pf-c-data-list__item-draggable-button--PaddingRight: var(--pf-global--spacer--md);
|
551
552
|
--pf-c-data-list__item-draggable-button--MarginTop: calc(var(--pf-global--spacer--lg) * -1);
|
@@ -617,7 +618,6 @@
|
|
617
618
|
font-size: var(--pf-c-data-list--FontSize);
|
618
619
|
line-height: var(--pf-c-data-list--LineHeight);
|
619
620
|
overflow-wrap: break-word;
|
620
|
-
list-style-type: disc;
|
621
621
|
border-top: var(--pf-c-data-list--BorderTopWidth) solid var(--pf-c-data-list--BorderTopColor);
|
622
622
|
}
|
623
623
|
@media screen and (min-width: 576px) {
|
@@ -790,6 +790,7 @@
|
|
790
790
|
flex-direction: column;
|
791
791
|
padding: var(--pf-c-data-list__item-draggable-button--PaddingTop) var(--pf-c-data-list__item-draggable-button--PaddingRight) var(--pf-c-data-list__item-draggable-button--PaddingBottom) var(--pf-c-data-list__item-draggable-button--PaddingLeft);
|
792
792
|
margin: var(--pf-c-data-list__item-draggable-button--MarginTop) 0 var(--pf-c-data-list__item-draggable-button--MarginBottom) var(--pf-c-data-list__item-draggable-button--MarginLeft);
|
793
|
+
background-color: var(--pf-c-data-list__item-draggable-button--BackgroundColor);
|
793
794
|
border: 0;
|
794
795
|
}
|
795
796
|
.pf-c-data-list__item-draggable-button:hover {
|
@@ -442,7 +442,7 @@
|
|
442
442
|
--pf-c-drawer__splitter--after--BorderLeftWidth: 0;
|
443
443
|
}
|
444
444
|
.pf-c-drawer > .pf-c-drawer__main > .pf-c-drawer__panel.pf-m-no-border,
|
445
|
-
.pf-c-drawer.pf-m-panel-left > .pf-c-drawer__main > .pf-c-drawer__panel.pf-m-no-border {
|
445
|
+
.pf-c-drawer.pf-m-panel-left > .pf-c-drawer__main > .pf-c-drawer__panel.pf-m-no-border {
|
446
446
|
--pf-c-drawer--m-expanded__panel--BoxShadow: none;
|
447
447
|
}
|
448
448
|
.pf-c-drawer__splitter {
|
@@ -531,15 +531,15 @@
|
|
531
531
|
}
|
532
532
|
@media (min-width: 768px) {
|
533
533
|
.pf-c-drawer.pf-m-inline > .pf-c-drawer__main > .pf-c-drawer__content,
|
534
|
-
.pf-c-drawer.pf-m-static > .pf-c-drawer__main > .pf-c-drawer__content {
|
534
|
+
.pf-c-drawer.pf-m-static > .pf-c-drawer__main > .pf-c-drawer__content {
|
535
535
|
flex-shrink: 1;
|
536
536
|
}
|
537
537
|
.pf-c-drawer.pf-m-inline > .pf-c-drawer__main > .pf-c-drawer__panel,
|
538
|
-
.pf-c-drawer.pf-m-static > .pf-c-drawer__main > .pf-c-drawer__panel {
|
538
|
+
.pf-c-drawer.pf-m-static > .pf-c-drawer__main > .pf-c-drawer__panel {
|
539
539
|
--pf-c-drawer--m-expanded__panel--BoxShadow: none;
|
540
540
|
}
|
541
541
|
.pf-c-drawer.pf-m-inline > .pf-c-drawer__main > .pf-c-drawer__panel:not(.pf-m-no-border)::after,
|
542
|
-
.pf-c-drawer.pf-m-static > .pf-c-drawer__main > .pf-c-drawer__panel:not(.pf-m-no-border)::after {
|
542
|
+
.pf-c-drawer.pf-m-static > .pf-c-drawer__main > .pf-c-drawer__panel:not(.pf-m-no-border)::after {
|
543
543
|
background-color: var(--pf-c-drawer--m-inline--m-expanded__panel--after--BackgroundColor);
|
544
544
|
}
|
545
545
|
.pf-c-drawer.pf-m-inline > .pf-c-drawer__main > .pf-c-drawer__content {
|
@@ -592,15 +592,15 @@
|
|
592
592
|
}
|
593
593
|
@media (min-width: 992px) {
|
594
594
|
.pf-c-drawer.pf-m-inline-on-lg > .pf-c-drawer__main > .pf-c-drawer__content,
|
595
|
-
.pf-c-drawer.pf-m-static-on-lg > .pf-c-drawer__main > .pf-c-drawer__content {
|
595
|
+
.pf-c-drawer.pf-m-static-on-lg > .pf-c-drawer__main > .pf-c-drawer__content {
|
596
596
|
flex-shrink: 1;
|
597
597
|
}
|
598
598
|
.pf-c-drawer.pf-m-inline-on-lg > .pf-c-drawer__main > .pf-c-drawer__panel,
|
599
|
-
.pf-c-drawer.pf-m-static-on-lg > .pf-c-drawer__main > .pf-c-drawer__panel {
|
599
|
+
.pf-c-drawer.pf-m-static-on-lg > .pf-c-drawer__main > .pf-c-drawer__panel {
|
600
600
|
--pf-c-drawer--m-expanded__panel--BoxShadow: none;
|
601
601
|
}
|
602
602
|
.pf-c-drawer.pf-m-inline-on-lg > .pf-c-drawer__main > .pf-c-drawer__panel:not(.pf-m-no-border)::after,
|
603
|
-
.pf-c-drawer.pf-m-static-on-lg > .pf-c-drawer__main > .pf-c-drawer__panel:not(.pf-m-no-border)::after {
|
603
|
+
.pf-c-drawer.pf-m-static-on-lg > .pf-c-drawer__main > .pf-c-drawer__panel:not(.pf-m-no-border)::after {
|
604
604
|
background-color: var(--pf-c-drawer--m-inline--m-expanded__panel--after--BackgroundColor);
|
605
605
|
}
|
606
606
|
.pf-c-drawer.pf-m-inline-on-lg > .pf-c-drawer__main > .pf-c-drawer__content {
|
@@ -653,15 +653,15 @@
|
|
653
653
|
}
|
654
654
|
@media (min-width: 1200px) {
|
655
655
|
.pf-c-drawer.pf-m-inline-on-xl > .pf-c-drawer__main > .pf-c-drawer__content,
|
656
|
-
.pf-c-drawer.pf-m-static-on-xl > .pf-c-drawer__main > .pf-c-drawer__content {
|
656
|
+
.pf-c-drawer.pf-m-static-on-xl > .pf-c-drawer__main > .pf-c-drawer__content {
|
657
657
|
flex-shrink: 1;
|
658
658
|
}
|
659
659
|
.pf-c-drawer.pf-m-inline-on-xl > .pf-c-drawer__main > .pf-c-drawer__panel,
|
660
|
-
.pf-c-drawer.pf-m-static-on-xl > .pf-c-drawer__main > .pf-c-drawer__panel {
|
660
|
+
.pf-c-drawer.pf-m-static-on-xl > .pf-c-drawer__main > .pf-c-drawer__panel {
|
661
661
|
--pf-c-drawer--m-expanded__panel--BoxShadow: none;
|
662
662
|
}
|
663
663
|
.pf-c-drawer.pf-m-inline-on-xl > .pf-c-drawer__main > .pf-c-drawer__panel:not(.pf-m-no-border)::after,
|
664
|
-
.pf-c-drawer.pf-m-static-on-xl > .pf-c-drawer__main > .pf-c-drawer__panel:not(.pf-m-no-border)::after {
|
664
|
+
.pf-c-drawer.pf-m-static-on-xl > .pf-c-drawer__main > .pf-c-drawer__panel:not(.pf-m-no-border)::after {
|
665
665
|
background-color: var(--pf-c-drawer--m-inline--m-expanded__panel--after--BackgroundColor);
|
666
666
|
}
|
667
667
|
.pf-c-drawer.pf-m-inline-on-xl > .pf-c-drawer__main > .pf-c-drawer__content {
|
@@ -714,15 +714,15 @@
|
|
714
714
|
}
|
715
715
|
@media (min-width: 1450px) {
|
716
716
|
.pf-c-drawer.pf-m-inline-on-2xl > .pf-c-drawer__main > .pf-c-drawer__content,
|
717
|
-
.pf-c-drawer.pf-m-static-on-2xl > .pf-c-drawer__main > .pf-c-drawer__content {
|
717
|
+
.pf-c-drawer.pf-m-static-on-2xl > .pf-c-drawer__main > .pf-c-drawer__content {
|
718
718
|
flex-shrink: 1;
|
719
719
|
}
|
720
720
|
.pf-c-drawer.pf-m-inline-on-2xl > .pf-c-drawer__main > .pf-c-drawer__panel,
|
721
|
-
.pf-c-drawer.pf-m-static-on-2xl > .pf-c-drawer__main > .pf-c-drawer__panel {
|
721
|
+
.pf-c-drawer.pf-m-static-on-2xl > .pf-c-drawer__main > .pf-c-drawer__panel {
|
722
722
|
--pf-c-drawer--m-expanded__panel--BoxShadow: none;
|
723
723
|
}
|
724
724
|
.pf-c-drawer.pf-m-inline-on-2xl > .pf-c-drawer__main > .pf-c-drawer__panel:not(.pf-m-no-border)::after,
|
725
|
-
.pf-c-drawer.pf-m-static-on-2xl > .pf-c-drawer__main > .pf-c-drawer__panel:not(.pf-m-no-border)::after {
|
725
|
+
.pf-c-drawer.pf-m-static-on-2xl > .pf-c-drawer__main > .pf-c-drawer__panel:not(.pf-m-no-border)::after {
|
726
726
|
background-color: var(--pf-c-drawer--m-inline--m-expanded__panel--after--BackgroundColor);
|
727
727
|
}
|
728
728
|
.pf-c-drawer.pf-m-inline-on-2xl > .pf-c-drawer__main > .pf-c-drawer__content {
|
@@ -50,6 +50,7 @@
|
|
50
50
|
--pf-c-dropdown--m-expanded__toggle--m-secondary--before--BorderWidth: var(--pf-global--BorderWidth--md);
|
51
51
|
--pf-c-dropdown--m-expanded__toggle--m-secondary--before--BorderColor: var(--pf-global--primary-color--100);
|
52
52
|
--pf-c-dropdown__toggle-button--Color: var(--pf-global--Color--100);
|
53
|
+
--pf-c-dropdown__toggle-button--BackgroundColor: transparent;
|
53
54
|
--pf-c-dropdown__toggle-progress--Visibility: hidden;
|
54
55
|
--pf-c-dropdown__toggle-progress--c-spinner--diameter: var(--pf-global--FontSize--sm);
|
55
56
|
--pf-c-dropdown__toggle--m-split-button--child--PaddingTop: var(--pf-global--spacer--form-element);
|
@@ -275,6 +276,7 @@
|
|
275
276
|
}
|
276
277
|
.pf-c-dropdown__toggle.pf-m-split-button .pf-c-dropdown__toggle-button {
|
277
278
|
color: var(--pf-c-dropdown__toggle-button--Color);
|
279
|
+
background-color: var(--pf-c-dropdown__toggle-button--BackgroundColor);
|
278
280
|
border: 0;
|
279
281
|
}
|
280
282
|
.pf-c-dropdown__toggle.pf-m-split-button .pf-c-dropdown__toggle-text {
|
@@ -509,51 +511,51 @@
|
|
509
511
|
}
|
510
512
|
@media (min-width: 576px) {
|
511
513
|
.pf-c-dropdown .pf-c-menu.pf-m-align-right-on-sm,
|
512
|
-
.pf-c-dropdown__menu.pf-m-align-right-on-sm {
|
514
|
+
.pf-c-dropdown__menu.pf-m-align-right-on-sm {
|
513
515
|
right: 0;
|
514
516
|
}
|
515
517
|
.pf-c-dropdown .pf-c-menu.pf-m-align-left-on-sm,
|
516
|
-
.pf-c-dropdown__menu.pf-m-align-left-on-sm {
|
518
|
+
.pf-c-dropdown__menu.pf-m-align-left-on-sm {
|
517
519
|
right: auto;
|
518
520
|
}
|
519
521
|
}
|
520
522
|
@media (min-width: 768px) {
|
521
523
|
.pf-c-dropdown .pf-c-menu.pf-m-align-right-on-md,
|
522
|
-
.pf-c-dropdown__menu.pf-m-align-right-on-md {
|
524
|
+
.pf-c-dropdown__menu.pf-m-align-right-on-md {
|
523
525
|
right: 0;
|
524
526
|
}
|
525
527
|
.pf-c-dropdown .pf-c-menu.pf-m-align-left-on-md,
|
526
|
-
.pf-c-dropdown__menu.pf-m-align-left-on-md {
|
528
|
+
.pf-c-dropdown__menu.pf-m-align-left-on-md {
|
527
529
|
right: auto;
|
528
530
|
}
|
529
531
|
}
|
530
532
|
@media (min-width: 992px) {
|
531
533
|
.pf-c-dropdown .pf-c-menu.pf-m-align-right-on-lg,
|
532
|
-
.pf-c-dropdown__menu.pf-m-align-right-on-lg {
|
534
|
+
.pf-c-dropdown__menu.pf-m-align-right-on-lg {
|
533
535
|
right: 0;
|
534
536
|
}
|
535
537
|
.pf-c-dropdown .pf-c-menu.pf-m-align-left-on-lg,
|
536
|
-
.pf-c-dropdown__menu.pf-m-align-left-on-lg {
|
538
|
+
.pf-c-dropdown__menu.pf-m-align-left-on-lg {
|
537
539
|
right: auto;
|
538
540
|
}
|
539
541
|
}
|
540
542
|
@media (min-width: 1200px) {
|
541
543
|
.pf-c-dropdown .pf-c-menu.pf-m-align-right-on-xl,
|
542
|
-
.pf-c-dropdown__menu.pf-m-align-right-on-xl {
|
544
|
+
.pf-c-dropdown__menu.pf-m-align-right-on-xl {
|
543
545
|
right: 0;
|
544
546
|
}
|
545
547
|
.pf-c-dropdown .pf-c-menu.pf-m-align-left-on-xl,
|
546
|
-
.pf-c-dropdown__menu.pf-m-align-left-on-xl {
|
548
|
+
.pf-c-dropdown__menu.pf-m-align-left-on-xl {
|
547
549
|
right: auto;
|
548
550
|
}
|
549
551
|
}
|
550
552
|
@media (min-width: 1450px) {
|
551
553
|
.pf-c-dropdown .pf-c-menu.pf-m-align-right-on-2xl,
|
552
|
-
.pf-c-dropdown__menu.pf-m-align-right-on-2xl {
|
554
|
+
.pf-c-dropdown__menu.pf-m-align-right-on-2xl {
|
553
555
|
right: 0;
|
554
556
|
}
|
555
557
|
.pf-c-dropdown .pf-c-menu.pf-m-align-left-on-2xl,
|
556
|
-
.pf-c-dropdown__menu.pf-m-align-left-on-2xl {
|
558
|
+
.pf-c-dropdown__menu.pf-m-align-left-on-2xl {
|
557
559
|
right: auto;
|
558
560
|
}
|
559
561
|
}
|
@@ -9,6 +9,7 @@
|
|
9
9
|
--pf-c-expandable-section__toggle--active--Color: var(--pf-global--link--Color--hover);
|
10
10
|
--pf-c-expandable-section__toggle--focus--Color: var(--pf-global--link--Color--hover);
|
11
11
|
--pf-c-expandable-section__toggle--m-expanded--Color: var(--pf-global--link--Color--hover);
|
12
|
+
--pf-c-expandable-section__toggle--BackgroundColor: transparent;
|
12
13
|
--pf-c-expandable-section__toggle-icon--MinWidth: 1em;
|
13
14
|
--pf-c-expandable-section__toggle-icon--Color: var(--pf-global--Color--100);
|
14
15
|
--pf-c-expandable-section__toggle-icon--Transition: .2s ease-in 0s;
|
@@ -94,6 +95,7 @@
|
|
94
95
|
padding: var(--pf-c-expandable-section__toggle--PaddingTop) var(--pf-c-expandable-section__toggle--PaddingRight) var(--pf-c-expandable-section__toggle--PaddingBottom) var(--pf-c-expandable-section__toggle--PaddingLeft);
|
95
96
|
margin-top: var(--pf-c-expandable-section__toggle--MarginTop);
|
96
97
|
color: var(--pf-c-expandable-section__toggle--Color);
|
98
|
+
background-color: var(--pf-c-expandable-section__toggle--BackgroundColor);
|
97
99
|
border: none;
|
98
100
|
}
|
99
101
|
.pf-c-expandable-section__toggle:hover {
|
@@ -3,6 +3,7 @@
|
|
3
3
|
--pf-c-label--PaddingRight: var(--pf-global--spacer--sm);
|
4
4
|
--pf-c-label--PaddingBottom: var(--pf-global--spacer--xs);
|
5
5
|
--pf-c-label--PaddingLeft: var(--pf-global--spacer--sm);
|
6
|
+
--pf-c-label--MaxWidth: 100%;
|
6
7
|
--pf-c-label--BorderRadius: var(--pf-global--BorderRadius--lg);
|
7
8
|
--pf-c-label--BackgroundColor: var(--pf-global--palette--black-150);
|
8
9
|
--pf-c-label--Color: var(--pf-global--Color--100);
|
@@ -105,21 +106,22 @@
|
|
105
106
|
--pf-c-label--m-compact--FontSize: var(--pf-global--FontSize--xs);
|
106
107
|
--pf-c-label--m-compact--m-editable--TextDecorationOffset: 0.0625rem;
|
107
108
|
--pf-c-label__content--Color: var(--pf-global--Color--100);
|
109
|
+
--pf-c-label__content--BackgroundColor: transparent;
|
108
110
|
--pf-c-label__content--MaxWidth: 100%;
|
109
111
|
--pf-c-label--m-outline__content--Color: var(--pf-global--Color--100);
|
110
112
|
--pf-c-label--m-editable__content--MaxWidth: 16ch;
|
111
|
-
--pf-c-label__text--MaxWidth:
|
113
|
+
--pf-c-label__text--MaxWidth: 100%;
|
112
114
|
--pf-c-label__icon--Color: var(--pf-global--Color--100);
|
113
115
|
--pf-c-label__icon--MarginRight: var(--pf-global--spacer--xs);
|
114
|
-
--pf-c-
|
115
|
-
--pf-c-
|
116
|
-
--pf-c-
|
117
|
-
--pf-c-
|
118
|
-
--pf-c-
|
119
|
-
--pf-c-
|
120
|
-
--pf-c-
|
121
|
-
--pf-c-
|
122
|
-
--pf-c-
|
116
|
+
--pf-c-label__actions--FontSize: var(--pf-global--FontSize--xs);
|
117
|
+
--pf-c-label__actions--MarginRight: calc(var(--pf-c-label__actions--c-button--PaddingRight) * -1);
|
118
|
+
--pf-c-label__actions--c-button--FontSize: var(--pf-global--FontSize--xs);
|
119
|
+
--pf-c-label__actions--c-button--MarginTop: calc(var(--pf-c-label__actions--c-button--PaddingTop) * -1);
|
120
|
+
--pf-c-label__actions--c-button--MarginBottom: calc(var(--pf-c-label__actions--c-button--PaddingBottom) * -1);
|
121
|
+
--pf-c-label__actions--c-button--PaddingTop: var(--pf-global--spacer--xs);
|
122
|
+
--pf-c-label__actions--c-button--PaddingRight: var(--pf-global--spacer--sm);
|
123
|
+
--pf-c-label__actions--c-button--PaddingBottom: var(--pf-global--spacer--xs);
|
124
|
+
--pf-c-label__actions--c-button--PaddingLeft: var(--pf-global--spacer--sm);
|
123
125
|
--pf-c-label--m-editable--Cursor: pointer;
|
124
126
|
--pf-c-label--m-editable--TextDecoration: underline;
|
125
127
|
--pf-c-label--m-editable--TextDecorationStyle: dashed;
|
@@ -140,6 +142,7 @@
|
|
140
142
|
--pf-c-label--m-editable--m-editable-active__content--before--BorderWidth: 0;
|
141
143
|
--pf-c-label--m-editable--m-editable-active__content--before--BorderColor: transparent;
|
142
144
|
position: relative;
|
145
|
+
max-width: var(--pf-c-label--MaxWidth);
|
143
146
|
padding: var(--pf-c-label--PaddingTop) var(--pf-c-label--PaddingRight) var(--pf-c-label--PaddingBottom) var(--pf-c-label--PaddingLeft);
|
144
147
|
font-size: var(--pf-c-label--FontSize);
|
145
148
|
color: var(--pf-c-label--Color);
|
@@ -311,17 +314,6 @@
|
|
311
314
|
--pf-c-label--m-editable--TextDecoration: var(--pf-c-label--m-editable--m-editable-active--TextDecoration);
|
312
315
|
--pf-c-label--BackgroundColor: var(--pf-c-label--m-editable--m-editable-active--BackgroundColor);
|
313
316
|
}
|
314
|
-
.pf-c-label .pf-c-button {
|
315
|
-
--pf-c-button--FontSize: var(--pf-c-label__c-button--FontSize);
|
316
|
-
--pf-c-button--PaddingTop: var(--pf-c-label__c-button--PaddingTop);
|
317
|
-
--pf-c-button--PaddingRight: var(--pf-c-label__c-button--PaddingRight);
|
318
|
-
--pf-c-button--PaddingBottom: var(--pf-c-label__c-button--PaddingBottom);
|
319
|
-
--pf-c-button--PaddingLeft: var(--pf-c-label__c-button--PaddingLeft);
|
320
|
-
margin-top: var(--pf-c-label__c-button--MarginTop);
|
321
|
-
margin-right: var(--pf-c-label__c-button--MarginRight);
|
322
|
-
margin-bottom: var(--pf-c-label__c-button--MarginBottom);
|
323
|
-
margin-left: var(--pf-c-label__c-button--MarginLeft);
|
324
|
-
}
|
325
317
|
.pf-c-label.pf-m-overflow, .pf-c-label.pf-m-add {
|
326
318
|
--pf-c-label__content--Color: var(--pf-c-label--m-overflow__content--Color);
|
327
319
|
--pf-c-label--BackgroundColor: var(--pf-c-label--m-overflow__content--BackgroundColor);
|
@@ -347,11 +339,10 @@
|
|
347
339
|
}
|
348
340
|
|
349
341
|
.pf-c-label__content {
|
350
|
-
overflow: hidden;
|
351
|
-
text-overflow: ellipsis;
|
352
|
-
white-space: nowrap;
|
353
342
|
max-width: var(--pf-c-label__content--MaxWidth);
|
343
|
+
overflow: hidden;
|
354
344
|
color: var(--pf-c-label__content--Color);
|
345
|
+
background-color: var(--pf-c-label__content--BackgroundColor);
|
355
346
|
border-width: 0;
|
356
347
|
}
|
357
348
|
.pf-c-label__content::before {
|
@@ -365,9 +356,17 @@
|
|
365
356
|
border: var(--pf-c-label__content--before--BorderWidth) solid var(--pf-c-label__content--before--BorderColor);
|
366
357
|
border-radius: var(--pf-c-label--BorderRadius);
|
367
358
|
}
|
359
|
+
input.pf-c-label__content {
|
360
|
+
overflow: hidden;
|
361
|
+
text-overflow: ellipsis;
|
362
|
+
white-space: nowrap;
|
363
|
+
}
|
364
|
+
|
368
365
|
a.pf-c-label__content,
|
369
366
|
button.pf-c-label__content {
|
367
|
+
padding: 0;
|
370
368
|
cursor: pointer;
|
369
|
+
background-color: transparent;
|
371
370
|
border: none;
|
372
371
|
}
|
373
372
|
a.pf-c-label__content, a.pf-c-label__content:hover, a.pf-c-label__content:focus,
|
@@ -392,6 +391,20 @@ button.pf-c-label__content:focus {
|
|
392
391
|
color: var(--pf-c-label__icon--Color);
|
393
392
|
}
|
394
393
|
|
394
|
+
.pf-c-label__actions {
|
395
|
+
margin-right: var(--pf-c-label__actions--MarginRight);
|
396
|
+
font-size: var(--pf-c-label__actions--FontSize);
|
397
|
+
}
|
398
|
+
.pf-c-label__actions .pf-c-button {
|
399
|
+
--pf-c-button--FontSize: var(--pf-c-label__actions--c-button--FontSize);
|
400
|
+
--pf-c-button--PaddingTop: var(--pf-c-label__actions--c-button--PaddingTop);
|
401
|
+
--pf-c-button--PaddingRight: var(--pf-c-label__actions--c-button--PaddingRight);
|
402
|
+
--pf-c-button--PaddingBottom: var(--pf-c-label__actions--c-button--PaddingBottom);
|
403
|
+
--pf-c-button--PaddingLeft: var(--pf-c-label__actions--c-button--PaddingLeft);
|
404
|
+
margin-top: var(--pf-c-label__actions--c-button--MarginTop);
|
405
|
+
margin-bottom: var(--pf-c-label__actions--c-button--MarginBottom);
|
406
|
+
}
|
407
|
+
|
395
408
|
:where(.pf-theme-dark) .pf-c-label {
|
396
409
|
--pf-c-label--BackgroundColor: var(--pf-global--BackgroundColor--300);
|
397
410
|
--pf-c-label--m-blue--BackgroundColor: var(--pf-global--BackgroundColor--300);
|
@@ -150,6 +150,7 @@
|
|
150
150
|
--pf-c-menu__item-action--PaddingBottom: var(--pf-global--spacer--sm);
|
151
151
|
--pf-c-menu__item-action--PaddingLeft: var(--pf-global--spacer--md);
|
152
152
|
--pf-c-menu__item-action--Color: var(--pf-global--Color--200);
|
153
|
+
--pf-c-menu__item-action--BackgroundColor: transparent;
|
153
154
|
--pf-c-menu__item-action--hover--Color: var(--pf-global--Color--100);
|
154
155
|
--pf-c-menu__item-action--disabled--Color: var(--pf-global--disabled-color--200);
|
155
156
|
--pf-c-menu__item-action--m-favorited--Color: var(--pf-global--palette--gold-400);
|
@@ -270,6 +271,7 @@
|
|
270
271
|
.pf-c-menu.pf-m-drilldown .pf-c-menu__list {
|
271
272
|
position: relative;
|
272
273
|
overflow: hidden;
|
274
|
+
visibility: visible;
|
273
275
|
transition: var(--pf-c-menu--m-drilldown__list--Transition);
|
274
276
|
}
|
275
277
|
.pf-c-menu.pf-m-drilldown .pf-c-menu__list .pf-c-menu__list {
|
@@ -580,6 +582,7 @@ label.pf-c-menu__item:where(:not([disabled], .pf-m-disabled)) {
|
|
580
582
|
padding-bottom: var(--pf-c-menu__item-action--PaddingBottom);
|
581
583
|
padding-left: var(--pf-c-menu__item-action--PaddingLeft);
|
582
584
|
color: var(--pf-c-menu__item-action--Color);
|
585
|
+
background-color: var(--pf-c-menu__item-action--BackgroundColor);
|
583
586
|
border: none;
|
584
587
|
}
|
585
588
|
.pf-c-menu__item-action.pf-m-favorite .pf-c-menu__item-action-icon {
|
@@ -106,6 +106,7 @@
|
|
106
106
|
--pf-c-menu-toggle--m-split-button--m-action--m-primary--child--BorderLeftColor: var(--pf-global--primary-color--200);
|
107
107
|
--pf-c-menu-toggle--m-split-button--m-action--m-primary--m-expanded--child--BackgroundColor: var(--pf-global--primary-color--200);
|
108
108
|
--pf-c-menu-toggle--m-split-button--m-action--m-secondary--child--BorderLeftColor: var(--pf-global--primary-color--100);
|
109
|
+
--pf-c-menu-toggle__button--BackgroundColor: transparent;
|
109
110
|
--pf-c-menu-toggle__button__controls--MarginRight: var(--pf-global--spacer--sm);
|
110
111
|
--pf-c-menu-toggle__button__controls--MarginLeft: var(--pf-global--spacer--sm);
|
111
112
|
--pf-c-menu-toggle--m-typeahead__controls--MarginRight: var(--pf-global--spacer--md);
|
@@ -361,6 +362,7 @@
|
|
361
362
|
--pf-c-menu-toggle__controls--MarginRight: var(--pf-c-menu-toggle__button__controls--MarginRight);
|
362
363
|
--pf-c-menu-toggle__controls--MarginLeft: var(--pf-c-menu-toggle__button__controls--MarginLeft);
|
363
364
|
color: inherit;
|
365
|
+
background-color: var(--pf-c-menu-toggle__button--BackgroundColor);
|
364
366
|
border: 0;
|
365
367
|
}
|
366
368
|
|