@patternfly/patternfly 4.211.0 → 4.213.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/Card/card.css +1 -0
- package/components/Card/card.scss +1 -0
- package/components/Icon/icon.css +119 -0
- package/components/Icon/icon.scss +149 -0
- package/components/LogViewer/log-viewer.css +15 -8
- package/components/LogViewer/log-viewer.scss +16 -8
- package/components/_all.scss +1 -0
- package/docs/components/DualListSelector/examples/DualListSelector.md +4 -46
- package/docs/components/FormControl/examples/FormControl.md +12 -12
- package/docs/components/Icon/examples/Icon.md +255 -0
- package/docs/components/LogViewer/examples/LogViewer.md +553 -1
- package/docs/components/TabContent/examples/TabContent.md +21 -11
- package/docs/components/TreeView/examples/TreeView.md +181 -130
- package/package.json +3 -3
- package/patternfly-no-reset.css +136 -8
- package/patternfly.css +136 -8
- package/patternfly.min.css +1 -1
- package/patternfly.min.css.map +1 -1
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.213.0",
|
|
5
5
|
"keywords": [],
|
|
6
6
|
"license": "MIT",
|
|
7
7
|
"scripts": {
|
|
@@ -35,8 +35,8 @@
|
|
|
35
35
|
"@octokit/rest": "^16.40.1",
|
|
36
36
|
"@patternfly/patternfly-a11y": "4.3.1",
|
|
37
37
|
"@patternfly/react-charts": "6.88.7",
|
|
38
|
-
"@patternfly/react-code-editor": "4.
|
|
39
|
-
"@patternfly/react-table": "4.
|
|
38
|
+
"@patternfly/react-code-editor": "4.76.7",
|
|
39
|
+
"@patternfly/react-table": "4.104.7",
|
|
40
40
|
"@starptech/prettyhtml": "^0.10.0",
|
|
41
41
|
"babel-eslint": "^8.2.3",
|
|
42
42
|
"cheerio": "^1.0.0-rc.3",
|
package/patternfly-no-reset.css
CHANGED
|
@@ -8190,6 +8190,7 @@ button.pf-c-breadcrumb__link {
|
|
|
8190
8190
|
--pf-c-card--child--PaddingBottom: var(--pf-global--spacer--lg);
|
|
8191
8191
|
--pf-c-card--child--PaddingLeft: var(--pf-global--spacer--lg);
|
|
8192
8192
|
--pf-c-card--c-divider--child--PaddingTop: var(--pf-global--spacer--lg);
|
|
8193
|
+
--pf-c-card__title--FontFamily: var(--pf-global--FontFamily--heading--sans-serif);
|
|
8193
8194
|
--pf-c-card__title--FontSize: var(--pf-global--FontSize--md);
|
|
8194
8195
|
--pf-c-card__title--FontWeight: var(--pf-global--FontWeight--bold);
|
|
8195
8196
|
--pf-c-card__title--not--last-child--PaddingBottom: var(--pf-global--spacer--md);
|
|
@@ -15843,6 +15844,126 @@ textarea.pf-c-form-control {
|
|
|
15843
15844
|
--pf-c-helper-text__item-text--m-success--Color: var(--pf-global--success-color--100);
|
|
15844
15845
|
}
|
|
15845
15846
|
|
|
15847
|
+
.pf-c-icon {
|
|
15848
|
+
--pf-c-icon--Width: var(--pf-global--icon--FontSize--md);
|
|
15849
|
+
--pf-c-icon--Height: var(--pf-global--icon--FontSize--md);
|
|
15850
|
+
--pf-c-icon--m-inline--Width: 1em;
|
|
15851
|
+
--pf-c-icon--m-inline--Height: 1em;
|
|
15852
|
+
--pf-c-icon--m-sm--Width: var(--pf-global--icon--FontSize--sm);
|
|
15853
|
+
--pf-c-icon--m-md--Width: var(--pf-global--icon--FontSize--md);
|
|
15854
|
+
--pf-c-icon--m-lg--Width: var(--pf-global--icon--FontSize--lg);
|
|
15855
|
+
--pf-c-icon--m-xl--Width: var(--pf-global--icon--FontSize--xl);
|
|
15856
|
+
--pf-c-icon--m-sm--Height: var(--pf-global--icon--FontSize--sm);
|
|
15857
|
+
--pf-c-icon--m-md--Height: var(--pf-global--icon--FontSize--md);
|
|
15858
|
+
--pf-c-icon--m-lg--Height: var(--pf-global--icon--FontSize--lg);
|
|
15859
|
+
--pf-c-icon--m-xl--Height: var(--pf-global--icon--FontSize--xl);
|
|
15860
|
+
--pf-c-icon__content--Color: var(--pf-global--icon--Color--dark);
|
|
15861
|
+
--pf-c-icon__content--m-danger--Color: var(--pf-global--danger-color--100);
|
|
15862
|
+
--pf-c-icon__content--m-warning--Color: var(--pf-global--warning-color--100);
|
|
15863
|
+
--pf-c-icon__content--m-success--Color: var(--pf-global--success-color--100);
|
|
15864
|
+
--pf-c-icon__content--m-info--Color: var(--pf-global--info-color--100);
|
|
15865
|
+
--pf-c-icon__content--m-default--Color: var(--pf-global--default-color--100);
|
|
15866
|
+
--pf-c-icon__content--FontSize: var(--pf-global--icon--FontSize--md);
|
|
15867
|
+
--pf-c-icon--m-inline__content--FontSize: 1em;
|
|
15868
|
+
--pf-c-icon__content--svg--VerticalAlign: -.125em;
|
|
15869
|
+
--pf-c-icon--m-sm--content--FontSize: var(--pf-global--icon--FontSize--sm);
|
|
15870
|
+
--pf-c-icon--m-md--content--FontSize: var(--pf-global--icon--FontSize--md);
|
|
15871
|
+
--pf-c-icon--m-lg--content--FontSize: var(--pf-global--icon--FontSize--lg);
|
|
15872
|
+
--pf-c-icon--m-xl--content--FontSize: var(--pf-global--icon--FontSize--xl);
|
|
15873
|
+
position: relative;
|
|
15874
|
+
display: inline-flex;
|
|
15875
|
+
align-items: center;
|
|
15876
|
+
justify-content: center;
|
|
15877
|
+
width: var(--pf-c-icon--Width);
|
|
15878
|
+
height: var(--pf-c-icon--Height);
|
|
15879
|
+
}
|
|
15880
|
+
.pf-c-icon.pf-m-inline {
|
|
15881
|
+
--pf-c-icon--Width: var(--pf-c-icon--m-inline--Width);
|
|
15882
|
+
--pf-c-icon--Height: var(--pf-c-icon--m-inline--Height);
|
|
15883
|
+
--pf-c-icon__content--FontSize: var(--pf-c-icon--m-inline__content--FontSize);
|
|
15884
|
+
--pf-c-icon__content--Color: currentcolor;
|
|
15885
|
+
line-height: 1;
|
|
15886
|
+
}
|
|
15887
|
+
.pf-c-icon.pf-m-inline .pf-c-spinner {
|
|
15888
|
+
--pf-c-spinner--diameter: 1em;
|
|
15889
|
+
}
|
|
15890
|
+
.pf-c-icon.pf-m-sm {
|
|
15891
|
+
--pf-c-icon--Width: var(--pf-c-icon--m-sm--Width);
|
|
15892
|
+
--pf-c-icon--Height: var(--pf-c-icon--m-sm--Height);
|
|
15893
|
+
--pf-c-icon__content--FontSize: var(--pf-c-icon--m-sm--content--FontSize);
|
|
15894
|
+
}
|
|
15895
|
+
.pf-c-icon.pf-m-md {
|
|
15896
|
+
--pf-c-icon--Width: var(--pf-c-icon--m-md--Width);
|
|
15897
|
+
--pf-c-icon--Height: var(--pf-c-icon--m-md--Height);
|
|
15898
|
+
--pf-c-icon__content--FontSize: var(--pf-c-icon--m-md--content--FontSize);
|
|
15899
|
+
}
|
|
15900
|
+
.pf-c-icon.pf-m-lg {
|
|
15901
|
+
--pf-c-icon--Width: var(--pf-c-icon--m-lg--Width);
|
|
15902
|
+
--pf-c-icon--Height: var(--pf-c-icon--m-lg--Height);
|
|
15903
|
+
--pf-c-icon__content--FontSize: var(--pf-c-icon--m-lg--content--FontSize);
|
|
15904
|
+
}
|
|
15905
|
+
.pf-c-icon.pf-m-xl {
|
|
15906
|
+
--pf-c-icon--Width: var(--pf-c-icon--m-xl--Width);
|
|
15907
|
+
--pf-c-icon--Height: var(--pf-c-icon--m-xl--Height);
|
|
15908
|
+
--pf-c-icon__content--FontSize: var(--pf-c-icon--m-xl--content--FontSize);
|
|
15909
|
+
}
|
|
15910
|
+
.pf-c-icon.pf-m-in-progress {
|
|
15911
|
+
--pf-c-icon__content--Opacity: 0;
|
|
15912
|
+
--pf-c-icon__progress--Opacity: 1;
|
|
15913
|
+
}
|
|
15914
|
+
|
|
15915
|
+
.pf-c-icon__content,
|
|
15916
|
+
.pf-c-icon__progress {
|
|
15917
|
+
font-size: var(--pf-c-icon__content--FontSize);
|
|
15918
|
+
}
|
|
15919
|
+
.pf-c-icon__content svg,
|
|
15920
|
+
.pf-c-icon__progress svg {
|
|
15921
|
+
vertical-align: var(--pf-c-icon__content--svg--VerticalAlign);
|
|
15922
|
+
}
|
|
15923
|
+
.pf-c-icon__content.pf-m-sm,
|
|
15924
|
+
.pf-c-icon__progress.pf-m-sm {
|
|
15925
|
+
--pf-c-icon__content--FontSize: var(--pf-c-icon--m-sm--content--FontSize);
|
|
15926
|
+
}
|
|
15927
|
+
.pf-c-icon__content.pf-m-md,
|
|
15928
|
+
.pf-c-icon__progress.pf-m-md {
|
|
15929
|
+
--pf-c-icon__content--FontSize: var(--pf-c-icon--m-md--content--FontSize);
|
|
15930
|
+
}
|
|
15931
|
+
.pf-c-icon__content.pf-m-lg,
|
|
15932
|
+
.pf-c-icon__progress.pf-m-lg {
|
|
15933
|
+
--pf-c-icon__content--FontSize: var(--pf-c-icon--m-lg--content--FontSize);
|
|
15934
|
+
}
|
|
15935
|
+
.pf-c-icon__content.pf-m-xl,
|
|
15936
|
+
.pf-c-icon__progress.pf-m-xl {
|
|
15937
|
+
--pf-c-icon__content--FontSize: var(--pf-c-icon--m-xl--content--FontSize);
|
|
15938
|
+
}
|
|
15939
|
+
|
|
15940
|
+
.pf-c-icon__content {
|
|
15941
|
+
color: var(--pf-c-icon__content--Color);
|
|
15942
|
+
opacity: var(--pf-c-icon__content--Opacity, 1);
|
|
15943
|
+
}
|
|
15944
|
+
.pf-c-icon__content.pf-m-danger {
|
|
15945
|
+
--pf-c-icon__content--Color: var(--pf-c-icon__content--m-danger--Color);
|
|
15946
|
+
}
|
|
15947
|
+
.pf-c-icon__content.pf-m-warning {
|
|
15948
|
+
--pf-c-icon__content--Color: var(--pf-c-icon__content--m-warning--Color);
|
|
15949
|
+
}
|
|
15950
|
+
.pf-c-icon__content.pf-m-success {
|
|
15951
|
+
--pf-c-icon__content--Color: var(--pf-c-icon__content--m-success--Color);
|
|
15952
|
+
}
|
|
15953
|
+
.pf-c-icon__content.pf-m-info {
|
|
15954
|
+
--pf-c-icon__content--Color: var(--pf-c-icon__content--m-info--Color);
|
|
15955
|
+
}
|
|
15956
|
+
.pf-c-icon__content.pf-m-default {
|
|
15957
|
+
--pf-c-icon__content--Color: var(--pf-c-icon__content--m-default--Color);
|
|
15958
|
+
}
|
|
15959
|
+
|
|
15960
|
+
.pf-c-icon__progress {
|
|
15961
|
+
position: absolute;
|
|
15962
|
+
top: calc(50% + 0.5 * var(--pf-c-icon__content--svg--VerticalAlign));
|
|
15963
|
+
opacity: var(--pf-c-icon__progress--Opacity, 0);
|
|
15964
|
+
transform: translateY(calc(-50% - 0.5 * var(--pf-c-icon__content--svg--VerticalAlign)));
|
|
15965
|
+
}
|
|
15966
|
+
|
|
15846
15967
|
.pf-c-inline-edit {
|
|
15847
15968
|
--pf-c-inline-edit__group--item--MarginRight: var(--pf-global--spacer--sm);
|
|
15848
15969
|
--pf-c-inline-edit__action--c-button--m-valid--m-plain--Color: var(--pf-global--link--Color);
|
|
@@ -17065,18 +17186,19 @@ ul.pf-c-list {
|
|
|
17065
17186
|
--pf-c-log-viewer--m-line-numbers__main--before--BackgroundColor: var(--pf-global--BorderColor--100);
|
|
17066
17187
|
--pf-c-log-viewer__list--Height: auto;
|
|
17067
17188
|
--pf-c-log-viewer--m-line-numbers__list--Left: var(--pf-c-log-viewer__index--Width);
|
|
17189
|
+
--pf-c-log-viewer__list--FontFamily: var(--pf-global--FontFamily--monospace);
|
|
17190
|
+
--pf-c-log-viewer__list--FontSize: var(--pf-global--FontSize--sm);
|
|
17068
17191
|
--pf-c-log-viewer__index--Display: none;
|
|
17069
17192
|
--pf-c-log-viewer__index--Width: 4.0625rem;
|
|
17070
17193
|
--pf-c-log-viewer__index--PaddingRight: var(--pf-global--spacer--xl);
|
|
17071
17194
|
--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
17195
|
--pf-c-log-viewer__index--Color: var(--pf-global--Color--200);
|
|
17075
17196
|
--pf-c-log-viewer__index--BackgroundColor: transparent;
|
|
17197
|
+
--pf-c-log-viewer--line-number-chars: 4.4;
|
|
17198
|
+
--pf-c-log-viewer--m-line-number-chars__index--PaddingRight: var(--pf-global--spacer--xs);
|
|
17199
|
+
--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
17200
|
--pf-c-log-viewer__text--PaddingRight: var(--pf-global--spacer--md);
|
|
17077
17201
|
--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
17202
|
--pf-c-log-viewer__text--Color: var(--pf-global--Color--100);
|
|
17081
17203
|
--pf-c-log-viewer__text--WordBreak: break-all;
|
|
17082
17204
|
--pf-c-log-viewer__text--WhiteSpace: break-spaces;
|
|
@@ -17133,6 +17255,10 @@ ul.pf-c-list {
|
|
|
17133
17255
|
content: "";
|
|
17134
17256
|
background: var(--pf-c-log-viewer--m-line-numbers__main--before--BackgroundColor);
|
|
17135
17257
|
}
|
|
17258
|
+
.pf-c-log-viewer.pf-m-line-number-chars {
|
|
17259
|
+
--pf-c-log-viewer__index--PaddingRight: var(--pf-c-log-viewer--m-line-number-chars__index--PaddingRight);
|
|
17260
|
+
--pf-c-log-viewer__index--Width: var(--pf-c-log-viewer--m-line-number-chars__index--Width);
|
|
17261
|
+
}
|
|
17136
17262
|
.pf-c-log-viewer .pf-c-toolbar {
|
|
17137
17263
|
--pf-c-toolbar--PaddingTop: var(--pf-c-log-viewer--c-toolbar--PaddingTop);
|
|
17138
17264
|
--pf-c-toolbar--PaddingBottom: var(--pf-c-log-viewer--c-toolbar--PaddingBottom);
|
|
@@ -17173,6 +17299,8 @@ ul.pf-c-list {
|
|
|
17173
17299
|
.pf-c-log-viewer__list {
|
|
17174
17300
|
position: relative;
|
|
17175
17301
|
height: var(--pf-c-log-viewer__list--Height);
|
|
17302
|
+
font-family: var(--pf-c-log-viewer__list--FontFamily);
|
|
17303
|
+
font-size: var(--pf-c-log-viewer__list--FontSize);
|
|
17176
17304
|
}
|
|
17177
17305
|
|
|
17178
17306
|
.pf-c-log-viewer__list-item {
|
|
@@ -17196,8 +17324,8 @@ ul.pf-c-list {
|
|
|
17196
17324
|
width: var(--pf-c-log-viewer__index--Width);
|
|
17197
17325
|
padding-right: var(--pf-c-log-viewer__index--PaddingRight);
|
|
17198
17326
|
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);
|
|
17327
|
+
font-family: var(--pf-c-log-viewer__index--FontFamily, inherit);
|
|
17328
|
+
font-size: var(--pf-c-log-viewer__index--FontSize, inherit);
|
|
17201
17329
|
color: var(--pf-c-log-viewer__index--Color);
|
|
17202
17330
|
user-select: none;
|
|
17203
17331
|
background-color: var(--pf-c-log-viewer__index--BackgroundColor);
|
|
@@ -17207,8 +17335,8 @@ ul.pf-c-list {
|
|
|
17207
17335
|
display: block;
|
|
17208
17336
|
padding-right: var(--pf-c-log-viewer__text--PaddingRight);
|
|
17209
17337
|
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);
|
|
17338
|
+
font-family: var(--pf-c-log-viewer__text--FontFamily, inherit);
|
|
17339
|
+
font-size: var(--pf-c-log-viewer__text--FontSize, inherit);
|
|
17212
17340
|
color: var(--pf-c-log-viewer__text--Color);
|
|
17213
17341
|
word-break: var(--pf-c-log-viewer__text--WordBreak);
|
|
17214
17342
|
white-space: var(--pf-c-log-viewer__text--WhiteSpace);
|
package/patternfly.css
CHANGED
|
@@ -8317,6 +8317,7 @@ button.pf-c-breadcrumb__link {
|
|
|
8317
8317
|
--pf-c-card--child--PaddingBottom: var(--pf-global--spacer--lg);
|
|
8318
8318
|
--pf-c-card--child--PaddingLeft: var(--pf-global--spacer--lg);
|
|
8319
8319
|
--pf-c-card--c-divider--child--PaddingTop: var(--pf-global--spacer--lg);
|
|
8320
|
+
--pf-c-card__title--FontFamily: var(--pf-global--FontFamily--heading--sans-serif);
|
|
8320
8321
|
--pf-c-card__title--FontSize: var(--pf-global--FontSize--md);
|
|
8321
8322
|
--pf-c-card__title--FontWeight: var(--pf-global--FontWeight--bold);
|
|
8322
8323
|
--pf-c-card__title--not--last-child--PaddingBottom: var(--pf-global--spacer--md);
|
|
@@ -15970,6 +15971,126 @@ textarea.pf-c-form-control {
|
|
|
15970
15971
|
--pf-c-helper-text__item-text--m-success--Color: var(--pf-global--success-color--100);
|
|
15971
15972
|
}
|
|
15972
15973
|
|
|
15974
|
+
.pf-c-icon {
|
|
15975
|
+
--pf-c-icon--Width: var(--pf-global--icon--FontSize--md);
|
|
15976
|
+
--pf-c-icon--Height: var(--pf-global--icon--FontSize--md);
|
|
15977
|
+
--pf-c-icon--m-inline--Width: 1em;
|
|
15978
|
+
--pf-c-icon--m-inline--Height: 1em;
|
|
15979
|
+
--pf-c-icon--m-sm--Width: var(--pf-global--icon--FontSize--sm);
|
|
15980
|
+
--pf-c-icon--m-md--Width: var(--pf-global--icon--FontSize--md);
|
|
15981
|
+
--pf-c-icon--m-lg--Width: var(--pf-global--icon--FontSize--lg);
|
|
15982
|
+
--pf-c-icon--m-xl--Width: var(--pf-global--icon--FontSize--xl);
|
|
15983
|
+
--pf-c-icon--m-sm--Height: var(--pf-global--icon--FontSize--sm);
|
|
15984
|
+
--pf-c-icon--m-md--Height: var(--pf-global--icon--FontSize--md);
|
|
15985
|
+
--pf-c-icon--m-lg--Height: var(--pf-global--icon--FontSize--lg);
|
|
15986
|
+
--pf-c-icon--m-xl--Height: var(--pf-global--icon--FontSize--xl);
|
|
15987
|
+
--pf-c-icon__content--Color: var(--pf-global--icon--Color--dark);
|
|
15988
|
+
--pf-c-icon__content--m-danger--Color: var(--pf-global--danger-color--100);
|
|
15989
|
+
--pf-c-icon__content--m-warning--Color: var(--pf-global--warning-color--100);
|
|
15990
|
+
--pf-c-icon__content--m-success--Color: var(--pf-global--success-color--100);
|
|
15991
|
+
--pf-c-icon__content--m-info--Color: var(--pf-global--info-color--100);
|
|
15992
|
+
--pf-c-icon__content--m-default--Color: var(--pf-global--default-color--100);
|
|
15993
|
+
--pf-c-icon__content--FontSize: var(--pf-global--icon--FontSize--md);
|
|
15994
|
+
--pf-c-icon--m-inline__content--FontSize: 1em;
|
|
15995
|
+
--pf-c-icon__content--svg--VerticalAlign: -.125em;
|
|
15996
|
+
--pf-c-icon--m-sm--content--FontSize: var(--pf-global--icon--FontSize--sm);
|
|
15997
|
+
--pf-c-icon--m-md--content--FontSize: var(--pf-global--icon--FontSize--md);
|
|
15998
|
+
--pf-c-icon--m-lg--content--FontSize: var(--pf-global--icon--FontSize--lg);
|
|
15999
|
+
--pf-c-icon--m-xl--content--FontSize: var(--pf-global--icon--FontSize--xl);
|
|
16000
|
+
position: relative;
|
|
16001
|
+
display: inline-flex;
|
|
16002
|
+
align-items: center;
|
|
16003
|
+
justify-content: center;
|
|
16004
|
+
width: var(--pf-c-icon--Width);
|
|
16005
|
+
height: var(--pf-c-icon--Height);
|
|
16006
|
+
}
|
|
16007
|
+
.pf-c-icon.pf-m-inline {
|
|
16008
|
+
--pf-c-icon--Width: var(--pf-c-icon--m-inline--Width);
|
|
16009
|
+
--pf-c-icon--Height: var(--pf-c-icon--m-inline--Height);
|
|
16010
|
+
--pf-c-icon__content--FontSize: var(--pf-c-icon--m-inline__content--FontSize);
|
|
16011
|
+
--pf-c-icon__content--Color: currentcolor;
|
|
16012
|
+
line-height: 1;
|
|
16013
|
+
}
|
|
16014
|
+
.pf-c-icon.pf-m-inline .pf-c-spinner {
|
|
16015
|
+
--pf-c-spinner--diameter: 1em;
|
|
16016
|
+
}
|
|
16017
|
+
.pf-c-icon.pf-m-sm {
|
|
16018
|
+
--pf-c-icon--Width: var(--pf-c-icon--m-sm--Width);
|
|
16019
|
+
--pf-c-icon--Height: var(--pf-c-icon--m-sm--Height);
|
|
16020
|
+
--pf-c-icon__content--FontSize: var(--pf-c-icon--m-sm--content--FontSize);
|
|
16021
|
+
}
|
|
16022
|
+
.pf-c-icon.pf-m-md {
|
|
16023
|
+
--pf-c-icon--Width: var(--pf-c-icon--m-md--Width);
|
|
16024
|
+
--pf-c-icon--Height: var(--pf-c-icon--m-md--Height);
|
|
16025
|
+
--pf-c-icon__content--FontSize: var(--pf-c-icon--m-md--content--FontSize);
|
|
16026
|
+
}
|
|
16027
|
+
.pf-c-icon.pf-m-lg {
|
|
16028
|
+
--pf-c-icon--Width: var(--pf-c-icon--m-lg--Width);
|
|
16029
|
+
--pf-c-icon--Height: var(--pf-c-icon--m-lg--Height);
|
|
16030
|
+
--pf-c-icon__content--FontSize: var(--pf-c-icon--m-lg--content--FontSize);
|
|
16031
|
+
}
|
|
16032
|
+
.pf-c-icon.pf-m-xl {
|
|
16033
|
+
--pf-c-icon--Width: var(--pf-c-icon--m-xl--Width);
|
|
16034
|
+
--pf-c-icon--Height: var(--pf-c-icon--m-xl--Height);
|
|
16035
|
+
--pf-c-icon__content--FontSize: var(--pf-c-icon--m-xl--content--FontSize);
|
|
16036
|
+
}
|
|
16037
|
+
.pf-c-icon.pf-m-in-progress {
|
|
16038
|
+
--pf-c-icon__content--Opacity: 0;
|
|
16039
|
+
--pf-c-icon__progress--Opacity: 1;
|
|
16040
|
+
}
|
|
16041
|
+
|
|
16042
|
+
.pf-c-icon__content,
|
|
16043
|
+
.pf-c-icon__progress {
|
|
16044
|
+
font-size: var(--pf-c-icon__content--FontSize);
|
|
16045
|
+
}
|
|
16046
|
+
.pf-c-icon__content svg,
|
|
16047
|
+
.pf-c-icon__progress svg {
|
|
16048
|
+
vertical-align: var(--pf-c-icon__content--svg--VerticalAlign);
|
|
16049
|
+
}
|
|
16050
|
+
.pf-c-icon__content.pf-m-sm,
|
|
16051
|
+
.pf-c-icon__progress.pf-m-sm {
|
|
16052
|
+
--pf-c-icon__content--FontSize: var(--pf-c-icon--m-sm--content--FontSize);
|
|
16053
|
+
}
|
|
16054
|
+
.pf-c-icon__content.pf-m-md,
|
|
16055
|
+
.pf-c-icon__progress.pf-m-md {
|
|
16056
|
+
--pf-c-icon__content--FontSize: var(--pf-c-icon--m-md--content--FontSize);
|
|
16057
|
+
}
|
|
16058
|
+
.pf-c-icon__content.pf-m-lg,
|
|
16059
|
+
.pf-c-icon__progress.pf-m-lg {
|
|
16060
|
+
--pf-c-icon__content--FontSize: var(--pf-c-icon--m-lg--content--FontSize);
|
|
16061
|
+
}
|
|
16062
|
+
.pf-c-icon__content.pf-m-xl,
|
|
16063
|
+
.pf-c-icon__progress.pf-m-xl {
|
|
16064
|
+
--pf-c-icon__content--FontSize: var(--pf-c-icon--m-xl--content--FontSize);
|
|
16065
|
+
}
|
|
16066
|
+
|
|
16067
|
+
.pf-c-icon__content {
|
|
16068
|
+
color: var(--pf-c-icon__content--Color);
|
|
16069
|
+
opacity: var(--pf-c-icon__content--Opacity, 1);
|
|
16070
|
+
}
|
|
16071
|
+
.pf-c-icon__content.pf-m-danger {
|
|
16072
|
+
--pf-c-icon__content--Color: var(--pf-c-icon__content--m-danger--Color);
|
|
16073
|
+
}
|
|
16074
|
+
.pf-c-icon__content.pf-m-warning {
|
|
16075
|
+
--pf-c-icon__content--Color: var(--pf-c-icon__content--m-warning--Color);
|
|
16076
|
+
}
|
|
16077
|
+
.pf-c-icon__content.pf-m-success {
|
|
16078
|
+
--pf-c-icon__content--Color: var(--pf-c-icon__content--m-success--Color);
|
|
16079
|
+
}
|
|
16080
|
+
.pf-c-icon__content.pf-m-info {
|
|
16081
|
+
--pf-c-icon__content--Color: var(--pf-c-icon__content--m-info--Color);
|
|
16082
|
+
}
|
|
16083
|
+
.pf-c-icon__content.pf-m-default {
|
|
16084
|
+
--pf-c-icon__content--Color: var(--pf-c-icon__content--m-default--Color);
|
|
16085
|
+
}
|
|
16086
|
+
|
|
16087
|
+
.pf-c-icon__progress {
|
|
16088
|
+
position: absolute;
|
|
16089
|
+
top: calc(50% + 0.5 * var(--pf-c-icon__content--svg--VerticalAlign));
|
|
16090
|
+
opacity: var(--pf-c-icon__progress--Opacity, 0);
|
|
16091
|
+
transform: translateY(calc(-50% - 0.5 * var(--pf-c-icon__content--svg--VerticalAlign)));
|
|
16092
|
+
}
|
|
16093
|
+
|
|
15973
16094
|
.pf-c-inline-edit {
|
|
15974
16095
|
--pf-c-inline-edit__group--item--MarginRight: var(--pf-global--spacer--sm);
|
|
15975
16096
|
--pf-c-inline-edit__action--c-button--m-valid--m-plain--Color: var(--pf-global--link--Color);
|
|
@@ -17192,18 +17313,19 @@ ul.pf-c-list {
|
|
|
17192
17313
|
--pf-c-log-viewer--m-line-numbers__main--before--BackgroundColor: var(--pf-global--BorderColor--100);
|
|
17193
17314
|
--pf-c-log-viewer__list--Height: auto;
|
|
17194
17315
|
--pf-c-log-viewer--m-line-numbers__list--Left: var(--pf-c-log-viewer__index--Width);
|
|
17316
|
+
--pf-c-log-viewer__list--FontFamily: var(--pf-global--FontFamily--monospace);
|
|
17317
|
+
--pf-c-log-viewer__list--FontSize: var(--pf-global--FontSize--sm);
|
|
17195
17318
|
--pf-c-log-viewer__index--Display: none;
|
|
17196
17319
|
--pf-c-log-viewer__index--Width: 4.0625rem;
|
|
17197
17320
|
--pf-c-log-viewer__index--PaddingRight: var(--pf-global--spacer--xl);
|
|
17198
17321
|
--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
17322
|
--pf-c-log-viewer__index--Color: var(--pf-global--Color--200);
|
|
17202
17323
|
--pf-c-log-viewer__index--BackgroundColor: transparent;
|
|
17324
|
+
--pf-c-log-viewer--line-number-chars: 4.4;
|
|
17325
|
+
--pf-c-log-viewer--m-line-number-chars__index--PaddingRight: var(--pf-global--spacer--xs);
|
|
17326
|
+
--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
17327
|
--pf-c-log-viewer__text--PaddingRight: var(--pf-global--spacer--md);
|
|
17204
17328
|
--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
17329
|
--pf-c-log-viewer__text--Color: var(--pf-global--Color--100);
|
|
17208
17330
|
--pf-c-log-viewer__text--WordBreak: break-all;
|
|
17209
17331
|
--pf-c-log-viewer__text--WhiteSpace: break-spaces;
|
|
@@ -17260,6 +17382,10 @@ ul.pf-c-list {
|
|
|
17260
17382
|
content: "";
|
|
17261
17383
|
background: var(--pf-c-log-viewer--m-line-numbers__main--before--BackgroundColor);
|
|
17262
17384
|
}
|
|
17385
|
+
.pf-c-log-viewer.pf-m-line-number-chars {
|
|
17386
|
+
--pf-c-log-viewer__index--PaddingRight: var(--pf-c-log-viewer--m-line-number-chars__index--PaddingRight);
|
|
17387
|
+
--pf-c-log-viewer__index--Width: var(--pf-c-log-viewer--m-line-number-chars__index--Width);
|
|
17388
|
+
}
|
|
17263
17389
|
.pf-c-log-viewer .pf-c-toolbar {
|
|
17264
17390
|
--pf-c-toolbar--PaddingTop: var(--pf-c-log-viewer--c-toolbar--PaddingTop);
|
|
17265
17391
|
--pf-c-toolbar--PaddingBottom: var(--pf-c-log-viewer--c-toolbar--PaddingBottom);
|
|
@@ -17300,6 +17426,8 @@ ul.pf-c-list {
|
|
|
17300
17426
|
.pf-c-log-viewer__list {
|
|
17301
17427
|
position: relative;
|
|
17302
17428
|
height: var(--pf-c-log-viewer__list--Height);
|
|
17429
|
+
font-family: var(--pf-c-log-viewer__list--FontFamily);
|
|
17430
|
+
font-size: var(--pf-c-log-viewer__list--FontSize);
|
|
17303
17431
|
}
|
|
17304
17432
|
|
|
17305
17433
|
.pf-c-log-viewer__list-item {
|
|
@@ -17323,8 +17451,8 @@ ul.pf-c-list {
|
|
|
17323
17451
|
width: var(--pf-c-log-viewer__index--Width);
|
|
17324
17452
|
padding-right: var(--pf-c-log-viewer__index--PaddingRight);
|
|
17325
17453
|
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);
|
|
17454
|
+
font-family: var(--pf-c-log-viewer__index--FontFamily, inherit);
|
|
17455
|
+
font-size: var(--pf-c-log-viewer__index--FontSize, inherit);
|
|
17328
17456
|
color: var(--pf-c-log-viewer__index--Color);
|
|
17329
17457
|
user-select: none;
|
|
17330
17458
|
background-color: var(--pf-c-log-viewer__index--BackgroundColor);
|
|
@@ -17334,8 +17462,8 @@ ul.pf-c-list {
|
|
|
17334
17462
|
display: block;
|
|
17335
17463
|
padding-right: var(--pf-c-log-viewer__text--PaddingRight);
|
|
17336
17464
|
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);
|
|
17465
|
+
font-family: var(--pf-c-log-viewer__text--FontFamily, inherit);
|
|
17466
|
+
font-size: var(--pf-c-log-viewer__text--FontSize, inherit);
|
|
17339
17467
|
color: var(--pf-c-log-viewer__text--Color);
|
|
17340
17468
|
word-break: var(--pf-c-log-viewer__text--WordBreak);
|
|
17341
17469
|
white-space: var(--pf-c-log-viewer__text--WhiteSpace);
|