@patternfly/react-styles 3.7.6 → 3.7.8
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/CHANGELOG.md +16 -0
- package/css/components/DataToolbar/data-toolbar.css +19 -1
- package/css/components/DataToolbar/data-toolbar.d.ts +4 -2
- package/css/components/DataToolbar/data-toolbar.js +4 -2
- package/css/components/Divider/divider.css +118 -4
- package/css/components/Divider/divider.d.ts +45 -1
- package/css/components/Divider/divider.js +45 -1
- package/css/components/Drawer/drawer.css +322 -70
- package/css/components/Drawer/drawer.d.ts +23 -5
- package/css/components/Drawer/drawer.js +24 -6
- package/css/components/FileUpload/file-upload.css +22 -14
- package/css/components/Login/login.css +1 -3
- package/css/components/Nav/nav.css +4 -3
- package/css/components/OverflowMenu/overflow-menu.css +12 -0
- package/css/components/OverflowMenu/overflow-menu.d.ts +2 -0
- package/css/components/OverflowMenu/overflow-menu.js +3 -1
- package/css/components/Page/page.css +4 -14
- package/css/components/Page/page.d.ts +0 -2
- package/css/components/Page/page.js +0 -2
- package/package.json +3 -3
package/CHANGELOG.md
CHANGED
@@ -3,6 +3,22 @@
|
|
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
|
+
## [3.7.8](https://github.com/patternfly/patternfly-react/compare/@patternfly/react-styles@3.7.7...@patternfly/react-styles@3.7.8) (2020-03-09)
|
7
|
+
|
8
|
+
**Note:** Version bump only for package @patternfly/react-styles
|
9
|
+
|
10
|
+
|
11
|
+
|
12
|
+
|
13
|
+
|
14
|
+
## [3.7.7](https://github.com/patternfly/patternfly-react/compare/@patternfly/react-styles@3.7.6...@patternfly/react-styles@3.7.7) (2020-03-09)
|
15
|
+
|
16
|
+
**Note:** Version bump only for package @patternfly/react-styles
|
17
|
+
|
18
|
+
|
19
|
+
|
20
|
+
|
21
|
+
|
6
22
|
## [3.7.6](https://github.com/patternfly/patternfly-react/compare/@patternfly/react-styles@3.7.5...@patternfly/react-styles@3.7.6) (2020-03-03)
|
7
23
|
|
8
24
|
**Note:** Version bump only for package @patternfly/react-styles
|
@@ -40,6 +40,7 @@
|
|
40
40
|
--pf-c-data-toolbar__item--m-label--spacer: var(--pf-c-data-toolbar__item--spacer);
|
41
41
|
--pf-c-data-toolbar__item--m-label--FontWeight: var(--pf-global--FontWeight--bold);
|
42
42
|
--pf-c-data-toolbar__toggle--m-expanded__c-button--m-plain--Color: var(--pf-global--Color--100);
|
43
|
+
--pf-c-data-toolbar--c-divider--m-vertical--spacer: var(--pf-c-data-toolbar--spacer--base);
|
43
44
|
position: relative;
|
44
45
|
row-gap: var(--pf-c-data-toolbar--RowGap);
|
45
46
|
display: grid;
|
@@ -52,6 +53,17 @@
|
|
52
53
|
--pf-c-data-toolbar__expandable-content--PaddingBottom: var(--pf-c-data-toolbar__expandable-content--lg--PaddingBottom);
|
53
54
|
--pf-c-data-toolbar__expandable-content--PaddingLeft: var(--pf-c-data-toolbar__expandable-content--lg--PaddingLeft); } }
|
54
55
|
|
56
|
+
.pf-c-data-toolbar__content-section > .pf-c-divider,
|
57
|
+
.pf-c-data-toolbar__group > .pf-c-divider {
|
58
|
+
--pf-c-data-toolbar--spacer: var(--pf-c-data-toolbar--c-divider--m-vertical--spacer); }
|
59
|
+
|
60
|
+
.pf-c-data-toolbar__content-section > .pf-c-divider.pf-m-vertical,
|
61
|
+
.pf-c-data-toolbar__group > .pf-c-divider.pf-m-vertical {
|
62
|
+
margin-right: var(--pf-c-data-toolbar--spacer); }
|
63
|
+
.pf-c-data-toolbar__content-section > .pf-c-divider.pf-m-vertical:last-child,
|
64
|
+
.pf-c-data-toolbar__group > .pf-c-divider.pf-m-vertical:last-child {
|
65
|
+
--pf-c-data-toolbar--spacer: 0; }
|
66
|
+
|
55
67
|
.pf-c-data-toolbar__group {
|
56
68
|
--pf-c-data-toolbar--spacer: var(--pf-c-data-toolbar__group--spacer);
|
57
69
|
display: flex;
|
@@ -80,6 +92,10 @@
|
|
80
92
|
.pf-c-data-toolbar__group.pf-m-toggle-group .pf-c-data-toolbar__toggle {
|
81
93
|
display: inline-block;
|
82
94
|
visibility: visible; }
|
95
|
+
.pf-c-data-toolbar__group.pf-m-align-right ~ *,
|
96
|
+
.pf-c-data-toolbar__group.pf-m-align-right ~ .pf-c-data-toolbar__item,
|
97
|
+
.pf-c-data-toolbar__group.pf-m-align-right ~ .pf-c-data-toolbar__group {
|
98
|
+
margin-left: 0; }
|
83
99
|
.pf-c-data-toolbar__group:last-child {
|
84
100
|
--pf-c-data-toolbar--spacer: 0; }
|
85
101
|
|
@@ -107,7 +123,9 @@
|
|
107
123
|
margin-left: auto; }
|
108
124
|
.pf-c-data-toolbar__item.pf-m-pagination .pf-c-pagination {
|
109
125
|
flex-wrap: nowrap; }
|
110
|
-
.pf-c-data-toolbar__item.pf-m-align-right ~
|
126
|
+
.pf-c-data-toolbar__item.pf-m-align-right ~ *,
|
127
|
+
.pf-c-data-toolbar__item.pf-m-align-right ~ .pf-c-data-toolbar__item,
|
128
|
+
.pf-c-data-toolbar__item.pf-m-align-right ~ .pf-c-data-toolbar__group {
|
111
129
|
margin-left: 0; }
|
112
130
|
.pf-c-data-toolbar__item:last-child {
|
113
131
|
--pf-c-data-toolbar--spacer: 0; }
|
@@ -1,20 +1,23 @@
|
|
1
1
|
import './data-toolbar.css';
|
2
2
|
declare const _default: {
|
3
3
|
dataToolbar: string;
|
4
|
+
dataToolbarContentSection: string;
|
5
|
+
divider: string;
|
4
6
|
dataToolbarGroup: string;
|
5
7
|
dataToolbarItem: string;
|
6
8
|
dataToolbarToggle: string;
|
7
9
|
pagination: string;
|
8
10
|
dataToolbarContent: string;
|
9
|
-
dataToolbarContentSection: string;
|
10
11
|
dataToolbarExpandableContent: string;
|
11
12
|
chipGroup: string;
|
12
13
|
button: string;
|
13
14
|
modifiers: {
|
15
|
+
'vertical': string;
|
14
16
|
'buttonGroup': string;
|
15
17
|
'iconButtonGroup': string;
|
16
18
|
'filterGroup': string;
|
17
19
|
'toggleGroup': string;
|
20
|
+
'alignRight': string;
|
18
21
|
'separator': string;
|
19
22
|
'overflowMenu': string;
|
20
23
|
'bulkSelect': string;
|
@@ -22,7 +25,6 @@ declare const _default: {
|
|
22
25
|
'chipGroup': string;
|
23
26
|
'label': string;
|
24
27
|
'pagination': string;
|
25
|
-
'alignRight': string;
|
26
28
|
'expanded': string;
|
27
29
|
'chipContainer': string;
|
28
30
|
'plain': string;
|
@@ -3,20 +3,23 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
require("./data-toolbar.css");
|
4
4
|
exports.default = {
|
5
5
|
dataToolbar: 'pf-c-data-toolbar',
|
6
|
+
dataToolbarContentSection: 'pf-c-data-toolbar__content-section',
|
7
|
+
divider: 'pf-c-divider',
|
6
8
|
dataToolbarGroup: 'pf-c-data-toolbar__group',
|
7
9
|
dataToolbarItem: 'pf-c-data-toolbar__item',
|
8
10
|
dataToolbarToggle: 'pf-c-data-toolbar__toggle',
|
9
11
|
pagination: 'pf-c-pagination',
|
10
12
|
dataToolbarContent: 'pf-c-data-toolbar__content',
|
11
|
-
dataToolbarContentSection: 'pf-c-data-toolbar__content-section',
|
12
13
|
dataToolbarExpandableContent: 'pf-c-data-toolbar__expandable-content',
|
13
14
|
chipGroup: 'pf-c-chip-group',
|
14
15
|
button: 'pf-c-button',
|
15
16
|
modifiers: {
|
17
|
+
'vertical': 'pf-m-vertical',
|
16
18
|
'buttonGroup': 'pf-m-button-group',
|
17
19
|
'iconButtonGroup': 'pf-m-icon-button-group',
|
18
20
|
'filterGroup': 'pf-m-filter-group',
|
19
21
|
'toggleGroup': 'pf-m-toggle-group',
|
22
|
+
'alignRight': 'pf-m-align-right',
|
20
23
|
'separator': 'pf-m-separator',
|
21
24
|
'overflowMenu': 'pf-m-overflow-menu',
|
22
25
|
'bulkSelect': 'pf-m-bulk-select',
|
@@ -24,7 +27,6 @@ exports.default = {
|
|
24
27
|
'chipGroup': 'pf-m-chip-group',
|
25
28
|
'label': 'pf-m-label',
|
26
29
|
'pagination': 'pf-m-pagination',
|
27
|
-
'alignRight': 'pf-m-align-right',
|
28
30
|
'expanded': 'pf-m-expanded',
|
29
31
|
'chipContainer': 'pf-m-chip-container',
|
30
32
|
'plain': 'pf-m-plain',
|
@@ -1,7 +1,121 @@
|
|
1
1
|
.pf-c-divider {
|
2
2
|
--pf-c-divider--Height: var(--pf-global--BorderWidth--sm);
|
3
3
|
--pf-c-divider--BackgroundColor: var(--pf-global--BorderColor--100);
|
4
|
-
|
5
|
-
|
6
|
-
|
7
|
-
|
4
|
+
--pf-c-divider--after--Height: var(--pf-c-divider--Height);
|
5
|
+
--pf-c-divider--after--BackgroundColor: var(--pf-c-divider--BackgroundColor);
|
6
|
+
--pf-c-divider--after--FlexBasis: 100%;
|
7
|
+
--pf-c-divider--after--Inset: 0%;
|
8
|
+
--pf-c-divider--m-vertical--after--FlexBasis: 100%;
|
9
|
+
--pf-c-divider--m-vertical--after--Width: var(--pf-global--BorderWidth--sm);
|
10
|
+
display: flex;
|
11
|
+
align-items: center;
|
12
|
+
align-self: stretch;
|
13
|
+
justify-content: center;
|
14
|
+
width: 100%;
|
15
|
+
border: 0; }
|
16
|
+
.pf-c-divider::after {
|
17
|
+
flex-basis: calc(var(--pf-c-divider--after--FlexBasis) - calc(var(--pf-c-divider--after--Inset) * 2));
|
18
|
+
align-self: stretch;
|
19
|
+
height: var(--pf-c-divider--after--Height);
|
20
|
+
content: "";
|
21
|
+
background-color: var(--pf-c-divider--after--BackgroundColor);
|
22
|
+
justify-self: center; }
|
23
|
+
.pf-c-divider.pf-m-vertical {
|
24
|
+
display: inline-flex;
|
25
|
+
flex-direction: column;
|
26
|
+
width: auto;
|
27
|
+
height: inherit;
|
28
|
+
min-height: 100%;
|
29
|
+
max-height: 100%; }
|
30
|
+
.pf-c-divider.pf-m-vertical::after {
|
31
|
+
flex-basis: calc(var(--pf-c-divider--m-vertical--after--FlexBasis) - var(--pf-c-divider--after--Inset));
|
32
|
+
width: var(--pf-c-divider--m-vertical--after--Width); }
|
33
|
+
.pf-c-divider.pf-m-inset-none {
|
34
|
+
--pf-c-divider--after--Inset: 0%; }
|
35
|
+
.pf-c-divider.pf-m-inset-sm {
|
36
|
+
--pf-c-divider--after--Inset: var(--pf-global--spacer--sm); }
|
37
|
+
.pf-c-divider.pf-m-inset-md {
|
38
|
+
--pf-c-divider--after--Inset: var(--pf-global--spacer--md); }
|
39
|
+
.pf-c-divider.pf-m-inset-lg {
|
40
|
+
--pf-c-divider--after--Inset: var(--pf-global--spacer--lg); }
|
41
|
+
.pf-c-divider.pf-m-inset-xl {
|
42
|
+
--pf-c-divider--after--Inset: var(--pf-global--spacer--xl); }
|
43
|
+
.pf-c-divider.pf-m-inset-2xl {
|
44
|
+
--pf-c-divider--after--Inset: var(--pf-global--spacer--2xl); }
|
45
|
+
.pf-c-divider.pf-m-inset-3xl {
|
46
|
+
--pf-c-divider--after--Inset: var(--pf-global--spacer--3xl); }
|
47
|
+
@media (min-width: 576px) {
|
48
|
+
.pf-c-divider.pf-m-inset-none-on-sm {
|
49
|
+
--pf-c-divider--after--Inset: 0%; }
|
50
|
+
.pf-c-divider.pf-m-inset-sm-on-sm {
|
51
|
+
--pf-c-divider--after--Inset: var(--pf-global--spacer--sm); }
|
52
|
+
.pf-c-divider.pf-m-inset-md-on-sm {
|
53
|
+
--pf-c-divider--after--Inset: var(--pf-global--spacer--md); }
|
54
|
+
.pf-c-divider.pf-m-inset-lg-on-sm {
|
55
|
+
--pf-c-divider--after--Inset: var(--pf-global--spacer--lg); }
|
56
|
+
.pf-c-divider.pf-m-inset-xl-on-sm {
|
57
|
+
--pf-c-divider--after--Inset: var(--pf-global--spacer--xl); }
|
58
|
+
.pf-c-divider.pf-m-inset-2xl-on-sm {
|
59
|
+
--pf-c-divider--after--Inset: var(--pf-global--spacer--2xl); }
|
60
|
+
.pf-c-divider.pf-m-inset-3xl-on-sm {
|
61
|
+
--pf-c-divider--after--Inset: var(--pf-global--spacer--3xl); } }
|
62
|
+
@media (min-width: 768px) {
|
63
|
+
.pf-c-divider.pf-m-inset-none-on-md {
|
64
|
+
--pf-c-divider--after--Inset: 0%; }
|
65
|
+
.pf-c-divider.pf-m-inset-sm-on-md {
|
66
|
+
--pf-c-divider--after--Inset: var(--pf-global--spacer--sm); }
|
67
|
+
.pf-c-divider.pf-m-inset-md-on-md {
|
68
|
+
--pf-c-divider--after--Inset: var(--pf-global--spacer--md); }
|
69
|
+
.pf-c-divider.pf-m-inset-lg-on-md {
|
70
|
+
--pf-c-divider--after--Inset: var(--pf-global--spacer--lg); }
|
71
|
+
.pf-c-divider.pf-m-inset-xl-on-md {
|
72
|
+
--pf-c-divider--after--Inset: var(--pf-global--spacer--xl); }
|
73
|
+
.pf-c-divider.pf-m-inset-2xl-on-md {
|
74
|
+
--pf-c-divider--after--Inset: var(--pf-global--spacer--2xl); }
|
75
|
+
.pf-c-divider.pf-m-inset-3xl-on-md {
|
76
|
+
--pf-c-divider--after--Inset: var(--pf-global--spacer--3xl); } }
|
77
|
+
@media (min-width: 992px) {
|
78
|
+
.pf-c-divider.pf-m-inset-none-on-lg {
|
79
|
+
--pf-c-divider--after--Inset: 0%; }
|
80
|
+
.pf-c-divider.pf-m-inset-sm-on-lg {
|
81
|
+
--pf-c-divider--after--Inset: var(--pf-global--spacer--sm); }
|
82
|
+
.pf-c-divider.pf-m-inset-md-on-lg {
|
83
|
+
--pf-c-divider--after--Inset: var(--pf-global--spacer--md); }
|
84
|
+
.pf-c-divider.pf-m-inset-lg-on-lg {
|
85
|
+
--pf-c-divider--after--Inset: var(--pf-global--spacer--lg); }
|
86
|
+
.pf-c-divider.pf-m-inset-xl-on-lg {
|
87
|
+
--pf-c-divider--after--Inset: var(--pf-global--spacer--xl); }
|
88
|
+
.pf-c-divider.pf-m-inset-2xl-on-lg {
|
89
|
+
--pf-c-divider--after--Inset: var(--pf-global--spacer--2xl); }
|
90
|
+
.pf-c-divider.pf-m-inset-3xl-on-lg {
|
91
|
+
--pf-c-divider--after--Inset: var(--pf-global--spacer--3xl); } }
|
92
|
+
@media (min-width: 1200px) {
|
93
|
+
.pf-c-divider.pf-m-inset-none-on-xl {
|
94
|
+
--pf-c-divider--after--Inset: 0%; }
|
95
|
+
.pf-c-divider.pf-m-inset-sm-on-xl {
|
96
|
+
--pf-c-divider--after--Inset: var(--pf-global--spacer--sm); }
|
97
|
+
.pf-c-divider.pf-m-inset-md-on-xl {
|
98
|
+
--pf-c-divider--after--Inset: var(--pf-global--spacer--md); }
|
99
|
+
.pf-c-divider.pf-m-inset-lg-on-xl {
|
100
|
+
--pf-c-divider--after--Inset: var(--pf-global--spacer--lg); }
|
101
|
+
.pf-c-divider.pf-m-inset-xl-on-xl {
|
102
|
+
--pf-c-divider--after--Inset: var(--pf-global--spacer--xl); }
|
103
|
+
.pf-c-divider.pf-m-inset-2xl-on-xl {
|
104
|
+
--pf-c-divider--after--Inset: var(--pf-global--spacer--2xl); }
|
105
|
+
.pf-c-divider.pf-m-inset-3xl-on-xl {
|
106
|
+
--pf-c-divider--after--Inset: var(--pf-global--spacer--3xl); } }
|
107
|
+
@media (min-width: 1450px) {
|
108
|
+
.pf-c-divider.pf-m-inset-none-on-2xl {
|
109
|
+
--pf-c-divider--after--Inset: 0%; }
|
110
|
+
.pf-c-divider.pf-m-inset-sm-on-2xl {
|
111
|
+
--pf-c-divider--after--Inset: var(--pf-global--spacer--sm); }
|
112
|
+
.pf-c-divider.pf-m-inset-md-on-2xl {
|
113
|
+
--pf-c-divider--after--Inset: var(--pf-global--spacer--md); }
|
114
|
+
.pf-c-divider.pf-m-inset-lg-on-2xl {
|
115
|
+
--pf-c-divider--after--Inset: var(--pf-global--spacer--lg); }
|
116
|
+
.pf-c-divider.pf-m-inset-xl-on-2xl {
|
117
|
+
--pf-c-divider--after--Inset: var(--pf-global--spacer--xl); }
|
118
|
+
.pf-c-divider.pf-m-inset-2xl-on-2xl {
|
119
|
+
--pf-c-divider--after--Inset: var(--pf-global--spacer--2xl); }
|
120
|
+
.pf-c-divider.pf-m-inset-3xl-on-2xl {
|
121
|
+
--pf-c-divider--after--Inset: var(--pf-global--spacer--3xl); } }
|
@@ -1,6 +1,50 @@
|
|
1
1
|
import './divider.css';
|
2
2
|
declare const _default: {
|
3
3
|
divider: string;
|
4
|
-
modifiers: {
|
4
|
+
modifiers: {
|
5
|
+
'vertical': string;
|
6
|
+
'insetNone': string;
|
7
|
+
'insetSm': string;
|
8
|
+
'insetMd': string;
|
9
|
+
'insetLg': string;
|
10
|
+
'insetXl': string;
|
11
|
+
'inset_2xl': string;
|
12
|
+
'inset_3xl': string;
|
13
|
+
'insetNoneOnSm': string;
|
14
|
+
'insetSmOnSm': string;
|
15
|
+
'insetMdOnSm': string;
|
16
|
+
'insetLgOnSm': string;
|
17
|
+
'insetXlOnSm': string;
|
18
|
+
'inset_2xlOnSm': string;
|
19
|
+
'inset_3xlOnSm': string;
|
20
|
+
'insetNoneOnMd': string;
|
21
|
+
'insetSmOnMd': string;
|
22
|
+
'insetMdOnMd': string;
|
23
|
+
'insetLgOnMd': string;
|
24
|
+
'insetXlOnMd': string;
|
25
|
+
'inset_2xlOnMd': string;
|
26
|
+
'inset_3xlOnMd': string;
|
27
|
+
'insetNoneOnLg': string;
|
28
|
+
'insetSmOnLg': string;
|
29
|
+
'insetMdOnLg': string;
|
30
|
+
'insetLgOnLg': string;
|
31
|
+
'insetXlOnLg': string;
|
32
|
+
'inset_2xlOnLg': string;
|
33
|
+
'inset_3xlOnLg': string;
|
34
|
+
'insetNoneOnXl': string;
|
35
|
+
'insetSmOnXl': string;
|
36
|
+
'insetMdOnXl': string;
|
37
|
+
'insetLgOnXl': string;
|
38
|
+
'insetXlOnXl': string;
|
39
|
+
'inset_2xlOnXl': string;
|
40
|
+
'inset_3xlOnXl': string;
|
41
|
+
'insetNoneOn_2xl': string;
|
42
|
+
'insetSmOn_2xl': string;
|
43
|
+
'insetMdOn_2xl': string;
|
44
|
+
'insetLgOn_2xl': string;
|
45
|
+
'insetXlOn_2xl': string;
|
46
|
+
'inset_2xlOn_2xl': string;
|
47
|
+
'inset_3xlOn_2xl': string;
|
48
|
+
};
|
5
49
|
};
|
6
50
|
export default _default;
|
@@ -3,5 +3,49 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
require("./divider.css");
|
4
4
|
exports.default = {
|
5
5
|
divider: 'pf-c-divider',
|
6
|
-
modifiers: {
|
6
|
+
modifiers: {
|
7
|
+
'vertical': 'pf-m-vertical',
|
8
|
+
'insetNone': 'pf-m-inset-none',
|
9
|
+
'insetSm': 'pf-m-inset-sm',
|
10
|
+
'insetMd': 'pf-m-inset-md',
|
11
|
+
'insetLg': 'pf-m-inset-lg',
|
12
|
+
'insetXl': 'pf-m-inset-xl',
|
13
|
+
'inset_2xl': 'pf-m-inset-2xl',
|
14
|
+
'inset_3xl': 'pf-m-inset-3xl',
|
15
|
+
'insetNoneOnSm': 'pf-m-inset-none-on-sm',
|
16
|
+
'insetSmOnSm': 'pf-m-inset-sm-on-sm',
|
17
|
+
'insetMdOnSm': 'pf-m-inset-md-on-sm',
|
18
|
+
'insetLgOnSm': 'pf-m-inset-lg-on-sm',
|
19
|
+
'insetXlOnSm': 'pf-m-inset-xl-on-sm',
|
20
|
+
'inset_2xlOnSm': 'pf-m-inset-2xl-on-sm',
|
21
|
+
'inset_3xlOnSm': 'pf-m-inset-3xl-on-sm',
|
22
|
+
'insetNoneOnMd': 'pf-m-inset-none-on-md',
|
23
|
+
'insetSmOnMd': 'pf-m-inset-sm-on-md',
|
24
|
+
'insetMdOnMd': 'pf-m-inset-md-on-md',
|
25
|
+
'insetLgOnMd': 'pf-m-inset-lg-on-md',
|
26
|
+
'insetXlOnMd': 'pf-m-inset-xl-on-md',
|
27
|
+
'inset_2xlOnMd': 'pf-m-inset-2xl-on-md',
|
28
|
+
'inset_3xlOnMd': 'pf-m-inset-3xl-on-md',
|
29
|
+
'insetNoneOnLg': 'pf-m-inset-none-on-lg',
|
30
|
+
'insetSmOnLg': 'pf-m-inset-sm-on-lg',
|
31
|
+
'insetMdOnLg': 'pf-m-inset-md-on-lg',
|
32
|
+
'insetLgOnLg': 'pf-m-inset-lg-on-lg',
|
33
|
+
'insetXlOnLg': 'pf-m-inset-xl-on-lg',
|
34
|
+
'inset_2xlOnLg': 'pf-m-inset-2xl-on-lg',
|
35
|
+
'inset_3xlOnLg': 'pf-m-inset-3xl-on-lg',
|
36
|
+
'insetNoneOnXl': 'pf-m-inset-none-on-xl',
|
37
|
+
'insetSmOnXl': 'pf-m-inset-sm-on-xl',
|
38
|
+
'insetMdOnXl': 'pf-m-inset-md-on-xl',
|
39
|
+
'insetLgOnXl': 'pf-m-inset-lg-on-xl',
|
40
|
+
'insetXlOnXl': 'pf-m-inset-xl-on-xl',
|
41
|
+
'inset_2xlOnXl': 'pf-m-inset-2xl-on-xl',
|
42
|
+
'inset_3xlOnXl': 'pf-m-inset-3xl-on-xl',
|
43
|
+
'insetNoneOn_2xl': 'pf-m-inset-none-on-2xl',
|
44
|
+
'insetSmOn_2xl': 'pf-m-inset-sm-on-2xl',
|
45
|
+
'insetMdOn_2xl': 'pf-m-inset-md-on-2xl',
|
46
|
+
'insetLgOn_2xl': 'pf-m-inset-lg-on-2xl',
|
47
|
+
'insetXlOn_2xl': 'pf-m-inset-xl-on-2xl',
|
48
|
+
'inset_2xlOn_2xl': 'pf-m-inset-2xl-on-2xl',
|
49
|
+
'inset_3xlOn_2xl': 'pf-m-inset-3xl-on-2xl'
|
50
|
+
}
|
7
51
|
};
|
@@ -1,76 +1,162 @@
|
|
1
1
|
.pf-c-drawer {
|
2
|
+
--pf-c-drawer__section--BackgroundColor: var(--pf-global--BackgroundColor--100);
|
2
3
|
--pf-c-drawer__content--FlexBasis: 100%;
|
3
|
-
--pf-c-drawer__content
|
4
|
-
--pf-c-drawer__content
|
5
|
-
--pf-c-drawer__content-body--m-padding--PaddingBottom: var(--pf-global--spacer--lg);
|
6
|
-
--pf-c-drawer__content-body--m-padding--PaddingLeft: var(--pf-global--spacer--lg);
|
4
|
+
--pf-c-drawer__content--BackgroundColor: var(--pf-global--BackgroundColor--100);
|
5
|
+
--pf-c-drawer__content--ZIndex: var(--pf-global--ZIndex--xs);
|
7
6
|
--pf-c-drawer__panel--FlexBasis: 100%;
|
8
|
-
--pf-c-drawer__panel--md--FlexBasis:
|
7
|
+
--pf-c-drawer__panel--md--FlexBasis: 50%;
|
8
|
+
--pf-c-drawer__panel--MinWidth: 50%;
|
9
|
+
--pf-c-drawer__panel--xl--MinWidth: 28.125rem;
|
10
|
+
--pf-c-drawer__panel--xl--FlexBasis: 28.125rem;
|
11
|
+
--pf-c-drawer__panel--ZIndex: var(--pf-global--ZIndex--sm);
|
9
12
|
--pf-c-drawer__panel--BackgroundColor: var(--pf-global--BackgroundColor--100);
|
10
13
|
--pf-c-drawer__panel--TransitionDuration: .25s;
|
11
|
-
--pf-c-drawer__panel--TransitionProperty: margin, transform;
|
12
|
-
--pf-c-
|
13
|
-
--pf-c-
|
14
|
-
--pf-c-
|
15
|
-
--pf-c-
|
16
|
-
--pf-c-
|
17
|
-
--pf-c-
|
18
|
-
--pf-c-
|
19
|
-
--pf-c-
|
14
|
+
--pf-c-drawer__panel--TransitionProperty: margin, transform, box-shadow;
|
15
|
+
--pf-c-drawer--child--PaddingTop: var(--pf-global--spacer--md);
|
16
|
+
--pf-c-drawer--child--PaddingRight: var(--pf-global--spacer--md);
|
17
|
+
--pf-c-drawer--child--PaddingBottom: var(--pf-global--spacer--md);
|
18
|
+
--pf-c-drawer--child--PaddingLeft: var(--pf-global--spacer--md);
|
19
|
+
--pf-c-drawer--child--md--PaddingTop: var(--pf-global--spacer--lg);
|
20
|
+
--pf-c-drawer--child--md--PaddingRight: var(--pf-global--spacer--lg);
|
21
|
+
--pf-c-drawer--child--md--PaddingBottom: var(--pf-global--spacer--lg);
|
22
|
+
--pf-c-drawer--child--md--PaddingLeft: var(--pf-global--spacer--lg);
|
23
|
+
--pf-c-drawer--child--m-padding--PaddingTop: var(--pf-global--spacer--md);
|
24
|
+
--pf-c-drawer--child--m-padding--PaddingRight: var(--pf-global--spacer--md);
|
25
|
+
--pf-c-drawer--child--m-padding--PaddingBottom: var(--pf-global--spacer--md);
|
26
|
+
--pf-c-drawer--child--m-padding--PaddingLeft: var(--pf-global--spacer--md);
|
27
|
+
--pf-c-drawer--child--m-padding--md--PaddingTop: var(--pf-global--spacer--lg);
|
28
|
+
--pf-c-drawer--child--m-padding--md--PaddingRight: var(--pf-global--spacer--lg);
|
29
|
+
--pf-c-drawer--child--m-padding--md--PaddingBottom: var(--pf-global--spacer--lg);
|
30
|
+
--pf-c-drawer--child--m-padding--md--PaddingLeft: var(--pf-global--spacer--lg);
|
31
|
+
--pf-c-drawer__content--child--PaddingTop: 0;
|
32
|
+
--pf-c-drawer__content--child--PaddingRight: 0;
|
33
|
+
--pf-c-drawer__content--child--PaddingBottom: 0;
|
34
|
+
--pf-c-drawer__content--child--PaddingLeft: 0;
|
35
|
+
--pf-c-drawer__actions--MarginTop: calc(0.375rem * -1);
|
36
|
+
--pf-c-drawer__actions--MarginRight: calc(0.375rem * -1);
|
20
37
|
--pf-c-drawer__panel--BoxShadow: none;
|
21
|
-
--pf-c-drawer--m-expanded__panel--BoxShadow: var(--pf-global--BoxShadow--
|
22
|
-
--pf-c-drawer--m-expanded--m-panel-left__panel--BoxShadow: var(--pf-global--BoxShadow--
|
23
|
-
--pf-c-
|
24
|
-
--pf-c-
|
38
|
+
--pf-c-drawer--m-expanded__panel--BoxShadow: var(--pf-global--BoxShadow--lg-left);
|
39
|
+
--pf-c-drawer--m-expanded--m-panel-left__panel--BoxShadow: var(--pf-global--BoxShadow--lg-right);
|
40
|
+
--pf-c-drawer__panel--after--Width: var(--pf-global--BorderWidth--sm);
|
41
|
+
--pf-c-drawer__panel--after--BackgroundColor: transparent;
|
42
|
+
--pf-c-drawer--m-inline--m-expanded__panel--after--BackgroundColor: var(--pf-global--BorderColor--100);
|
25
43
|
display: flex;
|
44
|
+
flex-direction: column;
|
26
45
|
height: 100%;
|
27
46
|
overflow-x: hidden; }
|
28
47
|
@media screen and (min-width: 768px) {
|
29
48
|
.pf-c-drawer {
|
30
|
-
--pf-c-drawer__panel--FlexBasis: var(--pf-c-drawer__panel--md--FlexBasis);
|
49
|
+
--pf-c-drawer__panel--FlexBasis: var(--pf-c-drawer__panel--md--FlexBasis);
|
50
|
+
--pf-c-drawer--child--PaddingTop: var(--pf-c-drawer--child--md--PaddingTop);
|
51
|
+
--pf-c-drawer--child--PaddingRight: var(--pf-c-drawer--child--md--PaddingRight);
|
52
|
+
--pf-c-drawer--child--PaddingBottom: var(--pf-c-drawer--child--md--PaddingBottom);
|
53
|
+
--pf-c-drawer--child--PaddingLeft: var(--pf-c-drawer--child--md--PaddingLeft);
|
54
|
+
--pf-c-drawer--child--m-padding--PaddingTop: var(--pf-c-drawer--child--m-padding--md--PaddingTop);
|
55
|
+
--pf-c-drawer--child--m-padding--PaddingRight: var(--pf-c-drawer--child--m-padding--md--PaddingRight);
|
56
|
+
--pf-c-drawer--child--m-padding--PaddingBottom: var(--pf-c-drawer--child--m-padding--md--PaddingBottom);
|
57
|
+
--pf-c-drawer--child--m-padding--PaddingLeft: var(--pf-c-drawer--child--m-padding--md--PaddingLeft); } }
|
58
|
+
@media screen and (min-width: 1200px) {
|
59
|
+
.pf-c-drawer {
|
60
|
+
--pf-c-drawer__panel--FlexBasis: var(--pf-c-drawer__panel--xl--FlexBasis);
|
61
|
+
--pf-c-drawer__panel--MinWidth: var(--pf-c-drawer__panel--xl--MinWidth); } }
|
31
62
|
@media screen and (min-width: 768px) {
|
32
63
|
.pf-c-drawer {
|
33
|
-
|
34
|
-
|
35
|
-
|
36
|
-
|
64
|
+
min-width: var(--pf-c-drawer__panel--MinWidth); } }
|
65
|
+
|
66
|
+
.pf-c-drawer__section {
|
67
|
+
flex-grow: 0;
|
68
|
+
background-color: var(--pf-c-drawer__section--BackgroundColor); }
|
69
|
+
.pf-c-drawer__section.pf-m-no-background {
|
70
|
+
--pf-c-drawer__section--BackgroundColor: transparent; }
|
71
|
+
|
72
|
+
.pf-c-drawer__main {
|
73
|
+
display: flex;
|
74
|
+
flex-grow: 1;
|
75
|
+
overflow: hidden; }
|
37
76
|
|
38
77
|
.pf-c-drawer__content,
|
39
78
|
.pf-c-drawer__panel {
|
79
|
+
display: flex;
|
80
|
+
flex-direction: column;
|
40
81
|
flex-shrink: 0;
|
41
82
|
overflow: auto; }
|
42
83
|
|
43
84
|
.pf-c-drawer__content {
|
85
|
+
--pf-c-drawer--child--PaddingTop: var(--pf-c-drawer__content--child--PaddingTop);
|
86
|
+
--pf-c-drawer--child--PaddingRight: var(--pf-c-drawer__content--child--PaddingRight);
|
87
|
+
--pf-c-drawer--child--PaddingBottom: var(--pf-c-drawer__content--child--PaddingBottom);
|
88
|
+
--pf-c-drawer--child--PaddingLeft: var(--pf-c-drawer__content--child--PaddingLeft);
|
89
|
+
z-index: var(--pf-c-drawer__content--ZIndex);
|
44
90
|
flex-basis: var(--pf-c-drawer__content--FlexBasis);
|
45
|
-
order: 0;
|
91
|
+
order: 0;
|
92
|
+
background-color: var(--pf-c-drawer__content--BackgroundColor); }
|
93
|
+
.pf-c-drawer__content.pf-m-no-background {
|
94
|
+
--pf-c-drawer__content--BackgroundColor: transparent; }
|
46
95
|
|
47
96
|
.pf-c-drawer__panel {
|
48
97
|
position: relative;
|
98
|
+
z-index: var(--pf-c-drawer__panel--ZIndex);
|
49
99
|
flex-basis: var(--pf-c-drawer__panel--FlexBasis);
|
50
100
|
order: 1;
|
101
|
+
overflow: auto;
|
51
102
|
background-color: var(--pf-c-drawer__panel--BackgroundColor);
|
103
|
+
box-shadow: var(--pf-c-drawer__panel--BoxShadow);
|
52
104
|
transition-duration: var(--pf-c-drawer__panel--TransitionDuration);
|
53
105
|
transition-property: var(--pf-c-drawer__panel--TransitionProperty);
|
54
106
|
-webkit-overflow-scrolling: touch; }
|
107
|
+
.pf-c-drawer__panel::after {
|
108
|
+
position: absolute;
|
109
|
+
top: 0;
|
110
|
+
left: 0;
|
111
|
+
width: var(--pf-c-drawer__panel--after--Width);
|
112
|
+
height: 100%;
|
113
|
+
content: "";
|
114
|
+
background-color: var(--pf-c-drawer__panel--after--BackgroundColor); }
|
115
|
+
.pf-c-drawer__panel.pf-m-no-background {
|
116
|
+
--pf-c-drawer__content--BackgroundColor: transparent; }
|
55
117
|
|
56
|
-
.pf-c-
|
57
|
-
|
118
|
+
.pf-c-drawer__head {
|
119
|
+
display: grid;
|
120
|
+
grid-template-columns: auto;
|
121
|
+
grid-auto-columns: max-content; }
|
122
|
+
.pf-c-drawer__head > * {
|
123
|
+
grid-column: 1; }
|
58
124
|
|
59
|
-
.pf-c-
|
60
|
-
|
125
|
+
.pf-c-drawer__actions {
|
126
|
+
grid-column: 2;
|
127
|
+
grid-row: 1;
|
128
|
+
display: flex;
|
129
|
+
align-self: baseline;
|
130
|
+
margin-top: var(--pf-c-drawer__actions--MarginTop);
|
131
|
+
margin-right: var(--pf-c-drawer__actions--MarginRight); }
|
61
132
|
|
62
|
-
.pf-c-
|
63
|
-
--pf-c-
|
64
|
-
|
65
|
-
|
66
|
-
|
133
|
+
.pf-c-drawer__body {
|
134
|
+
padding: var(--pf-c-drawer--child--PaddingTop) var(--pf-c-drawer--child--PaddingRight) var(--pf-c-drawer--child--PaddingBottom) var(--pf-c-drawer--child--PaddingLeft); }
|
135
|
+
.pf-c-drawer__body.pf-m-no-padding {
|
136
|
+
--pf-c-drawer__actions--MarginTop: 0;
|
137
|
+
--pf-c-drawer__actions--MarginRight: 0;
|
138
|
+
--pf-c-drawer--child--PaddingTop: 0;
|
139
|
+
--pf-c-drawer--child--PaddingRight: 0;
|
140
|
+
--pf-c-drawer--child--PaddingBottom: 0;
|
141
|
+
--pf-c-drawer--child--PaddingLeft: 0; }
|
142
|
+
.pf-c-drawer__body.pf-m-padding {
|
143
|
+
--pf-c-drawer--child--PaddingTop: var(--pf-c-drawer--child--m-padding--PaddingTop);
|
144
|
+
--pf-c-drawer--child--PaddingRight: var(--pf-c-drawer--child--m-padding--PaddingRight);
|
145
|
+
--pf-c-drawer--child--PaddingBottom: var(--pf-c-drawer--child--m-padding--PaddingBottom);
|
146
|
+
--pf-c-drawer--child--PaddingLeft: var(--pf-c-drawer--child--m-padding--PaddingLeft); }
|
147
|
+
.pf-c-drawer__body:not(.pf-m-no-padding) + * {
|
148
|
+
--pf-c-drawer--child--PaddingTop: 0; }
|
149
|
+
|
150
|
+
.pf-c-drawer__body:last-of-type {
|
151
|
+
flex: 1 0 auto; }
|
67
152
|
|
68
153
|
.pf-c-drawer.pf-m-expanded .pf-c-drawer__panel {
|
69
154
|
transform: translateX(-100%); }
|
70
155
|
|
156
|
+
.pf-c-drawer .pf-c-page__main {
|
157
|
+
min-height: 100%; }
|
158
|
+
|
71
159
|
@media screen and (min-width: 768px) {
|
72
|
-
.pf-c-drawer:not(.pf-m-divider) .pf-c-drawer__panel {
|
73
|
-
box-shadow: var(--pf-c-drawer__panel--BoxShadow); }
|
74
160
|
.pf-c-drawer .pf-c-drawer__content {
|
75
161
|
order: 0; }
|
76
162
|
.pf-c-drawer .pf-c-drawer__panel {
|
@@ -87,39 +173,17 @@
|
|
87
173
|
transform: translateX(-100%); }
|
88
174
|
.pf-c-drawer.pf-m-panel-left.pf-m-expanded .pf-c-drawer__panel {
|
89
175
|
--pf-c-drawer__panel--BoxShadow: var(--pf-c-drawer--m-expanded--m-panel-left__panel--BoxShadow);
|
90
|
-
transform: translateX(0); } }
|
91
|
-
|
92
|
-
@media screen and (min-width: 768px) {
|
93
|
-
.pf-c-drawer.pf-m-inline .pf-c-drawer__content {
|
94
|
-
flex-shrink: 1; }
|
95
|
-
.pf-c-drawer.pf-m-inline .pf-c-drawer__panel {
|
96
|
-
margin-left: calc(var(--pf-c-drawer__panel--FlexBasis) * -1);
|
97
|
-
transform: translateX(100%); }
|
98
|
-
.pf-c-drawer.pf-m-inline.pf-m-expanded .pf-c-drawer__panel {
|
99
|
-
margin-left: 0;
|
100
176
|
transform: translateX(0); }
|
101
|
-
.pf-c-drawer.pf-m-
|
102
|
-
margin-right: calc(var(--pf-c-drawer__panel--FlexBasis) * -1);
|
103
|
-
margin-left: 0;
|
104
|
-
transform: translateX(-100%); }
|
105
|
-
.pf-c-drawer.pf-m-inline.pf-m-panel-left.pf-m-expanded .pf-c-drawer__panel {
|
106
|
-
margin-right: 0;
|
107
|
-
transform: translateX(0); } }
|
108
|
-
|
109
|
-
@media screen and (min-width: 768px) {
|
110
|
-
.pf-c-drawer.pf-m-divider .pf-c-drawer__panel::after {
|
111
|
-
position: absolute;
|
112
|
-
top: 0;
|
113
|
-
left: 0;
|
114
|
-
width: var(--pf-c-drawer--m-divider__panel--after--Width);
|
115
|
-
height: 100%;
|
116
|
-
content: "";
|
117
|
-
background-color: transparent; }
|
118
|
-
.pf-c-drawer.pf-m-divider.pf-m-expanded .pf-c-drawer__panel::after {
|
119
|
-
background-color: var(--pf-c-drawer--m-divider--m-expanded__panel--after--BackgroundColor); }
|
120
|
-
.pf-c-drawer.pf-m-divider.pf-m-panel-left.pf-m-expanded .pf-c-drawer__panel::after {
|
177
|
+
.pf-c-drawer.pf-m-panel-left.pf-m-expanded .pf-c-drawer__panel::after {
|
121
178
|
right: 0;
|
122
|
-
left: auto; }
|
179
|
+
left: auto; }
|
180
|
+
.pf-c-drawer .pf-c-drawer__panel.pf-m-border,
|
181
|
+
.pf-c-drawer.pf-m-panel-left .pf-c-drawer__panel.pf-m-border,
|
182
|
+
.pf-c-drawer .pf-c-drawer__panel.pf-m-no-border,
|
183
|
+
.pf-c-drawer.pf-m-panel-left .pf-c-drawer__panel.pf-m-no-border {
|
184
|
+
--pf-c-drawer__panel--BoxShadow: transparent; }
|
185
|
+
.pf-c-drawer.pf-m-expanded .pf-c-drawer__panel.pf-m-border::after {
|
186
|
+
--pf-c-drawer__panel--after--BackgroundColor: var(--pf-c-drawer--m-inline--m-expanded__panel--after--BackgroundColor); } }
|
123
187
|
|
124
188
|
@media (min-width: 768px) {
|
125
189
|
.pf-c-drawer__panel.pf-m-width-25 {
|
@@ -131,7 +195,9 @@
|
|
131
195
|
.pf-c-drawer__panel.pf-m-width-66 {
|
132
196
|
--pf-c-drawer__panel--FlexBasis: 66%; }
|
133
197
|
.pf-c-drawer__panel.pf-m-width-75 {
|
134
|
-
--pf-c-drawer__panel--FlexBasis: 75%; }
|
198
|
+
--pf-c-drawer__panel--FlexBasis: 75%; }
|
199
|
+
.pf-c-drawer__panel.pf-m-width-100 {
|
200
|
+
--pf-c-drawer__panel--FlexBasis: 100%; } }
|
135
201
|
|
136
202
|
@media (min-width: 992px) {
|
137
203
|
.pf-c-drawer__panel.pf-m-width-25-on-lg {
|
@@ -143,7 +209,9 @@
|
|
143
209
|
.pf-c-drawer__panel.pf-m-width-66-on-lg {
|
144
210
|
--pf-c-drawer__panel--FlexBasis: 66%; }
|
145
211
|
.pf-c-drawer__panel.pf-m-width-75-on-lg {
|
146
|
-
--pf-c-drawer__panel--FlexBasis: 75%; }
|
212
|
+
--pf-c-drawer__panel--FlexBasis: 75%; }
|
213
|
+
.pf-c-drawer__panel.pf-m-width-100-on-lg {
|
214
|
+
--pf-c-drawer__panel--FlexBasis: 100%; } }
|
147
215
|
|
148
216
|
@media (min-width: 1200px) {
|
149
217
|
.pf-c-drawer__panel.pf-m-width-25-on-xl {
|
@@ -155,7 +223,9 @@
|
|
155
223
|
.pf-c-drawer__panel.pf-m-width-66-on-xl {
|
156
224
|
--pf-c-drawer__panel--FlexBasis: 66%; }
|
157
225
|
.pf-c-drawer__panel.pf-m-width-75-on-xl {
|
158
|
-
--pf-c-drawer__panel--FlexBasis: 75%; }
|
226
|
+
--pf-c-drawer__panel--FlexBasis: 75%; }
|
227
|
+
.pf-c-drawer__panel.pf-m-width-100-on-xl {
|
228
|
+
--pf-c-drawer__panel--FlexBasis: 100%; } }
|
159
229
|
|
160
230
|
@media (min-width: 1450px) {
|
161
231
|
.pf-c-drawer__panel.pf-m-width-25-on-2xl {
|
@@ -167,4 +237,186 @@
|
|
167
237
|
.pf-c-drawer__panel.pf-m-width-66-on-2xl {
|
168
238
|
--pf-c-drawer__panel--FlexBasis: 66%; }
|
169
239
|
.pf-c-drawer__panel.pf-m-width-75-on-2xl {
|
170
|
-
--pf-c-drawer__panel--FlexBasis: 75%; }
|
240
|
+
--pf-c-drawer__panel--FlexBasis: 75%; }
|
241
|
+
.pf-c-drawer__panel.pf-m-width-100-on-2xl {
|
242
|
+
--pf-c-drawer__panel--FlexBasis: 100%; } }
|
243
|
+
|
244
|
+
@media (min-width: 768px) {
|
245
|
+
.pf-c-drawer.pf-m-inline .pf-c-drawer__content,
|
246
|
+
.pf-c-drawer.pf-m-static .pf-c-drawer__content {
|
247
|
+
flex-shrink: 1; }
|
248
|
+
.pf-c-drawer.pf-m-inline .pf-c-drawer__panel,
|
249
|
+
.pf-c-drawer.pf-m-static .pf-c-drawer__panel {
|
250
|
+
--pf-c-drawer__panel--BoxShadow: transparent; }
|
251
|
+
.pf-c-drawer.pf-m-inline .pf-c-drawer__panel::after,
|
252
|
+
.pf-c-drawer.pf-m-static .pf-c-drawer__panel::after {
|
253
|
+
--pf-c-drawer__panel--after--BackgroundColor: var(--pf-c-drawer--m-inline--m-expanded__panel--after--BackgroundColor); }
|
254
|
+
.pf-c-drawer.pf-m-inline .pf-c-drawer__content {
|
255
|
+
overflow-x: auto; }
|
256
|
+
.pf-c-drawer.pf-m-inline .pf-c-drawer__panel {
|
257
|
+
margin-left: calc(var(--pf-c-drawer__panel--FlexBasis) * -1);
|
258
|
+
transform: translateX(100%); }
|
259
|
+
.pf-c-drawer.pf-m-inline.pf-m-expanded .pf-c-drawer__panel {
|
260
|
+
margin-left: 0;
|
261
|
+
transform: translateX(0); }
|
262
|
+
.pf-c-drawer.pf-m-static .pf-c-drawer__panel {
|
263
|
+
margin-left: 0;
|
264
|
+
transform: translateX(0); }
|
265
|
+
.pf-c-drawer.pf-m-static.pf-m-panel-left .pf-c-drawer__panel {
|
266
|
+
margin-right: 0;
|
267
|
+
margin-left: 0;
|
268
|
+
transform: translateX(0); }
|
269
|
+
.pf-c-drawer.pf-m-static.pf-m-panel-left .pf-c-drawer__panel::after {
|
270
|
+
right: 0;
|
271
|
+
left: auto; }
|
272
|
+
.pf-c-drawer.pf-m-static .pf-c-drawer__close {
|
273
|
+
display: none;
|
274
|
+
visibility: hidden; } }
|
275
|
+
|
276
|
+
@media (min-width: 768px) {
|
277
|
+
.pf-c-drawer.pf-m-panel-left.pf-m-inline .pf-c-drawer__panel {
|
278
|
+
--pf-c-drawer__panel--BoxShadow: transparent;
|
279
|
+
margin-right: calc(var(--pf-c-drawer__panel--FlexBasis) * -1);
|
280
|
+
margin-left: 0;
|
281
|
+
transform: translateX(-100%); }
|
282
|
+
.pf-c-drawer.pf-m-panel-left.pf-m-inline.pf-m-expanded .pf-c-drawer__panel {
|
283
|
+
margin-right: 0;
|
284
|
+
transform: translateX(0); }
|
285
|
+
.pf-c-drawer.pf-m-panel-left.pf-m-inline .pf-c-drawer__close {
|
286
|
+
display: unset;
|
287
|
+
visibility: visible; } }
|
288
|
+
|
289
|
+
@media (min-width: 992px) {
|
290
|
+
.pf-c-drawer.pf-m-inline-on-lg .pf-c-drawer__content,
|
291
|
+
.pf-c-drawer.pf-m-static-on-lg .pf-c-drawer__content {
|
292
|
+
flex-shrink: 1; }
|
293
|
+
.pf-c-drawer.pf-m-inline-on-lg .pf-c-drawer__panel,
|
294
|
+
.pf-c-drawer.pf-m-static-on-lg .pf-c-drawer__panel {
|
295
|
+
--pf-c-drawer__panel--BoxShadow: transparent; }
|
296
|
+
.pf-c-drawer.pf-m-inline-on-lg .pf-c-drawer__panel::after,
|
297
|
+
.pf-c-drawer.pf-m-static-on-lg .pf-c-drawer__panel::after {
|
298
|
+
--pf-c-drawer__panel--after--BackgroundColor: var(--pf-c-drawer--m-inline--m-expanded__panel--after--BackgroundColor); }
|
299
|
+
.pf-c-drawer.pf-m-inline-on-lg .pf-c-drawer__content {
|
300
|
+
overflow-x: auto; }
|
301
|
+
.pf-c-drawer.pf-m-inline-on-lg .pf-c-drawer__panel {
|
302
|
+
margin-left: calc(var(--pf-c-drawer__panel--FlexBasis) * -1);
|
303
|
+
transform: translateX(100%); }
|
304
|
+
.pf-c-drawer.pf-m-inline-on-lg.pf-m-expanded .pf-c-drawer__panel {
|
305
|
+
margin-left: 0;
|
306
|
+
transform: translateX(0); }
|
307
|
+
.pf-c-drawer.pf-m-static-on-lg .pf-c-drawer__panel {
|
308
|
+
margin-left: 0;
|
309
|
+
transform: translateX(0); }
|
310
|
+
.pf-c-drawer.pf-m-static-on-lg.pf-m-panel-left .pf-c-drawer__panel {
|
311
|
+
margin-right: 0;
|
312
|
+
margin-left: 0;
|
313
|
+
transform: translateX(0); }
|
314
|
+
.pf-c-drawer.pf-m-static-on-lg.pf-m-panel-left .pf-c-drawer__panel::after {
|
315
|
+
right: 0;
|
316
|
+
left: auto; }
|
317
|
+
.pf-c-drawer.pf-m-static-on-lg .pf-c-drawer__close {
|
318
|
+
display: none;
|
319
|
+
visibility: hidden; } }
|
320
|
+
|
321
|
+
@media (min-width: 992px) {
|
322
|
+
.pf-c-drawer.pf-m-panel-left.pf-m-inline-on-lg .pf-c-drawer__panel {
|
323
|
+
--pf-c-drawer__panel--BoxShadow: transparent;
|
324
|
+
margin-right: calc(var(--pf-c-drawer__panel--FlexBasis) * -1);
|
325
|
+
margin-left: 0;
|
326
|
+
transform: translateX(-100%); }
|
327
|
+
.pf-c-drawer.pf-m-panel-left.pf-m-inline-on-lg.pf-m-expanded .pf-c-drawer__panel {
|
328
|
+
margin-right: 0;
|
329
|
+
transform: translateX(0); }
|
330
|
+
.pf-c-drawer.pf-m-panel-left.pf-m-inline-on-lg .pf-c-drawer__close {
|
331
|
+
display: unset;
|
332
|
+
visibility: visible; } }
|
333
|
+
|
334
|
+
@media (min-width: 1200px) {
|
335
|
+
.pf-c-drawer.pf-m-inline-on-xl .pf-c-drawer__content,
|
336
|
+
.pf-c-drawer.pf-m-static-on-xl .pf-c-drawer__content {
|
337
|
+
flex-shrink: 1; }
|
338
|
+
.pf-c-drawer.pf-m-inline-on-xl .pf-c-drawer__panel,
|
339
|
+
.pf-c-drawer.pf-m-static-on-xl .pf-c-drawer__panel {
|
340
|
+
--pf-c-drawer__panel--BoxShadow: transparent; }
|
341
|
+
.pf-c-drawer.pf-m-inline-on-xl .pf-c-drawer__panel::after,
|
342
|
+
.pf-c-drawer.pf-m-static-on-xl .pf-c-drawer__panel::after {
|
343
|
+
--pf-c-drawer__panel--after--BackgroundColor: var(--pf-c-drawer--m-inline--m-expanded__panel--after--BackgroundColor); }
|
344
|
+
.pf-c-drawer.pf-m-inline-on-xl .pf-c-drawer__content {
|
345
|
+
overflow-x: auto; }
|
346
|
+
.pf-c-drawer.pf-m-inline-on-xl .pf-c-drawer__panel {
|
347
|
+
margin-left: calc(var(--pf-c-drawer__panel--FlexBasis) * -1);
|
348
|
+
transform: translateX(100%); }
|
349
|
+
.pf-c-drawer.pf-m-inline-on-xl.pf-m-expanded .pf-c-drawer__panel {
|
350
|
+
margin-left: 0;
|
351
|
+
transform: translateX(0); }
|
352
|
+
.pf-c-drawer.pf-m-static-on-xl .pf-c-drawer__panel {
|
353
|
+
margin-left: 0;
|
354
|
+
transform: translateX(0); }
|
355
|
+
.pf-c-drawer.pf-m-static-on-xl.pf-m-panel-left .pf-c-drawer__panel {
|
356
|
+
margin-right: 0;
|
357
|
+
margin-left: 0;
|
358
|
+
transform: translateX(0); }
|
359
|
+
.pf-c-drawer.pf-m-static-on-xl.pf-m-panel-left .pf-c-drawer__panel::after {
|
360
|
+
right: 0;
|
361
|
+
left: auto; }
|
362
|
+
.pf-c-drawer.pf-m-static-on-xl .pf-c-drawer__close {
|
363
|
+
display: none;
|
364
|
+
visibility: hidden; } }
|
365
|
+
|
366
|
+
@media (min-width: 1200px) {
|
367
|
+
.pf-c-drawer.pf-m-panel-left.pf-m-inline-on-xl .pf-c-drawer__panel {
|
368
|
+
--pf-c-drawer__panel--BoxShadow: transparent;
|
369
|
+
margin-right: calc(var(--pf-c-drawer__panel--FlexBasis) * -1);
|
370
|
+
margin-left: 0;
|
371
|
+
transform: translateX(-100%); }
|
372
|
+
.pf-c-drawer.pf-m-panel-left.pf-m-inline-on-xl.pf-m-expanded .pf-c-drawer__panel {
|
373
|
+
margin-right: 0;
|
374
|
+
transform: translateX(0); }
|
375
|
+
.pf-c-drawer.pf-m-panel-left.pf-m-inline-on-xl .pf-c-drawer__close {
|
376
|
+
display: unset;
|
377
|
+
visibility: visible; } }
|
378
|
+
|
379
|
+
@media (min-width: 1450px) {
|
380
|
+
.pf-c-drawer.pf-m-inline-on-2xl .pf-c-drawer__content,
|
381
|
+
.pf-c-drawer.pf-m-static-on-2xl .pf-c-drawer__content {
|
382
|
+
flex-shrink: 1; }
|
383
|
+
.pf-c-drawer.pf-m-inline-on-2xl .pf-c-drawer__panel,
|
384
|
+
.pf-c-drawer.pf-m-static-on-2xl .pf-c-drawer__panel {
|
385
|
+
--pf-c-drawer__panel--BoxShadow: transparent; }
|
386
|
+
.pf-c-drawer.pf-m-inline-on-2xl .pf-c-drawer__panel::after,
|
387
|
+
.pf-c-drawer.pf-m-static-on-2xl .pf-c-drawer__panel::after {
|
388
|
+
--pf-c-drawer__panel--after--BackgroundColor: var(--pf-c-drawer--m-inline--m-expanded__panel--after--BackgroundColor); }
|
389
|
+
.pf-c-drawer.pf-m-inline-on-2xl .pf-c-drawer__content {
|
390
|
+
overflow-x: auto; }
|
391
|
+
.pf-c-drawer.pf-m-inline-on-2xl .pf-c-drawer__panel {
|
392
|
+
margin-left: calc(var(--pf-c-drawer__panel--FlexBasis) * -1);
|
393
|
+
transform: translateX(100%); }
|
394
|
+
.pf-c-drawer.pf-m-inline-on-2xl.pf-m-expanded .pf-c-drawer__panel {
|
395
|
+
margin-left: 0;
|
396
|
+
transform: translateX(0); }
|
397
|
+
.pf-c-drawer.pf-m-static-on-2xl .pf-c-drawer__panel {
|
398
|
+
margin-left: 0;
|
399
|
+
transform: translateX(0); }
|
400
|
+
.pf-c-drawer.pf-m-static-on-2xl.pf-m-panel-left .pf-c-drawer__panel {
|
401
|
+
margin-right: 0;
|
402
|
+
margin-left: 0;
|
403
|
+
transform: translateX(0); }
|
404
|
+
.pf-c-drawer.pf-m-static-on-2xl.pf-m-panel-left .pf-c-drawer__panel::after {
|
405
|
+
right: 0;
|
406
|
+
left: auto; }
|
407
|
+
.pf-c-drawer.pf-m-static-on-2xl .pf-c-drawer__close {
|
408
|
+
display: none;
|
409
|
+
visibility: hidden; } }
|
410
|
+
|
411
|
+
@media (min-width: 1450px) {
|
412
|
+
.pf-c-drawer.pf-m-panel-left.pf-m-inline-on-2xl .pf-c-drawer__panel {
|
413
|
+
--pf-c-drawer__panel--BoxShadow: transparent;
|
414
|
+
margin-right: calc(var(--pf-c-drawer__panel--FlexBasis) * -1);
|
415
|
+
margin-left: 0;
|
416
|
+
transform: translateX(-100%); }
|
417
|
+
.pf-c-drawer.pf-m-panel-left.pf-m-inline-on-2xl.pf-m-expanded .pf-c-drawer__panel {
|
418
|
+
margin-right: 0;
|
419
|
+
transform: translateX(0); }
|
420
|
+
.pf-c-drawer.pf-m-panel-left.pf-m-inline-on-2xl .pf-c-drawer__close {
|
421
|
+
display: unset;
|
422
|
+
visibility: visible; } }
|
@@ -1,37 +1,55 @@
|
|
1
1
|
import './drawer.css';
|
2
2
|
declare const _default: {
|
3
3
|
drawer: string;
|
4
|
+
drawerSection: string;
|
5
|
+
drawerMain: string;
|
4
6
|
drawerContent: string;
|
5
7
|
drawerPanel: string;
|
6
|
-
|
7
|
-
|
8
|
+
drawerHead: string;
|
9
|
+
drawerActions: string;
|
10
|
+
drawerBody: string;
|
11
|
+
pageMain: string;
|
12
|
+
drawerClose: string;
|
8
13
|
modifiers: {
|
9
|
-
'
|
14
|
+
'noBackground': string;
|
10
15
|
'noPadding': string;
|
16
|
+
'padding': string;
|
11
17
|
'expanded': string;
|
12
|
-
'divider': string;
|
13
18
|
'panelLeft': string;
|
14
|
-
'
|
19
|
+
'border': string;
|
20
|
+
'noBorder': string;
|
15
21
|
'width_25': string;
|
16
22
|
'width_33': string;
|
17
23
|
'width_50': string;
|
18
24
|
'width_66': string;
|
19
25
|
'width_75': string;
|
26
|
+
'width_100': string;
|
20
27
|
'width_25OnLg': string;
|
21
28
|
'width_33OnLg': string;
|
22
29
|
'width_50OnLg': string;
|
23
30
|
'width_66OnLg': string;
|
24
31
|
'width_75OnLg': string;
|
32
|
+
'width_100OnLg': string;
|
25
33
|
'width_25OnXl': string;
|
26
34
|
'width_33OnXl': string;
|
27
35
|
'width_50OnXl': string;
|
28
36
|
'width_66OnXl': string;
|
29
37
|
'width_75OnXl': string;
|
38
|
+
'width_100OnXl': string;
|
30
39
|
'width_25On_2xl': string;
|
31
40
|
'width_33On_2xl': string;
|
32
41
|
'width_50On_2xl': string;
|
33
42
|
'width_66On_2xl': string;
|
34
43
|
'width_75On_2xl': string;
|
44
|
+
'width_100On_2xl': string;
|
45
|
+
'inline': string;
|
46
|
+
'static': string;
|
47
|
+
'inlineOnLg': string;
|
48
|
+
'staticOnLg': string;
|
49
|
+
'inlineOnXl': string;
|
50
|
+
'staticOnXl': string;
|
51
|
+
'inlineOn_2xl': string;
|
52
|
+
'staticOn_2xl': string;
|
35
53
|
};
|
36
54
|
};
|
37
55
|
export default _default;
|
@@ -3,36 +3,54 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
require("./drawer.css");
|
4
4
|
exports.default = {
|
5
5
|
drawer: 'pf-c-drawer',
|
6
|
+
drawerSection: 'pf-c-drawer__section',
|
7
|
+
drawerMain: 'pf-c-drawer__main',
|
6
8
|
drawerContent: 'pf-c-drawer__content',
|
7
9
|
drawerPanel: 'pf-c-drawer__panel',
|
8
|
-
|
9
|
-
|
10
|
+
drawerHead: 'pf-c-drawer__head',
|
11
|
+
drawerActions: 'pf-c-drawer__actions',
|
12
|
+
drawerBody: 'pf-c-drawer__body',
|
13
|
+
pageMain: 'pf-c-page__main',
|
14
|
+
drawerClose: 'pf-c-drawer__close',
|
10
15
|
modifiers: {
|
11
|
-
'
|
16
|
+
'noBackground': 'pf-m-no-background',
|
12
17
|
'noPadding': 'pf-m-no-padding',
|
18
|
+
'padding': 'pf-m-padding',
|
13
19
|
'expanded': 'pf-m-expanded',
|
14
|
-
'divider': 'pf-m-divider',
|
15
20
|
'panelLeft': 'pf-m-panel-left',
|
16
|
-
'
|
21
|
+
'border': 'pf-m-border',
|
22
|
+
'noBorder': 'pf-m-no-border',
|
17
23
|
'width_25': 'pf-m-width-25',
|
18
24
|
'width_33': 'pf-m-width-33',
|
19
25
|
'width_50': 'pf-m-width-50',
|
20
26
|
'width_66': 'pf-m-width-66',
|
21
27
|
'width_75': 'pf-m-width-75',
|
28
|
+
'width_100': 'pf-m-width-100',
|
22
29
|
'width_25OnLg': 'pf-m-width-25-on-lg',
|
23
30
|
'width_33OnLg': 'pf-m-width-33-on-lg',
|
24
31
|
'width_50OnLg': 'pf-m-width-50-on-lg',
|
25
32
|
'width_66OnLg': 'pf-m-width-66-on-lg',
|
26
33
|
'width_75OnLg': 'pf-m-width-75-on-lg',
|
34
|
+
'width_100OnLg': 'pf-m-width-100-on-lg',
|
27
35
|
'width_25OnXl': 'pf-m-width-25-on-xl',
|
28
36
|
'width_33OnXl': 'pf-m-width-33-on-xl',
|
29
37
|
'width_50OnXl': 'pf-m-width-50-on-xl',
|
30
38
|
'width_66OnXl': 'pf-m-width-66-on-xl',
|
31
39
|
'width_75OnXl': 'pf-m-width-75-on-xl',
|
40
|
+
'width_100OnXl': 'pf-m-width-100-on-xl',
|
32
41
|
'width_25On_2xl': 'pf-m-width-25-on-2xl',
|
33
42
|
'width_33On_2xl': 'pf-m-width-33-on-2xl',
|
34
43
|
'width_50On_2xl': 'pf-m-width-50-on-2xl',
|
35
44
|
'width_66On_2xl': 'pf-m-width-66-on-2xl',
|
36
|
-
'width_75On_2xl': 'pf-m-width-75-on-2xl'
|
45
|
+
'width_75On_2xl': 'pf-m-width-75-on-2xl',
|
46
|
+
'width_100On_2xl': 'pf-m-width-100-on-2xl',
|
47
|
+
'inline': 'pf-m-inline',
|
48
|
+
'static': 'pf-m-static',
|
49
|
+
'inlineOnLg': 'pf-m-inline-on-lg',
|
50
|
+
'staticOnLg': 'pf-m-static-on-lg',
|
51
|
+
'inlineOnXl': 'pf-m-inline-on-xl',
|
52
|
+
'staticOnXl': 'pf-m-static-on-xl',
|
53
|
+
'inlineOn_2xl': 'pf-m-inline-on-2xl',
|
54
|
+
'staticOn_2xl': 'pf-m-static-on-2xl'
|
37
55
|
}
|
38
56
|
};
|
@@ -3,8 +3,9 @@
|
|
3
3
|
--pf-c-file-upload--m-loading__file-details--before--Left: var(--pf-global--BorderWidth--sm);
|
4
4
|
--pf-c-file-upload--m-loading__file-details--before--Right: var(--pf-global--BorderWidth--sm);
|
5
5
|
--pf-c-file-upload--m-loading__file-details--before--Bottom: var(--pf-global--BorderWidth--sm);
|
6
|
-
--pf-c-file-upload--m-drag-hover--
|
7
|
-
--pf-c-file-upload--m-drag-hover--
|
6
|
+
--pf-c-file-upload--m-drag-hover--before--BorderWidth: var(--pf-global--BorderWidth--sm);
|
7
|
+
--pf-c-file-upload--m-drag-hover--before--BorderColor: var(--pf-global--primary-color--100);
|
8
|
+
--pf-c-file-upload--m-drag-hover--before--ZIndex: var(--pf-global--ZIndex--xs);
|
8
9
|
--pf-c-file-upload--m-drag-hover--after--BackgroundColor: var(--pf-global--primary-color--100);
|
9
10
|
--pf-c-file-upload--m-drag-hover--after--Opacity: .1;
|
10
11
|
--pf-c-file-upload__file-details__c-form-control--MinHeight: calc(var(--pf-global--spacer--3xl) * 2);
|
@@ -19,20 +20,27 @@
|
|
19
20
|
--pf-c-file-upload__message--FontSize: var(--pf-global--FontSize--sm);
|
20
21
|
--pf-c-file-upload__message--Color: var(--pf-global--Color--100);
|
21
22
|
--pf-c-file-upload__message--m-error--Color: var(--pf-global--danger-color--100);
|
23
|
+
position: relative;
|
22
24
|
display: flex;
|
23
25
|
flex-direction: column; }
|
24
|
-
.pf-c-file-upload.pf-m-drag-hover {
|
25
|
-
position:
|
26
|
-
|
27
|
-
|
28
|
-
|
29
|
-
|
30
|
-
|
31
|
-
|
32
|
-
|
33
|
-
|
34
|
-
|
35
|
-
|
26
|
+
.pf-c-file-upload.pf-m-drag-hover::before {
|
27
|
+
position: absolute;
|
28
|
+
top: 0;
|
29
|
+
right: 0;
|
30
|
+
bottom: 0;
|
31
|
+
left: 0;
|
32
|
+
z-index: var(--pf-c-file-upload--m-drag-hover--before--ZIndex);
|
33
|
+
content: "";
|
34
|
+
border: var(--pf-c-file-upload--m-drag-hover--before--BorderWidth) solid var(--pf-c-file-upload--m-drag-hover--before--BorderColor); }
|
35
|
+
.pf-c-file-upload.pf-m-drag-hover::after {
|
36
|
+
position: absolute;
|
37
|
+
top: 0;
|
38
|
+
right: 0;
|
39
|
+
bottom: 0;
|
40
|
+
left: 0;
|
41
|
+
content: "";
|
42
|
+
background-color: var(--pf-c-file-upload--m-drag-hover--after--BackgroundColor);
|
43
|
+
opacity: var(--pf-c-file-upload--m-drag-hover--after--Opacity); }
|
36
44
|
.pf-c-file-upload.pf-m-loading .pf-c-file-upload__file-details {
|
37
45
|
position: relative; }
|
38
46
|
.pf-c-file-upload.pf-m-loading .pf-c-file-upload__file-details::before {
|
@@ -29,7 +29,7 @@
|
|
29
29
|
.pf-c-login {
|
30
30
|
--pf-c-login--PaddingTop: var(--pf-global--spacer--lg);
|
31
31
|
--pf-c-login--PaddingBottom: var(--pf-global--spacer--lg);
|
32
|
-
--pf-c-login--xl--BackgroundImage:
|
32
|
+
--pf-c-login--xl--BackgroundImage: none;
|
33
33
|
--pf-c-login__container--xl--GridColumnGap: var(--pf-global--spacer--3xl);
|
34
34
|
--pf-c-login__container--MaxWidth: 31.25rem;
|
35
35
|
--pf-c-login__container--xl--MaxWidth: none;
|
@@ -112,14 +112,12 @@
|
|
112
112
|
--pf-c-login__footer--c-list--PaddingTop: var(--pf-c-login__footer--c-list--xl--PaddingTop); } }
|
113
113
|
@media (min-width: 1200px) {
|
114
114
|
.pf-c-login {
|
115
|
-
justify-content: flex-start;
|
116
115
|
background-image: var(--pf-c-login--xl--BackgroundImage); } }
|
117
116
|
@media (min-width: 576px) {
|
118
117
|
.pf-c-login {
|
119
118
|
align-items: center; } }
|
120
119
|
|
121
120
|
.pf-c-login__container {
|
122
|
-
width: 100%;
|
123
121
|
max-width: var(--pf-c-login__container--MaxWidth); }
|
124
122
|
@media (min-width: 1200px) {
|
125
123
|
.pf-c-login__container {
|
@@ -177,9 +177,10 @@
|
|
177
177
|
display: block;
|
178
178
|
visibility: visible; }
|
179
179
|
.pf-c-nav .pf-c-divider {
|
180
|
+
padding-left: var(--pf-c-nav__c-divider--MarginLeft);
|
180
181
|
margin-top: var(--pf-c-nav__c-divider--MarginTop);
|
181
182
|
margin-bottom: var(--pf-c-nav__c-divider--MarginBottom);
|
182
|
-
margin-left:
|
183
|
+
margin-left: 0; }
|
183
184
|
.pf-c-nav.pf-m-dark {
|
184
185
|
--pf-c-nav__list-link--PaddingTop: var(--pf-c-nav--m-dark__list-link--PaddingTop);
|
185
186
|
--pf-c-nav__list-link--PaddingBottom: var(--pf-c-nav--m-dark__list-link--PaddingBottom);
|
@@ -207,13 +208,13 @@
|
|
207
208
|
--pf-c-nav__subnav--MarginTop: var(--pf-c-nav--m-dark__subnav--MarginTop);
|
208
209
|
--pf-c-nav__list-link--after--Width: var(--pf-c-nav--m-dark__list-link--after--Width); }
|
209
210
|
.pf-c-nav.pf-m-dark .pf-c-divider {
|
210
|
-
|
211
|
+
--pf-c-divider--after--BackgroundColor: var(--pf-c-nav--m-dark__c-divider--BackgroundColor); }
|
211
212
|
.pf-c-nav.pf-m-dark .pf-c-nav__item.pf-m-current {
|
212
213
|
--pf-c-nav__simple-list-link--Color: var(--pf-c-nav--m-dark__item--m-current__simple-list-link--Color);
|
213
214
|
--pf-c-nav__list-link--Color: var(--pf-c-nav--m-dark__item--m-current__list-link--Color);
|
214
215
|
--pf-c-nav__separator--BackgroundColor: var(--pf-c-nav--m-dark__item--m-current__separator--BackgroundColor); }
|
215
216
|
.pf-c-nav.pf-m-dark .pf-c-nav__item.pf-m-current .pf-c-divider {
|
216
|
-
|
217
|
+
--pf-c-divider--after--BackgroundColor: var(--pf-c-nav--m-dark__item--m-current__c-divider--BackgroundColor); }
|
217
218
|
.pf-c-nav.pf-m-dark .pf-c-nav__item.pf-m-expanded {
|
218
219
|
padding-bottom: var(--pf-c-nav--m-dark__item--m-expanded--PaddingBottom); }
|
219
220
|
.pf-c-nav.pf-m-dark .pf-c-nav__item.pf-m-expanded > .pf-c-nav__link {
|
@@ -3,6 +3,7 @@
|
|
3
3
|
--pf-c-overflow-menu--spacer: var(--pf-global--spacer--sm);
|
4
4
|
--pf-c-overflow-menu__group--spacer: var(--pf-c-overflow-menu--spacer--base);
|
5
5
|
--pf-c-overflow-menu__item--spacer: var(--pf-c-overflow-menu--spacer--base);
|
6
|
+
--pf-c-overflow-menu--c-divider--m-vertical--spacer: var(--pf-c-overflow-menu--spacer--base);
|
6
7
|
--pf-c-overflow-menu__group--m-button-group--spacer: var(--pf-c-overflow-menu--spacer--base);
|
7
8
|
--pf-c-overflow-menu__group--m-button-group--space-items: var(--pf-global--spacer--sm);
|
8
9
|
--pf-c-overflow-menu__group--m-icon-button-group--spacer: var(--pf-c-overflow-menu--spacer--base);
|
@@ -40,3 +41,14 @@
|
|
40
41
|
.pf-c-overflow-menu__group:last-child,
|
41
42
|
.pf-c-overflow-menu__item:last-child {
|
42
43
|
--pf-c-overflow-menu--spacer: 0; }
|
44
|
+
|
45
|
+
.pf-c-overflow-menu > .pf-c-divider,
|
46
|
+
.pf-c-overflow-menu__group > .pf-c-divider {
|
47
|
+
--pf-c-overflow-menu--spacer: var(--pf-c-overflow-menu--c-divider--m-vertical--spacer); }
|
48
|
+
|
49
|
+
.pf-c-overflow-menu > .pf-c-divider.pf-m-vertical,
|
50
|
+
.pf-c-overflow-menu__group > .pf-c-divider.pf-m-vertical {
|
51
|
+
margin-right: var(--pf-c-overflow-menu--spacer); }
|
52
|
+
.pf-c-overflow-menu > .pf-c-divider.pf-m-vertical:last-child,
|
53
|
+
.pf-c-overflow-menu__group > .pf-c-divider.pf-m-vertical:last-child {
|
54
|
+
--pf-c-overflow-menu--spacer: 0; }
|
@@ -5,9 +5,11 @@ declare const _default: {
|
|
5
5
|
overflowMenuGroup: string;
|
6
6
|
overflowMenuItem: string;
|
7
7
|
overflowMenuControl: string;
|
8
|
+
divider: string;
|
8
9
|
modifiers: {
|
9
10
|
'buttonGroup': string;
|
10
11
|
'iconButtonGroup': string;
|
12
|
+
'vertical': string;
|
11
13
|
};
|
12
14
|
};
|
13
15
|
export default _default;
|
@@ -7,8 +7,10 @@ exports.default = {
|
|
7
7
|
overflowMenuGroup: 'pf-c-overflow-menu__group',
|
8
8
|
overflowMenuItem: 'pf-c-overflow-menu__item',
|
9
9
|
overflowMenuControl: 'pf-c-overflow-menu__control',
|
10
|
+
divider: 'pf-c-divider',
|
10
11
|
modifiers: {
|
11
12
|
'buttonGroup': 'pf-m-button-group',
|
12
|
-
'iconButtonGroup': 'pf-m-icon-button-group'
|
13
|
+
'iconButtonGroup': 'pf-m-icon-button-group',
|
14
|
+
'vertical': 'pf-m-vertical'
|
13
15
|
}
|
14
16
|
};
|
@@ -343,7 +343,7 @@
|
|
343
343
|
padding: var(--pf-c-page__main-section--PaddingTop) var(--pf-c-page__main-section--PaddingRight) var(--pf-c-page__main-section--PaddingBottom) var(--pf-c-page__main-section--PaddingLeft);
|
344
344
|
background-color: var(--pf-c-page__main-section--BackgroundColor); }
|
345
345
|
.pf-c-page__main-section:last-of-type, .pf-c-page__main-section:only-child, .pf-c-page__main-section.pf-m-fill {
|
346
|
-
flex: 1
|
346
|
+
flex: 1; }
|
347
347
|
.pf-c-page__main-section.pf-m-no-fill {
|
348
348
|
flex: 0 0 auto; }
|
349
349
|
.pf-c-page__main-section.pf-m-light {
|
@@ -367,17 +367,7 @@
|
|
367
367
|
flex: 1 0 0;
|
368
368
|
border-top: var(--pf-c-page__main-wizard--BorderTopWidth) solid var(--pf-c-page__main-wizard--BorderTopColor); }
|
369
369
|
|
370
|
-
.pf-c-page__drawer
|
371
|
-
|
372
|
-
|
373
|
-
.pf-c-page__drawer > .pf-c-drawer > .pf-c-drawer__content {
|
374
|
-
display: flex;
|
375
|
-
flex-direction: column; }
|
376
|
-
|
377
|
-
.pf-c-page__drawer > .pf-c-drawer > .pf-c-drawer__content > .pf-c-drawer__content-body {
|
378
|
-
display: flex;
|
379
|
-
flex: 1 0; }
|
380
|
-
.pf-c-page__drawer > .pf-c-drawer > .pf-c-drawer__content > .pf-c-drawer__content-body .pf-c-page__main {
|
381
|
-
--pf-c-page__main--ZIndex: auto;
|
382
|
-
grid-area: auto;
|
370
|
+
.pf-c-page__drawer {
|
371
|
+
grid-area: main; }
|
372
|
+
.pf-c-page__drawer > .pf-c-drawer {
|
383
373
|
flex: 1 0 auto; }
|
@@ -26,8 +26,6 @@ exports.default = {
|
|
26
26
|
pageMainBreadcrumb: 'pf-c-page__main-breadcrumb',
|
27
27
|
pageMainWizard: 'pf-c-page__main-wizard',
|
28
28
|
drawer: 'pf-c-drawer',
|
29
|
-
drawerContent: 'pf-c-drawer__content',
|
30
|
-
drawerContentBody: 'pf-c-drawer__content-body',
|
31
29
|
modifiers: {
|
32
30
|
'dark': 'pf-m-dark',
|
33
31
|
'icons': 'pf-m-icons',
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@patternfly/react-styles",
|
3
|
-
"version": "3.7.
|
3
|
+
"version": "3.7.8",
|
4
4
|
"main": "dist/js/index.js",
|
5
5
|
"module": "dist/esm/index.js",
|
6
6
|
"types": "dist/js/index.d.ts",
|
@@ -42,7 +42,7 @@
|
|
42
42
|
"@babel/plugin-transform-typescript": "^7.0.0",
|
43
43
|
"@babel/preset-env": "^7.0.0",
|
44
44
|
"@babel/preset-react": "^7.0.0",
|
45
|
-
"@patternfly/patternfly": "2.
|
45
|
+
"@patternfly/patternfly": "2.68.3",
|
46
46
|
"babel-plugin-transform-es2015-modules-umd": "^6.24.1",
|
47
47
|
"babel-plugin-typescript-to-proptypes": "^0.17.1",
|
48
48
|
"fbjs-scripts": "^0.8.3",
|
@@ -54,5 +54,5 @@
|
|
54
54
|
"typescript": "3.4.5"
|
55
55
|
},
|
56
56
|
"license": "MIT",
|
57
|
-
"gitHead": "
|
57
|
+
"gitHead": "14f9e799350f309410f15996af36435af0c7e6c4"
|
58
58
|
}
|