@patternfly/patternfly 4.211.0 → 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/components/LogViewer/log-viewer.css +15 -8
- package/components/LogViewer/log-viewer.scss +16 -8
- package/docs/components/LogViewer/examples/LogViewer.md +553 -1
- package/package.json +2 -2
- package/patternfly-no-reset.css +15 -8
- package/patternfly.css +15 -8
- package/patternfly.min.css +1 -1
- package/patternfly.min.css.map +1 -1
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);
|