@patternfly/patternfly 4.210.1 → 4.212.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/RELEASE-NOTES.md +27 -0
- package/components/LogViewer/log-viewer.css +15 -8
- package/components/LogViewer/log-viewer.scss +16 -8
- package/components/Masthead/masthead.css +1 -1
- package/components/Masthead/masthead.scss +1 -1
- package/components/NotificationBadge/notification-badge.css +13 -1
- package/components/NotificationBadge/notification-badge.scss +13 -1
- package/components/NotificationBadge/themes/dark/notification-badge.scss +2 -0
- package/components/Page/page.css +1 -0
- package/components/Page/page.scss +1 -0
- package/docs/components/Dropdown/examples/Dropdown.md +2 -2
- package/docs/components/LogViewer/examples/LogViewer.md +553 -1
- package/docs/components/NotificationBadge/examples/NotificationBadge.md +81 -24
- package/docs/components/Tabs/examples/Tabs.md +866 -139
- package/docs/demos/AboutModal/examples/AboutModal.md +1 -12
- package/docs/demos/Alert/examples/Alert.md +3 -36
- package/docs/demos/BackToTop/examples/BackToTop.md +1 -12
- package/docs/demos/Banner/examples/Banner.md +2 -24
- package/docs/demos/Card/examples/Card.md +15 -3
- package/docs/demos/CardView/examples/CardView.md +1 -12
- package/docs/demos/ContextSelector/examples/ContextSelector.md +3 -36
- package/docs/demos/Dashboard/examples/Dashboard.md +1 -12
- package/docs/demos/DataList/examples/DataList.md +4 -48
- package/docs/demos/DescriptionList/examples/DescriptionList.md +5 -36
- package/docs/demos/Drawer/examples/Drawer.md +7 -60
- package/docs/demos/JumpLinks/examples/JumpLinks.md +6 -72
- package/docs/demos/Masthead/examples/Masthead.md +2 -24
- package/docs/demos/Modal/examples/Modal.md +6 -72
- package/docs/demos/Nav/examples/Nav.md +8 -96
- package/docs/demos/NotificationDrawer/examples/NotificationDrawer.md +30 -23
- package/docs/demos/Page/examples/Page.md +9 -108
- package/docs/demos/PrimaryDetail/examples/PrimaryDetail.md +19 -85
- package/docs/demos/Skeleton/examples/Skeleton.md +1 -12
- package/docs/demos/Table/examples/Table.md +14 -168
- package/docs/demos/Tabs/examples/Tabs.md +56 -96
- package/docs/demos/Toolbar/examples/Toolbar.md +1 -12
- package/docs/demos/Wizard/examples/Wizard.md +8 -96
- package/package.json +3 -3
- package/patternfly-no-reset.css +30 -10
- package/patternfly.css +30 -10
- package/patternfly.min.css +1 -1
- package/patternfly.min.css.map +1 -1
|
@@ -50,17 +50,6 @@ wrapperTag: div
|
|
|
50
50
|
<div
|
|
51
51
|
class="pf-c-toolbar__group pf-m-icon-button-group pf-m-align-right pf-m-spacer-none pf-m-spacer-md-on-md"
|
|
52
52
|
>
|
|
53
|
-
<div class="pf-c-toolbar__item">
|
|
54
|
-
<button
|
|
55
|
-
class="pf-c-button pf-m-plain"
|
|
56
|
-
type="button"
|
|
57
|
-
aria-label="Notifications"
|
|
58
|
-
>
|
|
59
|
-
<span class="pf-c-notification-badge">
|
|
60
|
-
<i class="pf-icon-bell" aria-hidden="true"></i>
|
|
61
|
-
</span>
|
|
62
|
-
</button>
|
|
63
|
-
</div>
|
|
64
53
|
<div
|
|
65
54
|
class="pf-c-toolbar__group pf-m-icon-button-group pf-m-hidden pf-m-visible-on-lg"
|
|
66
55
|
>
|
|
@@ -68,7 +57,7 @@ wrapperTag: div
|
|
|
68
57
|
<nav
|
|
69
58
|
class="pf-c-app-launcher"
|
|
70
59
|
aria-label="Application launcher"
|
|
71
|
-
id="wizard-basic-example-masthead-
|
|
60
|
+
id="wizard-basic-example-masthead-application-launcher"
|
|
72
61
|
>
|
|
73
62
|
<button
|
|
74
63
|
class="pf-c-app-launcher__toggle"
|
|
@@ -1212,17 +1201,6 @@ wrapperTag: div
|
|
|
1212
1201
|
<div
|
|
1213
1202
|
class="pf-c-toolbar__group pf-m-icon-button-group pf-m-align-right pf-m-spacer-none pf-m-spacer-md-on-md"
|
|
1214
1203
|
>
|
|
1215
|
-
<div class="pf-c-toolbar__item">
|
|
1216
|
-
<button
|
|
1217
|
-
class="pf-c-button pf-m-plain"
|
|
1218
|
-
type="button"
|
|
1219
|
-
aria-label="Notifications"
|
|
1220
|
-
>
|
|
1221
|
-
<span class="pf-c-notification-badge">
|
|
1222
|
-
<i class="pf-icon-bell" aria-hidden="true"></i>
|
|
1223
|
-
</span>
|
|
1224
|
-
</button>
|
|
1225
|
-
</div>
|
|
1226
1204
|
<div
|
|
1227
1205
|
class="pf-c-toolbar__group pf-m-icon-button-group pf-m-hidden pf-m-visible-on-lg"
|
|
1228
1206
|
>
|
|
@@ -1230,7 +1208,7 @@ wrapperTag: div
|
|
|
1230
1208
|
<nav
|
|
1231
1209
|
class="pf-c-app-launcher"
|
|
1232
1210
|
aria-label="Application launcher"
|
|
1233
|
-
id="wizard-nav-expanded-example-masthead-
|
|
1211
|
+
id="wizard-nav-expanded-example-masthead-application-launcher"
|
|
1234
1212
|
>
|
|
1235
1213
|
<button
|
|
1236
1214
|
class="pf-c-app-launcher__toggle"
|
|
@@ -2374,17 +2352,6 @@ wrapperTag: div
|
|
|
2374
2352
|
<div
|
|
2375
2353
|
class="pf-c-toolbar__group pf-m-icon-button-group pf-m-align-right pf-m-spacer-none pf-m-spacer-md-on-md"
|
|
2376
2354
|
>
|
|
2377
|
-
<div class="pf-c-toolbar__item">
|
|
2378
|
-
<button
|
|
2379
|
-
class="pf-c-button pf-m-plain"
|
|
2380
|
-
type="button"
|
|
2381
|
-
aria-label="Notifications"
|
|
2382
|
-
>
|
|
2383
|
-
<span class="pf-c-notification-badge">
|
|
2384
|
-
<i class="pf-icon-bell" aria-hidden="true"></i>
|
|
2385
|
-
</span>
|
|
2386
|
-
</button>
|
|
2387
|
-
</div>
|
|
2388
2355
|
<div
|
|
2389
2356
|
class="pf-c-toolbar__group pf-m-icon-button-group pf-m-hidden pf-m-visible-on-lg"
|
|
2390
2357
|
>
|
|
@@ -2392,7 +2359,7 @@ wrapperTag: div
|
|
|
2392
2359
|
<nav
|
|
2393
2360
|
class="pf-c-app-launcher"
|
|
2394
2361
|
aria-label="Application launcher"
|
|
2395
|
-
id="wizard-with-drawer-closed-example-masthead-
|
|
2362
|
+
id="wizard-with-drawer-closed-example-masthead-application-launcher"
|
|
2396
2363
|
>
|
|
2397
2364
|
<button
|
|
2398
2365
|
class="pf-c-app-launcher__toggle"
|
|
@@ -3593,17 +3560,6 @@ wrapperTag: div
|
|
|
3593
3560
|
<div
|
|
3594
3561
|
class="pf-c-toolbar__group pf-m-icon-button-group pf-m-align-right pf-m-spacer-none pf-m-spacer-md-on-md"
|
|
3595
3562
|
>
|
|
3596
|
-
<div class="pf-c-toolbar__item">
|
|
3597
|
-
<button
|
|
3598
|
-
class="pf-c-button pf-m-plain"
|
|
3599
|
-
type="button"
|
|
3600
|
-
aria-label="Notifications"
|
|
3601
|
-
>
|
|
3602
|
-
<span class="pf-c-notification-badge">
|
|
3603
|
-
<i class="pf-icon-bell" aria-hidden="true"></i>
|
|
3604
|
-
</span>
|
|
3605
|
-
</button>
|
|
3606
|
-
</div>
|
|
3607
3563
|
<div
|
|
3608
3564
|
class="pf-c-toolbar__group pf-m-icon-button-group pf-m-hidden pf-m-visible-on-lg"
|
|
3609
3565
|
>
|
|
@@ -3611,7 +3567,7 @@ wrapperTag: div
|
|
|
3611
3567
|
<nav
|
|
3612
3568
|
class="pf-c-app-launcher"
|
|
3613
3569
|
aria-label="Application launcher"
|
|
3614
|
-
id="wizard-with-drawer-expanded-example-masthead-
|
|
3570
|
+
id="wizard-with-drawer-expanded-example-masthead-application-launcher"
|
|
3615
3571
|
>
|
|
3616
3572
|
<button
|
|
3617
3573
|
class="pf-c-app-launcher__toggle"
|
|
@@ -4806,17 +4762,6 @@ wrapperTag: div
|
|
|
4806
4762
|
<div
|
|
4807
4763
|
class="pf-c-toolbar__group pf-m-icon-button-group pf-m-align-right pf-m-spacer-none pf-m-spacer-md-on-md"
|
|
4808
4764
|
>
|
|
4809
|
-
<div class="pf-c-toolbar__item">
|
|
4810
|
-
<button
|
|
4811
|
-
class="pf-c-button pf-m-plain"
|
|
4812
|
-
type="button"
|
|
4813
|
-
aria-label="Notifications"
|
|
4814
|
-
>
|
|
4815
|
-
<span class="pf-c-notification-badge">
|
|
4816
|
-
<i class="pf-icon-bell" aria-hidden="true"></i>
|
|
4817
|
-
</span>
|
|
4818
|
-
</button>
|
|
4819
|
-
</div>
|
|
4820
4765
|
<div
|
|
4821
4766
|
class="pf-c-toolbar__group pf-m-icon-button-group pf-m-hidden pf-m-visible-on-lg"
|
|
4822
4767
|
>
|
|
@@ -4824,7 +4769,7 @@ wrapperTag: div
|
|
|
4824
4769
|
<nav
|
|
4825
4770
|
class="pf-c-app-launcher"
|
|
4826
4771
|
aria-label="Application launcher"
|
|
4827
|
-
id="wizard-with-drawer-info-example-masthead-
|
|
4772
|
+
id="wizard-with-drawer-info-example-masthead-application-launcher"
|
|
4828
4773
|
>
|
|
4829
4774
|
<button
|
|
4830
4775
|
class="pf-c-app-launcher__toggle"
|
|
@@ -5892,17 +5837,6 @@ wrapperTag: div
|
|
|
5892
5837
|
<div
|
|
5893
5838
|
class="pf-c-toolbar__group pf-m-icon-button-group pf-m-align-right pf-m-spacer-none pf-m-spacer-md-on-md"
|
|
5894
5839
|
>
|
|
5895
|
-
<div class="pf-c-toolbar__item">
|
|
5896
|
-
<button
|
|
5897
|
-
class="pf-c-button pf-m-plain"
|
|
5898
|
-
type="button"
|
|
5899
|
-
aria-label="Notifications"
|
|
5900
|
-
>
|
|
5901
|
-
<span class="pf-c-notification-badge">
|
|
5902
|
-
<i class="pf-icon-bell" aria-hidden="true"></i>
|
|
5903
|
-
</span>
|
|
5904
|
-
</button>
|
|
5905
|
-
</div>
|
|
5906
5840
|
<div
|
|
5907
5841
|
class="pf-c-toolbar__group pf-m-icon-button-group pf-m-hidden pf-m-visible-on-lg"
|
|
5908
5842
|
>
|
|
@@ -5910,7 +5844,7 @@ wrapperTag: div
|
|
|
5910
5844
|
<nav
|
|
5911
5845
|
class="pf-c-app-launcher"
|
|
5912
5846
|
aria-label="Application launcher"
|
|
5913
|
-
id="wizard-in-page-example-masthead-
|
|
5847
|
+
id="wizard-in-page-example-masthead-application-launcher"
|
|
5914
5848
|
>
|
|
5915
5849
|
<button
|
|
5916
5850
|
class="pf-c-app-launcher__toggle"
|
|
@@ -6998,17 +6932,6 @@ wrapperTag: div
|
|
|
6998
6932
|
<div
|
|
6999
6933
|
class="pf-c-toolbar__group pf-m-icon-button-group pf-m-align-right pf-m-spacer-none pf-m-spacer-md-on-md"
|
|
7000
6934
|
>
|
|
7001
|
-
<div class="pf-c-toolbar__item">
|
|
7002
|
-
<button
|
|
7003
|
-
class="pf-c-button pf-m-plain"
|
|
7004
|
-
type="button"
|
|
7005
|
-
aria-label="Notifications"
|
|
7006
|
-
>
|
|
7007
|
-
<span class="pf-c-notification-badge">
|
|
7008
|
-
<i class="pf-icon-bell" aria-hidden="true"></i>
|
|
7009
|
-
</span>
|
|
7010
|
-
</button>
|
|
7011
|
-
</div>
|
|
7012
6935
|
<div
|
|
7013
6936
|
class="pf-c-toolbar__group pf-m-icon-button-group pf-m-hidden pf-m-visible-on-lg"
|
|
7014
6937
|
>
|
|
@@ -7016,7 +6939,7 @@ wrapperTag: div
|
|
|
7016
6939
|
<nav
|
|
7017
6940
|
class="pf-c-app-launcher"
|
|
7018
6941
|
aria-label="Application launcher"
|
|
7019
|
-
id="in-page-nav-expanded-example-masthead-
|
|
6942
|
+
id="in-page-nav-expanded-example-masthead-application-launcher"
|
|
7020
6943
|
>
|
|
7021
6944
|
<button
|
|
7022
6945
|
class="pf-c-app-launcher__toggle"
|
|
@@ -8107,17 +8030,6 @@ wrapperTag: div
|
|
|
8107
8030
|
<div
|
|
8108
8031
|
class="pf-c-toolbar__group pf-m-icon-button-group pf-m-align-right pf-m-spacer-none pf-m-spacer-md-on-md"
|
|
8109
8032
|
>
|
|
8110
|
-
<div class="pf-c-toolbar__item">
|
|
8111
|
-
<button
|
|
8112
|
-
class="pf-c-button pf-m-plain"
|
|
8113
|
-
type="button"
|
|
8114
|
-
aria-label="Notifications"
|
|
8115
|
-
>
|
|
8116
|
-
<span class="pf-c-notification-badge">
|
|
8117
|
-
<i class="pf-icon-bell" aria-hidden="true"></i>
|
|
8118
|
-
</span>
|
|
8119
|
-
</button>
|
|
8120
|
-
</div>
|
|
8121
8033
|
<div
|
|
8122
8034
|
class="pf-c-toolbar__group pf-m-icon-button-group pf-m-hidden pf-m-visible-on-lg"
|
|
8123
8035
|
>
|
|
@@ -8125,7 +8037,7 @@ wrapperTag: div
|
|
|
8125
8037
|
<nav
|
|
8126
8038
|
class="pf-c-app-launcher"
|
|
8127
8039
|
aria-label="Application launcher"
|
|
8128
|
-
id="wizard-with-drawer-in-page-example-masthead-
|
|
8040
|
+
id="wizard-with-drawer-in-page-example-masthead-application-launcher"
|
|
8129
8041
|
>
|
|
8130
8042
|
<button
|
|
8131
8043
|
class="pf-c-app-launcher__toggle"
|
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.212.0",
|
|
5
5
|
"keywords": [],
|
|
6
6
|
"license": "MIT",
|
|
7
7
|
"scripts": {
|
|
@@ -34,8 +34,8 @@
|
|
|
34
34
|
"@fortawesome/fontawesome": "^1.1.8",
|
|
35
35
|
"@octokit/rest": "^16.40.1",
|
|
36
36
|
"@patternfly/patternfly-a11y": "4.3.1",
|
|
37
|
-
"@patternfly/react-charts": "6.
|
|
38
|
-
"@patternfly/react-code-editor": "4.
|
|
37
|
+
"@patternfly/react-charts": "6.88.7",
|
|
38
|
+
"@patternfly/react-code-editor": "4.76.7",
|
|
39
39
|
"@patternfly/react-table": "4.100.8",
|
|
40
40
|
"@starptech/prettyhtml": "^0.10.0",
|
|
41
41
|
"babel-eslint": "^8.2.3",
|
package/patternfly-no-reset.css
CHANGED
|
@@ -17065,18 +17065,19 @@ ul.pf-c-list {
|
|
|
17065
17065
|
--pf-c-log-viewer--m-line-numbers__main--before--BackgroundColor: var(--pf-global--BorderColor--100);
|
|
17066
17066
|
--pf-c-log-viewer__list--Height: auto;
|
|
17067
17067
|
--pf-c-log-viewer--m-line-numbers__list--Left: var(--pf-c-log-viewer__index--Width);
|
|
17068
|
+
--pf-c-log-viewer__list--FontFamily: var(--pf-global--FontFamily--monospace);
|
|
17069
|
+
--pf-c-log-viewer__list--FontSize: var(--pf-global--FontSize--sm);
|
|
17068
17070
|
--pf-c-log-viewer__index--Display: none;
|
|
17069
17071
|
--pf-c-log-viewer__index--Width: 4.0625rem;
|
|
17070
17072
|
--pf-c-log-viewer__index--PaddingRight: var(--pf-global--spacer--xl);
|
|
17071
17073
|
--pf-c-log-viewer__index--PaddingLeft: var(--pf-global--spacer--lg);
|
|
17072
|
-
--pf-c-log-viewer__index--FontFamily: var(--pf-global--FontFamily--monospace);
|
|
17073
|
-
--pf-c-log-viewer__index--FontSize: var(--pf-global--FontSize--sm);
|
|
17074
17074
|
--pf-c-log-viewer__index--Color: var(--pf-global--Color--200);
|
|
17075
17075
|
--pf-c-log-viewer__index--BackgroundColor: transparent;
|
|
17076
|
+
--pf-c-log-viewer--line-number-chars: 4.4;
|
|
17077
|
+
--pf-c-log-viewer--m-line-number-chars__index--PaddingRight: var(--pf-global--spacer--xs);
|
|
17078
|
+
--pf-c-log-viewer--m-line-number-chars__index--Width: calc(1ch * var(--pf-c-log-viewer--line-number-chars) + var(--pf-c-log-viewer__index--PaddingRight) + var(--pf-c-log-viewer__index--PaddingLeft));
|
|
17076
17079
|
--pf-c-log-viewer__text--PaddingRight: var(--pf-global--spacer--md);
|
|
17077
17080
|
--pf-c-log-viewer__text--PaddingLeft: var(--pf-global--spacer--md);
|
|
17078
|
-
--pf-c-log-viewer__text--FontFamily: var(--pf-global--FontFamily--monospace);
|
|
17079
|
-
--pf-c-log-viewer__text--FontSize: var(--pf-global--FontSize--sm);
|
|
17080
17081
|
--pf-c-log-viewer__text--Color: var(--pf-global--Color--100);
|
|
17081
17082
|
--pf-c-log-viewer__text--WordBreak: break-all;
|
|
17082
17083
|
--pf-c-log-viewer__text--WhiteSpace: break-spaces;
|
|
@@ -17133,6 +17134,10 @@ ul.pf-c-list {
|
|
|
17133
17134
|
content: "";
|
|
17134
17135
|
background: var(--pf-c-log-viewer--m-line-numbers__main--before--BackgroundColor);
|
|
17135
17136
|
}
|
|
17137
|
+
.pf-c-log-viewer.pf-m-line-number-chars {
|
|
17138
|
+
--pf-c-log-viewer__index--PaddingRight: var(--pf-c-log-viewer--m-line-number-chars__index--PaddingRight);
|
|
17139
|
+
--pf-c-log-viewer__index--Width: var(--pf-c-log-viewer--m-line-number-chars__index--Width);
|
|
17140
|
+
}
|
|
17136
17141
|
.pf-c-log-viewer .pf-c-toolbar {
|
|
17137
17142
|
--pf-c-toolbar--PaddingTop: var(--pf-c-log-viewer--c-toolbar--PaddingTop);
|
|
17138
17143
|
--pf-c-toolbar--PaddingBottom: var(--pf-c-log-viewer--c-toolbar--PaddingBottom);
|
|
@@ -17173,6 +17178,8 @@ ul.pf-c-list {
|
|
|
17173
17178
|
.pf-c-log-viewer__list {
|
|
17174
17179
|
position: relative;
|
|
17175
17180
|
height: var(--pf-c-log-viewer__list--Height);
|
|
17181
|
+
font-family: var(--pf-c-log-viewer__list--FontFamily);
|
|
17182
|
+
font-size: var(--pf-c-log-viewer__list--FontSize);
|
|
17176
17183
|
}
|
|
17177
17184
|
|
|
17178
17185
|
.pf-c-log-viewer__list-item {
|
|
@@ -17196,8 +17203,8 @@ ul.pf-c-list {
|
|
|
17196
17203
|
width: var(--pf-c-log-viewer__index--Width);
|
|
17197
17204
|
padding-right: var(--pf-c-log-viewer__index--PaddingRight);
|
|
17198
17205
|
padding-left: var(--pf-c-log-viewer__index--PaddingLeft);
|
|
17199
|
-
font-family: var(--pf-c-log-viewer__index--FontFamily);
|
|
17200
|
-
font-size: var(--pf-c-log-viewer__index--FontSize);
|
|
17206
|
+
font-family: var(--pf-c-log-viewer__index--FontFamily, inherit);
|
|
17207
|
+
font-size: var(--pf-c-log-viewer__index--FontSize, inherit);
|
|
17201
17208
|
color: var(--pf-c-log-viewer__index--Color);
|
|
17202
17209
|
user-select: none;
|
|
17203
17210
|
background-color: var(--pf-c-log-viewer__index--BackgroundColor);
|
|
@@ -17207,8 +17214,8 @@ ul.pf-c-list {
|
|
|
17207
17214
|
display: block;
|
|
17208
17215
|
padding-right: var(--pf-c-log-viewer__text--PaddingRight);
|
|
17209
17216
|
padding-left: var(--pf-c-log-viewer__text--PaddingLeft);
|
|
17210
|
-
font-family: var(--pf-c-log-viewer__text--FontFamily);
|
|
17211
|
-
font-size: var(--pf-c-log-viewer__text--FontSize);
|
|
17217
|
+
font-family: var(--pf-c-log-viewer__text--FontFamily, inherit);
|
|
17218
|
+
font-size: var(--pf-c-log-viewer__text--FontSize, inherit);
|
|
17212
17219
|
color: var(--pf-c-log-viewer__text--Color);
|
|
17213
17220
|
word-break: var(--pf-c-log-viewer__text--WordBreak);
|
|
17214
17221
|
white-space: var(--pf-c-log-viewer__text--WhiteSpace);
|
|
@@ -17756,7 +17763,7 @@ ul.pf-c-list {
|
|
|
17756
17763
|
align-self: stretch;
|
|
17757
17764
|
}
|
|
17758
17765
|
.pf-c-masthead .pf-c-button.pf-m-plain {
|
|
17759
|
-
color: var(--pf-
|
|
17766
|
+
color: var(--pf-c-button--m-plain--Color);
|
|
17760
17767
|
}
|
|
17761
17768
|
|
|
17762
17769
|
.pf-c-masthead__main {
|
|
@@ -20707,12 +20714,15 @@ label.pf-c-menu__item:where(:not([disabled], .pf-m-disabled)) {
|
|
|
20707
20714
|
--pf-c-notification-badge__i--Height: auto;
|
|
20708
20715
|
--pf-c-notification-badge--m-read--after--BorderColor: transparent;
|
|
20709
20716
|
--pf-c-notification-badge--m-read--after--BackgroundColor: transparent;
|
|
20717
|
+
--pf-c-notification-badge--m-read--m-expanded--after--BackgroundColor: var(--pf-global--BackgroundColor--dark-200);
|
|
20710
20718
|
--pf-c-notification-badge--m-unread--Color: var(--pf-global--Color--light-100);
|
|
20711
20719
|
--pf-c-notification-badge--m-unread--after--BackgroundColor: var(--pf-global--active-color--100);
|
|
20712
20720
|
--pf-c-notification-badge--m-unread--hover--after--BackgroundColor: var(--pf-global--primary-color--200);
|
|
20721
|
+
--pf-c-notification-badge--m-unread--m-expanded--after--BackgroundColor: var(--pf-global--primary-color--200);
|
|
20713
20722
|
--pf-c-notification-badge--m-attention--Color: var(--pf-global--Color--light-100);
|
|
20714
20723
|
--pf-c-notification-badge--m-attention--after--BackgroundColor: var(--pf-global--danger-color--100);
|
|
20715
20724
|
--pf-c-notification-badge--m-attention--hover--after--BackgroundColor: var(--pf-global--danger-color--200);
|
|
20725
|
+
--pf-c-notification-badge--m-attention--m-expanded--after--BackgroundColor: var(--pf-global--danger-color--200);
|
|
20716
20726
|
--pf-c-notification-badge__count--MarginLeft: var(--pf-global--spacer--xs);
|
|
20717
20727
|
--pf-c-notification-badge--pf-icon-attention-bell--LineHeight: var(--pf-global--LineHeight--sm);
|
|
20718
20728
|
position: relative;
|
|
@@ -20754,6 +20764,7 @@ label.pf-c-menu__item:where(:not([disabled], .pf-m-disabled)) {
|
|
|
20754
20764
|
.pf-c-notification-badge.pf-m-read {
|
|
20755
20765
|
--pf-c-notification-badge--after--BackgroundColor: var(--pf-c-notification-badge--m-read--after--BackgroundColor);
|
|
20756
20766
|
--pf-c-notification-badge--after--BorderColor: var(--pf-c-notification-badge--m-read--after--BorderColor);
|
|
20767
|
+
color: var(--pf-c-notification-badge--m-read--Color, inherit);
|
|
20757
20768
|
}
|
|
20758
20769
|
.pf-c-notification-badge.pf-m-unread {
|
|
20759
20770
|
--pf-c-notification-badge--after--BackgroundColor: var(--pf-c-notification-badge--m-unread--after--BackgroundColor);
|
|
@@ -20767,7 +20778,13 @@ label.pf-c-menu__item:where(:not([disabled], .pf-m-disabled)) {
|
|
|
20767
20778
|
color: var(--pf-c-notification-badge--m-attention--Color);
|
|
20768
20779
|
}
|
|
20769
20780
|
.pf-c-notification-badge.pf-m-attention:hover {
|
|
20770
|
-
--pf-c-notification-badge--after--BackgroundColor: var(--pf-c-notification-badge--m-attention--hover--after--BackgroundColor);
|
|
20781
|
+
--pf-c-notification-badge--m-attention--after--BackgroundColor: var(--pf-c-notification-badge--m-attention--hover--after--BackgroundColor);
|
|
20782
|
+
}
|
|
20783
|
+
.pf-c-notification-badge.pf-m-expanded {
|
|
20784
|
+
--pf-c-notification-badge--m-read--Color: var(--pf-global--Color--light-100);
|
|
20785
|
+
--pf-c-notification-badge--m-read--after--BackgroundColor: var(--pf-c-notification-badge--m-read--m-expanded--after--BackgroundColor);
|
|
20786
|
+
--pf-c-notification-badge--m-unread--after--BackgroundColor: var(--pf-c-notification-badge--m-unread--m-expanded--after--BackgroundColor);
|
|
20787
|
+
--pf-c-notification-badge--m-attention--after--BackgroundColor: var(--pf-c-notification-badge--m-attention--m-expanded--after--BackgroundColor);
|
|
20771
20788
|
}
|
|
20772
20789
|
|
|
20773
20790
|
.pf-c-notification-badge__count {
|
|
@@ -20811,7 +20828,9 @@ label.pf-c-menu__item:where(:not([disabled], .pf-m-disabled)) {
|
|
|
20811
20828
|
}
|
|
20812
20829
|
|
|
20813
20830
|
:where(.pf-theme-dark) .pf-c-notification-badge {
|
|
20831
|
+
--pf-c-notification-badge--m-read--m-expanded--after--BackgroundColor: var(--pf-global--BackgroundColor--400);
|
|
20814
20832
|
--pf-c-notification-badge--m-unread--after--BackgroundColor: var(--pf-global--primary-color--300);
|
|
20833
|
+
--pf-c-notification-badge--m-attention--Color: var(--pf-global--palette--black-900);
|
|
20815
20834
|
}
|
|
20816
20835
|
|
|
20817
20836
|
.pf-c-notification-drawer {
|
|
@@ -21657,6 +21676,7 @@ label.pf-c-menu__item:where(:not([disabled], .pf-m-disabled)) {
|
|
|
21657
21676
|
.pf-c-page.pf-m-full-height {
|
|
21658
21677
|
height: 100vh;
|
|
21659
21678
|
height: 100dvh;
|
|
21679
|
+
max-height: 100%;
|
|
21660
21680
|
}
|
|
21661
21681
|
|
|
21662
21682
|
.pf-c-page__header,
|
package/patternfly.css
CHANGED
|
@@ -17192,18 +17192,19 @@ ul.pf-c-list {
|
|
|
17192
17192
|
--pf-c-log-viewer--m-line-numbers__main--before--BackgroundColor: var(--pf-global--BorderColor--100);
|
|
17193
17193
|
--pf-c-log-viewer__list--Height: auto;
|
|
17194
17194
|
--pf-c-log-viewer--m-line-numbers__list--Left: var(--pf-c-log-viewer__index--Width);
|
|
17195
|
+
--pf-c-log-viewer__list--FontFamily: var(--pf-global--FontFamily--monospace);
|
|
17196
|
+
--pf-c-log-viewer__list--FontSize: var(--pf-global--FontSize--sm);
|
|
17195
17197
|
--pf-c-log-viewer__index--Display: none;
|
|
17196
17198
|
--pf-c-log-viewer__index--Width: 4.0625rem;
|
|
17197
17199
|
--pf-c-log-viewer__index--PaddingRight: var(--pf-global--spacer--xl);
|
|
17198
17200
|
--pf-c-log-viewer__index--PaddingLeft: var(--pf-global--spacer--lg);
|
|
17199
|
-
--pf-c-log-viewer__index--FontFamily: var(--pf-global--FontFamily--monospace);
|
|
17200
|
-
--pf-c-log-viewer__index--FontSize: var(--pf-global--FontSize--sm);
|
|
17201
17201
|
--pf-c-log-viewer__index--Color: var(--pf-global--Color--200);
|
|
17202
17202
|
--pf-c-log-viewer__index--BackgroundColor: transparent;
|
|
17203
|
+
--pf-c-log-viewer--line-number-chars: 4.4;
|
|
17204
|
+
--pf-c-log-viewer--m-line-number-chars__index--PaddingRight: var(--pf-global--spacer--xs);
|
|
17205
|
+
--pf-c-log-viewer--m-line-number-chars__index--Width: calc(1ch * var(--pf-c-log-viewer--line-number-chars) + var(--pf-c-log-viewer__index--PaddingRight) + var(--pf-c-log-viewer__index--PaddingLeft));
|
|
17203
17206
|
--pf-c-log-viewer__text--PaddingRight: var(--pf-global--spacer--md);
|
|
17204
17207
|
--pf-c-log-viewer__text--PaddingLeft: var(--pf-global--spacer--md);
|
|
17205
|
-
--pf-c-log-viewer__text--FontFamily: var(--pf-global--FontFamily--monospace);
|
|
17206
|
-
--pf-c-log-viewer__text--FontSize: var(--pf-global--FontSize--sm);
|
|
17207
17208
|
--pf-c-log-viewer__text--Color: var(--pf-global--Color--100);
|
|
17208
17209
|
--pf-c-log-viewer__text--WordBreak: break-all;
|
|
17209
17210
|
--pf-c-log-viewer__text--WhiteSpace: break-spaces;
|
|
@@ -17260,6 +17261,10 @@ ul.pf-c-list {
|
|
|
17260
17261
|
content: "";
|
|
17261
17262
|
background: var(--pf-c-log-viewer--m-line-numbers__main--before--BackgroundColor);
|
|
17262
17263
|
}
|
|
17264
|
+
.pf-c-log-viewer.pf-m-line-number-chars {
|
|
17265
|
+
--pf-c-log-viewer__index--PaddingRight: var(--pf-c-log-viewer--m-line-number-chars__index--PaddingRight);
|
|
17266
|
+
--pf-c-log-viewer__index--Width: var(--pf-c-log-viewer--m-line-number-chars__index--Width);
|
|
17267
|
+
}
|
|
17263
17268
|
.pf-c-log-viewer .pf-c-toolbar {
|
|
17264
17269
|
--pf-c-toolbar--PaddingTop: var(--pf-c-log-viewer--c-toolbar--PaddingTop);
|
|
17265
17270
|
--pf-c-toolbar--PaddingBottom: var(--pf-c-log-viewer--c-toolbar--PaddingBottom);
|
|
@@ -17300,6 +17305,8 @@ ul.pf-c-list {
|
|
|
17300
17305
|
.pf-c-log-viewer__list {
|
|
17301
17306
|
position: relative;
|
|
17302
17307
|
height: var(--pf-c-log-viewer__list--Height);
|
|
17308
|
+
font-family: var(--pf-c-log-viewer__list--FontFamily);
|
|
17309
|
+
font-size: var(--pf-c-log-viewer__list--FontSize);
|
|
17303
17310
|
}
|
|
17304
17311
|
|
|
17305
17312
|
.pf-c-log-viewer__list-item {
|
|
@@ -17323,8 +17330,8 @@ ul.pf-c-list {
|
|
|
17323
17330
|
width: var(--pf-c-log-viewer__index--Width);
|
|
17324
17331
|
padding-right: var(--pf-c-log-viewer__index--PaddingRight);
|
|
17325
17332
|
padding-left: var(--pf-c-log-viewer__index--PaddingLeft);
|
|
17326
|
-
font-family: var(--pf-c-log-viewer__index--FontFamily);
|
|
17327
|
-
font-size: var(--pf-c-log-viewer__index--FontSize);
|
|
17333
|
+
font-family: var(--pf-c-log-viewer__index--FontFamily, inherit);
|
|
17334
|
+
font-size: var(--pf-c-log-viewer__index--FontSize, inherit);
|
|
17328
17335
|
color: var(--pf-c-log-viewer__index--Color);
|
|
17329
17336
|
user-select: none;
|
|
17330
17337
|
background-color: var(--pf-c-log-viewer__index--BackgroundColor);
|
|
@@ -17334,8 +17341,8 @@ ul.pf-c-list {
|
|
|
17334
17341
|
display: block;
|
|
17335
17342
|
padding-right: var(--pf-c-log-viewer__text--PaddingRight);
|
|
17336
17343
|
padding-left: var(--pf-c-log-viewer__text--PaddingLeft);
|
|
17337
|
-
font-family: var(--pf-c-log-viewer__text--FontFamily);
|
|
17338
|
-
font-size: var(--pf-c-log-viewer__text--FontSize);
|
|
17344
|
+
font-family: var(--pf-c-log-viewer__text--FontFamily, inherit);
|
|
17345
|
+
font-size: var(--pf-c-log-viewer__text--FontSize, inherit);
|
|
17339
17346
|
color: var(--pf-c-log-viewer__text--Color);
|
|
17340
17347
|
word-break: var(--pf-c-log-viewer__text--WordBreak);
|
|
17341
17348
|
white-space: var(--pf-c-log-viewer__text--WhiteSpace);
|
|
@@ -17883,7 +17890,7 @@ ul.pf-c-list {
|
|
|
17883
17890
|
align-self: stretch;
|
|
17884
17891
|
}
|
|
17885
17892
|
.pf-c-masthead .pf-c-button.pf-m-plain {
|
|
17886
|
-
color: var(--pf-
|
|
17893
|
+
color: var(--pf-c-button--m-plain--Color);
|
|
17887
17894
|
}
|
|
17888
17895
|
|
|
17889
17896
|
.pf-c-masthead__main {
|
|
@@ -20834,12 +20841,15 @@ label.pf-c-menu__item:where(:not([disabled], .pf-m-disabled)) {
|
|
|
20834
20841
|
--pf-c-notification-badge__i--Height: auto;
|
|
20835
20842
|
--pf-c-notification-badge--m-read--after--BorderColor: transparent;
|
|
20836
20843
|
--pf-c-notification-badge--m-read--after--BackgroundColor: transparent;
|
|
20844
|
+
--pf-c-notification-badge--m-read--m-expanded--after--BackgroundColor: var(--pf-global--BackgroundColor--dark-200);
|
|
20837
20845
|
--pf-c-notification-badge--m-unread--Color: var(--pf-global--Color--light-100);
|
|
20838
20846
|
--pf-c-notification-badge--m-unread--after--BackgroundColor: var(--pf-global--active-color--100);
|
|
20839
20847
|
--pf-c-notification-badge--m-unread--hover--after--BackgroundColor: var(--pf-global--primary-color--200);
|
|
20848
|
+
--pf-c-notification-badge--m-unread--m-expanded--after--BackgroundColor: var(--pf-global--primary-color--200);
|
|
20840
20849
|
--pf-c-notification-badge--m-attention--Color: var(--pf-global--Color--light-100);
|
|
20841
20850
|
--pf-c-notification-badge--m-attention--after--BackgroundColor: var(--pf-global--danger-color--100);
|
|
20842
20851
|
--pf-c-notification-badge--m-attention--hover--after--BackgroundColor: var(--pf-global--danger-color--200);
|
|
20852
|
+
--pf-c-notification-badge--m-attention--m-expanded--after--BackgroundColor: var(--pf-global--danger-color--200);
|
|
20843
20853
|
--pf-c-notification-badge__count--MarginLeft: var(--pf-global--spacer--xs);
|
|
20844
20854
|
--pf-c-notification-badge--pf-icon-attention-bell--LineHeight: var(--pf-global--LineHeight--sm);
|
|
20845
20855
|
position: relative;
|
|
@@ -20881,6 +20891,7 @@ label.pf-c-menu__item:where(:not([disabled], .pf-m-disabled)) {
|
|
|
20881
20891
|
.pf-c-notification-badge.pf-m-read {
|
|
20882
20892
|
--pf-c-notification-badge--after--BackgroundColor: var(--pf-c-notification-badge--m-read--after--BackgroundColor);
|
|
20883
20893
|
--pf-c-notification-badge--after--BorderColor: var(--pf-c-notification-badge--m-read--after--BorderColor);
|
|
20894
|
+
color: var(--pf-c-notification-badge--m-read--Color, inherit);
|
|
20884
20895
|
}
|
|
20885
20896
|
.pf-c-notification-badge.pf-m-unread {
|
|
20886
20897
|
--pf-c-notification-badge--after--BackgroundColor: var(--pf-c-notification-badge--m-unread--after--BackgroundColor);
|
|
@@ -20894,7 +20905,13 @@ label.pf-c-menu__item:where(:not([disabled], .pf-m-disabled)) {
|
|
|
20894
20905
|
color: var(--pf-c-notification-badge--m-attention--Color);
|
|
20895
20906
|
}
|
|
20896
20907
|
.pf-c-notification-badge.pf-m-attention:hover {
|
|
20897
|
-
--pf-c-notification-badge--after--BackgroundColor: var(--pf-c-notification-badge--m-attention--hover--after--BackgroundColor);
|
|
20908
|
+
--pf-c-notification-badge--m-attention--after--BackgroundColor: var(--pf-c-notification-badge--m-attention--hover--after--BackgroundColor);
|
|
20909
|
+
}
|
|
20910
|
+
.pf-c-notification-badge.pf-m-expanded {
|
|
20911
|
+
--pf-c-notification-badge--m-read--Color: var(--pf-global--Color--light-100);
|
|
20912
|
+
--pf-c-notification-badge--m-read--after--BackgroundColor: var(--pf-c-notification-badge--m-read--m-expanded--after--BackgroundColor);
|
|
20913
|
+
--pf-c-notification-badge--m-unread--after--BackgroundColor: var(--pf-c-notification-badge--m-unread--m-expanded--after--BackgroundColor);
|
|
20914
|
+
--pf-c-notification-badge--m-attention--after--BackgroundColor: var(--pf-c-notification-badge--m-attention--m-expanded--after--BackgroundColor);
|
|
20898
20915
|
}
|
|
20899
20916
|
|
|
20900
20917
|
.pf-c-notification-badge__count {
|
|
@@ -20938,7 +20955,9 @@ label.pf-c-menu__item:where(:not([disabled], .pf-m-disabled)) {
|
|
|
20938
20955
|
}
|
|
20939
20956
|
|
|
20940
20957
|
:where(.pf-theme-dark) .pf-c-notification-badge {
|
|
20958
|
+
--pf-c-notification-badge--m-read--m-expanded--after--BackgroundColor: var(--pf-global--BackgroundColor--400);
|
|
20941
20959
|
--pf-c-notification-badge--m-unread--after--BackgroundColor: var(--pf-global--primary-color--300);
|
|
20960
|
+
--pf-c-notification-badge--m-attention--Color: var(--pf-global--palette--black-900);
|
|
20942
20961
|
}
|
|
20943
20962
|
|
|
20944
20963
|
.pf-c-notification-drawer {
|
|
@@ -21784,6 +21803,7 @@ label.pf-c-menu__item:where(:not([disabled], .pf-m-disabled)) {
|
|
|
21784
21803
|
.pf-c-page.pf-m-full-height {
|
|
21785
21804
|
height: 100vh;
|
|
21786
21805
|
height: 100dvh;
|
|
21806
|
+
max-height: 100%;
|
|
21787
21807
|
}
|
|
21788
21808
|
|
|
21789
21809
|
.pf-c-page__header,
|