@patternfly/patternfly 5.0.0-prerelease.13 → 5.0.0-prerelease.15
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/assets/images/pf-logo.svg +28 -0
- package/components/Badge/badge.css +1 -0
- package/components/Badge/badge.scss +1 -0
- package/components/Check/check.css +9 -11
- package/components/Check/check.scss +11 -11
- package/components/Dropdown/dropdown.css +14 -5
- package/components/Dropdown/dropdown.scss +17 -6
- package/components/MenuToggle/menu-toggle.css +10 -3
- package/components/MenuToggle/menu-toggle.scss +14 -3
- package/components/Radio/radio.css +8 -10
- package/components/Radio/radio.scss +10 -10
- package/components/Toolbar/toolbar.css +19 -10
- package/components/Toolbar/toolbar.scss +24 -11
- package/docs/components/Toolbar/examples/Toolbar.md +1 -2
- package/docs/demos/AboutModal/examples/AboutModal.md +6 -14
- package/docs/demos/Alert/examples/Alert.md +18 -42
- package/docs/demos/BackToTop/examples/BackToTop.md +6 -14
- package/docs/demos/Banner/examples/Banner.md +12 -28
- package/docs/demos/CardView/examples/CardView.md +6 -14
- package/docs/demos/ContextSelector/examples/ContextSelector.md +24 -56
- package/docs/demos/Dashboard/examples/Dashboard.md +6 -14
- package/docs/demos/DataList/examples/DataList.md +24 -56
- package/docs/demos/DescriptionList/examples/DescriptionList.md +18 -42
- package/docs/demos/Drawer/examples/Drawer.md +30 -70
- package/docs/demos/JumpLinks/examples/JumpLinks.md +36 -84
- package/docs/demos/Masthead/examples/Masthead.md +54 -126
- package/docs/demos/Modal/examples/Modal.md +36 -84
- package/docs/demos/Nav/examples/Nav.md +48 -112
- package/docs/demos/NotificationDrawer/examples/NotificationDrawer.md +30 -70
- package/docs/demos/Page/examples/Page.md +54 -126
- package/docs/demos/PrimaryDetail/examples/PrimaryDetail.md +42 -98
- package/docs/demos/Skeleton/examples/Skeleton.md +6 -14
- package/docs/demos/Table/examples/Table.md +90 -210
- package/docs/demos/Tabs/examples/Tabs.md +36 -84
- package/docs/demos/Toolbar/examples/Toolbar.md +12 -28
- package/docs/demos/Wizard/examples/Wizard.md +54 -126
- package/package.json +1 -1
- package/patternfly-no-globals.css +61 -39
- package/patternfly-theme-dark-unversioned.css +61 -39
- package/patternfly.css +61 -39
- package/patternfly.min.css +1 -1
- package/patternfly.min.css.map +1 -1
|
@@ -6749,6 +6749,7 @@ button) {
|
|
|
6749
6749
|
font-weight: var(--pf-v5-c-badge--FontWeight);
|
|
6750
6750
|
color: var(--pf-v5-c-badge--Color);
|
|
6751
6751
|
text-align: center;
|
|
6752
|
+
white-space: nowrap;
|
|
6752
6753
|
background-color: var(--pf-v5-c-badge--BackgroundColor);
|
|
6753
6754
|
border-radius: var(--pf-v5-c-badge--BorderRadius);
|
|
6754
6755
|
}
|
|
@@ -8224,9 +8225,8 @@ button.pf-v5-c-breadcrumb__link {
|
|
|
8224
8225
|
--pf-v5-c-check__label--Color: var(--pf-v5-global--Color--100);
|
|
8225
8226
|
--pf-v5-c-check__label--FontWeight: var(--pf-v5-global--FontWeight--normal);
|
|
8226
8227
|
--pf-v5-c-check__label--FontSize: var(--pf-v5-global--FontSize--md);
|
|
8227
|
-
--pf-v5-c-check__label--LineHeight: var(--pf-v5-global--LineHeight--
|
|
8228
|
-
--pf-v5-c-check__input--
|
|
8229
|
-
--pf-v5-c-check__input--MarginTop: calc(((var(--pf-v5-c-check__label--FontSize) * var(--pf-v5-c-check__label--LineHeight)) - var(--pf-v5-c-check__input--Height)) / 2);
|
|
8228
|
+
--pf-v5-c-check__label--LineHeight: var(--pf-v5-global--LineHeight--md);
|
|
8229
|
+
--pf-v5-c-check__input--TranslateY--moz: 5px;
|
|
8230
8230
|
--pf-v5-c-check__description--FontSize: var(--pf-v5-global--FontSize--sm);
|
|
8231
8231
|
--pf-v5-c-check__description--Color: var(--pf-v5-global--Color--200);
|
|
8232
8232
|
--pf-v5-c-check__body--MarginTop: var(--pf-v5-global--spacer--sm);
|
|
@@ -8239,24 +8239,18 @@ button.pf-v5-c-breadcrumb__link {
|
|
|
8239
8239
|
}
|
|
8240
8240
|
.pf-v5-c-check.pf-m-standalone {
|
|
8241
8241
|
--pf-v5-c-check--GridGap: 0;
|
|
8242
|
-
--pf-v5-c-check__input--
|
|
8243
|
-
--pf-v5-c-check__input--MarginTop: 0;
|
|
8242
|
+
--pf-v5-c-check__input--TranslateY--moz: 0;
|
|
8244
8243
|
display: inline-grid;
|
|
8245
|
-
line-height: 1;
|
|
8246
8244
|
}
|
|
8247
8245
|
|
|
8248
8246
|
.pf-v5-c-check__label {
|
|
8247
|
+
align-self: baseline;
|
|
8249
8248
|
font-size: var(--pf-v5-c-check__label--FontSize);
|
|
8250
8249
|
font-weight: var(--pf-v5-c-check__label--FontWeight);
|
|
8251
8250
|
line-height: var(--pf-v5-c-check__label--LineHeight);
|
|
8252
8251
|
color: var(--pf-v5-c-check__label--Color);
|
|
8253
8252
|
}
|
|
8254
8253
|
|
|
8255
|
-
.pf-v5-c-check__input {
|
|
8256
|
-
height: var(--pf-v5-c-check__input--Height);
|
|
8257
|
-
margin-top: var(--pf-v5-c-check__input--MarginTop);
|
|
8258
|
-
}
|
|
8259
|
-
|
|
8260
8254
|
.pf-v5-c-check__description {
|
|
8261
8255
|
grid-column: 2;
|
|
8262
8256
|
font-size: var(--pf-v5-c-check__description--FontSize);
|
|
@@ -8268,6 +8262,11 @@ button.pf-v5-c-breadcrumb__link {
|
|
|
8268
8262
|
margin-top: var(--pf-v5-c-check__body--MarginTop);
|
|
8269
8263
|
}
|
|
8270
8264
|
|
|
8265
|
+
.pf-v5-c-check__input {
|
|
8266
|
+
align-self: baseline;
|
|
8267
|
+
-moz-transform: translateY(var(--pf-v5-c-check__input--TranslateY--moz));
|
|
8268
|
+
}
|
|
8269
|
+
|
|
8271
8270
|
.pf-v5-c-check__label,
|
|
8272
8271
|
.pf-v5-c-check__input {
|
|
8273
8272
|
justify-self: start;
|
|
@@ -10925,16 +10924,20 @@ label.pf-v5-c-check, .pf-v5-c-check__label,
|
|
|
10925
10924
|
--pf-v5-c-toolbar--PaddingTop: var(--pf-v5-global--spacer--md);
|
|
10926
10925
|
--pf-v5-c-toolbar--PaddingBottom: var(--pf-v5-global--spacer--md);
|
|
10927
10926
|
--pf-v5-c-toolbar--item--RowGap--base: var(--pf-v5-global--spacer--xs);
|
|
10928
|
-
--pf-v5-c-toolbar__item--Display:
|
|
10927
|
+
--pf-v5-c-toolbar__item--Display: flex;
|
|
10929
10928
|
--pf-v5-c-toolbar__item--MinWidth--base: auto;
|
|
10930
|
-
--pf-v5-c-toolbar__item--AlignSelf: auto;
|
|
10931
10929
|
--pf-v5-c-toolbar__item--AlignItems: var(--pf-v5-c-toolbar--AlignItems--base);
|
|
10930
|
+
--pf-v5-c-toolbar__item--AlignSelf: var(--pf-v5-c-toolbar--AlignItems--base);
|
|
10932
10931
|
--pf-v5-c-toolbar__group--Display: flex;
|
|
10932
|
+
--pf-v5-c-toolbar__group--RowGap: var(--pf-v5-c-toolbar--item--RowGap--base);
|
|
10933
10933
|
--pf-v5-c-toolbar__group--AlignItems: var(--pf-v5-c-toolbar--AlignItems--base);
|
|
10934
10934
|
--pf-v5-c-toolbar__group--AlignSelf: auto;
|
|
10935
|
-
--pf-v5-c-toolbar__group--RowGap: var(--pf-v5-c-toolbar--item--RowGap--base);
|
|
10936
10935
|
--pf-v5-c-toolbar--m-sticky--ZIndex: var(--pf-v5-global--ZIndex--xs);
|
|
10937
10936
|
--pf-v5-c-toolbar--m-sticky--BoxShadow: var(--pf-v5-global--BoxShadow--sm-bottom);
|
|
10937
|
+
--pf-v5-c-toolbar--m-align-items-center--AlignItems: center;
|
|
10938
|
+
--pf-v5-c-toolbar--m-align-items-baseline--AlignItems: baseline;
|
|
10939
|
+
--pf-v5-c-toolbar--m-align-self-center--AlignSelf: center;
|
|
10940
|
+
--pf-v5-c-toolbar--m-align-self-baseline--AlignSelf: baseline;
|
|
10938
10941
|
--pf-v5-c-toolbar__content--Display: flex;
|
|
10939
10942
|
--pf-v5-c-toolbar__content--AlignItems: var(--pf-v5-c-toolbar--AlignItems--base);
|
|
10940
10943
|
--pf-v5-c-toolbar__content--RowGap: var(--pf-v5-c-toolbar--RowGap--base);
|
|
@@ -10979,7 +10982,9 @@ label.pf-v5-c-check, .pf-v5-c-check__label,
|
|
|
10979
10982
|
--pf-v5-c-toolbar__item--m-search-filter--spacer: var(--pf-v5-global--spacer--sm);
|
|
10980
10983
|
--pf-v5-c-toolbar__item--m-chip-group--spacer: var(--pf-v5-global--spacer--sm);
|
|
10981
10984
|
--pf-v5-c-toolbar__item--m-label--spacer: var(--pf-v5-c-toolbar__item--spacer);
|
|
10985
|
+
--pf-v5-c-toolbar__item--m-label--TranslateY: var(--pf-v5-global--spacer--form-element);
|
|
10982
10986
|
--pf-v5-c-toolbar__item--m-label--FontWeight: var(--pf-v5-global--FontWeight--bold);
|
|
10987
|
+
--pf-v5-c-toolbar__item--m-form-control--TranslateY: var(--pf-v5-global--spacer--form-element);
|
|
10983
10988
|
--pf-v5-c-toolbar__expandable-content__item--m-label--MarginBottom: calc(-1 * var(--pf-v5-c-toolbar__expandable-content--m-expanded--GridRowGap) + var(--pf-v5-global--spacer--sm));
|
|
10984
10989
|
--pf-v5-c-toolbar__expandable-content__item--m-label--FontSize: var(--pf-v5-global--FontSize--sm);
|
|
10985
10990
|
--pf-v5-c-toolbar__toggle--m-expanded__c-button--m-plain--Color: var(--pf-v5-global--Color--100);
|
|
@@ -10987,7 +10992,7 @@ label.pf-v5-c-check, .pf-v5-c-check__label,
|
|
|
10987
10992
|
--pf-v5-c-toolbar--m-full-height--PaddingTop: 0;
|
|
10988
10993
|
--pf-v5-c-toolbar--m-full-height--PaddingBottom: 0;
|
|
10989
10994
|
--pf-v5-c-toolbar--m-full-height__item--Display: flex;
|
|
10990
|
-
--pf-v5-c-toolbar--m-full-height__item--AlignItems:
|
|
10995
|
+
--pf-v5-c-toolbar--m-full-height__item--AlignItems: center;
|
|
10991
10996
|
position: relative;
|
|
10992
10997
|
display: grid;
|
|
10993
10998
|
row-gap: var(--pf-v5-c-toolbar--RowGap);
|
|
@@ -11066,11 +11071,11 @@ label.pf-v5-c-check, .pf-v5-c-check__label,
|
|
|
11066
11071
|
}
|
|
11067
11072
|
.pf-v5-c-toolbar__content-section.pf-m-align-items-center,
|
|
11068
11073
|
.pf-v5-c-toolbar__group.pf-m-align-items-center {
|
|
11069
|
-
align-items
|
|
11074
|
+
--pf-v5-c-toolbar__group--AlignItems: var(--pf-v5-c-toolbar--m-align-items-center--AlignItems);
|
|
11070
11075
|
}
|
|
11071
11076
|
.pf-v5-c-toolbar__content-section.pf-m-align-items-baseline,
|
|
11072
11077
|
.pf-v5-c-toolbar__group.pf-m-align-items-baseline {
|
|
11073
|
-
align-items
|
|
11078
|
+
--pf-v5-c-toolbar__group--AlignItems: var(--pf-v5-c-toolbar--m-align-items-baseline--AlignItems);
|
|
11074
11079
|
}
|
|
11075
11080
|
.pf-v5-c-toolbar__content-section.pf-m-align-self-start,
|
|
11076
11081
|
.pf-v5-c-toolbar__group.pf-m-align-self-start {
|
|
@@ -11078,11 +11083,11 @@ label.pf-v5-c-check, .pf-v5-c-check__label,
|
|
|
11078
11083
|
}
|
|
11079
11084
|
.pf-v5-c-toolbar__content-section.pf-m-align-self-center,
|
|
11080
11085
|
.pf-v5-c-toolbar__group.pf-m-align-self-center {
|
|
11081
|
-
align-self
|
|
11086
|
+
--pf-v5-c-toolbar__group--AlignSelf: var(--pf-v5-c-toolbar--m-align-self-center--AlignItems);
|
|
11082
11087
|
}
|
|
11083
11088
|
.pf-v5-c-toolbar__content-section.pf-m-align-self-baseline,
|
|
11084
11089
|
.pf-v5-c-toolbar__group.pf-m-align-self-baseline {
|
|
11085
|
-
align-self
|
|
11090
|
+
--pf-v5-c-toolbar__group--AlignSelf: var(--pf-v5-c-toolbar--m-align-self-baseline--AlignItems);
|
|
11086
11091
|
}
|
|
11087
11092
|
|
|
11088
11093
|
.pf-v5-c-toolbar__group {
|
|
@@ -11225,6 +11230,7 @@ label.pf-v5-c-check, .pf-v5-c-check__label,
|
|
|
11225
11230
|
.pf-v5-c-toolbar__item.pf-m-label {
|
|
11226
11231
|
--pf-v5-c-toolbar--spacer: var(--pf-v5-c-toolbar__item--m-label--spacer);
|
|
11227
11232
|
font-weight: var(--pf-v5-c-toolbar__item--m-label--FontWeight);
|
|
11233
|
+
transform: translateY(var(--pf-v5-global--spacer--form-element));
|
|
11228
11234
|
}
|
|
11229
11235
|
.pf-v5-c-toolbar__item.pf-m-pagination {
|
|
11230
11236
|
margin-left: auto;
|
|
@@ -11272,7 +11278,7 @@ label.pf-v5-c-check, .pf-v5-c-check__label,
|
|
|
11272
11278
|
align-items: flex-start;
|
|
11273
11279
|
}
|
|
11274
11280
|
.pf-v5-c-toolbar__content-section.pf-m-align-items-center {
|
|
11275
|
-
align-items
|
|
11281
|
+
--pf-v5-c-toolbar__content-section--AlignItems: var(--pf-v5-c-toolbar--m-align-items-center--AlignItems);
|
|
11276
11282
|
}
|
|
11277
11283
|
.pf-v5-c-toolbar__content-section.pf-m-align-items-baseline {
|
|
11278
11284
|
align-items: baseline;
|
|
@@ -11308,7 +11314,7 @@ label.pf-v5-c-check, .pf-v5-c-check__label,
|
|
|
11308
11314
|
display: grid;
|
|
11309
11315
|
grid-row-gap: var(--pf-v5-c-toolbar__expandable-content--m-expanded--GridRowGap);
|
|
11310
11316
|
}
|
|
11311
|
-
.pf-v5-c-toolbar__expandable-content .pf-m-label {
|
|
11317
|
+
.pf-v5-c-toolbar__expandable-content .pf-v5-c-toolbar__item.pf-m-label {
|
|
11312
11318
|
margin-bottom: var(--pf-v5-c-toolbar__expandable-content__item--m-label--MarginBottom);
|
|
11313
11319
|
font-size: var(--pf-v5-c-toolbar__expandable-content__item--m-label--FontSize);
|
|
11314
11320
|
}
|
|
@@ -11324,10 +11330,12 @@ label.pf-v5-c-check, .pf-v5-c-check__label,
|
|
|
11324
11330
|
.pf-v5-c-toolbar__content.pf-m-chip-container .pf-v5-c-toolbar__item,
|
|
11325
11331
|
.pf-v5-c-toolbar__group.pf-m-chip-container .pf-v5-c-toolbar__item {
|
|
11326
11332
|
--pf-v5-c-toolbar--spacer: var(--pf-v5-c-toolbar__item--spacer);
|
|
11333
|
+
--pf-v5-c-toolbar__item--AlignSelf: auto;
|
|
11327
11334
|
margin-top: var(--pf-v5-c-toolbar__group--m-chip-container__item--MarginTop);
|
|
11328
11335
|
}
|
|
11329
11336
|
.pf-v5-c-toolbar__content.pf-m-chip-container .pf-v5-c-toolbar__group,
|
|
11330
11337
|
.pf-v5-c-toolbar__group.pf-m-chip-container .pf-v5-c-toolbar__group {
|
|
11338
|
+
--pf-v5-c-toolbar__group--AlignItems: center;
|
|
11331
11339
|
--pf-v5-c-toolbar--spacer: var(--pf-v5-c-toolbar__group--spacer);
|
|
11332
11340
|
display: flex;
|
|
11333
11341
|
flex-wrap: wrap;
|
|
@@ -13347,7 +13355,6 @@ label.pf-v5-c-check, .pf-v5-c-check__label,
|
|
|
13347
13355
|
--pf-v5-c-dropdown__toggle--m-split-button--m-action--child--PaddingLeft: var(--pf-v5-global--spacer--sm);
|
|
13348
13356
|
--pf-v5-c-dropdown__toggle--m-split-button--m-action--child--PaddingRight: var(--pf-v5-global--spacer--sm);
|
|
13349
13357
|
--pf-v5-c-dropdown__toggle--m-split-button--m-action__toggle-button--MarginRight: calc(-1 * var(--pf-v5-global--BorderWidth--sm));
|
|
13350
|
-
--pf-v5-c-dropdown__toggle--m-split-button__toggle-check__input--TranslateY: -0.0625rem;
|
|
13351
13358
|
--pf-v5-c-dropdown__toggle--m-split-button__toggle-text--MarginLeft: var(--pf-v5-global--spacer--sm);
|
|
13352
13359
|
--pf-v5-c-dropdown__toggle--m-split-button--child--BorderRadius: var(--pf-v5-global--BorderRadius--sm);
|
|
13353
13360
|
--pf-v5-c-dropdown__toggle--m-split-button--m-primary--child--BorderRadius: var(--pf-v5-c-dropdown__toggle--m-split-button--child--BorderRadius);
|
|
@@ -13430,7 +13437,8 @@ label.pf-v5-c-check, .pf-v5-c-check__label,
|
|
|
13430
13437
|
--pf-v5-c-dropdown--m-full-height__toggle--PaddingRight: var(--pf-v5-global--spacer--lg);
|
|
13431
13438
|
--pf-v5-c-dropdown--m-full-height__toggle--PaddingLeft: var(--pf-v5-global--spacer--lg);
|
|
13432
13439
|
position: relative;
|
|
13433
|
-
display: inline-
|
|
13440
|
+
display: inline-flex;
|
|
13441
|
+
align-items: start;
|
|
13434
13442
|
max-width: 100%;
|
|
13435
13443
|
}
|
|
13436
13444
|
.pf-v5-c-dropdown .pf-v5-c-divider {
|
|
@@ -13471,7 +13479,7 @@ label.pf-v5-c-check, .pf-v5-c-check__label,
|
|
|
13471
13479
|
|
|
13472
13480
|
.pf-v5-c-dropdown__toggle {
|
|
13473
13481
|
position: relative;
|
|
13474
|
-
display: flex;
|
|
13482
|
+
display: inline-flex;
|
|
13475
13483
|
column-gap: var(--pf-v5-c-dropdown__toggle--ColumnGap);
|
|
13476
13484
|
align-items: center;
|
|
13477
13485
|
min-width: var(--pf-v5-c-dropdown__toggle--MinWidth);
|
|
@@ -13547,6 +13555,7 @@ label.pf-v5-c-check, .pf-v5-c-check__label,
|
|
|
13547
13555
|
.pf-v5-c-dropdown__toggle.pf-m-split-button .pf-v5-c-dropdown__toggle-check {
|
|
13548
13556
|
display: flex;
|
|
13549
13557
|
align-items: center;
|
|
13558
|
+
overflow: hidden;
|
|
13550
13559
|
cursor: pointer;
|
|
13551
13560
|
}
|
|
13552
13561
|
.pf-v5-c-dropdown__toggle.pf-m-split-button .pf-v5-c-dropdown__toggle-check.pf-m-in-progress {
|
|
@@ -13555,9 +13564,13 @@ label.pf-v5-c-check, .pf-v5-c-check__label,
|
|
|
13555
13564
|
}
|
|
13556
13565
|
.pf-v5-c-dropdown__toggle.pf-m-split-button .pf-v5-c-dropdown__toggle-check > input,
|
|
13557
13566
|
.pf-v5-c-dropdown__toggle.pf-m-split-button .pf-v5-c-dropdown__toggle-check .pf-v5-c-check {
|
|
13567
|
+
align-self: revert;
|
|
13568
|
+
width: auto;
|
|
13558
13569
|
cursor: pointer;
|
|
13559
13570
|
visibility: var(--pf-v5-c-dropdown__toggle--m-split-button__toggle-check__input--Visibility, unset);
|
|
13560
|
-
|
|
13571
|
+
}
|
|
13572
|
+
.pf-v5-c-dropdown__toggle.pf-m-split-button .pf-v5-c-dropdown__toggle-check .pf-v5-c-check__input {
|
|
13573
|
+
-moz-transform: none;
|
|
13561
13574
|
}
|
|
13562
13575
|
.pf-v5-c-dropdown__toggle.pf-m-split-button .pf-v5-c-dropdown__toggle-button {
|
|
13563
13576
|
color: var(--pf-v5-c-dropdown__toggle-button--Color);
|
|
@@ -13727,6 +13740,10 @@ label.pf-v5-c-check, .pf-v5-c-check__label,
|
|
|
13727
13740
|
white-space: nowrap;
|
|
13728
13741
|
}
|
|
13729
13742
|
|
|
13743
|
+
.pf-v5-c-dropdown__toggle-button {
|
|
13744
|
+
align-self: baseline;
|
|
13745
|
+
}
|
|
13746
|
+
|
|
13730
13747
|
.pf-v5-c-dropdown__toggle-text {
|
|
13731
13748
|
flex: 1 1 auto;
|
|
13732
13749
|
text-align: left;
|
|
@@ -13746,12 +13763,12 @@ label.pf-v5-c-check, .pf-v5-c-check__label,
|
|
|
13746
13763
|
.pf-v5-c-dropdown__toggle-image {
|
|
13747
13764
|
display: inline-flex;
|
|
13748
13765
|
flex-shrink: 0;
|
|
13749
|
-
align-self: center;
|
|
13750
13766
|
line-height: 1;
|
|
13751
13767
|
}
|
|
13752
13768
|
|
|
13753
13769
|
.pf-v5-c-dropdown__toggle-progress {
|
|
13754
13770
|
position: absolute;
|
|
13771
|
+
left: var(--pf-v5-c-dropdown__toggle--m-split-button--child--PaddingLeft);
|
|
13755
13772
|
visibility: var(--pf-v5-c-dropdown__toggle-progress--Visibility);
|
|
13756
13773
|
}
|
|
13757
13774
|
.pf-v5-c-dropdown__toggle-progress .pf-v5-c-spinner {
|
|
@@ -18257,6 +18274,7 @@ label.pf-v5-c-menu__item:where(:not([disabled], .pf-m-disabled)) {
|
|
|
18257
18274
|
--pf-v5-c-menu-toggle--m-split-button--m-action--m-primary--m-expanded--child--BackgroundColor: var(--pf-v5-global--primary-color--200);
|
|
18258
18275
|
--pf-v5-c-menu-toggle--m-split-button--m-action--m-secondary--child--BorderLeftColor: var(--pf-v5-global--primary-color--100);
|
|
18259
18276
|
--pf-v5-c-menu-toggle__button--BackgroundColor: transparent;
|
|
18277
|
+
--pf-v5-c-menu-toggle__button--AlignSelf: baseline;
|
|
18260
18278
|
--pf-v5-c-menu-toggle__button--PaddingLeft: var(--pf-v5-global--spacer--sm);
|
|
18261
18279
|
--pf-v5-c-menu-toggle__button--PaddingRight: var(--pf-v5-global--spacer--sm);
|
|
18262
18280
|
--pf-v5-c-menu-toggle__button__controls--MarginRight: var(--pf-v5-global--spacer--sm);
|
|
@@ -18264,6 +18282,7 @@ label.pf-v5-c-menu__item:where(:not([disabled], .pf-m-disabled)) {
|
|
|
18264
18282
|
--pf-v5-c-menu-toggle--m-typeahead__controls--MarginRight: var(--pf-v5-global--spacer--sm);
|
|
18265
18283
|
--pf-v5-c-menu-toggle--m-typeahead__controls--MarginLeft: var(--pf-v5-global--spacer--sm);
|
|
18266
18284
|
--pf-v5-c-menu-toggle--m-typeahead--c-text-input-group__utilities--c-button--PaddingRight: var(--pf-v5-global--spacer--sm);
|
|
18285
|
+
--pf-v5-c-menu-toggle--m-typeahead__button--AlignSelf: center;
|
|
18267
18286
|
position: relative;
|
|
18268
18287
|
display: inline-flex;
|
|
18269
18288
|
align-items: center;
|
|
@@ -18356,6 +18375,7 @@ label.pf-v5-c-menu__item:where(:not([disabled], .pf-m-disabled)) {
|
|
|
18356
18375
|
--pf-v5-c-menu-toggle--hover--after--BorderBottomWidth: var(--pf-v5-c-menu-toggle--m-full-height--hover--after--BorderBottomWidth);
|
|
18357
18376
|
--pf-v5-c-menu-toggle--focus--after--BorderBottomWidth: var(--pf-v5-c-menu-toggle--m-full-height--focus--after--BorderBottomWidth);
|
|
18358
18377
|
--pf-v5-c-menu-toggle--active--after--BorderBottomWidth: var(--pf-v5-c-menu-toggle--m-full-height--active--after--BorderBottomWidth);
|
|
18378
|
+
align-items: center;
|
|
18359
18379
|
height: 100%;
|
|
18360
18380
|
}
|
|
18361
18381
|
.pf-v5-c-menu-toggle:hover {
|
|
@@ -18399,6 +18419,7 @@ label.pf-v5-c-menu__item:where(:not([disabled], .pf-m-disabled)) {
|
|
|
18399
18419
|
.pf-v5-c-menu-toggle.pf-m-typeahead {
|
|
18400
18420
|
--pf-v5-c-menu-toggle__button__controls--MarginRight: var(--pf-v5-c-menu-toggle--m-typeahead__controls--MarginRight);
|
|
18401
18421
|
--pf-v5-c-menu-toggle__button__controls--MarginLeft: var(--pf-v5-c-menu-toggle--m-typeahead__controls--MarginLeft);
|
|
18422
|
+
--pf-v5-c-menu-toggle__button--AlignSelf: var(--pf-v5-c-menu-toggle--m-typeahead__button--AlignSelf);
|
|
18402
18423
|
align-items: stretch;
|
|
18403
18424
|
padding: 0;
|
|
18404
18425
|
}
|
|
@@ -18422,12 +18443,15 @@ label.pf-v5-c-menu__item:where(:not([disabled], .pf-m-disabled)) {
|
|
|
18422
18443
|
}
|
|
18423
18444
|
.pf-v5-c-menu-toggle.pf-m-split-button > .pf-v5-c-check {
|
|
18424
18445
|
--pf-v5-c-menu-toggle--PaddingRight: 0;
|
|
18425
|
-
--pf-v5-c-check__input--MarginTop: 0;
|
|
18426
18446
|
--pf-v5-c-check__label--Color: currentcolor;
|
|
18427
18447
|
--pf-v5-c-check__label--disabled--Color: currentcolor;
|
|
18428
18448
|
align-items: center;
|
|
18429
18449
|
align-self: stretch;
|
|
18430
18450
|
}
|
|
18451
|
+
.pf-v5-c-menu-toggle.pf-m-split-button > .pf-v5-c-check .pf-v5-c-check__input {
|
|
18452
|
+
align-self: revert;
|
|
18453
|
+
-moz-transform: none;
|
|
18454
|
+
}
|
|
18431
18455
|
.pf-v5-c-menu-toggle.pf-m-split-button.pf-m-action:where(:not(.pf-m-primary, .pf-m-secondary, .pf-m-disabled)) > *::after {
|
|
18432
18456
|
position: absolute;
|
|
18433
18457
|
top: 0;
|
|
@@ -18513,6 +18537,7 @@ label.pf-v5-c-menu__item:where(:not([disabled], .pf-m-disabled)) {
|
|
|
18513
18537
|
--pf-v5-c-menu-toggle__controls--PaddingLeft: 0;
|
|
18514
18538
|
--pf-v5-c-menu-toggle__controls--MarginRight: var(--pf-v5-c-menu-toggle__button__controls--MarginRight);
|
|
18515
18539
|
--pf-v5-c-menu-toggle__controls--MarginLeft: var(--pf-v5-c-menu-toggle__button__controls--MarginLeft);
|
|
18540
|
+
align-self: var(--pf-v5-c-menu-toggle__button--AlignSelf);
|
|
18516
18541
|
padding-right: var(--pf-v5-c-menu-toggle__button--PaddingRight);
|
|
18517
18542
|
padding-left: var(--pf-v5-c-menu-toggle__button--PaddingLeft);
|
|
18518
18543
|
color: inherit;
|
|
@@ -18521,7 +18546,6 @@ label.pf-v5-c-menu__item:where(:not([disabled], .pf-m-disabled)) {
|
|
|
18521
18546
|
}
|
|
18522
18547
|
|
|
18523
18548
|
.pf-v5-c-menu-toggle__icon {
|
|
18524
|
-
display: inline-flex;
|
|
18525
18549
|
flex-shrink: 0;
|
|
18526
18550
|
align-self: center;
|
|
18527
18551
|
margin-right: var(--pf-v5-c-menu-toggle__icon--MarginRight);
|
|
@@ -18537,7 +18561,7 @@ label.pf-v5-c-menu__item:where(:not([disabled], .pf-m-disabled)) {
|
|
|
18537
18561
|
|
|
18538
18562
|
.pf-v5-c-menu-toggle__count {
|
|
18539
18563
|
display: flex;
|
|
18540
|
-
|
|
18564
|
+
flex-wrap: nowrap;
|
|
18541
18565
|
margin-left: var(--pf-v5-c-menu-toggle__count--MarginLeft);
|
|
18542
18566
|
}
|
|
18543
18567
|
|
|
@@ -23080,24 +23104,23 @@ label.pf-v5-c-menu__item:where(:not([disabled], .pf-m-disabled)) {
|
|
|
23080
23104
|
--pf-v5-c-radio__label--Color: var(--pf-v5-global--Color--100);
|
|
23081
23105
|
--pf-v5-c-radio__label--FontWeight: var(--pf-v5-global--FontWeight--normal);
|
|
23082
23106
|
--pf-v5-c-radio__label--FontSize: var(--pf-v5-global--FontSize--md);
|
|
23083
|
-
--pf-v5-c-radio__label--LineHeight: var(--pf-v5-global--LineHeight--
|
|
23084
|
-
--pf-v5-c-radio__input--
|
|
23085
|
-
--pf-v5-c-radio__input--MarginTop: calc(((var(--pf-v5-c-radio__label--FontSize) * var(--pf-v5-c-radio__label--LineHeight)) - var(--pf-v5-c-radio__input--Height)) / 2);
|
|
23107
|
+
--pf-v5-c-radio__label--LineHeight: var(--pf-v5-global--LineHeight--md);
|
|
23108
|
+
--pf-v5-c-radio__input--TranslateY--moz: 5px;
|
|
23086
23109
|
--pf-v5-c-radio__input--first-child--MarginLeft: 0.0625rem;
|
|
23087
23110
|
--pf-v5-c-radio__input--last-child--MarginRight: 0.0625rem;
|
|
23088
23111
|
--pf-v5-c-radio__description--FontSize: var(--pf-v5-global--FontSize--sm);
|
|
23089
23112
|
--pf-v5-c-radio__description--Color: var(--pf-v5-global--Color--200);
|
|
23090
23113
|
--pf-v5-c-radio__body--MarginTop: var(--pf-v5-global--spacer--sm);
|
|
23091
|
-
display: grid;
|
|
23114
|
+
display: inline-grid;
|
|
23092
23115
|
grid-template-columns: auto 1fr;
|
|
23093
23116
|
grid-gap: var(--pf-v5-c-radio--GridGap);
|
|
23117
|
+
align-items: baseline;
|
|
23118
|
+
width: 100%;
|
|
23094
23119
|
}
|
|
23095
23120
|
.pf-v5-c-radio.pf-m-standalone {
|
|
23096
23121
|
--pf-v5-c-radio--GridGap: 0;
|
|
23097
|
-
--pf-v5-c-radio__input--
|
|
23098
|
-
|
|
23099
|
-
display: inline-grid;
|
|
23100
|
-
line-height: 1;
|
|
23122
|
+
--pf-v5-c-radio__input--TranslateY--moz: 0;
|
|
23123
|
+
width: auto;
|
|
23101
23124
|
}
|
|
23102
23125
|
|
|
23103
23126
|
.pf-v5-c-radio__label {
|
|
@@ -23108,8 +23131,7 @@ label.pf-v5-c-menu__item:where(:not([disabled], .pf-m-disabled)) {
|
|
|
23108
23131
|
}
|
|
23109
23132
|
|
|
23110
23133
|
.pf-v5-c-radio__input {
|
|
23111
|
-
|
|
23112
|
-
margin-top: var(--pf-v5-c-radio__input--MarginTop);
|
|
23134
|
+
-moz-transform: translateY(var(--pf-v5-c-radio__input--TranslateY--moz));
|
|
23113
23135
|
}
|
|
23114
23136
|
.pf-v5-c-radio__input:first-child {
|
|
23115
23137
|
margin-left: var(--pf-v5-c-radio__input--first-child--MarginLeft);
|