@patternfly/quickstarts 1.2.1 → 1.4.0
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 +40 -1
- package/dist/QuickStartDrawer.d.ts +1 -0
- package/dist/catalog/QuickStartTileFooterExternal.d.ts +1 -0
- package/dist/catalog/QuickStartTileHeader.d.ts +1 -0
- package/dist/controller/QuickStartConclusion.d.ts +1 -1
- package/dist/controller/QuickStartIntroduction.d.ts +2 -0
- package/dist/index.es.js +114 -65
- package/dist/index.es.js.map +1 -1
- package/dist/index.js +113 -64
- package/dist/index.js.map +1 -1
- package/dist/patternfly-global.css +1189 -0
- package/dist/patternfly-nested.css +7233 -0
- package/dist/quickstarts-base.css +142 -21
- package/dist/quickstarts-full.es.js +384 -259
- package/dist/quickstarts-full.es.js.map +1 -1
- package/dist/quickstarts-standalone.css +622 -0
- package/dist/quickstarts-standalone.min.css +4 -0
- package/dist/quickstarts.css +142 -21
- package/dist/quickstarts.min.css +1 -1
- package/dist/styles/patternfly-global-entry.d.ts +1 -0
- package/dist/styles/patternfly-nested-entry.d.ts +1 -0
- package/dist/styles/quickstarts-standalone-entry.d.ts +1 -0
- package/dist/utils/quick-start-context.d.ts +3 -0
- package/dist/utils/quick-start-types.d.ts +2 -1
- package/package.json +6 -4
|
@@ -0,0 +1,1189 @@
|
|
|
1
|
+
:root {
|
|
2
|
+
--pf-global--palette--black-100: #fafafa;
|
|
3
|
+
--pf-global--palette--black-150: #f5f5f5;
|
|
4
|
+
--pf-global--palette--black-200: #f0f0f0;
|
|
5
|
+
--pf-global--palette--black-300: #d2d2d2;
|
|
6
|
+
--pf-global--palette--black-400: #b8bbbe;
|
|
7
|
+
--pf-global--palette--black-500: #8a8d90;
|
|
8
|
+
--pf-global--palette--black-600: #6a6e73;
|
|
9
|
+
--pf-global--palette--black-700: #4f5255;
|
|
10
|
+
--pf-global--palette--black-800: #3c3f42;
|
|
11
|
+
--pf-global--palette--black-850: #212427;
|
|
12
|
+
--pf-global--palette--black-900: #151515;
|
|
13
|
+
--pf-global--palette--black-1000: #030303;
|
|
14
|
+
--pf-global--palette--blue-50: #e7f1fa;
|
|
15
|
+
--pf-global--palette--blue-100: #bee1f4;
|
|
16
|
+
--pf-global--palette--blue-200: #73bcf7;
|
|
17
|
+
--pf-global--palette--blue-300: #2b9af3;
|
|
18
|
+
--pf-global--palette--blue-400: #06c;
|
|
19
|
+
--pf-global--palette--blue-500: #004080;
|
|
20
|
+
--pf-global--palette--blue-600: #002952;
|
|
21
|
+
--pf-global--palette--blue-700: #001223;
|
|
22
|
+
--pf-global--palette--cyan-50: #f2f9f9;
|
|
23
|
+
--pf-global--palette--cyan-100: #a2d9d9;
|
|
24
|
+
--pf-global--palette--cyan-200: #73c5c5;
|
|
25
|
+
--pf-global--palette--cyan-300: #009596;
|
|
26
|
+
--pf-global--palette--cyan-400: #005f60;
|
|
27
|
+
--pf-global--palette--cyan-500: #003737;
|
|
28
|
+
--pf-global--palette--cyan-600: #002323;
|
|
29
|
+
--pf-global--palette--cyan-700: #000f0f;
|
|
30
|
+
--pf-global--palette--gold-50: #fdf7e7;
|
|
31
|
+
--pf-global--palette--gold-100: #f9e0a2;
|
|
32
|
+
--pf-global--palette--gold-200: #f6d173;
|
|
33
|
+
--pf-global--palette--gold-300: #f4c145;
|
|
34
|
+
--pf-global--palette--gold-400: #f0ab00;
|
|
35
|
+
--pf-global--palette--gold-500: #c58c00;
|
|
36
|
+
--pf-global--palette--gold-600: #795600;
|
|
37
|
+
--pf-global--palette--gold-700: #3d2c00;
|
|
38
|
+
--pf-global--palette--green-50: #f3faf2;
|
|
39
|
+
--pf-global--palette--green-100: #bde5b8;
|
|
40
|
+
--pf-global--palette--green-200: #95d58e;
|
|
41
|
+
--pf-global--palette--green-300: #6ec664;
|
|
42
|
+
--pf-global--palette--green-400: #5ba352;
|
|
43
|
+
--pf-global--palette--green-500: #3e8635;
|
|
44
|
+
--pf-global--palette--green-600: #1e4f18;
|
|
45
|
+
--pf-global--palette--green-700: #0f280d;
|
|
46
|
+
--pf-global--palette--light-blue-100: #beedf9;
|
|
47
|
+
--pf-global--palette--light-blue-200: #7cdbf3;
|
|
48
|
+
--pf-global--palette--light-blue-300: #35caed;
|
|
49
|
+
--pf-global--palette--light-blue-400: #00b9e4;
|
|
50
|
+
--pf-global--palette--light-blue-500: #008bad;
|
|
51
|
+
--pf-global--palette--light-blue-600: #005c73;
|
|
52
|
+
--pf-global--palette--light-blue-700: #002d39;
|
|
53
|
+
--pf-global--palette--light-green-100: #e4f5bc;
|
|
54
|
+
--pf-global--palette--light-green-200: #c8eb79;
|
|
55
|
+
--pf-global--palette--light-green-300: #ace12e;
|
|
56
|
+
--pf-global--palette--light-green-400: #92d400;
|
|
57
|
+
--pf-global--palette--light-green-500: #6ca100;
|
|
58
|
+
--pf-global--palette--light-green-600: #486b00;
|
|
59
|
+
--pf-global--palette--light-green-700: #253600;
|
|
60
|
+
--pf-global--palette--orange-100: #f4b678;
|
|
61
|
+
--pf-global--palette--orange-200: #ef9234;
|
|
62
|
+
--pf-global--palette--orange-300: #ec7a08;
|
|
63
|
+
--pf-global--palette--orange-400: #c46100;
|
|
64
|
+
--pf-global--palette--orange-500: #8f4700;
|
|
65
|
+
--pf-global--palette--orange-600: #773d00;
|
|
66
|
+
--pf-global--palette--orange-700: #3b1f00;
|
|
67
|
+
--pf-global--palette--purple-50: #f2f0fc;
|
|
68
|
+
--pf-global--palette--purple-100: #cbc1ff;
|
|
69
|
+
--pf-global--palette--purple-200: #b2a3ff;
|
|
70
|
+
--pf-global--palette--purple-300: #a18fff;
|
|
71
|
+
--pf-global--palette--purple-400: #8476d1;
|
|
72
|
+
--pf-global--palette--purple-500: #6753ac;
|
|
73
|
+
--pf-global--palette--purple-600: #40199a;
|
|
74
|
+
--pf-global--palette--purple-700: #1f0066;
|
|
75
|
+
--pf-global--palette--red-50: #faeae8;
|
|
76
|
+
--pf-global--palette--red-100: #c9190b;
|
|
77
|
+
--pf-global--palette--red-200: #a30000;
|
|
78
|
+
--pf-global--palette--red-300: #7d1007;
|
|
79
|
+
--pf-global--palette--red-400: #470000;
|
|
80
|
+
--pf-global--palette--red-500: #2c0000;
|
|
81
|
+
--pf-global--palette--white: #fff;
|
|
82
|
+
--pf-global--BackgroundColor--100: #fff;
|
|
83
|
+
--pf-global--BackgroundColor--200: #f0f0f0;
|
|
84
|
+
--pf-global--BackgroundColor--light-100: #fff;
|
|
85
|
+
--pf-global--BackgroundColor--light-200: #fafafa;
|
|
86
|
+
--pf-global--BackgroundColor--light-300: #f0f0f0;
|
|
87
|
+
--pf-global--BackgroundColor--dark-100: #151515;
|
|
88
|
+
--pf-global--BackgroundColor--dark-200: #3c3f42;
|
|
89
|
+
--pf-global--BackgroundColor--dark-300: #212427;
|
|
90
|
+
--pf-global--BackgroundColor--dark-400: #4f5255;
|
|
91
|
+
--pf-global--BackgroundColor--dark-transparent-100: rgba(3, 3, 3, 0.62);
|
|
92
|
+
--pf-global--BackgroundColor--dark-transparent-200: rgba(3, 3, 3, 0.32);
|
|
93
|
+
--pf-global--Color--100: #151515;
|
|
94
|
+
--pf-global--Color--200: #6a6e73;
|
|
95
|
+
--pf-global--Color--300: #3c3f42;
|
|
96
|
+
--pf-global--Color--400: #8a8d90;
|
|
97
|
+
--pf-global--Color--light-100: #fff;
|
|
98
|
+
--pf-global--Color--light-200: #f0f0f0;
|
|
99
|
+
--pf-global--Color--light-300: #d2d2d2;
|
|
100
|
+
--pf-global--Color--dark-100: #151515;
|
|
101
|
+
--pf-global--Color--dark-200: #6a6e73;
|
|
102
|
+
--pf-global--active-color--100: #06c;
|
|
103
|
+
--pf-global--active-color--200: #bee1f4;
|
|
104
|
+
--pf-global--active-color--300: #2b9af3;
|
|
105
|
+
--pf-global--active-color--400: #73bcf7;
|
|
106
|
+
--pf-global--disabled-color--100: #6a6e73;
|
|
107
|
+
--pf-global--disabled-color--200: #d2d2d2;
|
|
108
|
+
--pf-global--disabled-color--300: #f0f0f0;
|
|
109
|
+
--pf-global--primary-color--100: #06c;
|
|
110
|
+
--pf-global--primary-color--200: #004080;
|
|
111
|
+
--pf-global--primary-color--light-100: #73bcf7;
|
|
112
|
+
--pf-global--primary-color--dark-100: #06c;
|
|
113
|
+
--pf-global--secondary-color--100: #6a6e73;
|
|
114
|
+
--pf-global--default-color--100: #73c5c5;
|
|
115
|
+
--pf-global--default-color--200: #009596;
|
|
116
|
+
--pf-global--default-color--300: #003737;
|
|
117
|
+
--pf-global--success-color--100: #3e8635;
|
|
118
|
+
--pf-global--success-color--200: #1e4f18;
|
|
119
|
+
--pf-global--info-color--100: #2b9af3;
|
|
120
|
+
--pf-global--info-color--200: #002952;
|
|
121
|
+
--pf-global--warning-color--100: #f0ab00;
|
|
122
|
+
--pf-global--warning-color--200: #795600;
|
|
123
|
+
--pf-global--danger-color--100: #c9190b;
|
|
124
|
+
--pf-global--danger-color--200: #a30000;
|
|
125
|
+
--pf-global--danger-color--300: #470000;
|
|
126
|
+
--pf-global--BoxShadow--sm: 0 0.0625rem 0.125rem 0 rgba(3, 3, 3, 0.12), 0 0 0.125rem 0 rgba(3, 3, 3, 0.06);
|
|
127
|
+
--pf-global--BoxShadow--sm-top: 0 -0.125rem 0.25rem -0.0625rem rgba(3, 3, 3, 0.16);
|
|
128
|
+
--pf-global--BoxShadow--sm-right: 0.125rem 0 0.25rem -0.0625rem rgba(3, 3, 3, 0.16);
|
|
129
|
+
--pf-global--BoxShadow--sm-bottom: 0 0.125rem 0.25rem -0.0625rem rgba(3, 3, 3, 0.16);
|
|
130
|
+
--pf-global--BoxShadow--sm-left: -0.125rem 0 0.25rem -0.0625rem rgba(3, 3, 3, 0.16);
|
|
131
|
+
--pf-global--BoxShadow--md: 0 0.25rem 0.5rem 0rem rgba(3, 3, 3, 0.12), 0 0 0.25rem 0 rgba(3, 3, 3, 0.06);
|
|
132
|
+
--pf-global--BoxShadow--md-top: 0 -0.5rem 0.5rem -0.375rem rgba(3, 3, 3, 0.18);
|
|
133
|
+
--pf-global--BoxShadow--md-right: 0.5rem 0 0.5rem -0.375rem rgba(3, 3, 3, 0.18);
|
|
134
|
+
--pf-global--BoxShadow--md-bottom: 0 0.5rem 0.5rem -0.375rem rgba(3, 3, 3, 0.18);
|
|
135
|
+
--pf-global--BoxShadow--md-left: -0.5rem 0 0.5rem -0.375rem rgba(3, 3, 3, 0.18);
|
|
136
|
+
--pf-global--BoxShadow--lg: 0 0.5rem 1rem 0 rgba(3, 3, 3, 0.16), 0 0 0.375rem 0 rgba(3, 3, 3, 0.08);
|
|
137
|
+
--pf-global--BoxShadow--lg-top: 0 -0.75rem 0.75rem -0.5rem rgba(3, 3, 3, 0.18);
|
|
138
|
+
--pf-global--BoxShadow--lg-right: 0.75rem 0 0.75rem -0.5rem rgba(3, 3, 3, 0.18);
|
|
139
|
+
--pf-global--BoxShadow--lg-bottom: 0 0.75rem 0.75rem -0.5rem rgba(3, 3, 3, 0.18);
|
|
140
|
+
--pf-global--BoxShadow--lg-left: -0.75rem 0 0.75rem -0.5rem rgba(3, 3, 3, 0.18);
|
|
141
|
+
--pf-global--BoxShadow--xl: 0 1rem 2rem 0 rgba(3, 3, 3, 0.16), 0 0 0.5rem 0 rgba(3, 3, 3, 0.1);
|
|
142
|
+
--pf-global--BoxShadow--xl-top: 0 -1rem 1rem -0.5rem rgba(3, 3, 3, 0.2);
|
|
143
|
+
--pf-global--BoxShadow--xl-right: 1rem 0 1rem -0.5rem rgba(3, 3, 3, 0.2);
|
|
144
|
+
--pf-global--BoxShadow--xl-bottom: 0 1rem 1rem -0.5rem rgba(3, 3, 3, 0.2);
|
|
145
|
+
--pf-global--BoxShadow--xl-left: -1rem 0 1rem -0.5rem rgba(3, 3, 3, 0.2);
|
|
146
|
+
--pf-global--BoxShadow--inset: inset 0 0 0.625rem 0 rgba(3, 3, 3, 0.25);
|
|
147
|
+
--pf-global--font-path: "./assets/fonts";
|
|
148
|
+
--pf-global--fonticon-path: "./assets/pficon";
|
|
149
|
+
--pf-global--spacer--xs: 0.25rem;
|
|
150
|
+
--pf-global--spacer--sm: 0.5rem;
|
|
151
|
+
--pf-global--spacer--md: 1rem;
|
|
152
|
+
--pf-global--spacer--lg: 1.5rem;
|
|
153
|
+
--pf-global--spacer--xl: 2rem;
|
|
154
|
+
--pf-global--spacer--2xl: 3rem;
|
|
155
|
+
--pf-global--spacer--3xl: 4rem;
|
|
156
|
+
--pf-global--spacer--4xl: 5rem;
|
|
157
|
+
--pf-global--spacer--form-element: 0.375rem;
|
|
158
|
+
--pf-global--gutter: 1rem;
|
|
159
|
+
--pf-global--gutter--md: 1.5rem;
|
|
160
|
+
--pf-global--ZIndex--xs: 100;
|
|
161
|
+
--pf-global--ZIndex--sm: 200;
|
|
162
|
+
--pf-global--ZIndex--md: 300;
|
|
163
|
+
--pf-global--ZIndex--lg: 400;
|
|
164
|
+
--pf-global--ZIndex--xl: 500;
|
|
165
|
+
--pf-global--ZIndex--2xl: 600;
|
|
166
|
+
--pf-global--breakpoint--xs: 0;
|
|
167
|
+
--pf-global--breakpoint--sm: 576px;
|
|
168
|
+
--pf-global--breakpoint--md: 768px;
|
|
169
|
+
--pf-global--breakpoint--lg: 992px;
|
|
170
|
+
--pf-global--breakpoint--xl: 1200px;
|
|
171
|
+
--pf-global--breakpoint--2xl: 1450px;
|
|
172
|
+
--pf-global--link--Color: #06c;
|
|
173
|
+
--pf-global--link--Color--hover: #004080;
|
|
174
|
+
--pf-global--link--Color--light: #2b9af3;
|
|
175
|
+
--pf-global--link--Color--light--hover: #73bcf7;
|
|
176
|
+
--pf-global--link--Color--dark: #06c;
|
|
177
|
+
--pf-global--link--Color--dark--hover: #004080;
|
|
178
|
+
--pf-global--link--Color--visited: #40199a;
|
|
179
|
+
--pf-global--link--TextDecoration: none;
|
|
180
|
+
--pf-global--link--TextDecoration--hover: underline;
|
|
181
|
+
--pf-global--BorderWidth--sm: 1px;
|
|
182
|
+
--pf-global--BorderWidth--md: 2px;
|
|
183
|
+
--pf-global--BorderWidth--lg: 3px;
|
|
184
|
+
--pf-global--BorderWidth--xl: 4px;
|
|
185
|
+
--pf-global--BorderColor--100: #d2d2d2;
|
|
186
|
+
--pf-global--BorderColor--200: #8a8d90;
|
|
187
|
+
--pf-global--BorderColor--300: #f0f0f0;
|
|
188
|
+
--pf-global--BorderColor--dark-100: #d2d2d2;
|
|
189
|
+
--pf-global--BorderColor--light-100: #b8bbbe;
|
|
190
|
+
--pf-global--BorderRadius--sm: 3px;
|
|
191
|
+
--pf-global--BorderRadius--lg: 30em;
|
|
192
|
+
--pf-global--icon--Color--light: #6a6e73;
|
|
193
|
+
--pf-global--icon--Color--dark: #151515;
|
|
194
|
+
--pf-global--icon--FontSize--sm: 0.625rem;
|
|
195
|
+
--pf-global--icon--FontSize--md: 1.125rem;
|
|
196
|
+
--pf-global--icon--FontSize--lg: 1.5rem;
|
|
197
|
+
--pf-global--icon--FontSize--xl: 3.375rem;
|
|
198
|
+
--pf-global--FontFamily--sans-serif: "RedHatText", "Overpass", overpass, helvetica, arial, sans-serif;
|
|
199
|
+
--pf-global--FontFamily--heading--sans-serif: "RedHatDisplay", "Overpass", overpass, helvetica, arial, sans-serif;
|
|
200
|
+
--pf-global--FontFamily--monospace: "Liberation Mono", consolas, "SFMono-Regular", menlo, monaco, "Courier New", monospace;
|
|
201
|
+
--pf-global--FontFamily--overpass--sans-serif: "overpass", overpass, "open sans", -apple-system, blinkmacsystemfont, "Segoe UI", roboto, "Helvetica Neue", arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
|
|
202
|
+
--pf-global--FontFamily--overpass--monospace: "overpass-mono", overpass-mono, "SFMono-Regular", menlo, monaco, consolas, "Liberation Mono", "Courier New", monospace;
|
|
203
|
+
--pf-global--FontSize--4xl: 2.25rem;
|
|
204
|
+
--pf-global--FontSize--3xl: 1.75rem;
|
|
205
|
+
--pf-global--FontSize--2xl: 1.5rem;
|
|
206
|
+
--pf-global--FontSize--xl: 1.25rem;
|
|
207
|
+
--pf-global--FontSize--lg: 1.125rem;
|
|
208
|
+
--pf-global--FontSize--md: 1rem;
|
|
209
|
+
--pf-global--FontSize--sm: 0.875rem;
|
|
210
|
+
--pf-global--FontSize--xs: 0.75rem;
|
|
211
|
+
--pf-global--FontWeight--light: 300;
|
|
212
|
+
--pf-global--FontWeight--normal: 400;
|
|
213
|
+
--pf-global--FontWeight--semi-bold: 700;
|
|
214
|
+
--pf-global--FontWeight--overpass--semi-bold: 500;
|
|
215
|
+
--pf-global--FontWeight--bold: 700;
|
|
216
|
+
--pf-global--FontWeight--overpass--bold: 600;
|
|
217
|
+
--pf-global--LineHeight--sm: 1.3;
|
|
218
|
+
--pf-global--LineHeight--md: 1.5;
|
|
219
|
+
--pf-global--ListStyle: disc outside;
|
|
220
|
+
--pf-global--Transition: all 250ms cubic-bezier(0.42, 0, 0.58, 1);
|
|
221
|
+
--pf-global--TimingFunction: cubic-bezier(0.645, 0.045, 0.355, 1);
|
|
222
|
+
--pf-global--TransitionDuration: 250ms;
|
|
223
|
+
--pf-global--arrow--width: 0.9375rem;
|
|
224
|
+
--pf-global--arrow--width-lg: 1.5625rem;
|
|
225
|
+
--pf-global--target-size--MinWidth: 44px;
|
|
226
|
+
--pf-global--target-size--MinHeight: 44px; }
|
|
227
|
+
|
|
228
|
+
.pf-m-overpass-font {
|
|
229
|
+
--pf-global--FontFamily--sans-serif: var(--pf-global--FontFamily--overpass--sans-serif);
|
|
230
|
+
--pf-global--FontFamily--heading--sans-serif: var(--pf-global--FontFamily--sans-serif);
|
|
231
|
+
--pf-global--FontFamily--monospace: var(--pf-global--FontFamily--overpass--monospace);
|
|
232
|
+
--pf-global--FontWeight--semi-bold: var(--pf-global--FontWeight--overpass--semi-bold);
|
|
233
|
+
--pf-global--FontWeight--bold: var(--pf-global--FontWeight--overpass--bold); }
|
|
234
|
+
|
|
235
|
+
.pf-c-drawer {
|
|
236
|
+
--pf-c-drawer__section--BackgroundColor: var(--pf-global--BackgroundColor--100);
|
|
237
|
+
--pf-c-drawer__section--m-light-200--BackgroundColor: var(--pf-global--BackgroundColor--200);
|
|
238
|
+
--pf-c-drawer__content--FlexBasis: 100%;
|
|
239
|
+
--pf-c-drawer__content--BackgroundColor: var(--pf-global--BackgroundColor--100);
|
|
240
|
+
--pf-c-drawer__content--m-light-200--BackgroundColor: var(--pf-global--BackgroundColor--200);
|
|
241
|
+
--pf-c-drawer__content--ZIndex: var(--pf-global--ZIndex--xs);
|
|
242
|
+
--pf-c-drawer__panel--MinWidth: 50%;
|
|
243
|
+
--pf-c-drawer__panel--MaxHeight: auto;
|
|
244
|
+
--pf-c-drawer__panel--ZIndex: var(--pf-global--ZIndex--sm);
|
|
245
|
+
--pf-c-drawer__panel--BackgroundColor: var(--pf-global--BackgroundColor--100);
|
|
246
|
+
--pf-c-drawer__panel--m-light-200--BackgroundColor: var(--pf-global--BackgroundColor--200);
|
|
247
|
+
--pf-c-drawer__panel--TransitionDuration: var(--pf-global--TransitionDuration);
|
|
248
|
+
--pf-c-drawer__panel--TransitionProperty: margin, transform, box-shadow, flex-basis;
|
|
249
|
+
--pf-c-drawer__panel--FlexBasis: 100%;
|
|
250
|
+
--pf-c-drawer__panel--md--FlexBasis--min: 1.5rem;
|
|
251
|
+
--pf-c-drawer__panel--md--FlexBasis: 50%;
|
|
252
|
+
--pf-c-drawer__panel--md--FlexBasis--max: 100%;
|
|
253
|
+
--pf-c-drawer__panel--xl--MinWidth: 28.125rem;
|
|
254
|
+
--pf-c-drawer__panel--xl--FlexBasis: 28.125rem;
|
|
255
|
+
--pf-c-drawer--m-panel-bottom__panel--md--MinHeight: 50%;
|
|
256
|
+
--pf-c-drawer--m-panel-bottom__panel--xl--MinHeight: 18.75rem;
|
|
257
|
+
--pf-c-drawer--m-panel-bottom__panel--xl--FlexBasis: 18.75rem;
|
|
258
|
+
--pf-c-drawer__panel--m-resizable--FlexDirection: row;
|
|
259
|
+
--pf-c-drawer__panel--m-resizable--md--FlexBasis--min: var(--pf-c-drawer__splitter--m-vertical--Width);
|
|
260
|
+
--pf-c-drawer__panel--m-resizable--MinWidth: 1.5rem;
|
|
261
|
+
--pf-c-drawer--m-panel-bottom__panel--m-resizable--FlexDirection: column;
|
|
262
|
+
--pf-c-drawer--m-panel-bottom__panel--m-resizable--md--FlexBasis--min: 1.5rem;
|
|
263
|
+
--pf-c-drawer--m-panel-bottom__panel--m-resizable--MinHeight: 1.5rem;
|
|
264
|
+
--pf-c-drawer--child--PaddingTop: var(--pf-global--spacer--md);
|
|
265
|
+
--pf-c-drawer--child--PaddingRight: var(--pf-global--spacer--md);
|
|
266
|
+
--pf-c-drawer--child--PaddingBottom: var(--pf-global--spacer--md);
|
|
267
|
+
--pf-c-drawer--child--PaddingLeft: var(--pf-global--spacer--md);
|
|
268
|
+
--pf-c-drawer--child--md--PaddingTop: var(--pf-global--spacer--lg);
|
|
269
|
+
--pf-c-drawer--child--md--PaddingRight: var(--pf-global--spacer--lg);
|
|
270
|
+
--pf-c-drawer--child--md--PaddingBottom: var(--pf-global--spacer--lg);
|
|
271
|
+
--pf-c-drawer--child--md--PaddingLeft: var(--pf-global--spacer--lg);
|
|
272
|
+
--pf-c-drawer--child--m-padding--PaddingTop: var(--pf-global--spacer--md);
|
|
273
|
+
--pf-c-drawer--child--m-padding--PaddingRight: var(--pf-global--spacer--md);
|
|
274
|
+
--pf-c-drawer--child--m-padding--PaddingBottom: var(--pf-global--spacer--md);
|
|
275
|
+
--pf-c-drawer--child--m-padding--PaddingLeft: var(--pf-global--spacer--md);
|
|
276
|
+
--pf-c-drawer--child--m-padding--md--PaddingTop: var(--pf-global--spacer--lg);
|
|
277
|
+
--pf-c-drawer--child--m-padding--md--PaddingRight: var(--pf-global--spacer--lg);
|
|
278
|
+
--pf-c-drawer--child--m-padding--md--PaddingBottom: var(--pf-global--spacer--lg);
|
|
279
|
+
--pf-c-drawer--child--m-padding--md--PaddingLeft: var(--pf-global--spacer--lg);
|
|
280
|
+
--pf-c-drawer__content--child--PaddingTop: 0;
|
|
281
|
+
--pf-c-drawer__content--child--PaddingRight: 0;
|
|
282
|
+
--pf-c-drawer__content--child--PaddingBottom: 0;
|
|
283
|
+
--pf-c-drawer__content--child--PaddingLeft: 0;
|
|
284
|
+
--pf-c-drawer__splitter--Height: 0.5625rem;
|
|
285
|
+
--pf-c-drawer__splitter--Width: 100%;
|
|
286
|
+
--pf-c-drawer__splitter--BackgroundColor: var(--pf-global--BackgroundColor--100);
|
|
287
|
+
--pf-c-drawer__splitter--Cursor: row-resize;
|
|
288
|
+
--pf-c-drawer__splitter--m-vertical--Height: 100%;
|
|
289
|
+
--pf-c-drawer__splitter--m-vertical--Width: 0.5625rem;
|
|
290
|
+
--pf-c-drawer__splitter--m-vertical--Cursor: col-resize;
|
|
291
|
+
--pf-c-drawer--m-inline__splitter--focus--OutlineOffset: -0.0625rem;
|
|
292
|
+
--pf-c-drawer__splitter--after--BorderColor: var(--pf-global--BorderColor--100);
|
|
293
|
+
--pf-c-drawer__splitter--after--border-width--base: var(--pf-global--BorderWidth--sm);
|
|
294
|
+
--pf-c-drawer__splitter--after--BorderTopWidth: 0;
|
|
295
|
+
--pf-c-drawer__splitter--after--BorderRightWidth: var(--pf-c-drawer__splitter--after--border-width--base);
|
|
296
|
+
--pf-c-drawer__splitter--after--BorderBottomWidth: 0;
|
|
297
|
+
--pf-c-drawer__splitter--after--BorderLeftWidth: 0;
|
|
298
|
+
--pf-c-drawer--m-panel-left__splitter--after--BorderLeftWidth: var(--pf-c-drawer__splitter--after--border-width--base);
|
|
299
|
+
--pf-c-drawer--m-panel-bottom__splitter--after--BorderBottomWidth: var(--pf-c-drawer__splitter--after--border-width--base);
|
|
300
|
+
--pf-c-drawer--m-inline__splitter--m-vertical--Width: 0.625rem;
|
|
301
|
+
--pf-c-drawer--m-inline__splitter-handle--Left: 50%;
|
|
302
|
+
--pf-c-drawer--m-inline__splitter--after--BorderRightWidth: var(--pf-c-drawer__splitter--after--border-width--base);
|
|
303
|
+
--pf-c-drawer--m-inline__splitter--after--BorderLeftWidth: var(--pf-c-drawer__splitter--after--border-width--base);
|
|
304
|
+
--pf-c-drawer--m-inline--m-panel-bottom__splitter--Height: 0.625rem;
|
|
305
|
+
--pf-c-drawer--m-inline--m-panel-bottom__splitter-handle--Top: 50%;
|
|
306
|
+
--pf-c-drawer--m-inline--m-panel-bottom__splitter--after--BorderTopWidth: var(--pf-c-drawer__splitter--after--border-width--base);
|
|
307
|
+
--pf-c-drawer__splitter-handle--Top: 50%;
|
|
308
|
+
--pf-c-drawer__splitter-handle--Left: calc(50% - var(--pf-c-drawer__splitter--after--border-width--base));
|
|
309
|
+
--pf-c-drawer--m-panel-left__splitter-handle--Left: 50%;
|
|
310
|
+
--pf-c-drawer--m-panel-bottom__splitter-handle--Top: calc(50% - var(--pf-c-drawer__splitter--after--border-width--base));
|
|
311
|
+
--pf-c-drawer__splitter-handle--after--BorderColor: var(--pf-global--Color--200);
|
|
312
|
+
--pf-c-drawer__splitter-handle--after--BorderTopWidth: var(--pf-global--BorderWidth--sm);
|
|
313
|
+
--pf-c-drawer__splitter-handle--after--BorderRightWidth: 0;
|
|
314
|
+
--pf-c-drawer__splitter-handle--after--BorderBottomWidth: var(--pf-global--BorderWidth--sm);
|
|
315
|
+
--pf-c-drawer__splitter-handle--after--BorderLeftWidth: 0;
|
|
316
|
+
--pf-c-drawer__splitter--hover__splitter-handle--after--BorderColor: var(--pf-global--Color--100);
|
|
317
|
+
--pf-c-drawer__splitter--focus__splitter-handle--after--BorderColor: var(--pf-global--Color--100);
|
|
318
|
+
--pf-c-drawer__splitter--m-vertical__splitter-handle--after--BorderTopWidth: 0;
|
|
319
|
+
--pf-c-drawer__splitter--m-vertical__splitter-handle--after--BorderRightWidth: var(--pf-global--BorderWidth--sm);
|
|
320
|
+
--pf-c-drawer__splitter--m-vertical__splitter-handle--after--BorderBottomWidth: 0;
|
|
321
|
+
--pf-c-drawer__splitter--m-vertical__splitter-handle--after--BorderLeftWidth: var(--pf-global--BorderWidth--sm);
|
|
322
|
+
--pf-c-drawer__splitter-handle--after--Width: 0.75rem;
|
|
323
|
+
--pf-c-drawer__splitter-handle--after--Height: 0.25rem;
|
|
324
|
+
--pf-c-drawer__splitter--m-vertical__splitter-handle--after--Width: 0.25rem;
|
|
325
|
+
--pf-c-drawer__splitter--m-vertical__splitter-handle--after--Height: 0.75rem;
|
|
326
|
+
--pf-c-drawer__actions--MarginTop: calc(var(pf-global--spacer--form-element) * -1);
|
|
327
|
+
--pf-c-drawer__actions--MarginRight: calc(var(pf-global--spacer--form-element) * -1);
|
|
328
|
+
--pf-c-drawer__panel--BoxShadow: none;
|
|
329
|
+
--pf-c-drawer--m-expanded__panel--BoxShadow: var(--pf-global--BoxShadow--lg-left);
|
|
330
|
+
--pf-c-drawer--m-expanded--m-panel-left__panel--BoxShadow: var(--pf-global--BoxShadow--lg-right);
|
|
331
|
+
--pf-c-drawer--m-expanded--m-panel-bottom__panel--BoxShadow: var(--pf-global--BoxShadow--lg-top);
|
|
332
|
+
--pf-c-drawer__panel--after--Width: var(--pf-global--BorderWidth--sm);
|
|
333
|
+
--pf-c-drawer--m-panel-bottom__panel--after--Height: var(--pf-global--BorderWidth--sm);
|
|
334
|
+
--pf-c-drawer__panel--after--BackgroundColor: transparent;
|
|
335
|
+
--pf-c-drawer--m-inline--m-expanded__panel--after--BackgroundColor: var(--pf-global--BorderColor--100);
|
|
336
|
+
--pf-c-drawer--m-inline__panel--PaddingLeft: var(--pf-c-drawer__panel--after--Width);
|
|
337
|
+
--pf-c-drawer--m-panel-left--m-inline__panel--PaddingRight: var(--pf-c-drawer__panel--after--Width);
|
|
338
|
+
--pf-c-drawer--m-panel-bottom--m-inline__panel--PaddingTop: var(--pf-c-drawer__panel--after--Width);
|
|
339
|
+
display: flex;
|
|
340
|
+
flex-direction: column;
|
|
341
|
+
height: 100%;
|
|
342
|
+
overflow-x: hidden; }
|
|
343
|
+
@media screen and (min-width: 768px) {
|
|
344
|
+
.pf-c-drawer {
|
|
345
|
+
--pf-c-drawer--child--PaddingTop: var(--pf-c-drawer--child--md--PaddingTop);
|
|
346
|
+
--pf-c-drawer--child--PaddingRight: var(--pf-c-drawer--child--md--PaddingRight);
|
|
347
|
+
--pf-c-drawer--child--PaddingBottom: var(--pf-c-drawer--child--md--PaddingBottom);
|
|
348
|
+
--pf-c-drawer--child--PaddingLeft: var(--pf-c-drawer--child--md--PaddingLeft);
|
|
349
|
+
--pf-c-drawer--child--m-padding--PaddingTop: var(--pf-c-drawer--child--m-padding--md--PaddingTop);
|
|
350
|
+
--pf-c-drawer--child--m-padding--PaddingRight: var(--pf-c-drawer--child--m-padding--md--PaddingRight);
|
|
351
|
+
--pf-c-drawer--child--m-padding--PaddingBottom: var(--pf-c-drawer--child--m-padding--md--PaddingBottom);
|
|
352
|
+
--pf-c-drawer--child--m-padding--PaddingLeft: var(--pf-c-drawer--child--m-padding--md--PaddingLeft); } }
|
|
353
|
+
@media screen and (min-width: 1200px) {
|
|
354
|
+
.pf-c-drawer {
|
|
355
|
+
--pf-c-drawer__panel--MinWidth: var(--pf-c-drawer__panel--xl--MinWidth); }
|
|
356
|
+
.pf-c-drawer.pf-m-panel-bottom {
|
|
357
|
+
--pf-c-drawer__panel--MinWidth: auto;
|
|
358
|
+
--pf-c-drawer__panel--MinHeight: var(--pf-c-drawer--m-panel-bottom__panel--xl--MinHeight); } }
|
|
359
|
+
.pf-c-drawer.pf-m-inline > .pf-c-drawer__main > .pf-c-drawer__panel, .pf-c-drawer.pf-m-static > .pf-c-drawer__main > .pf-c-drawer__panel {
|
|
360
|
+
padding-left: var(--pf-c-drawer--m-inline__panel--PaddingLeft); }
|
|
361
|
+
.pf-c-drawer.pf-m-panel-left > .pf-c-drawer__main > .pf-c-drawer__panel {
|
|
362
|
+
order: 0;
|
|
363
|
+
margin-right: calc(var(--pf-c-drawer__panel--FlexBasis) * -1);
|
|
364
|
+
transform: translateX(-100%); }
|
|
365
|
+
.pf-c-drawer.pf-m-panel-left > .pf-c-drawer__main > .pf-c-drawer__content {
|
|
366
|
+
order: 1; }
|
|
367
|
+
.pf-c-drawer.pf-m-panel-bottom > .pf-c-drawer__main {
|
|
368
|
+
flex-direction: column; }
|
|
369
|
+
.pf-c-drawer.pf-m-expanded > .pf-c-drawer__main > .pf-c-drawer__panel {
|
|
370
|
+
transform: translateX(-100%); }
|
|
371
|
+
.pf-c-drawer.pf-m-expanded.pf-m-panel-left > .pf-c-drawer__main > .pf-c-drawer__panel {
|
|
372
|
+
transform: translateX(0); }
|
|
373
|
+
.pf-c-drawer.pf-m-expanded.pf-m-panel-bottom > .pf-c-drawer__main > .pf-c-drawer__panel {
|
|
374
|
+
transform: translate(0, -100%); }
|
|
375
|
+
.pf-c-drawer.pf-m-resizing {
|
|
376
|
+
--pf-c-drawer__panel--TransitionProperty: none;
|
|
377
|
+
pointer-events: none; }
|
|
378
|
+
.pf-c-drawer.pf-m-resizing .pf-c-drawer__splitter {
|
|
379
|
+
pointer-events: auto; }
|
|
380
|
+
|
|
381
|
+
.pf-c-drawer__section {
|
|
382
|
+
flex-grow: 0;
|
|
383
|
+
background-color: var(--pf-c-drawer__section--BackgroundColor); }
|
|
384
|
+
.pf-c-drawer__section.pf-m-no-background {
|
|
385
|
+
--pf-c-drawer__section--BackgroundColor: transparent; }
|
|
386
|
+
.pf-c-drawer__section.pf-m-light-200 {
|
|
387
|
+
--pf-c-drawer__section--BackgroundColor: var(--pf-c-drawer__section--m-light-200--BackgroundColor); }
|
|
388
|
+
|
|
389
|
+
.pf-c-drawer__main {
|
|
390
|
+
display: flex;
|
|
391
|
+
flex: 1;
|
|
392
|
+
overflow: hidden; }
|
|
393
|
+
|
|
394
|
+
.pf-c-drawer__content,
|
|
395
|
+
.pf-c-drawer__panel,
|
|
396
|
+
.pf-c-drawer__panel-main {
|
|
397
|
+
display: flex;
|
|
398
|
+
flex-direction: column;
|
|
399
|
+
flex-shrink: 0;
|
|
400
|
+
overflow: auto; }
|
|
401
|
+
|
|
402
|
+
.pf-c-drawer__content {
|
|
403
|
+
z-index: var(--pf-c-drawer__content--ZIndex);
|
|
404
|
+
flex-basis: var(--pf-c-drawer__content--FlexBasis);
|
|
405
|
+
order: 0;
|
|
406
|
+
background-color: var(--pf-c-drawer__content--BackgroundColor); }
|
|
407
|
+
.pf-c-drawer__content.pf-m-no-background {
|
|
408
|
+
--pf-c-drawer__content--BackgroundColor: transparent; }
|
|
409
|
+
.pf-c-drawer__content.pf-m-light-200 {
|
|
410
|
+
--pf-c-drawer__content--BackgroundColor: var(--pf-c-drawer__content--m-light-200--BackgroundColor); }
|
|
411
|
+
.pf-c-drawer__content > .pf-c-drawer__body {
|
|
412
|
+
padding: var(--pf-c-drawer__content--child--PaddingTop) var(--pf-c-drawer__content--child--PaddingRight) var(--pf-c-drawer__content--child--PaddingBottom) var(--pf-c-drawer__content--child--PaddingLeft); }
|
|
413
|
+
|
|
414
|
+
.pf-c-drawer__panel {
|
|
415
|
+
position: relative;
|
|
416
|
+
z-index: var(--pf-c-drawer__panel--ZIndex);
|
|
417
|
+
flex-basis: var(--pf-c-drawer__panel--FlexBasis);
|
|
418
|
+
order: 1;
|
|
419
|
+
max-height: var(--pf-c-drawer__panel--MaxHeight);
|
|
420
|
+
overflow: auto;
|
|
421
|
+
background-color: var(--pf-c-drawer__panel--BackgroundColor);
|
|
422
|
+
box-shadow: var(--pf-c-drawer__panel--BoxShadow);
|
|
423
|
+
transition-duration: var(--pf-c-drawer__panel--TransitionDuration);
|
|
424
|
+
transition-property: var(--pf-c-drawer__panel--TransitionProperty);
|
|
425
|
+
-webkit-overflow-scrolling: touch; }
|
|
426
|
+
.pf-c-drawer__panel::after {
|
|
427
|
+
position: absolute;
|
|
428
|
+
top: 0;
|
|
429
|
+
left: 0;
|
|
430
|
+
width: var(--pf-c-drawer__panel--after--Width);
|
|
431
|
+
height: 100%;
|
|
432
|
+
content: "";
|
|
433
|
+
background-color: var(--pf-c-drawer__panel--after--BackgroundColor); }
|
|
434
|
+
.pf-c-drawer__panel.pf-m-no-background {
|
|
435
|
+
--pf-c-drawer__panel--BackgroundColor: transparent; }
|
|
436
|
+
.pf-c-drawer__panel.pf-m-light-200 {
|
|
437
|
+
--pf-c-drawer__panel--BackgroundColor: var(--pf-c-drawer__panel--m-light-200--BackgroundColor); }
|
|
438
|
+
@media screen and (min-width: 768px) {
|
|
439
|
+
.pf-c-drawer__panel {
|
|
440
|
+
--pf-c-drawer__panel--FlexBasis:
|
|
441
|
+
max(
|
|
442
|
+
var(--pf-c-drawer__panel--md--FlexBasis--min),
|
|
443
|
+
min(var(--pf-c-drawer__panel--md--FlexBasis), var(--pf-c-drawer__panel--md--FlexBasis--max))
|
|
444
|
+
); } }
|
|
445
|
+
@media screen and (min-width: 1200px) {
|
|
446
|
+
.pf-c-drawer__panel {
|
|
447
|
+
--pf-c-drawer__panel--md--FlexBasis: var(--pf-c-drawer__panel--xl--FlexBasis); }
|
|
448
|
+
.pf-c-drawer.pf-m-panel-bottom .pf-c-drawer__panel {
|
|
449
|
+
--pf-c-drawer__panel--md--FlexBasis: var(--pf-c-drawer--m-panel-bottom__panel--xl--FlexBasis); } }
|
|
450
|
+
|
|
451
|
+
.pf-c-drawer__panel-main {
|
|
452
|
+
flex-grow: 1; }
|
|
453
|
+
|
|
454
|
+
@keyframes pf-remove-tab-focus {
|
|
455
|
+
to {
|
|
456
|
+
visibility: hidden; } }
|
|
457
|
+
|
|
458
|
+
.pf-c-drawer__panel[hidden] {
|
|
459
|
+
animation-name: pf-remove-tab-focus;
|
|
460
|
+
animation-delay: var(--pf-c-drawer__panel--TransitionDuration);
|
|
461
|
+
animation-fill-mode: forwards; }
|
|
462
|
+
|
|
463
|
+
.pf-c-drawer__head {
|
|
464
|
+
display: grid;
|
|
465
|
+
grid-template-columns: auto;
|
|
466
|
+
grid-auto-columns: max-content; }
|
|
467
|
+
.pf-c-drawer__head > * {
|
|
468
|
+
grid-column: 1; }
|
|
469
|
+
|
|
470
|
+
.pf-c-drawer__actions {
|
|
471
|
+
grid-column: 2;
|
|
472
|
+
grid-row: 1;
|
|
473
|
+
display: flex;
|
|
474
|
+
align-self: baseline;
|
|
475
|
+
margin-top: var(--pf-c-drawer__actions--MarginTop);
|
|
476
|
+
margin-right: var(--pf-c-drawer__actions--MarginRight); }
|
|
477
|
+
|
|
478
|
+
.pf-c-drawer__body {
|
|
479
|
+
min-height: 0;
|
|
480
|
+
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); }
|
|
481
|
+
.pf-c-drawer__body.pf-m-no-padding {
|
|
482
|
+
padding: 0; }
|
|
483
|
+
.pf-c-drawer__body.pf-m-no-padding > .pf-c-drawer__actions,
|
|
484
|
+
.pf-c-drawer__body.pf-m-no-padding > .pf-c-drawer__head > .pf-c-drawer__actions {
|
|
485
|
+
margin-top: 0;
|
|
486
|
+
margin-right: 0; }
|
|
487
|
+
.pf-c-drawer__body.pf-m-padding {
|
|
488
|
+
padding: var(--pf-c-drawer--child--m-padding--PaddingTop) var(--pf-c-drawer--child--m-padding--PaddingRight) var(--pf-c-drawer--child--m-padding--PaddingBottom) var(--pf-c-drawer--child--m-padding--PaddingLeft); }
|
|
489
|
+
.pf-c-drawer__body:not(.pf-m-no-padding) + * {
|
|
490
|
+
padding-top: 0; }
|
|
491
|
+
.pf-c-drawer__body:last-child {
|
|
492
|
+
flex: 1 1; }
|
|
493
|
+
|
|
494
|
+
.pf-c-drawer__body > .pf-c-page__main {
|
|
495
|
+
min-height: 100%; }
|
|
496
|
+
|
|
497
|
+
.pf-c-drawer__splitter {
|
|
498
|
+
position: relative;
|
|
499
|
+
display: none;
|
|
500
|
+
width: var(--pf-c-drawer__splitter--Width);
|
|
501
|
+
height: var(--pf-c-drawer__splitter--Height);
|
|
502
|
+
cursor: var(--pf-c-drawer__splitter--Cursor);
|
|
503
|
+
visibility: hidden;
|
|
504
|
+
background-color: var(--pf-c-drawer__splitter--BackgroundColor); }
|
|
505
|
+
.pf-c-drawer__splitter.pf-m-vertical {
|
|
506
|
+
--pf-c-drawer__splitter--Height: var(--pf-c-drawer__splitter--m-vertical--Height);
|
|
507
|
+
--pf-c-drawer__splitter--Width: var(--pf-c-drawer__splitter--m-vertical--Width);
|
|
508
|
+
--pf-c-drawer__splitter--Cursor: var(--pf-c-drawer__splitter--m-vertical--Cursor);
|
|
509
|
+
--pf-c-drawer__splitter-handle--after--Width: var(--pf-c-drawer__splitter--m-vertical__splitter-handle--after--Width);
|
|
510
|
+
--pf-c-drawer__splitter-handle--after--Height: var(--pf-c-drawer__splitter--m-vertical__splitter-handle--after--Height);
|
|
511
|
+
--pf-c-drawer__splitter-handle--after--BorderTopWidth: var(--pf-c-drawer__splitter--m-vertical__splitter-handle--after--BorderTopWidth);
|
|
512
|
+
--pf-c-drawer__splitter-handle--after--BorderRightWidth: var(--pf-c-drawer__splitter--m-vertical__splitter-handle--after--BorderRightWidth);
|
|
513
|
+
--pf-c-drawer__splitter-handle--after--BorderBottomWidth: var(--pf-c-drawer__splitter--m-vertical__splitter-handle--after--BorderBottomWidth);
|
|
514
|
+
--pf-c-drawer__splitter-handle--after--BorderLeftWidth: var(--pf-c-drawer__splitter--m-vertical__splitter-handle--after--BorderLeftWidth); }
|
|
515
|
+
.pf-c-drawer__splitter:hover {
|
|
516
|
+
--pf-c-drawer__splitter-handle--after--BorderColor: var(--pf-c-drawer__splitter--hover__splitter-handle--after--BorderColor); }
|
|
517
|
+
.pf-c-drawer__splitter:focus {
|
|
518
|
+
--pf-c-drawer__splitter-handle--after--BorderColor: var(--pf-c-drawer__splitter--focus__splitter-handle--after--BorderColor); }
|
|
519
|
+
.pf-c-drawer__splitter::after {
|
|
520
|
+
position: absolute;
|
|
521
|
+
top: 0;
|
|
522
|
+
right: 0;
|
|
523
|
+
bottom: 0;
|
|
524
|
+
left: 0;
|
|
525
|
+
content: "";
|
|
526
|
+
border: solid var(--pf-c-drawer__splitter--after--BorderColor);
|
|
527
|
+
border-width: var(--pf-c-drawer__splitter--after--BorderTopWidth) var(--pf-c-drawer__splitter--after--BorderRightWidth) var(--pf-c-drawer__splitter--after--BorderBottomWidth) var(--pf-c-drawer__splitter--after--BorderLeftWidth); }
|
|
528
|
+
|
|
529
|
+
.pf-c-drawer__splitter-handle {
|
|
530
|
+
position: absolute;
|
|
531
|
+
top: var(--pf-c-drawer__splitter-handle--Top);
|
|
532
|
+
left: var(--pf-c-drawer__splitter-handle--Left);
|
|
533
|
+
transform: translate(-50%, -50%); }
|
|
534
|
+
.pf-c-drawer__splitter-handle::after {
|
|
535
|
+
display: block;
|
|
536
|
+
width: var(--pf-c-drawer__splitter-handle--after--Width);
|
|
537
|
+
height: var(--pf-c-drawer__splitter-handle--after--Height);
|
|
538
|
+
content: "";
|
|
539
|
+
border-color: var(--pf-c-drawer__splitter-handle--after--BorderColor);
|
|
540
|
+
border-style: solid;
|
|
541
|
+
border-width: var(--pf-c-drawer__splitter-handle--after--BorderTopWidth) var(--pf-c-drawer__splitter-handle--after--BorderRightWidth) var(--pf-c-drawer__splitter-handle--after--BorderBottomWidth) var(--pf-c-drawer__splitter-handle--after--BorderLeftWidth); }
|
|
542
|
+
|
|
543
|
+
@media screen and (min-width: 768px) {
|
|
544
|
+
.pf-c-drawer {
|
|
545
|
+
min-width: var(--pf-c-drawer__panel--MinWidth); }
|
|
546
|
+
.pf-c-drawer.pf-m-expanded > .pf-c-drawer__main > .pf-c-drawer__panel {
|
|
547
|
+
box-shadow: var(--pf-c-drawer--m-expanded__panel--BoxShadow); }
|
|
548
|
+
.pf-c-drawer > .pf-c-drawer__main > .pf-c-drawer__panel.pf-m-resizable {
|
|
549
|
+
--pf-c-drawer__panel--md--FlexBasis--min: var(--pf-c-drawer__panel--m-resizable--md--FlexBasis--min);
|
|
550
|
+
flex-direction: var(--pf-c-drawer__panel--m-resizable--FlexDirection);
|
|
551
|
+
min-width: var(--pf-c-drawer__panel--m-resizable--MinWidth); }
|
|
552
|
+
.pf-c-drawer > .pf-c-drawer__main > .pf-c-drawer__panel.pf-m-resizable::after {
|
|
553
|
+
width: 0;
|
|
554
|
+
height: 0; }
|
|
555
|
+
.pf-c-drawer > .pf-c-drawer__main > .pf-c-drawer__panel.pf-m-resizable > .pf-c-drawer__splitter {
|
|
556
|
+
flex-shrink: 0; }
|
|
557
|
+
.pf-c-drawer > .pf-c-drawer__main > .pf-c-drawer__panel.pf-m-resizable > .pf-c-drawer__panel-main {
|
|
558
|
+
flex-shrink: 1; }
|
|
559
|
+
.pf-c-drawer.pf-m-panel-left {
|
|
560
|
+
--pf-c-drawer--m-expanded__panel--BoxShadow: var(--pf-c-drawer--m-expanded--m-panel-left__panel--BoxShadow); }
|
|
561
|
+
.pf-c-drawer.pf-m-panel-left.pf-m-inline > .pf-c-drawer__main > .pf-c-drawer__panel, .pf-c-drawer.pf-m-panel-left.pf-m-static > .pf-c-drawer__main > .pf-c-drawer__panel {
|
|
562
|
+
padding-right: var(--pf-c-drawer--m-panel-left--m-inline__panel--PaddingRight);
|
|
563
|
+
padding-left: 0; }
|
|
564
|
+
.pf-c-drawer.pf-m-panel-left.pf-m-expanded > .pf-c-drawer__main > .pf-c-drawer__panel {
|
|
565
|
+
transform: translateX(0); }
|
|
566
|
+
.pf-c-drawer.pf-m-panel-left > .pf-c-drawer__main > .pf-c-drawer__panel::after {
|
|
567
|
+
right: 0;
|
|
568
|
+
left: auto; }
|
|
569
|
+
.pf-c-drawer.pf-m-panel-left > .pf-c-drawer__main > .pf-c-drawer__panel.pf-m-resizable > .pf-c-drawer__splitter {
|
|
570
|
+
--pf-c-drawer__splitter-handle--Left: var(--pf-c-drawer--m-panel-left__splitter-handle--Left);
|
|
571
|
+
--pf-c-drawer__splitter--after--BorderRightWidth: 0;
|
|
572
|
+
--pf-c-drawer__splitter--after--BorderLeftWidth: var(--pf-c-drawer--m-panel-left__splitter--after--BorderLeftWidth);
|
|
573
|
+
order: 1; }
|
|
574
|
+
.pf-c-drawer.pf-m-panel-bottom {
|
|
575
|
+
--pf-c-drawer--m-expanded__panel--BoxShadow: var(--pf-c-drawer--m-expanded--m-panel-bottom__panel--BoxShadow);
|
|
576
|
+
--pf-c-drawer__panel--MaxHeight: 100%;
|
|
577
|
+
--pf-c-drawer__panel--FlexBasis--min: var(--pf-c-drawer--m-panel-bottom__panel--FlexBasis--min);
|
|
578
|
+
min-width: auto;
|
|
579
|
+
min-height: var(--pf-c-drawer--m-panel-bottom__panel--md--MinHeight); }
|
|
580
|
+
.pf-c-drawer.pf-m-panel-bottom.pf-m-inline > .pf-c-drawer__main > .pf-c-drawer__panel, .pf-c-drawer.pf-m-panel-bottom.pf-m-static > .pf-c-drawer__main > .pf-c-drawer__panel {
|
|
581
|
+
padding-top: var(--pf-c-drawer--m-panel-bottom--m-inline__panel--PaddingTop);
|
|
582
|
+
padding-left: 0; }
|
|
583
|
+
.pf-c-drawer.pf-m-panel-bottom > .pf-c-drawer__main > .pf-c-drawer__panel::after {
|
|
584
|
+
top: 0;
|
|
585
|
+
left: auto;
|
|
586
|
+
width: 100%;
|
|
587
|
+
height: var(--pf-c-drawer--m-panel-bottom__panel--after--Height); }
|
|
588
|
+
.pf-c-drawer.pf-m-panel-bottom > .pf-c-drawer__main > .pf-c-drawer__panel.pf-m-resizable {
|
|
589
|
+
--pf-c-drawer__panel--md--FlexBasis--min: var(--pf-c-drawer--m-panel-bottom__panel--m-resizable--md--FlexBasis--min);
|
|
590
|
+
--pf-c-drawer__panel--m-resizable--FlexDirection: var(--pf-c-drawer--m-panel-bottom__panel--m-resizable--FlexDirection);
|
|
591
|
+
--pf-c-drawer__panel--m-resizable--MinWidth: 0;
|
|
592
|
+
min-height: var(--pf-c-drawer--m-panel-bottom__panel--m-resizable--MinHeight); }
|
|
593
|
+
.pf-c-drawer.pf-m-panel-bottom > .pf-c-drawer__main > .pf-c-drawer__panel.pf-m-resizable > .pf-c-drawer__splitter {
|
|
594
|
+
--pf-c-drawer__splitter-handle--Top: var(--pf-c-drawer--m-panel-bottom__splitter-handle--Top);
|
|
595
|
+
--pf-c-drawer__splitter--after--BorderRightWidth: 0;
|
|
596
|
+
--pf-c-drawer__splitter--after--BorderBottomWidth: var(--pf-c-drawer--m-panel-bottom__splitter--after--BorderBottomWidth); }
|
|
597
|
+
.pf-c-drawer.pf-m-inline > .pf-c-drawer__main > .pf-c-drawer__panel.pf-m-resizable > .pf-c-drawer__splitter {
|
|
598
|
+
--pf-c-drawer__splitter--m-vertical--Width: var(--pf-c-drawer--m-inline__splitter--m-vertical--Width);
|
|
599
|
+
--pf-c-drawer__splitter-handle--Left: var(--pf-c-drawer--m-inline__splitter-handle--Left);
|
|
600
|
+
--pf-c-drawer__splitter--after--BorderRightWidth: var(--pf-c-drawer--m-inline__splitter--after--BorderRightWidth);
|
|
601
|
+
--pf-c-drawer__splitter--after--BorderLeftWidth: var(--pf-c-drawer--m-inline__splitter--after--BorderLeftWidth);
|
|
602
|
+
outline-offset: var(--pf-c-drawer--m-inline__splitter--focus--OutlineOffset); }
|
|
603
|
+
.pf-c-drawer.pf-m-inline.pf-m-panel-bottom > .pf-c-drawer__main > .pf-c-drawer__panel.pf-m-resizable > .pf-c-drawer__splitter {
|
|
604
|
+
--pf-c-drawer__splitter--Height: var(--pf-c-drawer--m-inline--m-panel-bottom__splitter--Height);
|
|
605
|
+
--pf-c-drawer__splitter-handle--Top: var(--pf-c-drawer--m-inline--m-panel-bottom__splitter-handle--Top);
|
|
606
|
+
--pf-c-drawer__splitter--after--BorderTopWidth: var(--pf-c-drawer--m-inline--m-panel-bottom__splitter--after--BorderTopWidth);
|
|
607
|
+
--pf-c-drawer__splitter--after--BorderRightWidth: 0;
|
|
608
|
+
--pf-c-drawer__splitter--after--BorderLeftWidth: 0; }
|
|
609
|
+
.pf-c-drawer > .pf-c-drawer__main > .pf-c-drawer__panel.pf-m-no-border,
|
|
610
|
+
.pf-c-drawer.pf-m-panel-left > .pf-c-drawer__main > .pf-c-drawer__panel.pf-m-no-border {
|
|
611
|
+
--pf-c-drawer--m-expanded__panel--BoxShadow: none; }
|
|
612
|
+
.pf-c-drawer__splitter {
|
|
613
|
+
display: block;
|
|
614
|
+
visibility: visible; } }
|
|
615
|
+
|
|
616
|
+
@media (min-width: 768px) {
|
|
617
|
+
.pf-c-drawer__panel.pf-m-width-25 {
|
|
618
|
+
--pf-c-drawer__panel--md--FlexBasis: 25%; }
|
|
619
|
+
.pf-c-drawer__panel.pf-m-width-33 {
|
|
620
|
+
--pf-c-drawer__panel--md--FlexBasis: 33%; }
|
|
621
|
+
.pf-c-drawer__panel.pf-m-width-50 {
|
|
622
|
+
--pf-c-drawer__panel--md--FlexBasis: 50%; }
|
|
623
|
+
.pf-c-drawer__panel.pf-m-width-66 {
|
|
624
|
+
--pf-c-drawer__panel--md--FlexBasis: 66%; }
|
|
625
|
+
.pf-c-drawer__panel.pf-m-width-75 {
|
|
626
|
+
--pf-c-drawer__panel--md--FlexBasis: 75%; }
|
|
627
|
+
.pf-c-drawer__panel.pf-m-width-100 {
|
|
628
|
+
--pf-c-drawer__panel--md--FlexBasis: 100%; } }
|
|
629
|
+
|
|
630
|
+
@media (min-width: 992px) {
|
|
631
|
+
.pf-c-drawer__panel.pf-m-width-25-on-lg {
|
|
632
|
+
--pf-c-drawer__panel--md--FlexBasis: 25%; }
|
|
633
|
+
.pf-c-drawer__panel.pf-m-width-33-on-lg {
|
|
634
|
+
--pf-c-drawer__panel--md--FlexBasis: 33%; }
|
|
635
|
+
.pf-c-drawer__panel.pf-m-width-50-on-lg {
|
|
636
|
+
--pf-c-drawer__panel--md--FlexBasis: 50%; }
|
|
637
|
+
.pf-c-drawer__panel.pf-m-width-66-on-lg {
|
|
638
|
+
--pf-c-drawer__panel--md--FlexBasis: 66%; }
|
|
639
|
+
.pf-c-drawer__panel.pf-m-width-75-on-lg {
|
|
640
|
+
--pf-c-drawer__panel--md--FlexBasis: 75%; }
|
|
641
|
+
.pf-c-drawer__panel.pf-m-width-100-on-lg {
|
|
642
|
+
--pf-c-drawer__panel--md--FlexBasis: 100%; } }
|
|
643
|
+
|
|
644
|
+
@media (min-width: 1200px) {
|
|
645
|
+
.pf-c-drawer__panel.pf-m-width-25-on-xl {
|
|
646
|
+
--pf-c-drawer__panel--md--FlexBasis: 25%; }
|
|
647
|
+
.pf-c-drawer__panel.pf-m-width-33-on-xl {
|
|
648
|
+
--pf-c-drawer__panel--md--FlexBasis: 33%; }
|
|
649
|
+
.pf-c-drawer__panel.pf-m-width-50-on-xl {
|
|
650
|
+
--pf-c-drawer__panel--md--FlexBasis: 50%; }
|
|
651
|
+
.pf-c-drawer__panel.pf-m-width-66-on-xl {
|
|
652
|
+
--pf-c-drawer__panel--md--FlexBasis: 66%; }
|
|
653
|
+
.pf-c-drawer__panel.pf-m-width-75-on-xl {
|
|
654
|
+
--pf-c-drawer__panel--md--FlexBasis: 75%; }
|
|
655
|
+
.pf-c-drawer__panel.pf-m-width-100-on-xl {
|
|
656
|
+
--pf-c-drawer__panel--md--FlexBasis: 100%; } }
|
|
657
|
+
|
|
658
|
+
@media (min-width: 1450px) {
|
|
659
|
+
.pf-c-drawer__panel.pf-m-width-25-on-2xl {
|
|
660
|
+
--pf-c-drawer__panel--md--FlexBasis: 25%; }
|
|
661
|
+
.pf-c-drawer__panel.pf-m-width-33-on-2xl {
|
|
662
|
+
--pf-c-drawer__panel--md--FlexBasis: 33%; }
|
|
663
|
+
.pf-c-drawer__panel.pf-m-width-50-on-2xl {
|
|
664
|
+
--pf-c-drawer__panel--md--FlexBasis: 50%; }
|
|
665
|
+
.pf-c-drawer__panel.pf-m-width-66-on-2xl {
|
|
666
|
+
--pf-c-drawer__panel--md--FlexBasis: 66%; }
|
|
667
|
+
.pf-c-drawer__panel.pf-m-width-75-on-2xl {
|
|
668
|
+
--pf-c-drawer__panel--md--FlexBasis: 75%; }
|
|
669
|
+
.pf-c-drawer__panel.pf-m-width-100-on-2xl {
|
|
670
|
+
--pf-c-drawer__panel--md--FlexBasis: 100%; } }
|
|
671
|
+
|
|
672
|
+
@media (min-width: 768px) {
|
|
673
|
+
.pf-c-drawer.pf-m-inline > .pf-c-drawer__main > .pf-c-drawer__content,
|
|
674
|
+
.pf-c-drawer.pf-m-static > .pf-c-drawer__main > .pf-c-drawer__content {
|
|
675
|
+
flex-shrink: 1; }
|
|
676
|
+
.pf-c-drawer.pf-m-inline > .pf-c-drawer__main > .pf-c-drawer__panel,
|
|
677
|
+
.pf-c-drawer.pf-m-static > .pf-c-drawer__main > .pf-c-drawer__panel {
|
|
678
|
+
--pf-c-drawer--m-expanded__panel--BoxShadow: none; }
|
|
679
|
+
.pf-c-drawer.pf-m-inline > .pf-c-drawer__main > .pf-c-drawer__panel:not(.pf-m-no-border)::after,
|
|
680
|
+
.pf-c-drawer.pf-m-static > .pf-c-drawer__main > .pf-c-drawer__panel:not(.pf-m-no-border)::after {
|
|
681
|
+
background-color: var(--pf-c-drawer--m-inline--m-expanded__panel--after--BackgroundColor); }
|
|
682
|
+
.pf-c-drawer.pf-m-inline > .pf-c-drawer__main > .pf-c-drawer__content {
|
|
683
|
+
overflow-x: auto; }
|
|
684
|
+
.pf-c-drawer.pf-m-inline > .pf-c-drawer__main > .pf-c-drawer__panel {
|
|
685
|
+
margin-left: calc(var(--pf-c-drawer__panel--FlexBasis) * -1);
|
|
686
|
+
transform: translateX(100%); }
|
|
687
|
+
.pf-c-drawer.pf-m-inline.pf-m-expanded > .pf-c-drawer__main > .pf-c-drawer__panel {
|
|
688
|
+
margin-left: 0;
|
|
689
|
+
transform: translateX(0); }
|
|
690
|
+
.pf-c-drawer.pf-m-inline > .pf-c-drawer__main > .pf-c-drawer__panel > .pf-c-drawer__body > .pf-c-drawer__head .pf-c-drawer__close {
|
|
691
|
+
display: unset;
|
|
692
|
+
visibility: visible; }
|
|
693
|
+
.pf-c-drawer.pf-m-inline.pf-m-panel-left > .pf-c-drawer__main > .pf-c-drawer__panel {
|
|
694
|
+
margin-right: calc(var(--pf-c-drawer__panel--FlexBasis) * -1);
|
|
695
|
+
margin-left: 0;
|
|
696
|
+
transform: translateX(-100%); }
|
|
697
|
+
.pf-c-drawer.pf-m-inline.pf-m-panel-left.pf-m-expanded > .pf-c-drawer__main > .pf-c-drawer__panel {
|
|
698
|
+
margin-right: 0;
|
|
699
|
+
transform: translateX(0); }
|
|
700
|
+
.pf-c-drawer.pf-m-inline.pf-m-panel-left > .pf-c-drawer__main > .pf-c-drawer__panel > .pf-c-drawer__body > .pf-c-drawer__head .pf-c-drawer__close {
|
|
701
|
+
display: unset;
|
|
702
|
+
visibility: visible; }
|
|
703
|
+
.pf-c-drawer.pf-m-inline.pf-m-panel-bottom > .pf-c-drawer__main > .pf-c-drawer__panel {
|
|
704
|
+
margin-bottom: calc(var(--pf-c-drawer__panel--FlexBasis) * -1);
|
|
705
|
+
transform: translateY(100%); }
|
|
706
|
+
.pf-c-drawer.pf-m-inline.pf-m-panel-bottom.pf-m-expanded > .pf-c-drawer__main > .pf-c-drawer__panel {
|
|
707
|
+
margin-bottom: 0;
|
|
708
|
+
transform: translateY(0); }
|
|
709
|
+
.pf-c-drawer.pf-m-static > .pf-c-drawer__main > .pf-c-drawer__panel {
|
|
710
|
+
transform: translateX(0); }
|
|
711
|
+
.pf-c-drawer.pf-m-static.pf-m-panel-left > .pf-c-drawer__main > .pf-c-drawer__panel {
|
|
712
|
+
margin-right: 0;
|
|
713
|
+
transform: translateX(0); }
|
|
714
|
+
.pf-c-drawer.pf-m-static.pf-m-panel-bottom > .pf-c-drawer__main > .pf-c-drawer__panel {
|
|
715
|
+
transform: translateX(0); }
|
|
716
|
+
.pf-c-drawer.pf-m-static > .pf-c-drawer__main > .pf-c-drawer__panel > .pf-c-drawer__body > .pf-c-drawer__head .pf-c-drawer__close {
|
|
717
|
+
display: none;
|
|
718
|
+
visibility: hidden; } }
|
|
719
|
+
|
|
720
|
+
@media (min-width: 992px) {
|
|
721
|
+
.pf-c-drawer.pf-m-inline-on-lg > .pf-c-drawer__main > .pf-c-drawer__content,
|
|
722
|
+
.pf-c-drawer.pf-m-static-on-lg > .pf-c-drawer__main > .pf-c-drawer__content {
|
|
723
|
+
flex-shrink: 1; }
|
|
724
|
+
.pf-c-drawer.pf-m-inline-on-lg > .pf-c-drawer__main > .pf-c-drawer__panel,
|
|
725
|
+
.pf-c-drawer.pf-m-static-on-lg > .pf-c-drawer__main > .pf-c-drawer__panel {
|
|
726
|
+
--pf-c-drawer--m-expanded__panel--BoxShadow: none; }
|
|
727
|
+
.pf-c-drawer.pf-m-inline-on-lg > .pf-c-drawer__main > .pf-c-drawer__panel:not(.pf-m-no-border)::after,
|
|
728
|
+
.pf-c-drawer.pf-m-static-on-lg > .pf-c-drawer__main > .pf-c-drawer__panel:not(.pf-m-no-border)::after {
|
|
729
|
+
background-color: var(--pf-c-drawer--m-inline--m-expanded__panel--after--BackgroundColor); }
|
|
730
|
+
.pf-c-drawer.pf-m-inline-on-lg > .pf-c-drawer__main > .pf-c-drawer__content {
|
|
731
|
+
overflow-x: auto; }
|
|
732
|
+
.pf-c-drawer.pf-m-inline-on-lg > .pf-c-drawer__main > .pf-c-drawer__panel {
|
|
733
|
+
margin-left: calc(var(--pf-c-drawer__panel--FlexBasis) * -1);
|
|
734
|
+
transform: translateX(100%); }
|
|
735
|
+
.pf-c-drawer.pf-m-inline-on-lg.pf-m-expanded > .pf-c-drawer__main > .pf-c-drawer__panel {
|
|
736
|
+
margin-left: 0;
|
|
737
|
+
transform: translateX(0); }
|
|
738
|
+
.pf-c-drawer.pf-m-inline-on-lg > .pf-c-drawer__main > .pf-c-drawer__panel > .pf-c-drawer__body > .pf-c-drawer__head .pf-c-drawer__close {
|
|
739
|
+
display: unset;
|
|
740
|
+
visibility: visible; }
|
|
741
|
+
.pf-c-drawer.pf-m-inline-on-lg.pf-m-panel-left > .pf-c-drawer__main > .pf-c-drawer__panel {
|
|
742
|
+
margin-right: calc(var(--pf-c-drawer__panel--FlexBasis) * -1);
|
|
743
|
+
margin-left: 0;
|
|
744
|
+
transform: translateX(-100%); }
|
|
745
|
+
.pf-c-drawer.pf-m-inline-on-lg.pf-m-panel-left.pf-m-expanded > .pf-c-drawer__main > .pf-c-drawer__panel {
|
|
746
|
+
margin-right: 0;
|
|
747
|
+
transform: translateX(0); }
|
|
748
|
+
.pf-c-drawer.pf-m-inline-on-lg.pf-m-panel-left > .pf-c-drawer__main > .pf-c-drawer__panel > .pf-c-drawer__body > .pf-c-drawer__head .pf-c-drawer__close {
|
|
749
|
+
display: unset;
|
|
750
|
+
visibility: visible; }
|
|
751
|
+
.pf-c-drawer.pf-m-inline-on-lg.pf-m-panel-bottom > .pf-c-drawer__main > .pf-c-drawer__panel {
|
|
752
|
+
margin-bottom: calc(var(--pf-c-drawer__panel--FlexBasis) * -1);
|
|
753
|
+
transform: translateY(100%); }
|
|
754
|
+
.pf-c-drawer.pf-m-inline-on-lg.pf-m-panel-bottom.pf-m-expanded > .pf-c-drawer__main > .pf-c-drawer__panel {
|
|
755
|
+
margin-bottom: 0;
|
|
756
|
+
transform: translateY(0); }
|
|
757
|
+
.pf-c-drawer.pf-m-static-on-lg > .pf-c-drawer__main > .pf-c-drawer__panel {
|
|
758
|
+
transform: translateX(0); }
|
|
759
|
+
.pf-c-drawer.pf-m-static-on-lg.pf-m-panel-left > .pf-c-drawer__main > .pf-c-drawer__panel {
|
|
760
|
+
margin-right: 0;
|
|
761
|
+
transform: translateX(0); }
|
|
762
|
+
.pf-c-drawer.pf-m-static-on-lg.pf-m-panel-bottom > .pf-c-drawer__main > .pf-c-drawer__panel {
|
|
763
|
+
transform: translateX(0); }
|
|
764
|
+
.pf-c-drawer.pf-m-static-on-lg > .pf-c-drawer__main > .pf-c-drawer__panel > .pf-c-drawer__body > .pf-c-drawer__head .pf-c-drawer__close {
|
|
765
|
+
display: none;
|
|
766
|
+
visibility: hidden; } }
|
|
767
|
+
|
|
768
|
+
@media (min-width: 1200px) {
|
|
769
|
+
.pf-c-drawer.pf-m-inline-on-xl > .pf-c-drawer__main > .pf-c-drawer__content,
|
|
770
|
+
.pf-c-drawer.pf-m-static-on-xl > .pf-c-drawer__main > .pf-c-drawer__content {
|
|
771
|
+
flex-shrink: 1; }
|
|
772
|
+
.pf-c-drawer.pf-m-inline-on-xl > .pf-c-drawer__main > .pf-c-drawer__panel,
|
|
773
|
+
.pf-c-drawer.pf-m-static-on-xl > .pf-c-drawer__main > .pf-c-drawer__panel {
|
|
774
|
+
--pf-c-drawer--m-expanded__panel--BoxShadow: none; }
|
|
775
|
+
.pf-c-drawer.pf-m-inline-on-xl > .pf-c-drawer__main > .pf-c-drawer__panel:not(.pf-m-no-border)::after,
|
|
776
|
+
.pf-c-drawer.pf-m-static-on-xl > .pf-c-drawer__main > .pf-c-drawer__panel:not(.pf-m-no-border)::after {
|
|
777
|
+
background-color: var(--pf-c-drawer--m-inline--m-expanded__panel--after--BackgroundColor); }
|
|
778
|
+
.pf-c-drawer.pf-m-inline-on-xl > .pf-c-drawer__main > .pf-c-drawer__content {
|
|
779
|
+
overflow-x: auto; }
|
|
780
|
+
.pf-c-drawer.pf-m-inline-on-xl > .pf-c-drawer__main > .pf-c-drawer__panel {
|
|
781
|
+
margin-left: calc(var(--pf-c-drawer__panel--FlexBasis) * -1);
|
|
782
|
+
transform: translateX(100%); }
|
|
783
|
+
.pf-c-drawer.pf-m-inline-on-xl.pf-m-expanded > .pf-c-drawer__main > .pf-c-drawer__panel {
|
|
784
|
+
margin-left: 0;
|
|
785
|
+
transform: translateX(0); }
|
|
786
|
+
.pf-c-drawer.pf-m-inline-on-xl > .pf-c-drawer__main > .pf-c-drawer__panel > .pf-c-drawer__body > .pf-c-drawer__head .pf-c-drawer__close {
|
|
787
|
+
display: unset;
|
|
788
|
+
visibility: visible; }
|
|
789
|
+
.pf-c-drawer.pf-m-inline-on-xl.pf-m-panel-left > .pf-c-drawer__main > .pf-c-drawer__panel {
|
|
790
|
+
margin-right: calc(var(--pf-c-drawer__panel--FlexBasis) * -1);
|
|
791
|
+
margin-left: 0;
|
|
792
|
+
transform: translateX(-100%); }
|
|
793
|
+
.pf-c-drawer.pf-m-inline-on-xl.pf-m-panel-left.pf-m-expanded > .pf-c-drawer__main > .pf-c-drawer__panel {
|
|
794
|
+
margin-right: 0;
|
|
795
|
+
transform: translateX(0); }
|
|
796
|
+
.pf-c-drawer.pf-m-inline-on-xl.pf-m-panel-left > .pf-c-drawer__main > .pf-c-drawer__panel > .pf-c-drawer__body > .pf-c-drawer__head .pf-c-drawer__close {
|
|
797
|
+
display: unset;
|
|
798
|
+
visibility: visible; }
|
|
799
|
+
.pf-c-drawer.pf-m-inline-on-xl.pf-m-panel-bottom > .pf-c-drawer__main > .pf-c-drawer__panel {
|
|
800
|
+
margin-bottom: calc(var(--pf-c-drawer__panel--FlexBasis) * -1);
|
|
801
|
+
transform: translateY(100%); }
|
|
802
|
+
.pf-c-drawer.pf-m-inline-on-xl.pf-m-panel-bottom.pf-m-expanded > .pf-c-drawer__main > .pf-c-drawer__panel {
|
|
803
|
+
margin-bottom: 0;
|
|
804
|
+
transform: translateY(0); }
|
|
805
|
+
.pf-c-drawer.pf-m-static-on-xl > .pf-c-drawer__main > .pf-c-drawer__panel {
|
|
806
|
+
transform: translateX(0); }
|
|
807
|
+
.pf-c-drawer.pf-m-static-on-xl.pf-m-panel-left > .pf-c-drawer__main > .pf-c-drawer__panel {
|
|
808
|
+
margin-right: 0;
|
|
809
|
+
transform: translateX(0); }
|
|
810
|
+
.pf-c-drawer.pf-m-static-on-xl.pf-m-panel-bottom > .pf-c-drawer__main > .pf-c-drawer__panel {
|
|
811
|
+
transform: translateX(0); }
|
|
812
|
+
.pf-c-drawer.pf-m-static-on-xl > .pf-c-drawer__main > .pf-c-drawer__panel > .pf-c-drawer__body > .pf-c-drawer__head .pf-c-drawer__close {
|
|
813
|
+
display: none;
|
|
814
|
+
visibility: hidden; } }
|
|
815
|
+
|
|
816
|
+
@media (min-width: 1450px) {
|
|
817
|
+
.pf-c-drawer.pf-m-inline-on-2xl > .pf-c-drawer__main > .pf-c-drawer__content,
|
|
818
|
+
.pf-c-drawer.pf-m-static-on-2xl > .pf-c-drawer__main > .pf-c-drawer__content {
|
|
819
|
+
flex-shrink: 1; }
|
|
820
|
+
.pf-c-drawer.pf-m-inline-on-2xl > .pf-c-drawer__main > .pf-c-drawer__panel,
|
|
821
|
+
.pf-c-drawer.pf-m-static-on-2xl > .pf-c-drawer__main > .pf-c-drawer__panel {
|
|
822
|
+
--pf-c-drawer--m-expanded__panel--BoxShadow: none; }
|
|
823
|
+
.pf-c-drawer.pf-m-inline-on-2xl > .pf-c-drawer__main > .pf-c-drawer__panel:not(.pf-m-no-border)::after,
|
|
824
|
+
.pf-c-drawer.pf-m-static-on-2xl > .pf-c-drawer__main > .pf-c-drawer__panel:not(.pf-m-no-border)::after {
|
|
825
|
+
background-color: var(--pf-c-drawer--m-inline--m-expanded__panel--after--BackgroundColor); }
|
|
826
|
+
.pf-c-drawer.pf-m-inline-on-2xl > .pf-c-drawer__main > .pf-c-drawer__content {
|
|
827
|
+
overflow-x: auto; }
|
|
828
|
+
.pf-c-drawer.pf-m-inline-on-2xl > .pf-c-drawer__main > .pf-c-drawer__panel {
|
|
829
|
+
margin-left: calc(var(--pf-c-drawer__panel--FlexBasis) * -1);
|
|
830
|
+
transform: translateX(100%); }
|
|
831
|
+
.pf-c-drawer.pf-m-inline-on-2xl.pf-m-expanded > .pf-c-drawer__main > .pf-c-drawer__panel {
|
|
832
|
+
margin-left: 0;
|
|
833
|
+
transform: translateX(0); }
|
|
834
|
+
.pf-c-drawer.pf-m-inline-on-2xl > .pf-c-drawer__main > .pf-c-drawer__panel > .pf-c-drawer__body > .pf-c-drawer__head .pf-c-drawer__close {
|
|
835
|
+
display: unset;
|
|
836
|
+
visibility: visible; }
|
|
837
|
+
.pf-c-drawer.pf-m-inline-on-2xl.pf-m-panel-left > .pf-c-drawer__main > .pf-c-drawer__panel {
|
|
838
|
+
margin-right: calc(var(--pf-c-drawer__panel--FlexBasis) * -1);
|
|
839
|
+
margin-left: 0;
|
|
840
|
+
transform: translateX(-100%); }
|
|
841
|
+
.pf-c-drawer.pf-m-inline-on-2xl.pf-m-panel-left.pf-m-expanded > .pf-c-drawer__main > .pf-c-drawer__panel {
|
|
842
|
+
margin-right: 0;
|
|
843
|
+
transform: translateX(0); }
|
|
844
|
+
.pf-c-drawer.pf-m-inline-on-2xl.pf-m-panel-left > .pf-c-drawer__main > .pf-c-drawer__panel > .pf-c-drawer__body > .pf-c-drawer__head .pf-c-drawer__close {
|
|
845
|
+
display: unset;
|
|
846
|
+
visibility: visible; }
|
|
847
|
+
.pf-c-drawer.pf-m-inline-on-2xl.pf-m-panel-bottom > .pf-c-drawer__main > .pf-c-drawer__panel {
|
|
848
|
+
margin-bottom: calc(var(--pf-c-drawer__panel--FlexBasis) * -1);
|
|
849
|
+
transform: translateY(100%); }
|
|
850
|
+
.pf-c-drawer.pf-m-inline-on-2xl.pf-m-panel-bottom.pf-m-expanded > .pf-c-drawer__main > .pf-c-drawer__panel {
|
|
851
|
+
margin-bottom: 0;
|
|
852
|
+
transform: translateY(0); }
|
|
853
|
+
.pf-c-drawer.pf-m-static-on-2xl > .pf-c-drawer__main > .pf-c-drawer__panel {
|
|
854
|
+
transform: translateX(0); }
|
|
855
|
+
.pf-c-drawer.pf-m-static-on-2xl.pf-m-panel-left > .pf-c-drawer__main > .pf-c-drawer__panel {
|
|
856
|
+
margin-right: 0;
|
|
857
|
+
transform: translateX(0); }
|
|
858
|
+
.pf-c-drawer.pf-m-static-on-2xl.pf-m-panel-bottom > .pf-c-drawer__main > .pf-c-drawer__panel {
|
|
859
|
+
transform: translateX(0); }
|
|
860
|
+
.pf-c-drawer.pf-m-static-on-2xl > .pf-c-drawer__main > .pf-c-drawer__panel > .pf-c-drawer__body > .pf-c-drawer__head .pf-c-drawer__close {
|
|
861
|
+
display: none;
|
|
862
|
+
visibility: hidden; } }
|
|
863
|
+
|
|
864
|
+
.pf-c-popover {
|
|
865
|
+
--pf-c-popover--FontSize: var(--pf-global--FontSize--sm);
|
|
866
|
+
--pf-c-popover--MinWidth: calc(var(--pf-c-popover__content--PaddingLeft) + var(--pf-c-popover__content--PaddingRight) + 18.75rem);
|
|
867
|
+
--pf-c-popover--MaxWidth: calc(var(--pf-c-popover__content--PaddingLeft) + var(--pf-c-popover__content--PaddingRight) + 18.75rem);
|
|
868
|
+
--pf-c-popover--BoxShadow: var(--pf-global--BoxShadow--md);
|
|
869
|
+
--pf-c-popover__content--BackgroundColor: var(--pf-global--BackgroundColor--100);
|
|
870
|
+
--pf-c-popover__content--PaddingTop: var(--pf-global--spacer--md);
|
|
871
|
+
--pf-c-popover__content--PaddingRight: var(--pf-global--spacer--md);
|
|
872
|
+
--pf-c-popover__content--PaddingBottom: var(--pf-global--spacer--md);
|
|
873
|
+
--pf-c-popover__content--PaddingLeft: var(--pf-global--spacer--md);
|
|
874
|
+
--pf-c-popover__arrow--Width: var(--pf-global--arrow--width-lg);
|
|
875
|
+
--pf-c-popover__arrow--Height: var(--pf-global--arrow--width-lg);
|
|
876
|
+
--pf-c-popover__arrow--BoxShadow: var(--pf-global--BoxShadow--md);
|
|
877
|
+
--pf-c-popover__arrow--BackgroundColor: var(--pf-global--BackgroundColor--100);
|
|
878
|
+
--pf-c-popover__arrow--m-top--TranslateX: -50%;
|
|
879
|
+
--pf-c-popover__arrow--m-top--TranslateY: 50%;
|
|
880
|
+
--pf-c-popover__arrow--m-top--Rotate: 45deg;
|
|
881
|
+
--pf-c-popover__arrow--m-right--TranslateX: -50%;
|
|
882
|
+
--pf-c-popover__arrow--m-right--TranslateY: -50%;
|
|
883
|
+
--pf-c-popover__arrow--m-right--Rotate: 45deg;
|
|
884
|
+
--pf-c-popover__arrow--m-bottom--TranslateX: -50%;
|
|
885
|
+
--pf-c-popover__arrow--m-bottom--TranslateY: -50%;
|
|
886
|
+
--pf-c-popover__arrow--m-bottom--Rotate: 45deg;
|
|
887
|
+
--pf-c-popover__arrow--m-left--TranslateX: 50%;
|
|
888
|
+
--pf-c-popover__arrow--m-left--TranslateY: -50%;
|
|
889
|
+
--pf-c-popover__arrow--m-left--Rotate: 45deg;
|
|
890
|
+
--pf-c-popover--c-button--MarginLeft: var(--pf-global--spacer--sm);
|
|
891
|
+
--pf-c-popover--c-button--Top: calc(var(--pf-c-popover__content--PaddingTop) - var(--pf-global--spacer--form-element));
|
|
892
|
+
--pf-c-popover--c-button--Right: var(--pf-global--spacer--md);
|
|
893
|
+
--pf-c-popover--c-button--sibling--PaddingRight: var(--pf-global--spacer--2xl);
|
|
894
|
+
--pf-c-popover--c-title--MarginBottom: var(--pf-global--spacer--sm);
|
|
895
|
+
--pf-c-popover__footer--MarginTop: var(--pf-global--spacer--md);
|
|
896
|
+
position: relative;
|
|
897
|
+
min-width: var(--pf-c-popover--MinWidth);
|
|
898
|
+
max-width: var(--pf-c-popover--MaxWidth);
|
|
899
|
+
font-size: var(--pf-c-popover--FontSize);
|
|
900
|
+
box-shadow: var(--pf-c-popover--BoxShadow); }
|
|
901
|
+
.pf-c-popover.pf-m-no-padding {
|
|
902
|
+
--pf-c-popover__content--PaddingTop: 0px;
|
|
903
|
+
--pf-c-popover__content--PaddingRight: 0px;
|
|
904
|
+
--pf-c-popover__content--PaddingBottom: 0px;
|
|
905
|
+
--pf-c-popover__content--PaddingLeft: 0px; }
|
|
906
|
+
.pf-c-popover.pf-m-width-auto {
|
|
907
|
+
--pf-c-popover--MinWidth: auto;
|
|
908
|
+
--pf-c-popover--MaxWidth: none; }
|
|
909
|
+
.pf-c-popover.pf-m-top .pf-c-popover__arrow {
|
|
910
|
+
bottom: 0;
|
|
911
|
+
left: 50%;
|
|
912
|
+
transform: translateX(var(--pf-c-popover__arrow--m-top--TranslateX)) translateY(var(--pf-c-popover__arrow--m-top--TranslateY)) rotate(var(--pf-c-popover__arrow--m-top--Rotate)); }
|
|
913
|
+
.pf-c-popover.pf-m-bottom .pf-c-popover__arrow {
|
|
914
|
+
top: 0;
|
|
915
|
+
left: 50%;
|
|
916
|
+
transform: translateX(var(--pf-c-popover__arrow--m-bottom--TranslateX)) translateY(var(--pf-c-popover__arrow--m-bottom--TranslateY)) rotate(var(--pf-c-popover__arrow--m-bottom--Rotate)); }
|
|
917
|
+
.pf-c-popover.pf-m-left .pf-c-popover__arrow {
|
|
918
|
+
top: 50%;
|
|
919
|
+
right: 0;
|
|
920
|
+
transform: translateX(var(--pf-c-popover__arrow--m-left--TranslateX)) translateY(var(--pf-c-popover__arrow--m-left--TranslateY)) rotate(var(--pf-c-popover__arrow--m-left--Rotate)); }
|
|
921
|
+
.pf-c-popover.pf-m-right .pf-c-popover__arrow {
|
|
922
|
+
top: 50%;
|
|
923
|
+
left: 0;
|
|
924
|
+
transform: translateX(var(--pf-c-popover__arrow--m-right--TranslateX)) translateY(var(--pf-c-popover__arrow--m-right--TranslateY)) rotate(var(--pf-c-popover__arrow--m-right--Rotate)); }
|
|
925
|
+
|
|
926
|
+
.pf-c-popover__content {
|
|
927
|
+
position: relative;
|
|
928
|
+
padding: var(--pf-c-popover__content--PaddingTop) var(--pf-c-popover__content--PaddingRight) var(--pf-c-popover__content--PaddingBottom) var(--pf-c-popover__content--PaddingLeft);
|
|
929
|
+
background-color: var(--pf-c-popover__content--BackgroundColor); }
|
|
930
|
+
.pf-c-popover__content > .pf-c-title {
|
|
931
|
+
margin-bottom: var(--pf-c-popover--c-title--MarginBottom); }
|
|
932
|
+
.pf-c-popover__content > .pf-c-button {
|
|
933
|
+
position: absolute;
|
|
934
|
+
top: var(--pf-c-popover--c-button--Top);
|
|
935
|
+
right: var(--pf-c-popover--c-button--Right); }
|
|
936
|
+
.pf-c-popover__content > .pf-c-button + * {
|
|
937
|
+
padding-right: var(--pf-c-popover--c-button--sibling--PaddingRight); }
|
|
938
|
+
|
|
939
|
+
.pf-c-popover__arrow {
|
|
940
|
+
position: absolute;
|
|
941
|
+
width: var(--pf-c-popover__arrow--Width);
|
|
942
|
+
height: var(--pf-c-popover__arrow--Height);
|
|
943
|
+
pointer-events: none;
|
|
944
|
+
background-color: var(--pf-c-popover__arrow--BackgroundColor);
|
|
945
|
+
box-shadow: var(--pf-c-popover__arrow--BoxShadow); }
|
|
946
|
+
|
|
947
|
+
.pf-c-popover__body {
|
|
948
|
+
word-wrap: break-word; }
|
|
949
|
+
|
|
950
|
+
.pf-c-popover__footer {
|
|
951
|
+
margin-top: var(--pf-c-popover__footer--MarginTop); }
|
|
952
|
+
|
|
953
|
+
.pf-c-modal-box {
|
|
954
|
+
--pf-c-modal-box--BackgroundColor: var(--pf-global--BackgroundColor--100);
|
|
955
|
+
--pf-c-modal-box--BoxShadow: var(--pf-global--BoxShadow--xl);
|
|
956
|
+
--pf-c-modal-box--ZIndex: var(--pf-global--ZIndex--xl);
|
|
957
|
+
--pf-c-modal-box--Width: 100%;
|
|
958
|
+
--pf-c-modal-box--MaxWidth: calc(100% - var(--pf-global--spacer--xl));
|
|
959
|
+
--pf-c-modal-box--m-sm--sm--MaxWidth: 35rem;
|
|
960
|
+
--pf-c-modal-box--m-md--Width: 52.5rem;
|
|
961
|
+
--pf-c-modal-box--m-lg--lg--MaxWidth: 70rem;
|
|
962
|
+
--pf-c-modal-box--MaxHeight: calc(100% - var(--pf-global--spacer--2xl));
|
|
963
|
+
--pf-c-modal-box--m-align-top--spacer: var(--pf-global--spacer--sm);
|
|
964
|
+
--pf-c-modal-box--m-align-top--xl--spacer: var(--pf-global--spacer--xl);
|
|
965
|
+
--pf-c-modal-box--m-align-top--MarginTop: var(--pf-c-modal-box--m-align-top--spacer);
|
|
966
|
+
--pf-c-modal-box--m-align-top--MaxHeight: calc(100% - min(var(--pf-c-modal-box--m-align-top--spacer), var(--pf-global--spacer--2xl)) - var(--pf-c-modal-box--m-align-top--spacer));
|
|
967
|
+
--pf-c-modal-box--m-align-top--MaxWidth: calc(100% - min(var(--pf-c-modal-box--m-align-top--spacer) * 2, var(--pf-global--spacer--xl)));
|
|
968
|
+
--pf-c-modal-box--m-danger__title-icon--Color: var(--pf-global--danger-color--100);
|
|
969
|
+
--pf-c-modal-box--m-warning__title-icon--Color: var(--pf-global--warning-color--100);
|
|
970
|
+
--pf-c-modal-box--m-success__title-icon--Color: var(--pf-global--success-color--100);
|
|
971
|
+
--pf-c-modal-box--m-info__title-icon--Color: var(--pf-global--info-color--100);
|
|
972
|
+
--pf-c-modal-box--m-default__title-icon--Color: var(--pf-global--default-color--200);
|
|
973
|
+
--pf-c-modal-box__header--PaddingTop: var(--pf-global--spacer--lg);
|
|
974
|
+
--pf-c-modal-box__header--PaddingRight: var(--pf-global--spacer--lg);
|
|
975
|
+
--pf-c-modal-box__header--PaddingLeft: var(--pf-global--spacer--lg);
|
|
976
|
+
--pf-c-modal-box__header--last-child--PaddingBottom: var(--pf-global--spacer--lg);
|
|
977
|
+
--pf-c-modal-box__title--LineHeight: var(--pf-global--LineHeight--sm);
|
|
978
|
+
--pf-c-modal-box__title--FontFamily: var(--pf-global--FontFamily--heading--sans-serif);
|
|
979
|
+
--pf-c-modal-box__title--FontSize: var(--pf-global--FontSize--2xl);
|
|
980
|
+
--pf-c-modal-box__title-icon--MarginRight: var(--pf-global--spacer--sm);
|
|
981
|
+
--pf-c-modal-box__title-icon--Color: var(--pf-global--Color--100);
|
|
982
|
+
--pf-c-modal-box__description--PaddingTop: var(--pf-global--spacer--xs);
|
|
983
|
+
--pf-c-modal-box__body--MinHeight: calc(var(--pf-global--FontSize--md) * var(--pf-global--LineHeight--md));
|
|
984
|
+
--pf-c-modal-box__body--PaddingTop: var(--pf-global--spacer--lg);
|
|
985
|
+
--pf-c-modal-box__body--PaddingRight: var(--pf-global--spacer--lg);
|
|
986
|
+
--pf-c-modal-box__body--PaddingLeft: var(--pf-global--spacer--lg);
|
|
987
|
+
--pf-c-modal-box__body--last-child--PaddingBottom: var(--pf-global--spacer--lg);
|
|
988
|
+
--pf-c-modal-box__header--body--PaddingTop: var(--pf-global--spacer--md);
|
|
989
|
+
--pf-c-modal-box--c-button--Top: calc(var(--pf-global--spacer--lg));
|
|
990
|
+
--pf-c-modal-box--c-button--Right: var(--pf-global--spacer--md);
|
|
991
|
+
--pf-c-modal-box--c-button--sibling--MarginRight: calc(var(--pf-global--spacer--xl) + var(--pf-global--spacer--sm));
|
|
992
|
+
--pf-c-modal-box__footer--PaddingTop: var(--pf-global--spacer--lg);
|
|
993
|
+
--pf-c-modal-box__footer--PaddingRight: var(--pf-global--spacer--lg);
|
|
994
|
+
--pf-c-modal-box__footer--PaddingBottom: var(--pf-global--spacer--lg);
|
|
995
|
+
--pf-c-modal-box__footer--PaddingLeft: var(--pf-global--spacer--lg);
|
|
996
|
+
--pf-c-modal-box__footer--c-button--MarginRight: var(--pf-global--spacer--md);
|
|
997
|
+
--pf-c-modal-box__footer--c-button--sm--MarginRight: calc(var(--pf-c-modal-box__footer--c-button--MarginRight) / 2);
|
|
998
|
+
position: relative;
|
|
999
|
+
z-index: var(--pf-c-modal-box--ZIndex);
|
|
1000
|
+
display: flex;
|
|
1001
|
+
flex-direction: column;
|
|
1002
|
+
width: var(--pf-c-modal-box--Width);
|
|
1003
|
+
max-width: var(--pf-c-modal-box--MaxWidth);
|
|
1004
|
+
max-height: var(--pf-c-modal-box--MaxHeight);
|
|
1005
|
+
background-color: var(--pf-c-modal-box--BackgroundColor);
|
|
1006
|
+
box-shadow: var(--pf-c-modal-box--BoxShadow); }
|
|
1007
|
+
@media (min-width: 1200px) {
|
|
1008
|
+
.pf-c-modal-box {
|
|
1009
|
+
--pf-c-modal-box--m-align-top--spacer: var(--pf-c-modal-box--m-align-top--xl--spacer); } }
|
|
1010
|
+
.pf-c-modal-box.pf-m-sm {
|
|
1011
|
+
--pf-c-modal-box--Width: var(--pf-c-modal-box--m-sm--sm--MaxWidth); }
|
|
1012
|
+
.pf-c-modal-box.pf-m-md {
|
|
1013
|
+
--pf-c-modal-box--Width: var(--pf-c-modal-box--m-md--Width); }
|
|
1014
|
+
.pf-c-modal-box.pf-m-lg {
|
|
1015
|
+
--pf-c-modal-box--Width: var(--pf-c-modal-box--m-lg--lg--MaxWidth); }
|
|
1016
|
+
.pf-c-modal-box.pf-m-align-top {
|
|
1017
|
+
top: var(--pf-c-modal-box--m-align-top--MarginTop);
|
|
1018
|
+
align-self: flex-start;
|
|
1019
|
+
max-width: var(--pf-c-modal-box--m-align-top--MaxWidth);
|
|
1020
|
+
max-height: var(--pf-c-modal-box--m-align-top--MaxHeight); }
|
|
1021
|
+
.pf-c-modal-box.pf-m-danger {
|
|
1022
|
+
--pf-c-modal-box__title-icon--Color: var(--pf-c-modal-box--m-danger__title-icon--Color); }
|
|
1023
|
+
.pf-c-modal-box.pf-m-warning {
|
|
1024
|
+
--pf-c-modal-box__title-icon--Color: var(--pf-c-modal-box--m-warning__title-icon--Color); }
|
|
1025
|
+
.pf-c-modal-box.pf-m-success {
|
|
1026
|
+
--pf-c-modal-box__title-icon--Color: var(--pf-c-modal-box--m-success__title-icon--Color); }
|
|
1027
|
+
.pf-c-modal-box.pf-m-default {
|
|
1028
|
+
--pf-c-modal-box__title-icon--Color: var(--pf-c-modal-box--m-default__title-icon--Color); }
|
|
1029
|
+
.pf-c-modal-box.pf-m-info {
|
|
1030
|
+
--pf-c-modal-box__title-icon--Color: var(--pf-c-modal-box--m-info__title-icon--Color); }
|
|
1031
|
+
.pf-c-modal-box > .pf-c-button {
|
|
1032
|
+
position: absolute;
|
|
1033
|
+
top: var(--pf-c-modal-box--c-button--Top);
|
|
1034
|
+
right: var(--pf-c-modal-box--c-button--Right); }
|
|
1035
|
+
.pf-c-modal-box > .pf-c-button + * {
|
|
1036
|
+
margin-right: var(--pf-c-modal-box--c-button--sibling--MarginRight); }
|
|
1037
|
+
|
|
1038
|
+
.pf-c-modal-box__header {
|
|
1039
|
+
display: flex;
|
|
1040
|
+
flex-direction: column;
|
|
1041
|
+
flex-shrink: 0;
|
|
1042
|
+
padding-top: var(--pf-c-modal-box__header--PaddingTop);
|
|
1043
|
+
padding-right: var(--pf-c-modal-box__header--PaddingRight);
|
|
1044
|
+
padding-left: var(--pf-c-modal-box__header--PaddingLeft); }
|
|
1045
|
+
.pf-c-modal-box__header.pf-m-help {
|
|
1046
|
+
display: flex;
|
|
1047
|
+
flex-direction: row; }
|
|
1048
|
+
.pf-c-modal-box__header:last-child {
|
|
1049
|
+
padding-bottom: var(--pf-c-modal-box__header--last-child--PaddingBottom); }
|
|
1050
|
+
.pf-c-modal-box__header + .pf-c-modal-box__body {
|
|
1051
|
+
--pf-c-modal-box__body--PaddingTop: var(--pf-c-modal-box__header--body--PaddingTop); }
|
|
1052
|
+
|
|
1053
|
+
.pf-c-modal-box__header-main {
|
|
1054
|
+
flex-grow: 1;
|
|
1055
|
+
min-width: 0; }
|
|
1056
|
+
|
|
1057
|
+
.pf-c-modal-box__title,
|
|
1058
|
+
.pf-c-modal-box__title-text {
|
|
1059
|
+
overflow: hidden;
|
|
1060
|
+
text-overflow: ellipsis;
|
|
1061
|
+
white-space: nowrap; }
|
|
1062
|
+
|
|
1063
|
+
.pf-c-modal-box__title {
|
|
1064
|
+
flex: 0 0 auto;
|
|
1065
|
+
font-family: var(--pf-c-modal-box__title--FontFamily);
|
|
1066
|
+
font-size: var(--pf-c-modal-box__title--FontSize);
|
|
1067
|
+
line-height: var(--pf-c-modal-box__title--LineHeight); }
|
|
1068
|
+
.pf-c-modal-box__title.pf-m-icon {
|
|
1069
|
+
display: flex; }
|
|
1070
|
+
|
|
1071
|
+
.pf-c-modal-box__title-icon {
|
|
1072
|
+
margin-right: var(--pf-c-modal-box__title-icon--MarginRight);
|
|
1073
|
+
color: var(--pf-c-modal-box__title-icon--Color); }
|
|
1074
|
+
|
|
1075
|
+
.pf-c-modal-box__description {
|
|
1076
|
+
padding-top: var(--pf-c-modal-box__description--PaddingTop); }
|
|
1077
|
+
|
|
1078
|
+
.pf-c-modal-box__body {
|
|
1079
|
+
flex: 1 1 auto;
|
|
1080
|
+
min-height: var(--pf-c-modal-box__body--MinHeight);
|
|
1081
|
+
padding-top: var(--pf-c-modal-box__body--PaddingTop);
|
|
1082
|
+
padding-right: var(--pf-c-modal-box__body--PaddingRight);
|
|
1083
|
+
padding-left: var(--pf-c-modal-box__body--PaddingLeft);
|
|
1084
|
+
overflow-x: hidden;
|
|
1085
|
+
overflow-y: auto;
|
|
1086
|
+
overscroll-behavior: contain;
|
|
1087
|
+
word-break: break-word;
|
|
1088
|
+
-webkit-overflow-scrolling: touch; }
|
|
1089
|
+
.pf-c-modal-box__body:last-child {
|
|
1090
|
+
padding-bottom: var(--pf-c-modal-box__body--last-child--PaddingBottom); }
|
|
1091
|
+
|
|
1092
|
+
.pf-c-modal-box__footer {
|
|
1093
|
+
display: flex;
|
|
1094
|
+
flex: 0 0 auto;
|
|
1095
|
+
align-items: center;
|
|
1096
|
+
padding-top: var(--pf-c-modal-box__footer--PaddingTop);
|
|
1097
|
+
padding-right: var(--pf-c-modal-box__footer--PaddingRight);
|
|
1098
|
+
padding-bottom: var(--pf-c-modal-box__footer--PaddingBottom);
|
|
1099
|
+
padding-left: var(--pf-c-modal-box__footer--PaddingLeft); }
|
|
1100
|
+
.pf-c-modal-box__footer > .pf-c-button:not(:last-child) {
|
|
1101
|
+
margin-right: var(--pf-c-modal-box__footer--c-button--MarginRight); }
|
|
1102
|
+
@media screen and (min-width: 576px) {
|
|
1103
|
+
.pf-c-modal-box__footer > .pf-c-button:not(:last-child) {
|
|
1104
|
+
--pf-c-modal-box__footer--c-button--MarginRight: var(--pf-c-modal-box__footer--c-button--sm--MarginRight); } }
|
|
1105
|
+
|
|
1106
|
+
.pf-c-backdrop {
|
|
1107
|
+
--pf-c-backdrop--ZIndex: var(--pf-global--ZIndex--lg);
|
|
1108
|
+
--pf-c-backdrop--BackgroundColor: var(--pf-global--BackgroundColor--dark-transparent-100);
|
|
1109
|
+
position: fixed;
|
|
1110
|
+
top: 0;
|
|
1111
|
+
left: 0;
|
|
1112
|
+
z-index: var(--pf-c-backdrop--ZIndex);
|
|
1113
|
+
width: 100%;
|
|
1114
|
+
height: 100%;
|
|
1115
|
+
background-color: var(--pf-c-backdrop--BackgroundColor); }
|
|
1116
|
+
|
|
1117
|
+
.pf-c-backdrop__open {
|
|
1118
|
+
overflow: hidden; }
|
|
1119
|
+
|
|
1120
|
+
.pf-l-bullseye {
|
|
1121
|
+
--pf-l-bullseye--Padding: 0;
|
|
1122
|
+
display: flex;
|
|
1123
|
+
align-items: center;
|
|
1124
|
+
justify-content: center;
|
|
1125
|
+
height: 100%;
|
|
1126
|
+
padding: var(--pf-l-bullseye--Padding);
|
|
1127
|
+
margin: 0; }
|
|
1128
|
+
|
|
1129
|
+
.pf-c-tooltip {
|
|
1130
|
+
--pf-c-tooltip--MaxWidth: 18.75rem;
|
|
1131
|
+
--pf-c-tooltip--BoxShadow: var(--pf-global--BoxShadow--md);
|
|
1132
|
+
--pf-c-tooltip__content--PaddingTop: var(--pf-global--spacer--sm);
|
|
1133
|
+
--pf-c-tooltip__content--PaddingRight: var(--pf-global--spacer--md);
|
|
1134
|
+
--pf-c-tooltip__content--PaddingBottom: var(--pf-global--spacer--sm);
|
|
1135
|
+
--pf-c-tooltip__content--PaddingLeft: var(--pf-global--spacer--md);
|
|
1136
|
+
--pf-c-tooltip__content--Color: var(--pf-global--Color--light-100);
|
|
1137
|
+
--pf-c-tooltip__content--BackgroundColor: var(--pf-global--BackgroundColor--dark-100);
|
|
1138
|
+
--pf-c-tooltip__content--FontSize: var(--pf-global--FontSize--sm);
|
|
1139
|
+
--pf-c-tooltip__arrow--Width: var(--pf-global--arrow--width);
|
|
1140
|
+
--pf-c-tooltip__arrow--Height: var(--pf-global--arrow--width);
|
|
1141
|
+
--pf-c-tooltip__arrow--m-top--TranslateX: -50%;
|
|
1142
|
+
--pf-c-tooltip__arrow--m-top--TranslateY: 50%;
|
|
1143
|
+
--pf-c-tooltip__arrow--m-top--Rotate: 45deg;
|
|
1144
|
+
--pf-c-tooltip__arrow--m-right--TranslateX: -50%;
|
|
1145
|
+
--pf-c-tooltip__arrow--m-right--TranslateY: -50%;
|
|
1146
|
+
--pf-c-tooltip__arrow--m-right--Rotate: 45deg;
|
|
1147
|
+
--pf-c-tooltip__arrow--m-bottom--TranslateX: -50%;
|
|
1148
|
+
--pf-c-tooltip__arrow--m-bottom--TranslateY: -50%;
|
|
1149
|
+
--pf-c-tooltip__arrow--m-bottom--Rotate: 45deg;
|
|
1150
|
+
--pf-c-tooltip__arrow--m-left--TranslateX: 50%;
|
|
1151
|
+
--pf-c-tooltip__arrow--m-left--TranslateY: -50%;
|
|
1152
|
+
--pf-c-tooltip__arrow--m-left--Rotate: 45deg;
|
|
1153
|
+
position: relative;
|
|
1154
|
+
max-width: var(--pf-c-tooltip--MaxWidth);
|
|
1155
|
+
box-shadow: var(--pf-c-tooltip--BoxShadow); }
|
|
1156
|
+
.pf-c-tooltip.pf-m-top .pf-c-tooltip__arrow {
|
|
1157
|
+
bottom: 0;
|
|
1158
|
+
left: 50%;
|
|
1159
|
+
transform: translateX(var(--pf-c-tooltip__arrow--m-top--TranslateX)) translateY(var(--pf-c-tooltip__arrow--m-top--TranslateY)) rotate(var(--pf-c-tooltip__arrow--m-top--Rotate)); }
|
|
1160
|
+
.pf-c-tooltip.pf-m-bottom .pf-c-tooltip__arrow {
|
|
1161
|
+
top: 0;
|
|
1162
|
+
left: 50%;
|
|
1163
|
+
transform: translateX(var(--pf-c-tooltip__arrow--m-bottom--TranslateX)) translateY(var(--pf-c-tooltip__arrow--m-bottom--TranslateY)) rotate(var(--pf-c-tooltip__arrow--m-bottom--Rotate)); }
|
|
1164
|
+
.pf-c-tooltip.pf-m-left .pf-c-tooltip__arrow {
|
|
1165
|
+
top: 50%;
|
|
1166
|
+
right: 0;
|
|
1167
|
+
transform: translateX(var(--pf-c-tooltip__arrow--m-left--TranslateX)) translateY(var(--pf-c-tooltip__arrow--m-left--TranslateY)) rotate(var(--pf-c-tooltip__arrow--m-left--Rotate)); }
|
|
1168
|
+
.pf-c-tooltip.pf-m-right .pf-c-tooltip__arrow {
|
|
1169
|
+
top: 50%;
|
|
1170
|
+
left: 0;
|
|
1171
|
+
transform: translateX(var(--pf-c-tooltip__arrow--m-right--TranslateX)) translateY(var(--pf-c-tooltip__arrow--m-right--TranslateY)) rotate(var(--pf-c-tooltip__arrow--m-right--Rotate)); }
|
|
1172
|
+
|
|
1173
|
+
.pf-c-tooltip__content {
|
|
1174
|
+
position: relative;
|
|
1175
|
+
padding: var(--pf-c-tooltip__content--PaddingTop) var(--pf-c-tooltip__content--PaddingRight) var(--pf-c-tooltip__content--PaddingBottom) var(--pf-c-tooltip__content--PaddingLeft);
|
|
1176
|
+
font-size: var(--pf-c-tooltip__content--FontSize);
|
|
1177
|
+
color: var(--pf-c-tooltip__content--Color);
|
|
1178
|
+
text-align: center;
|
|
1179
|
+
word-break: break-word;
|
|
1180
|
+
background-color: var(--pf-c-tooltip__content--BackgroundColor); }
|
|
1181
|
+
.pf-c-tooltip__content.pf-m-text-align-left {
|
|
1182
|
+
text-align: left; }
|
|
1183
|
+
|
|
1184
|
+
.pf-c-tooltip__arrow {
|
|
1185
|
+
position: absolute;
|
|
1186
|
+
width: var(--pf-c-tooltip__arrow--Width);
|
|
1187
|
+
height: var(--pf-c-tooltip__arrow--Height);
|
|
1188
|
+
pointer-events: none;
|
|
1189
|
+
background-color: var(--pf-c-tooltip__content--BackgroundColor); }
|