@patternfly/patternfly 4.139.1 → 4.141.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/components/Banner/banner.css +33 -0
- package/components/Banner/banner.scss +50 -0
- package/components/DataList/data-list.css +0 -1
- package/components/DataList/data-list.scss +0 -1
- package/{patternfly-drag-drop.css → components/DragDrop/drag-drop.css} +0 -0
- package/{patternfly-drag-drop.scss → components/DragDrop/drag-drop.scss} +0 -0
- package/components/DualListSelector/dual-list-selector.css +8 -0
- package/components/DualListSelector/dual-list-selector.scss +10 -0
- package/components/FormControl/form-control.scss +1 -1
- package/components/Menu/menu.css +32 -1
- package/components/Menu/menu.scss +39 -1
- package/components/Select/select.css +1 -0
- package/components/Select/select.scss +2 -0
- package/components/_all.scss +1 -0
- package/docs/components/Banner/examples/Banner.md +46 -0
- package/docs/components/DragDrop/examples/DragDrop.css +13 -0
- package/docs/components/DragDrop/examples/DragDrop.md +67 -0
- package/docs/components/DualListSelector/examples/DualListSelector.md +60 -46
- package/docs/components/Menu/examples/Menu.md +548 -67
- package/docs/components/Select/examples/Select.md +250 -4
- package/package.json +5 -6
- package/patternfly-no-reset.css +130 -2
- package/patternfly.css +130 -2
- package/patternfly.min.css +1 -1
- package/patternfly.min.css.map +1 -1
|
@@ -603,7 +603,7 @@ The single select should be used when the user is selecting an option from a lis
|
|
|
603
603
|
type="text"
|
|
604
604
|
id="select-single-typeahead-expanded-typeahead"
|
|
605
605
|
aria-label="Type to filter"
|
|
606
|
-
|
|
606
|
+
placeholder="New"
|
|
607
607
|
/>
|
|
608
608
|
</div>
|
|
609
609
|
<button
|
|
@@ -674,7 +674,7 @@ The single select should be used when the user is selecting an option from a lis
|
|
|
674
674
|
type="text"
|
|
675
675
|
id="select-single-typeahead-expanded-selected-typeahead"
|
|
676
676
|
aria-label="Type to filter"
|
|
677
|
-
|
|
677
|
+
placeholder="New Mexico"
|
|
678
678
|
/>
|
|
679
679
|
</div>
|
|
680
680
|
<button
|
|
@@ -817,6 +817,85 @@ The single select should be used when the user is selecting an option from a lis
|
|
|
817
817
|
|
|
818
818
|
```
|
|
819
819
|
|
|
820
|
+
### Invalid with typeahead
|
|
821
|
+
|
|
822
|
+
```html
|
|
823
|
+
<div class="pf-c-select pf-m-invalid">
|
|
824
|
+
<span id="select-single-typeahead-invalid-label" hidden>Choose a state</span>
|
|
825
|
+
|
|
826
|
+
<div class="pf-c-select__toggle pf-m-typeahead">
|
|
827
|
+
<div class="pf-c-select__toggle-wrapper">
|
|
828
|
+
<input
|
|
829
|
+
class="pf-c-form-control pf-c-select__toggle-typeahead"
|
|
830
|
+
type="text"
|
|
831
|
+
id="select-single-typeahead-invalid-typeahead"
|
|
832
|
+
aria-invalid="true"
|
|
833
|
+
value="Invalid"
|
|
834
|
+
aria-label="Type to filter"
|
|
835
|
+
placeholder="Choose a state"
|
|
836
|
+
/>
|
|
837
|
+
</div>
|
|
838
|
+
<span class="pf-c-select__toggle-status-icon">
|
|
839
|
+
<i class="fas fa-exclamation-circle" aria-hidden="true"></i>
|
|
840
|
+
</span>
|
|
841
|
+
<button
|
|
842
|
+
class="pf-c-button pf-m-plain pf-c-select__toggle-button"
|
|
843
|
+
type="button"
|
|
844
|
+
id="select-single-typeahead-invalid-toggle"
|
|
845
|
+
aria-haspopup="true"
|
|
846
|
+
aria-expanded="false"
|
|
847
|
+
aria-labelledby="select-single-typeahead-invalid-label select-single-typeahead-invalid-toggle"
|
|
848
|
+
aria-label="Select"
|
|
849
|
+
>
|
|
850
|
+
<i class="fas fa-caret-down pf-c-select__toggle-arrow" aria-hidden="true"></i>
|
|
851
|
+
</button>
|
|
852
|
+
</div>
|
|
853
|
+
|
|
854
|
+
<ul
|
|
855
|
+
class="pf-c-select__menu"
|
|
856
|
+
aria-labelledby="select-single-typeahead-invalid-label"
|
|
857
|
+
role="listbox"
|
|
858
|
+
hidden
|
|
859
|
+
>
|
|
860
|
+
<li role="presentation">
|
|
861
|
+
<button class="pf-c-select__menu-item" role="option">Alabama</button>
|
|
862
|
+
</li>
|
|
863
|
+
<li role="presentation">
|
|
864
|
+
<button class="pf-c-select__menu-item" role="option">Florida</button>
|
|
865
|
+
</li>
|
|
866
|
+
<li role="presentation">
|
|
867
|
+
<button class="pf-c-select__menu-item" role="option">
|
|
868
|
+
New
|
|
869
|
+
Jersey
|
|
870
|
+
</button>
|
|
871
|
+
</li>
|
|
872
|
+
<li role="presentation">
|
|
873
|
+
<button
|
|
874
|
+
class="pf-c-select__menu-item pf-m-selected"
|
|
875
|
+
role="option"
|
|
876
|
+
aria-selected="true"
|
|
877
|
+
>
|
|
878
|
+
New
|
|
879
|
+
Mexico
|
|
880
|
+
<span class="pf-c-select__menu-item-icon">
|
|
881
|
+
<i class="fas fa-check" aria-hidden="true"></i>
|
|
882
|
+
</span>
|
|
883
|
+
</button>
|
|
884
|
+
</li>
|
|
885
|
+
<li role="presentation">
|
|
886
|
+
<button class="pf-c-select__menu-item" role="option">
|
|
887
|
+
New
|
|
888
|
+
York
|
|
889
|
+
</button>
|
|
890
|
+
</li>
|
|
891
|
+
<li role="presentation">
|
|
892
|
+
<button class="pf-c-select__menu-item" role="option">North Carolina</button>
|
|
893
|
+
</li>
|
|
894
|
+
</ul>
|
|
895
|
+
</div>
|
|
896
|
+
|
|
897
|
+
```
|
|
898
|
+
|
|
820
899
|
The single select typeahead should be used when the user is selecting one option from a list of items with the option to narrow the list by typing from the keyboard. Selected items are removed from the list. The user can clear the selection and restore the placeholder text.
|
|
821
900
|
|
|
822
901
|
### Accessibility
|
|
@@ -1013,7 +1092,7 @@ The single select typeahead should be used when the user is selecting one option
|
|
|
1013
1092
|
type="text"
|
|
1014
1093
|
id="select-multi-typeahead-expanded-typeahead"
|
|
1015
1094
|
aria-label="Type to filter"
|
|
1016
|
-
|
|
1095
|
+
placeholder="Choose states"
|
|
1017
1096
|
/>
|
|
1018
1097
|
</div>
|
|
1019
1098
|
<button
|
|
@@ -1146,7 +1225,7 @@ The single select typeahead should be used when the user is selecting one option
|
|
|
1146
1225
|
type="text"
|
|
1147
1226
|
id="select-multi-typeahead-expanded-selected-typeahead"
|
|
1148
1227
|
aria-label="Type to filter"
|
|
1149
|
-
|
|
1228
|
+
placeholder="New"
|
|
1150
1229
|
/>
|
|
1151
1230
|
</div>
|
|
1152
1231
|
<button
|
|
@@ -1191,6 +1270,173 @@ The single select typeahead should be used when the user is selecting one option
|
|
|
1191
1270
|
|
|
1192
1271
|
```
|
|
1193
1272
|
|
|
1273
|
+
### Multi with typeahead invalid
|
|
1274
|
+
|
|
1275
|
+
```html
|
|
1276
|
+
<div class="pf-c-select pf-m-expanded pf-m-invalid">
|
|
1277
|
+
<span id="select-multi-typeahead-invalid-label" hidden>Choose states</span>
|
|
1278
|
+
|
|
1279
|
+
<div class="pf-c-select__toggle pf-m-typeahead">
|
|
1280
|
+
<div class="pf-c-select__toggle-wrapper">
|
|
1281
|
+
<div class="pf-c-chip-group">
|
|
1282
|
+
<div class="pf-c-chip-group__main">
|
|
1283
|
+
<ul
|
|
1284
|
+
class="pf-c-chip-group__list"
|
|
1285
|
+
role="list"
|
|
1286
|
+
aria-label="Chip group list"
|
|
1287
|
+
>
|
|
1288
|
+
<li class="pf-c-chip-group__list-item">
|
|
1289
|
+
<div class="pf-c-chip">
|
|
1290
|
+
<span
|
|
1291
|
+
class="pf-c-chip__text"
|
|
1292
|
+
id="select-multi-typeahead-invalid-chip_one"
|
|
1293
|
+
>Arkansas</span>
|
|
1294
|
+
<button
|
|
1295
|
+
class="pf-c-button pf-m-plain"
|
|
1296
|
+
type="button"
|
|
1297
|
+
aria-labelledby="remove_select-multi-typeahead-invalid_chip_one select-multi-typeahead-invalid-chip_two"
|
|
1298
|
+
aria-label="Remove"
|
|
1299
|
+
id="remove_select-multi-typeahead-invalid_chip_one"
|
|
1300
|
+
>
|
|
1301
|
+
<i class="fas fa-times" aria-hidden="true"></i>
|
|
1302
|
+
</button>
|
|
1303
|
+
</div>
|
|
1304
|
+
</li>
|
|
1305
|
+
<li class="pf-c-chip-group__list-item">
|
|
1306
|
+
<div class="pf-c-chip">
|
|
1307
|
+
<span
|
|
1308
|
+
class="pf-c-chip__text"
|
|
1309
|
+
id="select-multi-typeahead-invalid-chip_two"
|
|
1310
|
+
>Massachusetts</span>
|
|
1311
|
+
<button
|
|
1312
|
+
class="pf-c-button pf-m-plain"
|
|
1313
|
+
type="button"
|
|
1314
|
+
aria-labelledby="remove_select-multi-typeahead-invalid_chip_two select-multi-typeahead-invalid-chip_two"
|
|
1315
|
+
aria-label="Remove"
|
|
1316
|
+
id="remove_select-multi-typeahead-invalid_chip_two"
|
|
1317
|
+
>
|
|
1318
|
+
<i class="fas fa-times" aria-hidden="true"></i>
|
|
1319
|
+
</button>
|
|
1320
|
+
</div>
|
|
1321
|
+
</li>
|
|
1322
|
+
<li class="pf-c-chip-group__list-item">
|
|
1323
|
+
<div class="pf-c-chip">
|
|
1324
|
+
<span
|
|
1325
|
+
class="pf-c-chip__text"
|
|
1326
|
+
id="select-multi-typeahead-invalid-chip_three"
|
|
1327
|
+
>New Mexico</span>
|
|
1328
|
+
<button
|
|
1329
|
+
class="pf-c-button pf-m-plain"
|
|
1330
|
+
type="button"
|
|
1331
|
+
aria-labelledby="remove_select-multi-typeahead-invalid_chip_three select-multi-typeahead-invalid-chip_three"
|
|
1332
|
+
aria-label="Remove"
|
|
1333
|
+
id="remove_select-multi-typeahead-invalid_chip_three"
|
|
1334
|
+
>
|
|
1335
|
+
<i class="fas fa-times" aria-hidden="true"></i>
|
|
1336
|
+
</button>
|
|
1337
|
+
</div>
|
|
1338
|
+
</li>
|
|
1339
|
+
<li class="pf-c-chip-group__list-item">
|
|
1340
|
+
<div class="pf-c-chip">
|
|
1341
|
+
<span
|
|
1342
|
+
class="pf-c-chip__text"
|
|
1343
|
+
id="select-multi-typeahead-invalid-chip_four"
|
|
1344
|
+
>Ohio</span>
|
|
1345
|
+
<button
|
|
1346
|
+
class="pf-c-button pf-m-plain"
|
|
1347
|
+
type="button"
|
|
1348
|
+
aria-labelledby="remove_select-multi-typeahead-invalid_chip_four select-multi-typeahead-invalid-chip_four"
|
|
1349
|
+
aria-label="Remove"
|
|
1350
|
+
id="remove_select-multi-typeahead-invalid_chip_four"
|
|
1351
|
+
>
|
|
1352
|
+
<i class="fas fa-times" aria-hidden="true"></i>
|
|
1353
|
+
</button>
|
|
1354
|
+
</div>
|
|
1355
|
+
</li>
|
|
1356
|
+
<li class="pf-c-chip-group__list-item">
|
|
1357
|
+
<div class="pf-c-chip">
|
|
1358
|
+
<span
|
|
1359
|
+
class="pf-c-chip__text"
|
|
1360
|
+
id="select-multi-typeahead-invalid-chip_five"
|
|
1361
|
+
>Washington</span>
|
|
1362
|
+
<button
|
|
1363
|
+
class="pf-c-button pf-m-plain"
|
|
1364
|
+
type="button"
|
|
1365
|
+
aria-labelledby="remove_select-multi-typeahead-invalid_chip_five select-multi-typeahead-invalid-chip_five"
|
|
1366
|
+
aria-label="Remove"
|
|
1367
|
+
id="remove_select-multi-typeahead-invalid_chip_five"
|
|
1368
|
+
>
|
|
1369
|
+
<i class="fas fa-times" aria-hidden="true"></i>
|
|
1370
|
+
</button>
|
|
1371
|
+
</div>
|
|
1372
|
+
</li>
|
|
1373
|
+
</ul>
|
|
1374
|
+
</div>
|
|
1375
|
+
</div>
|
|
1376
|
+
<input
|
|
1377
|
+
class="pf-c-form-control pf-c-select__toggle-typeahead"
|
|
1378
|
+
type="text"
|
|
1379
|
+
id="select-multi-typeahead-invalid-typeahead"
|
|
1380
|
+
aria-invalid="true"
|
|
1381
|
+
value="Invalid"
|
|
1382
|
+
aria-label="Type to filter"
|
|
1383
|
+
placeholder="Choose states"
|
|
1384
|
+
/>
|
|
1385
|
+
</div>
|
|
1386
|
+
<span class="pf-c-select__toggle-status-icon">
|
|
1387
|
+
<i class="fas fa-exclamation-circle" aria-hidden="true"></i>
|
|
1388
|
+
</span>
|
|
1389
|
+
<button
|
|
1390
|
+
class="pf-c-button pf-m-plain pf-c-select__toggle-clear"
|
|
1391
|
+
type="button"
|
|
1392
|
+
aria-label="Clear all"
|
|
1393
|
+
>
|
|
1394
|
+
<i class="fas fa-times-circle" aria-hidden="true"></i>
|
|
1395
|
+
</button>
|
|
1396
|
+
<button
|
|
1397
|
+
class="pf-c-button pf-m-plain pf-c-select__toggle-button"
|
|
1398
|
+
type="button"
|
|
1399
|
+
id="select-multi-typeahead-invalid-toggle"
|
|
1400
|
+
aria-haspopup="true"
|
|
1401
|
+
aria-expanded="true"
|
|
1402
|
+
aria-labelledby="select-multi-typeahead-invalid-label select-multi-typeahead-invalid-toggle"
|
|
1403
|
+
aria-label="Select"
|
|
1404
|
+
>
|
|
1405
|
+
<i class="fas fa-caret-down pf-c-select__toggle-arrow" aria-hidden="true"></i>
|
|
1406
|
+
</button>
|
|
1407
|
+
</div>
|
|
1408
|
+
|
|
1409
|
+
<ul
|
|
1410
|
+
class="pf-c-select__menu"
|
|
1411
|
+
aria-labelledby="select-multi-typeahead-invalid-label"
|
|
1412
|
+
role="listbox"
|
|
1413
|
+
>
|
|
1414
|
+
<li role="presentation">
|
|
1415
|
+
<button class="pf-c-select__menu-item" role="option">Alabama</button>
|
|
1416
|
+
</li>
|
|
1417
|
+
<li role="presentation">
|
|
1418
|
+
<button class="pf-c-select__menu-item" role="option">Florida</button>
|
|
1419
|
+
</li>
|
|
1420
|
+
<li role="presentation">
|
|
1421
|
+
<button class="pf-c-select__menu-item" role="option">
|
|
1422
|
+
New
|
|
1423
|
+
Jersey
|
|
1424
|
+
</button>
|
|
1425
|
+
</li>
|
|
1426
|
+
<li role="presentation">
|
|
1427
|
+
<button class="pf-c-select__menu-item" role="option">
|
|
1428
|
+
New
|
|
1429
|
+
York
|
|
1430
|
+
</button>
|
|
1431
|
+
</li>
|
|
1432
|
+
<li role="presentation">
|
|
1433
|
+
<button class="pf-c-select__menu-item" role="option">North Carolina</button>
|
|
1434
|
+
</li>
|
|
1435
|
+
</ul>
|
|
1436
|
+
</div>
|
|
1437
|
+
|
|
1438
|
+
```
|
|
1439
|
+
|
|
1194
1440
|
The multiselect should be used when the user is selecting multiple items from a list. The user can narrow the list by typing from the keyboard. The List updates while typing. Selected items create a new chip and are removed from the list. The user may clear selections individually or all at once to restore the placeholder.
|
|
1195
1441
|
|
|
1196
1442
|
### Accessibility
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@patternfly/patternfly",
|
|
3
3
|
"description": "Assets, source, tooling, and content for PatternFly 4",
|
|
4
|
-
"version": "4.
|
|
4
|
+
"version": "4.141.0",
|
|
5
5
|
"keywords": [],
|
|
6
6
|
"license": "MIT",
|
|
7
7
|
"scripts": {
|
|
@@ -33,10 +33,9 @@
|
|
|
33
33
|
"@fortawesome/fontawesome": "^1.1.8",
|
|
34
34
|
"@octokit/rest": "^16.40.1",
|
|
35
35
|
"@patternfly/patternfly-a11y": "4.2.1",
|
|
36
|
-
"@patternfly/react-charts": "6.15.
|
|
37
|
-
"@patternfly/react-code-editor": "4.3.
|
|
38
|
-
"@patternfly/react-
|
|
39
|
-
"@patternfly/react-table": "4.29.37",
|
|
36
|
+
"@patternfly/react-charts": "6.15.23",
|
|
37
|
+
"@patternfly/react-code-editor": "4.3.61",
|
|
38
|
+
"@patternfly/react-table": "4.30.3",
|
|
40
39
|
"@starptech/prettyhtml": "^0.10.0",
|
|
41
40
|
"babel-eslint": "^8.2.3",
|
|
42
41
|
"cheerio": "^1.0.0-rc.3",
|
|
@@ -79,7 +78,7 @@
|
|
|
79
78
|
"stylelint-scss": "^3.18.0",
|
|
80
79
|
"stylelint-value-no-unknown-custom-properties": "^3.0.0",
|
|
81
80
|
"surge": "^0.21.3",
|
|
82
|
-
"theme-patternfly-org": "0.
|
|
81
|
+
"theme-patternfly-org": "0.7.3",
|
|
83
82
|
"unified": "^9.2.0",
|
|
84
83
|
"webpack": "^4.43.0"
|
|
85
84
|
},
|
package/patternfly-no-reset.css
CHANGED
|
@@ -6295,6 +6295,12 @@ html {
|
|
|
6295
6295
|
--pf-c-banner--FontSize: var(--pf-global--FontSize--sm);
|
|
6296
6296
|
--pf-c-banner--Color: var(--pf-global--Color--100);
|
|
6297
6297
|
--pf-c-banner--BackgroundColor: var(--pf-global--BackgroundColor--dark-400);
|
|
6298
|
+
--pf-c-banner--link--Color: var(--pf-c-banner--Color);
|
|
6299
|
+
--pf-c-banner--link--TextDecoration: underline;
|
|
6300
|
+
--pf-c-banner--link--hover--Color: var(--pf-c-banner--Color);
|
|
6301
|
+
--pf-c-banner--link--hover--FontWeight: var(--pf-global--FontWeight--semi-bold);
|
|
6302
|
+
--pf-c-banner--link--disabled--Color: var(--pf-c-banner--Color);
|
|
6303
|
+
--pf-c-banner--link--disabled--TextDecoration: none;
|
|
6298
6304
|
--pf-c-banner--m-info--BackgroundColor: var(--pf-global--palette--blue-200);
|
|
6299
6305
|
--pf-c-banner--m-danger--BackgroundColor: var(--pf-global--danger-color--100);
|
|
6300
6306
|
--pf-c-banner--m-success--BackgroundColor: var(--pf-global--success-color--100);
|
|
@@ -6338,6 +6344,33 @@ html {
|
|
|
6338
6344
|
z-index: var(--pf-c-banner--m-sticky--ZIndex);
|
|
6339
6345
|
box-shadow: var(--pf-c-banner--m-sticky--BoxShadow);
|
|
6340
6346
|
}
|
|
6347
|
+
.pf-c-banner a {
|
|
6348
|
+
color: var(--pf-c-banner--link--Color);
|
|
6349
|
+
text-decoration: var(--pf-c-banner--link--TextDecoration);
|
|
6350
|
+
}
|
|
6351
|
+
.pf-c-banner a:hover:not(.pf-m-disabled) {
|
|
6352
|
+
--pf-c-banner--link--Color: var(--pf-c-banner--link--hover--Color);
|
|
6353
|
+
font-weight: var(--pf-c-banner--link--hover--FontWeight);
|
|
6354
|
+
}
|
|
6355
|
+
.pf-c-banner a.pf-m-disabled {
|
|
6356
|
+
--pf-c-banner--link--Color: var(--pf-c-banner--link--disabled--Color);
|
|
6357
|
+
--pf-c-banner--link--TextDecoration: var(--pf-c-banner--link--disabled--TextDecoration);
|
|
6358
|
+
cursor: not-allowed;
|
|
6359
|
+
}
|
|
6360
|
+
.pf-c-banner .pf-c-button.pf-m-inline {
|
|
6361
|
+
--pf-c-button--m-link--Color: var(--pf-c-banner--link--Color);
|
|
6362
|
+
--pf-c-button--m-link--m-inline--hover--Color: var(--pf-c-banner--link--hover--Color);
|
|
6363
|
+
--pf-c-button--disabled--Color: var(--pf-c-banner--link--disabled--Color);
|
|
6364
|
+
text-decoration: var(--pf-c-banner--link--TextDecoration);
|
|
6365
|
+
}
|
|
6366
|
+
.pf-c-banner .pf-c-button.pf-m-inline:hover {
|
|
6367
|
+
--pf-c-banner--link--Color: var(--pf-c-banner--link--hover--Color);
|
|
6368
|
+
font-weight: var(--pf-c-banner--link--hover--FontWeight);
|
|
6369
|
+
}
|
|
6370
|
+
.pf-c-banner .pf-c-button.pf-m-inline:disabled, .pf-c-banner .pf-c-button.pf-m-inline.pf-m-disabled {
|
|
6371
|
+
--pf-c-banner--link--TextDecoration: var(--pf-c-banner--link--disabled--TextDecoration);
|
|
6372
|
+
cursor: not-allowed;
|
|
6373
|
+
}
|
|
6341
6374
|
|
|
6342
6375
|
.pf-c-brand {
|
|
6343
6376
|
--pf-c-brand--Width: auto;
|
|
@@ -9065,7 +9098,6 @@ label.pf-c-check, .pf-c-check__label,
|
|
|
9065
9098
|
.pf-c-data-list__item-draggable-button.pf-m-disabled {
|
|
9066
9099
|
--pf-c-data-list__item-draggable-button-icon--Color: var(--pf-c-data-list__item-draggable-button--m-disabled__draggable-icon--Color);
|
|
9067
9100
|
pointer-events: none;
|
|
9068
|
-
cursor: none;
|
|
9069
9101
|
}
|
|
9070
9102
|
.pf-c-data-list__item-draggable-button .pf-c-data-list__item-draggable-icon {
|
|
9071
9103
|
color: var(--pf-c-data-list__item-draggable-button-icon--Color);
|
|
@@ -9406,6 +9438,62 @@ label.pf-c-check, .pf-c-check__label,
|
|
|
9406
9438
|
}
|
|
9407
9439
|
}
|
|
9408
9440
|
|
|
9441
|
+
.pf-c-draggable {
|
|
9442
|
+
--pf-c-draggable--Cursor: auto;
|
|
9443
|
+
--pf-c-draggable--m-dragging--Cursor: grabbing;
|
|
9444
|
+
--pf-c-draggable--m-dragging--BoxShadow: var(--pf-global--BoxShadow--md);
|
|
9445
|
+
--pf-c-draggable--m-dragging--after--BorderWidth: var(--pf-global--BorderWidth--sm);
|
|
9446
|
+
--pf-c-draggable--m-dragging--after--BorderColor: var(--pf-global--active-color--100);
|
|
9447
|
+
--pf-c-draggable--m-drag-outside--Cursor: not-allowed;
|
|
9448
|
+
--pf-c-draggable--m-drag-outside--after--BorderColor: var(--pf-global--danger-color--100);
|
|
9449
|
+
cursor: var(--pf-c-draggable--Cursor);
|
|
9450
|
+
}
|
|
9451
|
+
.pf-c-draggable.pf-m-dragging {
|
|
9452
|
+
--pf-c-draggable--Cursor: var(--pf-c-draggable--m-dragging--Cursor);
|
|
9453
|
+
position: relative;
|
|
9454
|
+
background-color: var(--pf-c-draggable--m-dragging--BackgroundColor);
|
|
9455
|
+
box-shadow: var(--pf-c-draggable--m-dragging--BoxShadow);
|
|
9456
|
+
}
|
|
9457
|
+
.pf-c-draggable.pf-m-dragging::after {
|
|
9458
|
+
position: absolute;
|
|
9459
|
+
top: 0;
|
|
9460
|
+
right: 0;
|
|
9461
|
+
bottom: 0;
|
|
9462
|
+
left: 0;
|
|
9463
|
+
content: "";
|
|
9464
|
+
border: var(--pf-c-draggable--m-dragging--after--BorderWidth) solid var(--pf-c-draggable--m-dragging--after--BorderColor);
|
|
9465
|
+
}
|
|
9466
|
+
.pf-c-draggable.pf-m-drag-outside {
|
|
9467
|
+
--pf-c-draggable--m-dragging--Cursor: var(--pf-c-draggable--m-drag-outside--Cursor);
|
|
9468
|
+
--pf-c-draggable--m-dragging--after--BorderColor: var(--pf-c-draggable--m-drag-outside--after--BorderColor);
|
|
9469
|
+
}
|
|
9470
|
+
|
|
9471
|
+
.pf-c-droppable {
|
|
9472
|
+
--pf-c-droppable--m-dragging--after--BackgroundColor: rgba(255, 255, 255, 0.6);
|
|
9473
|
+
--pf-c-droppable--m-dragging--after--BorderWidth: var(--pf-global--BorderWidth--sm);
|
|
9474
|
+
--pf-c-droppable--m-dragging--after--BorderColor: var(--pf-global--active-color--100);
|
|
9475
|
+
--pf-c-droppable--m-drag-outside--after--BorderColor: var(--pf-global--danger-color--100);
|
|
9476
|
+
}
|
|
9477
|
+
.pf-c-droppable.pf-m-dragging {
|
|
9478
|
+
position: relative;
|
|
9479
|
+
}
|
|
9480
|
+
.pf-c-droppable.pf-m-dragging::after {
|
|
9481
|
+
position: absolute;
|
|
9482
|
+
top: 0;
|
|
9483
|
+
right: 0;
|
|
9484
|
+
bottom: 0;
|
|
9485
|
+
left: 0;
|
|
9486
|
+
pointer-events: none;
|
|
9487
|
+
content: "";
|
|
9488
|
+
}
|
|
9489
|
+
.pf-c-droppable::after {
|
|
9490
|
+
background-color: var(--pf-c-droppable--m-dragging--after--BackgroundColor);
|
|
9491
|
+
border: var(--pf-c-droppable--m-dragging--after--BorderWidth) solid var(--pf-c-droppable--m-dragging--after--BorderColor);
|
|
9492
|
+
}
|
|
9493
|
+
.pf-c-droppable.pf-m-drag-outside {
|
|
9494
|
+
--pf-c-droppable--m-dragging--after--BorderColor: var(--pf-c-droppable--m-drag-outside--after--BorderColor);
|
|
9495
|
+
}
|
|
9496
|
+
|
|
9409
9497
|
.pf-c-dual-list-selector {
|
|
9410
9498
|
--pf-c-dual-list-selector__header--GridArea: pane-header;
|
|
9411
9499
|
--pf-c-dual-list-selector__tools--GridArea: pane-tools;
|
|
@@ -9444,6 +9532,7 @@ label.pf-c-check, .pf-c-check__label,
|
|
|
9444
9532
|
--pf-c-dual-list-selector__item-text--Color: var(--pf-global--Color--100);
|
|
9445
9533
|
--pf-c-dual-list-selector__list-item-row--m-selected__text--Color: var(--pf-global--active-color--100);
|
|
9446
9534
|
--pf-c-dual-list-selector__list-item-row--m-selected__text--FontWeight: var(--pf-global--FontWeight--bold);
|
|
9535
|
+
--pf-c-dual-list-selector__list-item--m-disabled__item-text--Color: var(--pf-global--disabled-color--100);
|
|
9447
9536
|
--pf-c-dual-list-selector__status--MarginBottom: var(--pf-global--spacer--sm);
|
|
9448
9537
|
--pf-c-dual-list-selector__status-text--FontSize: var(--pf-global--FontSize--sm);
|
|
9449
9538
|
--pf-c-dual-list-selector__status-text--Color: var(--pf-global--Color--200);
|
|
@@ -9464,6 +9553,7 @@ label.pf-c-check, .pf-c-check__label,
|
|
|
9464
9553
|
--pf-c-dual-list-selector__list-item--m-expanded__item-toggle-icon--Rotate: 90deg;
|
|
9465
9554
|
--pf-c-dual-list-selector__item-toggle-icon--Transition: var(--pf-global--Transition);
|
|
9466
9555
|
--pf-c-dual-list-selector__item-toggle-icon--MinWidth: var(--pf-c-dual-list-selector__list-item-row--FontSize);
|
|
9556
|
+
--pf-c-dual-list-selector__list-item--m-disabled__item-toggle-icon--Color: var(--pf-global--disabled-color--200);
|
|
9467
9557
|
display: grid;
|
|
9468
9558
|
grid-template-areas: "pane-header . pane-header-c" "pane-tools . pane-tools-c" "pane-status . pane-status-c" "pane-menu controls pane-menu-c";
|
|
9469
9559
|
grid-template-columns: minmax(var(--pf-c-dual-list-selector--GridTemplateColumns--pane--MinMax--min), var(--pf-c-dual-list-selector--GridTemplateColumns--pane--MinMax--max)) min-content minmax(var(--pf-c-dual-list-selector--GridTemplateColumns--pane--MinMax--min), var(--pf-c-dual-list-selector--GridTemplateColumns--pane--MinMax--max));
|
|
@@ -9551,6 +9641,11 @@ label.pf-c-check, .pf-c-check__label,
|
|
|
9551
9641
|
.pf-c-dual-list-selector__list-item.pf-m-expanded {
|
|
9552
9642
|
--pf-c-dual-list-selector__item-toggle-icon--Rotate: var(--pf-c-dual-list-selector__list-item--m-expanded__item-toggle-icon--Rotate);
|
|
9553
9643
|
}
|
|
9644
|
+
.pf-c-dual-list-selector__list-item.pf-m-disabled {
|
|
9645
|
+
--pf-c-dual-list-selector__item-text--Color: var(--pf-c-dual-list-selector__list-item--m-disabled__item-text--Color);
|
|
9646
|
+
--pf-c-dual-list-selector__item-toggle-icon--Color: var(--pf-c-dual-list-selector__list-item--m-disabled__item-toggle-icon--Color);
|
|
9647
|
+
pointer-events: none;
|
|
9648
|
+
}
|
|
9554
9649
|
|
|
9555
9650
|
.pf-c-dual-list-selector__list-item-row {
|
|
9556
9651
|
display: flex;
|
|
@@ -9653,6 +9748,7 @@ label.pf-c-check, .pf-c-check__label,
|
|
|
9653
9748
|
.pf-c-dual-list-selector__item-toggle-icon {
|
|
9654
9749
|
display: inline-block;
|
|
9655
9750
|
min-width: var(--pf-c-dual-list-selector__item-toggle-icon--MinWidth);
|
|
9751
|
+
color: var(--pf-c-dual-list-selector__item-toggle-icon--Color, inherit);
|
|
9656
9752
|
text-align: center;
|
|
9657
9753
|
transition: var(--pf-c-dual-list-selector__item-toggle-icon--Transition);
|
|
9658
9754
|
transform: rotate(var(--pf-c-dual-list-selector__item-toggle-icon--Rotate));
|
|
@@ -15429,10 +15525,13 @@ ul.pf-c-list {
|
|
|
15429
15525
|
--pf-c-menu--m-flyout__menu--Left: calc(100% + var(--pf-c-menu--m-flyout__menu--left-offset));
|
|
15430
15526
|
--pf-c-menu--m-flyout__menu--m-top--Bottom: calc(var(--pf-c-menu__list--PaddingTop) * -1);
|
|
15431
15527
|
--pf-c-menu--m-flyout__menu--m-left--Right: calc(100% + var(--pf-c-menu--m-flyout__menu--m-left--right-offset));
|
|
15528
|
+
--pf-c-menu--m-plain--BoxShadow: none;
|
|
15432
15529
|
--pf-c-menu--m-flyout__menu--top-offset: 0px;
|
|
15433
15530
|
--pf-c-menu--m-flyout__menu--left-offset: 0px;
|
|
15434
15531
|
--pf-c-menu--m-flyout__menu--m-left--right-offset: 0px;
|
|
15435
15532
|
--pf-c-menu__content--Height: auto;
|
|
15533
|
+
--pf-c-menu__content--MaxHeight: none;
|
|
15534
|
+
--pf-c-menu--m-scrollable__content--MaxHeight: 18.75rem;
|
|
15436
15535
|
--pf-c-menu--c-divider--MarginTop: 0;
|
|
15437
15536
|
--pf-c-menu--c-divider--MarginBottom: 0;
|
|
15438
15537
|
--pf-c-menu__list--c-divider--MarginTop: var(--pf-global--spacer--sm);
|
|
@@ -15528,7 +15627,14 @@ ul.pf-c-list {
|
|
|
15528
15627
|
--pf-c-menu__footer--PaddingRight: var(--pf-global--spacer--md);
|
|
15529
15628
|
--pf-c-menu__footer--PaddingBottom: var(--pf-global--spacer--md);
|
|
15530
15629
|
--pf-c-menu__footer--PaddingLeft: var(--pf-global--spacer--md);
|
|
15531
|
-
--pf-c-menu__footer--BoxShadow:
|
|
15630
|
+
--pf-c-menu__footer--BoxShadow: none;
|
|
15631
|
+
--pf-c-menu__footer--after--BorderTopWidth: var(--pf-global--BorderWidth--sm);
|
|
15632
|
+
--pf-c-menu__footer--after--BorderTopColor: var(--pf-global--BorderColor--100);
|
|
15633
|
+
--pf-c-menu__footer--after--BorderBottomWidth: 0;
|
|
15634
|
+
--pf-c-menu__footer--after--BorderBottomColor: var(--pf-global--BorderColor--100);
|
|
15635
|
+
--pf-c-menu--m-scrollable__footer--BoxShadow: var(--pf-global--BoxShadow--sm-top);
|
|
15636
|
+
--pf-c-menu--m-scrollable__footer--after--BorderTopWidth: 0;
|
|
15637
|
+
--pf-c-menu--m-scrollable__footer--after--BorderBottomWidth: var(--pf-global--BorderWidth--sm);
|
|
15532
15638
|
z-index: var(--pf-c-menu--ZIndex);
|
|
15533
15639
|
width: var(--pf-c-menu--Width);
|
|
15534
15640
|
background-color: var(--pf-c-menu--BackgroundColor);
|
|
@@ -15624,6 +15730,15 @@ ul.pf-c-list {
|
|
|
15624
15730
|
.pf-c-menu.pf-m-drilled-in > .pf-c-menu__content > .pf-c-menu__list > .pf-c-menu__list-item:not(.pf-m-current-path) {
|
|
15625
15731
|
display: none;
|
|
15626
15732
|
}
|
|
15733
|
+
.pf-c-menu.pf-m-plain {
|
|
15734
|
+
--pf-c-menu--BoxShadow: var(--pf-c-menu--m-plain--BoxShadow);
|
|
15735
|
+
}
|
|
15736
|
+
.pf-c-menu.pf-m-scrollable {
|
|
15737
|
+
--pf-c-menu__content--MaxHeight: var(--pf-c-menu--m-scrollable__content--MaxHeight);
|
|
15738
|
+
--pf-c-menu__footer--BoxShadow: var(--pf-c-menu--m-scrollable__footer--BoxShadow);
|
|
15739
|
+
--pf-c-menu__footer--after--BorderTopWidth: var(--pf-c-menu--m-scrollable__footer--after--BorderTopWidth);
|
|
15740
|
+
--pf-c-menu__footer--after--BorderBottomWidth: var(--pf-c-menu--m-scrollable__footer--after--BorderBottomWidth);
|
|
15741
|
+
}
|
|
15627
15742
|
|
|
15628
15743
|
.pf-c-menu__breadcrumb {
|
|
15629
15744
|
display: flex;
|
|
@@ -15838,9 +15953,21 @@ ul.pf-c-list {
|
|
|
15838
15953
|
}
|
|
15839
15954
|
|
|
15840
15955
|
.pf-c-menu__footer {
|
|
15956
|
+
position: relative;
|
|
15841
15957
|
padding: var(--pf-c-menu__footer--PaddingTop) var(--pf-c-menu__footer--PaddingRight) var(--pf-c-menu__footer--PaddingBottom) var(--pf-c-menu__footer--PaddingLeft);
|
|
15842
15958
|
box-shadow: var(--pf-c-menu__footer--BoxShadow);
|
|
15843
15959
|
}
|
|
15960
|
+
.pf-c-menu__footer::after {
|
|
15961
|
+
position: absolute;
|
|
15962
|
+
top: 0;
|
|
15963
|
+
right: 0;
|
|
15964
|
+
bottom: 0;
|
|
15965
|
+
left: 0;
|
|
15966
|
+
pointer-events: none;
|
|
15967
|
+
content: "";
|
|
15968
|
+
border-top: var(--pf-c-menu__footer--after--BorderTopWidth) solid var(--pf-c-menu__footer--after--BorderTopColor);
|
|
15969
|
+
border-bottom: var(--pf-c-menu__footer--after--BorderBottomWidth) solid var(--pf-c-menu__footer--after--BorderBottomColor);
|
|
15970
|
+
}
|
|
15844
15971
|
|
|
15845
15972
|
.pf-c-menu-toggle {
|
|
15846
15973
|
--pf-c-menu-toggle--PaddingTop: var(--pf-global--spacer--form-element);
|
|
@@ -19611,6 +19738,7 @@ label.pf-c-radio, .pf-c-radio__label,
|
|
|
19611
19738
|
overflow: hidden;
|
|
19612
19739
|
text-overflow: ellipsis;
|
|
19613
19740
|
white-space: nowrap;
|
|
19741
|
+
--pf-c-form-control--invalid--BackgroundUrl: none;
|
|
19614
19742
|
position: relative;
|
|
19615
19743
|
height: auto;
|
|
19616
19744
|
}
|