@patternfly/patternfly 4.152.1 → 4.155.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 +31 -8
- package/components/LogViewer/log-viewer.scss +32 -20
- package/components/MenuToggle/menu-toggle.css +1 -1
- package/components/MenuToggle/menu-toggle.scss +1 -1
- package/components/OptionsMenu/options-menu.css +5 -13
- package/components/OptionsMenu/options-menu.scss +3 -13
- package/components/TextInputGroup/text-input-group.css +13 -0
- package/components/TextInputGroup/text-input-group.scss +19 -0
- package/docs/components/LogViewer/examples/LogViewer.md +682 -533
- package/docs/components/MenuToggle/examples/MenuToggle.md +48 -0
- package/docs/components/OptionsMenu/examples/options-menu.md +34 -40
- package/docs/components/TextInputGroup/examples/TextInputGroup.md +19 -0
- package/package.json +1 -1
- package/patternfly-no-reset.css +50 -22
- package/patternfly.css +50 -22
- package/patternfly.min.css +1 -1
- package/patternfly.min.css.map +1 -1
|
@@ -186,6 +186,53 @@ cssPrefix: pf-c-menu-toggle
|
|
|
186
186
|
|
|
187
187
|
```
|
|
188
188
|
|
|
189
|
+
### Plain with text
|
|
190
|
+
|
|
191
|
+
```html
|
|
192
|
+
<button
|
|
193
|
+
class="pf-c-menu-toggle pf-m-plain pf-m-text"
|
|
194
|
+
type="button"
|
|
195
|
+
aria-expanded="false"
|
|
196
|
+
disabled
|
|
197
|
+
>
|
|
198
|
+
<span class="pf-c-menu-toggle__text">Disabled</span>
|
|
199
|
+
<span class="pf-c-menu-toggle__controls">
|
|
200
|
+
<span class="pf-c-menu-toggle__toggle-icon">
|
|
201
|
+
<i class="fas fa-caret-down" aria-hidden="true"></i>
|
|
202
|
+
</span>
|
|
203
|
+
</span>
|
|
204
|
+
</button>
|
|
205
|
+
|
|
206
|
+
|
|
207
|
+
<button
|
|
208
|
+
class="pf-c-menu-toggle pf-m-plain pf-m-text"
|
|
209
|
+
type="button"
|
|
210
|
+
aria-expanded="false"
|
|
211
|
+
>
|
|
212
|
+
<span class="pf-c-menu-toggle__text">Custom text</span>
|
|
213
|
+
<span class="pf-c-menu-toggle__controls">
|
|
214
|
+
<span class="pf-c-menu-toggle__toggle-icon">
|
|
215
|
+
<i class="fas fa-caret-down" aria-hidden="true"></i>
|
|
216
|
+
</span>
|
|
217
|
+
</span>
|
|
218
|
+
</button>
|
|
219
|
+
|
|
220
|
+
|
|
221
|
+
<button
|
|
222
|
+
class="pf-c-menu-toggle pf-m-plain pf-m-text pf-m-expanded"
|
|
223
|
+
type="button"
|
|
224
|
+
aria-expanded="true"
|
|
225
|
+
>
|
|
226
|
+
<span class="pf-c-menu-toggle__text">Custom text (expanded)</span>
|
|
227
|
+
<span class="pf-c-menu-toggle__controls">
|
|
228
|
+
<span class="pf-c-menu-toggle__toggle-icon">
|
|
229
|
+
<i class="fas fa-caret-down" aria-hidden="true"></i>
|
|
230
|
+
</span>
|
|
231
|
+
</span>
|
|
232
|
+
</button>
|
|
233
|
+
|
|
234
|
+
```
|
|
235
|
+
|
|
189
236
|
### With image and text
|
|
190
237
|
|
|
191
238
|
```html
|
|
@@ -246,6 +293,7 @@ cssPrefix: pf-c-menu-toggle
|
|
|
246
293
|
| `.pf-c-menu-toggle__controls` | `<span>` | Defines the menu toggle component controls. |
|
|
247
294
|
| `.pf-c-menu-toggle__toggle-icon` | `<span>` | Defines the menu toggle component toggle/arrow icon. |
|
|
248
295
|
| `.pf-m-primary` | `.pf-c-menu-toggle` | Modifies the menu toggle component for the primary variation. |
|
|
296
|
+
| `.pf-m-text` | `.pf-c-menu-toggle` | Modifies the menu toggle component for the text variation. |
|
|
249
297
|
| `.pf-m-plain` | `.pf-c-menu-toggle` | Modifies the menu toggle component for the plain variation. |
|
|
250
298
|
| `.pf-m-expanded` | `.pf-c-menu-toggle` | Modifies the menu toggle component for the expanded state. |
|
|
251
299
|
| `.pf-m-full-height` | `.pf-c-menu-toggle` | Modifies the menu toggle component to full height of parent. |
|
|
@@ -415,21 +415,19 @@ cssPrefix: pf-c-options-menu
|
|
|
415
415
|
|
|
416
416
|
```html
|
|
417
417
|
<div class="pf-c-options-menu">
|
|
418
|
-
<
|
|
418
|
+
<button
|
|
419
|
+
class="pf-c-options-menu__toggle pf-m-text pf-m-plain"
|
|
420
|
+
type="button"
|
|
421
|
+
id="options-menu-disabled-text-example-toggle"
|
|
422
|
+
aria-haspopup="listbox"
|
|
423
|
+
aria-expanded="false"
|
|
424
|
+
disabled
|
|
425
|
+
>
|
|
419
426
|
<span class="pf-c-options-menu__toggle-text">Custom text</span>
|
|
420
|
-
<
|
|
421
|
-
class="
|
|
422
|
-
|
|
423
|
-
|
|
424
|
-
aria-expanded="false"
|
|
425
|
-
aria-label="Options menu"
|
|
426
|
-
disabled
|
|
427
|
-
>
|
|
428
|
-
<span class="pf-c-options-menu__toggle-button-icon">
|
|
429
|
-
<i class="fas fa-caret-down" aria-hidden="true"></i>
|
|
430
|
-
</span>
|
|
431
|
-
</button>
|
|
432
|
-
</div>
|
|
427
|
+
<div class="pf-c-options-menu__toggle-icon">
|
|
428
|
+
<i class="fas fa-caret-down" aria-hidden="true"></i>
|
|
429
|
+
</div>
|
|
430
|
+
</button>
|
|
433
431
|
<ul
|
|
434
432
|
class="pf-c-options-menu__menu"
|
|
435
433
|
aria-labelledby="options-menu-disabled-text-example-toggle"
|
|
@@ -453,20 +451,18 @@ cssPrefix: pf-c-options-menu
|
|
|
453
451
|
</div>
|
|
454
452
|
|
|
455
453
|
<div class="pf-c-options-menu">
|
|
456
|
-
<
|
|
454
|
+
<button
|
|
455
|
+
class="pf-c-options-menu__toggle pf-m-text pf-m-plain"
|
|
456
|
+
type="button"
|
|
457
|
+
id="options-menu-plain-text-example-toggle"
|
|
458
|
+
aria-haspopup="listbox"
|
|
459
|
+
aria-expanded="false"
|
|
460
|
+
>
|
|
457
461
|
<span class="pf-c-options-menu__toggle-text">Custom text</span>
|
|
458
|
-
<
|
|
459
|
-
class="
|
|
460
|
-
|
|
461
|
-
|
|
462
|
-
aria-expanded="false"
|
|
463
|
-
aria-label="Options menu"
|
|
464
|
-
>
|
|
465
|
-
<span class="pf-c-options-menu__toggle-button-icon">
|
|
466
|
-
<i class="fas fa-caret-down" aria-hidden="true"></i>
|
|
467
|
-
</span>
|
|
468
|
-
</button>
|
|
469
|
-
</div>
|
|
462
|
+
<div class="pf-c-options-menu__toggle-icon">
|
|
463
|
+
<i class="fas fa-caret-down" aria-hidden="true"></i>
|
|
464
|
+
</div>
|
|
465
|
+
</button>
|
|
470
466
|
<ul
|
|
471
467
|
class="pf-c-options-menu__menu"
|
|
472
468
|
aria-labelledby="options-menu-plain-text-example-toggle"
|
|
@@ -490,20 +486,18 @@ cssPrefix: pf-c-options-menu
|
|
|
490
486
|
</div>
|
|
491
487
|
|
|
492
488
|
<div class="pf-c-options-menu pf-m-expanded">
|
|
493
|
-
<
|
|
489
|
+
<button
|
|
490
|
+
class="pf-c-options-menu__toggle pf-m-text pf-m-plain"
|
|
491
|
+
type="button"
|
|
492
|
+
id="options-menu-plain-text-expanded-example-toggle"
|
|
493
|
+
aria-haspopup="listbox"
|
|
494
|
+
aria-expanded="true"
|
|
495
|
+
>
|
|
494
496
|
<span class="pf-c-options-menu__toggle-text">Custom text</span>
|
|
495
|
-
<
|
|
496
|
-
class="
|
|
497
|
-
|
|
498
|
-
|
|
499
|
-
aria-expanded="true"
|
|
500
|
-
aria-label="Options menu"
|
|
501
|
-
>
|
|
502
|
-
<span class="pf-c-options-menu__toggle-button-icon">
|
|
503
|
-
<i class="fas fa-caret-down" aria-hidden="true"></i>
|
|
504
|
-
</span>
|
|
505
|
-
</button>
|
|
506
|
-
</div>
|
|
497
|
+
<div class="pf-c-options-menu__toggle-icon">
|
|
498
|
+
<i class="fas fa-caret-down" aria-hidden="true"></i>
|
|
499
|
+
</div>
|
|
500
|
+
</button>
|
|
507
501
|
<ul
|
|
508
502
|
class="pf-c-options-menu__menu"
|
|
509
503
|
aria-labelledby="options-menu-plain-text-expanded-example-toggle"
|
|
@@ -23,6 +23,25 @@ cssPrefix: pf-c-text-input-group
|
|
|
23
23
|
|
|
24
24
|
```
|
|
25
25
|
|
|
26
|
+
### Disabled
|
|
27
|
+
|
|
28
|
+
```html
|
|
29
|
+
<div class="pf-c-text-input-group pf-m-disabled">
|
|
30
|
+
<div class="pf-c-text-input-group__main">
|
|
31
|
+
<span class="pf-c-text-input-group__text">
|
|
32
|
+
<input
|
|
33
|
+
class="pf-c-text-input-group__text-input"
|
|
34
|
+
type="text"
|
|
35
|
+
value="Disabled"
|
|
36
|
+
aria-label="Disabled text input group example input"
|
|
37
|
+
disabled
|
|
38
|
+
/>
|
|
39
|
+
</span>
|
|
40
|
+
</div>
|
|
41
|
+
</div>
|
|
42
|
+
|
|
43
|
+
```
|
|
44
|
+
|
|
26
45
|
### Utilities and icon
|
|
27
46
|
|
|
28
47
|
```html
|
package/package.json
CHANGED
package/patternfly-no-reset.css
CHANGED
|
@@ -14644,12 +14644,14 @@ ul.pf-c-list {
|
|
|
14644
14644
|
--pf-c-log-viewer__main--BorderWidth: var(--pf-global--BorderWidth--sm);
|
|
14645
14645
|
--pf-c-log-viewer__main--BorderColor: var(--pf-global--BorderColor--100);
|
|
14646
14646
|
--pf-c-log-viewer__scroll-container--Height: 37.5rem;
|
|
14647
|
+
--pf-c-log-viewer__scroll-container--PaddingTop: var(--pf-global--spacer--sm);
|
|
14648
|
+
--pf-c-log-viewer__scroll-container--PaddingBottom: var(--pf-global--spacer--sm);
|
|
14647
14649
|
--pf-c-log-viewer--m-line-numbers__main--before--Top: var(--pf-global--spacer--sm);
|
|
14648
14650
|
--pf-c-log-viewer--m-line-numbers__main--before--Bottom: var(--pf-global--spacer--sm);
|
|
14649
14651
|
--pf-c-log-viewer--m-line-numbers__main--before--Width: var(--pf-global--BorderWidth--sm);
|
|
14650
14652
|
--pf-c-log-viewer--m-line-numbers__main--before--BackgroundColor: var(--pf-global--BorderColor--100);
|
|
14651
|
-
--pf-c-log-
|
|
14652
|
-
--pf-c-log-
|
|
14653
|
+
--pf-c-log-viewer__list--Height: auto;
|
|
14654
|
+
--pf-c-log-viewer--m-line-numbers__list--Left: var(--pf-c-log-viewer__index--Width);
|
|
14653
14655
|
--pf-c-log-viewer__index--Display: none;
|
|
14654
14656
|
--pf-c-log-viewer__index--Width: 4.0625rem;
|
|
14655
14657
|
--pf-c-log-viewer__index--PaddingRight: var(--pf-global--spacer--xl);
|
|
@@ -14657,11 +14659,16 @@ ul.pf-c-list {
|
|
|
14657
14659
|
--pf-c-log-viewer__index--FontFamily: var(--pf-global--FontFamily--monospace);
|
|
14658
14660
|
--pf-c-log-viewer__index--FontSize: var(--pf-global--FontSize--sm);
|
|
14659
14661
|
--pf-c-log-viewer__index--Color: var(--pf-global--Color--200);
|
|
14662
|
+
--pf-c-log-viewer__index--BackgroundColor: var(--pf-global--BackgroundColor--100);
|
|
14660
14663
|
--pf-c-log-viewer__text--PaddingRight: var(--pf-global--spacer--md);
|
|
14661
14664
|
--pf-c-log-viewer__text--PaddingLeft: var(--pf-global--spacer--md);
|
|
14662
14665
|
--pf-c-log-viewer__text--FontFamily: var(--pf-global--FontFamily--monospace);
|
|
14663
14666
|
--pf-c-log-viewer__text--FontSize: var(--pf-global--FontSize--sm);
|
|
14664
14667
|
--pf-c-log-viewer__text--Color: var(--pf-global--Color--100);
|
|
14668
|
+
--pf-c-log-viewer__text--WordBreak: break-all;
|
|
14669
|
+
--pf-c-log-viewer__text--WhiteSpace: break-spaces;
|
|
14670
|
+
--pf-c-log-viewer__text--LineBreak: anywhere;
|
|
14671
|
+
--pf-c-log-viewer--m-nowrap__text--WhiteSpace: nowrap;
|
|
14665
14672
|
--pf-c-log-viewer__string--m-match--Color: var(--pf-global--palette--gold-700);
|
|
14666
14673
|
--pf-c-log-viewer__string--m-match--BackgroundColor: var(--pf-global--palette--gold-100);
|
|
14667
14674
|
--pf-c-log-viewer__string--m-current--Color: var(--pf-global--palette--gold-700);
|
|
@@ -14693,9 +14700,18 @@ ul.pf-c-list {
|
|
|
14693
14700
|
.pf-c-log-viewer.pf-m-wrap-text {
|
|
14694
14701
|
word-break: break-all;
|
|
14695
14702
|
}
|
|
14703
|
+
.pf-c-log-viewer.pf-m-nowrap {
|
|
14704
|
+
--pf-c-log-viewer__text--WhiteSpace: var(--pf-c-log-viewer--m-nowrap__text--WhiteSpace);
|
|
14705
|
+
}
|
|
14696
14706
|
.pf-c-log-viewer.pf-m-line-numbers {
|
|
14697
14707
|
--pf-c-log-viewer__index--Display: var(--pf-c-log-viewer--m-line-numbers__index--Display);
|
|
14698
14708
|
}
|
|
14709
|
+
.pf-c-log-viewer.pf-m-line-numbers .pf-c-log-viewer__list {
|
|
14710
|
+
position: absolute;
|
|
14711
|
+
right: 0;
|
|
14712
|
+
left: var(--pf-c-log-viewer--m-line-numbers__list--Left);
|
|
14713
|
+
overflow: auto;
|
|
14714
|
+
}
|
|
14699
14715
|
.pf-c-log-viewer .pf-c-toolbar {
|
|
14700
14716
|
--pf-c-toolbar--PaddingTop: var(--pf-c-log-viewer--c-toolbar--PaddingTop);
|
|
14701
14717
|
--pf-c-toolbar--PaddingBottom: var(--pf-c-log-viewer--c-toolbar--PaddingBottom);
|
|
@@ -14736,19 +14752,23 @@ ul.pf-c-list {
|
|
|
14736
14752
|
}
|
|
14737
14753
|
|
|
14738
14754
|
.pf-c-log-viewer__scroll-container {
|
|
14755
|
+
position: relative;
|
|
14739
14756
|
height: var(--pf-c-log-viewer__scroll-container--Height);
|
|
14740
14757
|
padding-top: var(--pf-c-log-viewer__scroll-container--PaddingTop);
|
|
14741
14758
|
padding-bottom: var(--pf-c-log-viewer__scroll-container--PaddingBottom);
|
|
14742
14759
|
overflow: auto;
|
|
14760
|
+
will-change: transform;
|
|
14761
|
+
direction: ltr;
|
|
14743
14762
|
}
|
|
14744
14763
|
|
|
14745
14764
|
.pf-c-log-viewer__list {
|
|
14746
14765
|
position: relative;
|
|
14766
|
+
height: var(--pf-c-log-viewer__list--Height);
|
|
14747
14767
|
}
|
|
14748
14768
|
|
|
14749
|
-
.pf-
|
|
14750
|
-
|
|
14751
|
-
|
|
14769
|
+
.pf-c-log-viewer__list-item {
|
|
14770
|
+
left: 0;
|
|
14771
|
+
width: 100%;
|
|
14752
14772
|
}
|
|
14753
14773
|
|
|
14754
14774
|
.pf-c-log-viewer__string.pf-m-match {
|
|
@@ -14761,6 +14781,8 @@ ul.pf-c-list {
|
|
|
14761
14781
|
}
|
|
14762
14782
|
|
|
14763
14783
|
.pf-c-log-viewer__index {
|
|
14784
|
+
position: fixed;
|
|
14785
|
+
left: 0;
|
|
14764
14786
|
display: var(--pf-c-log-viewer__index--Display);
|
|
14765
14787
|
width: var(--pf-c-log-viewer__index--Width);
|
|
14766
14788
|
padding-right: var(--pf-c-log-viewer__index--PaddingRight);
|
|
@@ -14768,6 +14790,7 @@ ul.pf-c-list {
|
|
|
14768
14790
|
font-family: var(--pf-c-log-viewer__index--FontFamily);
|
|
14769
14791
|
font-size: var(--pf-c-log-viewer__index--FontSize);
|
|
14770
14792
|
color: var(--pf-c-log-viewer__index--Color);
|
|
14793
|
+
background-color: var(--pf-c-log-viewer__index--BackgroundColor);
|
|
14771
14794
|
}
|
|
14772
14795
|
|
|
14773
14796
|
.pf-c-log-viewer__text {
|
|
@@ -14777,9 +14800,9 @@ ul.pf-c-list {
|
|
|
14777
14800
|
font-family: var(--pf-c-log-viewer__text--FontFamily);
|
|
14778
14801
|
font-size: var(--pf-c-log-viewer__text--FontSize);
|
|
14779
14802
|
color: var(--pf-c-log-viewer__text--Color);
|
|
14780
|
-
word-break:
|
|
14781
|
-
white-space:
|
|
14782
|
-
line-break:
|
|
14803
|
+
word-break: var(--pf-c-log-viewer__text--WordBreak);
|
|
14804
|
+
white-space: var(--pf-c-log-viewer__text--WhiteSpace);
|
|
14805
|
+
line-break: var(--pf-c-log-viewer__text--LineBreak);
|
|
14783
14806
|
}
|
|
14784
14807
|
|
|
14785
14808
|
.pf-c-log-viewer__timestamp {
|
|
@@ -16222,7 +16245,7 @@ ul.pf-c-list {
|
|
|
16222
16245
|
--pf-c-menu-toggle--m-expanded--Color: var(--pf-c-menu-toggle--m-primary--m-expanded--Color);
|
|
16223
16246
|
--pf-c-menu-toggle--m-expanded--BackgroundColor: var(--pf-c-menu-toggle--m-primary--m-expanded--BackgroundColor);
|
|
16224
16247
|
}
|
|
16225
|
-
.pf-c-menu-toggle.pf-m-plain {
|
|
16248
|
+
.pf-c-menu-toggle.pf-m-plain:not(.pf-m-text) {
|
|
16226
16249
|
--pf-c-menu-toggle--Color: var(--pf-c-menu-toggle--m-plain--Color);
|
|
16227
16250
|
--pf-c-menu-toggle--hover--Color: var(--pf-c-menu-toggle--m-plain--hover--Color);
|
|
16228
16251
|
--pf-c-menu-toggle--focus--Color: var(--pf-c-menu-toggle--m-plain--hover--Color);
|
|
@@ -17775,37 +17798,29 @@ ul.pf-c-list {
|
|
|
17775
17798
|
justify-content: space-between;
|
|
17776
17799
|
min-width: var(--pf-c-options-menu__toggle--MinWidth);
|
|
17777
17800
|
max-width: 100%;
|
|
17778
|
-
padding
|
|
17801
|
+
padding: var(--pf-c-options-menu__toggle--PaddingTop) var(--pf-c-options-menu__toggle--PaddingRight) var(--pf-c-options-menu__toggle--PaddingBottom) var(--pf-c-options-menu__toggle--PaddingLeft);
|
|
17779
17802
|
line-height: var(--pf-c-options-menu__toggle--LineHeight);
|
|
17780
17803
|
color: var(--pf-c-options-menu__toggle--Color);
|
|
17781
17804
|
background-color: var(--pf-c-options-menu__toggle--BackgroundColor);
|
|
17782
17805
|
border: none;
|
|
17783
17806
|
}
|
|
17784
|
-
.pf-c-options-menu__toggle:not(.pf-m-text) {
|
|
17785
|
-
padding-top: var(--pf-c-options-menu__toggle--PaddingTop);
|
|
17786
|
-
padding-right: var(--pf-c-options-menu__toggle--PaddingRight);
|
|
17787
|
-
padding-bottom: var(--pf-c-options-menu__toggle--PaddingBottom);
|
|
17788
|
-
}
|
|
17789
17807
|
.pf-c-options-menu.pf-m-expanded > .pf-c-options-menu__toggle::before {
|
|
17790
17808
|
--pf-c-options-menu__toggle--BorderBottomColor: var(--pf-c-options-menu__toggle--expanded--BorderBottomColor);
|
|
17791
17809
|
border-bottom-width: var(--pf-c-options-menu__toggle--expanded--BorderBottomWidth);
|
|
17792
17810
|
}
|
|
17793
|
-
.pf-c-options-menu__toggle.pf-m-plain {
|
|
17811
|
+
.pf-c-options-menu__toggle.pf-m-plain:not(.pf-m-text) {
|
|
17794
17812
|
--pf-c-options-menu__toggle--PaddingRight: var(--pf-c-options-menu__toggle--m-plain--PaddingRight);
|
|
17795
17813
|
--pf-c-options-menu__toggle--PaddingLeft: var(--pf-c-options-menu__toggle--m-plain--PaddingLeft);
|
|
17796
17814
|
display: inline-block;
|
|
17797
|
-
}
|
|
17798
|
-
.pf-c-options-menu__toggle.pf-m-plain:not(.pf-m-text) {
|
|
17799
|
-
justify-content: center;
|
|
17800
17815
|
color: var(--pf-c-options-menu__toggle--m-plain--Color);
|
|
17801
17816
|
}
|
|
17802
|
-
.pf-c-options-menu__toggle.pf-m-plain .pf-c-options-menu__toggle-button-icon {
|
|
17817
|
+
.pf-c-options-menu__toggle.pf-m-plain:not(.pf-m-text) .pf-c-options-menu__toggle-button-icon {
|
|
17803
17818
|
line-height: var(--pf-c-options-menu__toggle--LineHeight);
|
|
17804
17819
|
}
|
|
17805
|
-
.pf-c-options-menu__toggle.pf-m-plain:hover, .pf-c-options-menu__toggle.pf-m-plain:active, .pf-c-options-menu__toggle.pf-m-plain.pf-m-active, .pf-c-options-menu__toggle.pf-m-plain:focus, .pf-c-options-menu.pf-m-expanded > .pf-c-options-menu__toggle.pf-m-plain {
|
|
17820
|
+
.pf-c-options-menu__toggle.pf-m-plain:not(.pf-m-text):hover, .pf-c-options-menu__toggle.pf-m-plain:not(.pf-m-text):active, .pf-c-options-menu__toggle.pf-m-plain:not(.pf-m-text).pf-m-active, .pf-c-options-menu__toggle.pf-m-plain:not(.pf-m-text):focus, .pf-c-options-menu.pf-m-expanded > .pf-c-options-menu__toggle.pf-m-plain:not(.pf-m-text) {
|
|
17806
17821
|
--pf-c-options-menu__toggle--m-plain--Color: var(--pf-c-options-menu__toggle--m-plain--hover--Color);
|
|
17807
17822
|
}
|
|
17808
|
-
.pf-c-options-menu__toggle.pf-m-plain.pf-m-disabled, .pf-c-options-menu__toggle.pf-m-plain:disabled {
|
|
17823
|
+
.pf-c-options-menu__toggle.pf-m-plain:not(.pf-m-text).pf-m-disabled, .pf-c-options-menu__toggle.pf-m-plain:not(.pf-m-text):disabled {
|
|
17809
17824
|
--pf-c-options-menu__toggle--m-plain--Color: var(--pf-c-options-menu__toggle--m-plain--disabled--Color);
|
|
17810
17825
|
}
|
|
17811
17826
|
.pf-c-options-menu__toggle.pf-m-disabled, .pf-c-options-menu__toggle:disabled {
|
|
@@ -25782,6 +25797,7 @@ svg.pf-c-spinner.pf-m-xl {
|
|
|
25782
25797
|
}
|
|
25783
25798
|
|
|
25784
25799
|
.pf-c-text-input-group {
|
|
25800
|
+
--pf-c-text-input-group--BackgroundColor: var(--pf-global--BackgroundColor--100);
|
|
25785
25801
|
--pf-c-text-input-group__text--before--BorderWidth: var(--pf-global--BorderWidth--sm);
|
|
25786
25802
|
--pf-c-text-input-group__text--before--BorderColor: var(--pf-global--BorderColor--300);
|
|
25787
25803
|
--pf-c-text-input-group__text--after--BorderBottomWidth: var(--pf-global--BorderWidth--sm);
|
|
@@ -25806,12 +25822,24 @@ svg.pf-c-spinner.pf-m-xl {
|
|
|
25806
25822
|
--pf-c-text-input-group__utilities--child--MarginLeft: var(--pf-global--spacer--xs);
|
|
25807
25823
|
--pf-c-text-input-group__utilities--c-button--PaddingRight: var(--pf-global--spacer--xs);
|
|
25808
25824
|
--pf-c-text-input-group__utilities--c-button--PaddingLeft: var(--pf-global--spacer--xs);
|
|
25825
|
+
--pf-c-text-input-group--m-disabled--Color: var(--pf-global--disabled-color--100);
|
|
25826
|
+
--pf-c-text-input-group--m-disabled--BackgroundColor: var(--pf-global--disabled-color--300);
|
|
25809
25827
|
position: relative;
|
|
25810
25828
|
display: flex;
|
|
25829
|
+
color: var(--pf-c-text-input-group--Color, inherit);
|
|
25830
|
+
background-color: var(--pf-c-text-input-group--BackgroundColor);
|
|
25811
25831
|
}
|
|
25812
25832
|
.pf-c-text-input-group:hover {
|
|
25813
25833
|
--pf-c-text-input-group__text--after--BorderBottomColor: var(--pf-c-text-input-group--hover__text--after--BorderBottomColor);
|
|
25814
25834
|
}
|
|
25835
|
+
.pf-c-text-input-group.pf-m-disabled {
|
|
25836
|
+
--pf-c-text-input-group__text--before--BorderWidth: 0;
|
|
25837
|
+
--pf-c-text-input-group__text--after--BorderBottomWidth: 0;
|
|
25838
|
+
--pf-c-text-input-group--Color: var(--pf-c-text-input-group--m-disabled--Color);
|
|
25839
|
+
--pf-c-text-input-group__icon--Color: var(--pf-c-text-input-group--m-disabled--Color);
|
|
25840
|
+
--pf-c-text-input-group--BackgroundColor: var(--pf-c-text-input-group--m-disabled--BackgroundColor);
|
|
25841
|
+
pointer-events: none;
|
|
25842
|
+
}
|
|
25815
25843
|
|
|
25816
25844
|
.pf-c-text-input-group__main {
|
|
25817
25845
|
display: flex;
|
package/patternfly.css
CHANGED
|
@@ -14780,12 +14780,14 @@ ul.pf-c-list {
|
|
|
14780
14780
|
--pf-c-log-viewer__main--BorderWidth: var(--pf-global--BorderWidth--sm);
|
|
14781
14781
|
--pf-c-log-viewer__main--BorderColor: var(--pf-global--BorderColor--100);
|
|
14782
14782
|
--pf-c-log-viewer__scroll-container--Height: 37.5rem;
|
|
14783
|
+
--pf-c-log-viewer__scroll-container--PaddingTop: var(--pf-global--spacer--sm);
|
|
14784
|
+
--pf-c-log-viewer__scroll-container--PaddingBottom: var(--pf-global--spacer--sm);
|
|
14783
14785
|
--pf-c-log-viewer--m-line-numbers__main--before--Top: var(--pf-global--spacer--sm);
|
|
14784
14786
|
--pf-c-log-viewer--m-line-numbers__main--before--Bottom: var(--pf-global--spacer--sm);
|
|
14785
14787
|
--pf-c-log-viewer--m-line-numbers__main--before--Width: var(--pf-global--BorderWidth--sm);
|
|
14786
14788
|
--pf-c-log-viewer--m-line-numbers__main--before--BackgroundColor: var(--pf-global--BorderColor--100);
|
|
14787
|
-
--pf-c-log-
|
|
14788
|
-
--pf-c-log-
|
|
14789
|
+
--pf-c-log-viewer__list--Height: auto;
|
|
14790
|
+
--pf-c-log-viewer--m-line-numbers__list--Left: var(--pf-c-log-viewer__index--Width);
|
|
14789
14791
|
--pf-c-log-viewer__index--Display: none;
|
|
14790
14792
|
--pf-c-log-viewer__index--Width: 4.0625rem;
|
|
14791
14793
|
--pf-c-log-viewer__index--PaddingRight: var(--pf-global--spacer--xl);
|
|
@@ -14793,11 +14795,16 @@ ul.pf-c-list {
|
|
|
14793
14795
|
--pf-c-log-viewer__index--FontFamily: var(--pf-global--FontFamily--monospace);
|
|
14794
14796
|
--pf-c-log-viewer__index--FontSize: var(--pf-global--FontSize--sm);
|
|
14795
14797
|
--pf-c-log-viewer__index--Color: var(--pf-global--Color--200);
|
|
14798
|
+
--pf-c-log-viewer__index--BackgroundColor: var(--pf-global--BackgroundColor--100);
|
|
14796
14799
|
--pf-c-log-viewer__text--PaddingRight: var(--pf-global--spacer--md);
|
|
14797
14800
|
--pf-c-log-viewer__text--PaddingLeft: var(--pf-global--spacer--md);
|
|
14798
14801
|
--pf-c-log-viewer__text--FontFamily: var(--pf-global--FontFamily--monospace);
|
|
14799
14802
|
--pf-c-log-viewer__text--FontSize: var(--pf-global--FontSize--sm);
|
|
14800
14803
|
--pf-c-log-viewer__text--Color: var(--pf-global--Color--100);
|
|
14804
|
+
--pf-c-log-viewer__text--WordBreak: break-all;
|
|
14805
|
+
--pf-c-log-viewer__text--WhiteSpace: break-spaces;
|
|
14806
|
+
--pf-c-log-viewer__text--LineBreak: anywhere;
|
|
14807
|
+
--pf-c-log-viewer--m-nowrap__text--WhiteSpace: nowrap;
|
|
14801
14808
|
--pf-c-log-viewer__string--m-match--Color: var(--pf-global--palette--gold-700);
|
|
14802
14809
|
--pf-c-log-viewer__string--m-match--BackgroundColor: var(--pf-global--palette--gold-100);
|
|
14803
14810
|
--pf-c-log-viewer__string--m-current--Color: var(--pf-global--palette--gold-700);
|
|
@@ -14829,9 +14836,18 @@ ul.pf-c-list {
|
|
|
14829
14836
|
.pf-c-log-viewer.pf-m-wrap-text {
|
|
14830
14837
|
word-break: break-all;
|
|
14831
14838
|
}
|
|
14839
|
+
.pf-c-log-viewer.pf-m-nowrap {
|
|
14840
|
+
--pf-c-log-viewer__text--WhiteSpace: var(--pf-c-log-viewer--m-nowrap__text--WhiteSpace);
|
|
14841
|
+
}
|
|
14832
14842
|
.pf-c-log-viewer.pf-m-line-numbers {
|
|
14833
14843
|
--pf-c-log-viewer__index--Display: var(--pf-c-log-viewer--m-line-numbers__index--Display);
|
|
14834
14844
|
}
|
|
14845
|
+
.pf-c-log-viewer.pf-m-line-numbers .pf-c-log-viewer__list {
|
|
14846
|
+
position: absolute;
|
|
14847
|
+
right: 0;
|
|
14848
|
+
left: var(--pf-c-log-viewer--m-line-numbers__list--Left);
|
|
14849
|
+
overflow: auto;
|
|
14850
|
+
}
|
|
14835
14851
|
.pf-c-log-viewer .pf-c-toolbar {
|
|
14836
14852
|
--pf-c-toolbar--PaddingTop: var(--pf-c-log-viewer--c-toolbar--PaddingTop);
|
|
14837
14853
|
--pf-c-toolbar--PaddingBottom: var(--pf-c-log-viewer--c-toolbar--PaddingBottom);
|
|
@@ -14872,19 +14888,23 @@ ul.pf-c-list {
|
|
|
14872
14888
|
}
|
|
14873
14889
|
|
|
14874
14890
|
.pf-c-log-viewer__scroll-container {
|
|
14891
|
+
position: relative;
|
|
14875
14892
|
height: var(--pf-c-log-viewer__scroll-container--Height);
|
|
14876
14893
|
padding-top: var(--pf-c-log-viewer__scroll-container--PaddingTop);
|
|
14877
14894
|
padding-bottom: var(--pf-c-log-viewer__scroll-container--PaddingBottom);
|
|
14878
14895
|
overflow: auto;
|
|
14896
|
+
will-change: transform;
|
|
14897
|
+
direction: ltr;
|
|
14879
14898
|
}
|
|
14880
14899
|
|
|
14881
14900
|
.pf-c-log-viewer__list {
|
|
14882
14901
|
position: relative;
|
|
14902
|
+
height: var(--pf-c-log-viewer__list--Height);
|
|
14883
14903
|
}
|
|
14884
14904
|
|
|
14885
|
-
.pf-
|
|
14886
|
-
|
|
14887
|
-
|
|
14905
|
+
.pf-c-log-viewer__list-item {
|
|
14906
|
+
left: 0;
|
|
14907
|
+
width: 100%;
|
|
14888
14908
|
}
|
|
14889
14909
|
|
|
14890
14910
|
.pf-c-log-viewer__string.pf-m-match {
|
|
@@ -14897,6 +14917,8 @@ ul.pf-c-list {
|
|
|
14897
14917
|
}
|
|
14898
14918
|
|
|
14899
14919
|
.pf-c-log-viewer__index {
|
|
14920
|
+
position: fixed;
|
|
14921
|
+
left: 0;
|
|
14900
14922
|
display: var(--pf-c-log-viewer__index--Display);
|
|
14901
14923
|
width: var(--pf-c-log-viewer__index--Width);
|
|
14902
14924
|
padding-right: var(--pf-c-log-viewer__index--PaddingRight);
|
|
@@ -14904,6 +14926,7 @@ ul.pf-c-list {
|
|
|
14904
14926
|
font-family: var(--pf-c-log-viewer__index--FontFamily);
|
|
14905
14927
|
font-size: var(--pf-c-log-viewer__index--FontSize);
|
|
14906
14928
|
color: var(--pf-c-log-viewer__index--Color);
|
|
14929
|
+
background-color: var(--pf-c-log-viewer__index--BackgroundColor);
|
|
14907
14930
|
}
|
|
14908
14931
|
|
|
14909
14932
|
.pf-c-log-viewer__text {
|
|
@@ -14913,9 +14936,9 @@ ul.pf-c-list {
|
|
|
14913
14936
|
font-family: var(--pf-c-log-viewer__text--FontFamily);
|
|
14914
14937
|
font-size: var(--pf-c-log-viewer__text--FontSize);
|
|
14915
14938
|
color: var(--pf-c-log-viewer__text--Color);
|
|
14916
|
-
word-break:
|
|
14917
|
-
white-space:
|
|
14918
|
-
line-break:
|
|
14939
|
+
word-break: var(--pf-c-log-viewer__text--WordBreak);
|
|
14940
|
+
white-space: var(--pf-c-log-viewer__text--WhiteSpace);
|
|
14941
|
+
line-break: var(--pf-c-log-viewer__text--LineBreak);
|
|
14919
14942
|
}
|
|
14920
14943
|
|
|
14921
14944
|
.pf-c-log-viewer__timestamp {
|
|
@@ -16358,7 +16381,7 @@ ul.pf-c-list {
|
|
|
16358
16381
|
--pf-c-menu-toggle--m-expanded--Color: var(--pf-c-menu-toggle--m-primary--m-expanded--Color);
|
|
16359
16382
|
--pf-c-menu-toggle--m-expanded--BackgroundColor: var(--pf-c-menu-toggle--m-primary--m-expanded--BackgroundColor);
|
|
16360
16383
|
}
|
|
16361
|
-
.pf-c-menu-toggle.pf-m-plain {
|
|
16384
|
+
.pf-c-menu-toggle.pf-m-plain:not(.pf-m-text) {
|
|
16362
16385
|
--pf-c-menu-toggle--Color: var(--pf-c-menu-toggle--m-plain--Color);
|
|
16363
16386
|
--pf-c-menu-toggle--hover--Color: var(--pf-c-menu-toggle--m-plain--hover--Color);
|
|
16364
16387
|
--pf-c-menu-toggle--focus--Color: var(--pf-c-menu-toggle--m-plain--hover--Color);
|
|
@@ -17911,37 +17934,29 @@ ul.pf-c-list {
|
|
|
17911
17934
|
justify-content: space-between;
|
|
17912
17935
|
min-width: var(--pf-c-options-menu__toggle--MinWidth);
|
|
17913
17936
|
max-width: 100%;
|
|
17914
|
-
padding
|
|
17937
|
+
padding: var(--pf-c-options-menu__toggle--PaddingTop) var(--pf-c-options-menu__toggle--PaddingRight) var(--pf-c-options-menu__toggle--PaddingBottom) var(--pf-c-options-menu__toggle--PaddingLeft);
|
|
17915
17938
|
line-height: var(--pf-c-options-menu__toggle--LineHeight);
|
|
17916
17939
|
color: var(--pf-c-options-menu__toggle--Color);
|
|
17917
17940
|
background-color: var(--pf-c-options-menu__toggle--BackgroundColor);
|
|
17918
17941
|
border: none;
|
|
17919
17942
|
}
|
|
17920
|
-
.pf-c-options-menu__toggle:not(.pf-m-text) {
|
|
17921
|
-
padding-top: var(--pf-c-options-menu__toggle--PaddingTop);
|
|
17922
|
-
padding-right: var(--pf-c-options-menu__toggle--PaddingRight);
|
|
17923
|
-
padding-bottom: var(--pf-c-options-menu__toggle--PaddingBottom);
|
|
17924
|
-
}
|
|
17925
17943
|
.pf-c-options-menu.pf-m-expanded > .pf-c-options-menu__toggle::before {
|
|
17926
17944
|
--pf-c-options-menu__toggle--BorderBottomColor: var(--pf-c-options-menu__toggle--expanded--BorderBottomColor);
|
|
17927
17945
|
border-bottom-width: var(--pf-c-options-menu__toggle--expanded--BorderBottomWidth);
|
|
17928
17946
|
}
|
|
17929
|
-
.pf-c-options-menu__toggle.pf-m-plain {
|
|
17947
|
+
.pf-c-options-menu__toggle.pf-m-plain:not(.pf-m-text) {
|
|
17930
17948
|
--pf-c-options-menu__toggle--PaddingRight: var(--pf-c-options-menu__toggle--m-plain--PaddingRight);
|
|
17931
17949
|
--pf-c-options-menu__toggle--PaddingLeft: var(--pf-c-options-menu__toggle--m-plain--PaddingLeft);
|
|
17932
17950
|
display: inline-block;
|
|
17933
|
-
}
|
|
17934
|
-
.pf-c-options-menu__toggle.pf-m-plain:not(.pf-m-text) {
|
|
17935
|
-
justify-content: center;
|
|
17936
17951
|
color: var(--pf-c-options-menu__toggle--m-plain--Color);
|
|
17937
17952
|
}
|
|
17938
|
-
.pf-c-options-menu__toggle.pf-m-plain .pf-c-options-menu__toggle-button-icon {
|
|
17953
|
+
.pf-c-options-menu__toggle.pf-m-plain:not(.pf-m-text) .pf-c-options-menu__toggle-button-icon {
|
|
17939
17954
|
line-height: var(--pf-c-options-menu__toggle--LineHeight);
|
|
17940
17955
|
}
|
|
17941
|
-
.pf-c-options-menu__toggle.pf-m-plain:hover, .pf-c-options-menu__toggle.pf-m-plain:active, .pf-c-options-menu__toggle.pf-m-plain.pf-m-active, .pf-c-options-menu__toggle.pf-m-plain:focus, .pf-c-options-menu.pf-m-expanded > .pf-c-options-menu__toggle.pf-m-plain {
|
|
17956
|
+
.pf-c-options-menu__toggle.pf-m-plain:not(.pf-m-text):hover, .pf-c-options-menu__toggle.pf-m-plain:not(.pf-m-text):active, .pf-c-options-menu__toggle.pf-m-plain:not(.pf-m-text).pf-m-active, .pf-c-options-menu__toggle.pf-m-plain:not(.pf-m-text):focus, .pf-c-options-menu.pf-m-expanded > .pf-c-options-menu__toggle.pf-m-plain:not(.pf-m-text) {
|
|
17942
17957
|
--pf-c-options-menu__toggle--m-plain--Color: var(--pf-c-options-menu__toggle--m-plain--hover--Color);
|
|
17943
17958
|
}
|
|
17944
|
-
.pf-c-options-menu__toggle.pf-m-plain.pf-m-disabled, .pf-c-options-menu__toggle.pf-m-plain:disabled {
|
|
17959
|
+
.pf-c-options-menu__toggle.pf-m-plain:not(.pf-m-text).pf-m-disabled, .pf-c-options-menu__toggle.pf-m-plain:not(.pf-m-text):disabled {
|
|
17945
17960
|
--pf-c-options-menu__toggle--m-plain--Color: var(--pf-c-options-menu__toggle--m-plain--disabled--Color);
|
|
17946
17961
|
}
|
|
17947
17962
|
.pf-c-options-menu__toggle.pf-m-disabled, .pf-c-options-menu__toggle:disabled {
|
|
@@ -25918,6 +25933,7 @@ svg.pf-c-spinner.pf-m-xl {
|
|
|
25918
25933
|
}
|
|
25919
25934
|
|
|
25920
25935
|
.pf-c-text-input-group {
|
|
25936
|
+
--pf-c-text-input-group--BackgroundColor: var(--pf-global--BackgroundColor--100);
|
|
25921
25937
|
--pf-c-text-input-group__text--before--BorderWidth: var(--pf-global--BorderWidth--sm);
|
|
25922
25938
|
--pf-c-text-input-group__text--before--BorderColor: var(--pf-global--BorderColor--300);
|
|
25923
25939
|
--pf-c-text-input-group__text--after--BorderBottomWidth: var(--pf-global--BorderWidth--sm);
|
|
@@ -25942,12 +25958,24 @@ svg.pf-c-spinner.pf-m-xl {
|
|
|
25942
25958
|
--pf-c-text-input-group__utilities--child--MarginLeft: var(--pf-global--spacer--xs);
|
|
25943
25959
|
--pf-c-text-input-group__utilities--c-button--PaddingRight: var(--pf-global--spacer--xs);
|
|
25944
25960
|
--pf-c-text-input-group__utilities--c-button--PaddingLeft: var(--pf-global--spacer--xs);
|
|
25961
|
+
--pf-c-text-input-group--m-disabled--Color: var(--pf-global--disabled-color--100);
|
|
25962
|
+
--pf-c-text-input-group--m-disabled--BackgroundColor: var(--pf-global--disabled-color--300);
|
|
25945
25963
|
position: relative;
|
|
25946
25964
|
display: flex;
|
|
25965
|
+
color: var(--pf-c-text-input-group--Color, inherit);
|
|
25966
|
+
background-color: var(--pf-c-text-input-group--BackgroundColor);
|
|
25947
25967
|
}
|
|
25948
25968
|
.pf-c-text-input-group:hover {
|
|
25949
25969
|
--pf-c-text-input-group__text--after--BorderBottomColor: var(--pf-c-text-input-group--hover__text--after--BorderBottomColor);
|
|
25950
25970
|
}
|
|
25971
|
+
.pf-c-text-input-group.pf-m-disabled {
|
|
25972
|
+
--pf-c-text-input-group__text--before--BorderWidth: 0;
|
|
25973
|
+
--pf-c-text-input-group__text--after--BorderBottomWidth: 0;
|
|
25974
|
+
--pf-c-text-input-group--Color: var(--pf-c-text-input-group--m-disabled--Color);
|
|
25975
|
+
--pf-c-text-input-group__icon--Color: var(--pf-c-text-input-group--m-disabled--Color);
|
|
25976
|
+
--pf-c-text-input-group--BackgroundColor: var(--pf-c-text-input-group--m-disabled--BackgroundColor);
|
|
25977
|
+
pointer-events: none;
|
|
25978
|
+
}
|
|
25951
25979
|
|
|
25952
25980
|
.pf-c-text-input-group__main {
|
|
25953
25981
|
display: flex;
|