@patternfly/patternfly 4.171.1 → 4.172.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/NumberInput/number-input.css +9 -6
- package/components/NumberInput/number-input.scss +2 -10
- package/components/Pagination/pagination.css +9 -1
- package/components/Pagination/pagination.scss +3 -1
- package/components/ProgressStepper/progress-stepper.css +3 -0
- package/components/ProgressStepper/progress-stepper.scss +4 -0
- package/docs/components/Table/examples/Table.md +1 -1
- package/docs/demos/DataList/examples/DataList.md +2 -3
- package/docs/demos/Table/examples/Table.md +21 -69
- package/docs/demos/Toolbar/examples/Toolbar.md +3 -10
- package/package.json +1 -1
- package/patternfly-no-reset.css +13 -7
- package/patternfly.css +13 -7
- package/patternfly.min.css +1 -1
- package/patternfly.min.css.map +1 -1
- package/sass-utilities/placeholders.scss +12 -0
|
@@ -1,7 +1,15 @@
|
|
|
1
|
+
.pf-c-number-input .pf-c-form-control {
|
|
2
|
+
appearance: textfield;
|
|
3
|
+
}
|
|
4
|
+
.pf-c-number-input .pf-c-form-control::-webkit-inner-spin-button, .pf-c-number-input .pf-c-form-control::-webkit-outer-spin-button {
|
|
5
|
+
appearance: none;
|
|
6
|
+
margin: 0;
|
|
7
|
+
}
|
|
8
|
+
|
|
1
9
|
.pf-c-number-input {
|
|
2
10
|
--pf-c-number-input__unit--c-input-group--MarginLeft: var(--pf-global--spacer--sm);
|
|
3
11
|
--pf-c-number-input__icon--FontSize: var(--pf-global--FontSize--xs);
|
|
4
|
-
--pf-c-number-input--c-form-control--width-base: calc(var(--pf-global--spacer--sm) * 2);
|
|
12
|
+
--pf-c-number-input--c-form-control--width-base: calc(var(--pf-global--spacer--sm) * 2 + var(--pf-global--BorderWidth--sm) * 2);
|
|
5
13
|
--pf-c-number-input--c-form-control--width-chars: 4;
|
|
6
14
|
--pf-c-number-input--c-form-control--Width: calc(var(--pf-c-number-input--c-form-control--width-base) + var(--pf-c-number-input--c-form-control--width-chars) * 1ch);
|
|
7
15
|
display: inline-flex;
|
|
@@ -11,11 +19,6 @@
|
|
|
11
19
|
display: inline-flex;
|
|
12
20
|
width: var(--pf-c-number-input--c-form-control--Width);
|
|
13
21
|
text-align: right;
|
|
14
|
-
-moz-appearance: textfield;
|
|
15
|
-
}
|
|
16
|
-
.pf-c-number-input .pf-c-form-control::-webkit-outer-spin-button, .pf-c-number-input .pf-c-form-control::-webkit-inner-spin-button {
|
|
17
|
-
-webkit-appearance: none;
|
|
18
|
-
margin: 0;
|
|
19
22
|
}
|
|
20
23
|
|
|
21
24
|
.pf-c-input-group + .pf-c-number-input__unit,
|
|
@@ -6,7 +6,7 @@
|
|
|
6
6
|
--pf-c-number-input__icon--FontSize: var(--pf-global--FontSize--xs);
|
|
7
7
|
|
|
8
8
|
// form control
|
|
9
|
-
--pf-c-number-input--c-form-control--width-base: calc(var(--pf-global--spacer--sm) * 2); // element's padding
|
|
9
|
+
--pf-c-number-input--c-form-control--width-base: calc(var(--pf-global--spacer--sm) * 2 + var(--pf-global--BorderWidth--sm) * 2); // element's padding
|
|
10
10
|
--pf-c-number-input--c-form-control--width-chars: 4;
|
|
11
11
|
--pf-c-number-input--c-form-control--Width: calc(var(--pf-c-number-input--c-form-control--width-base) + var(--pf-c-number-input--c-form-control--width-chars) * 1ch);
|
|
12
12
|
|
|
@@ -18,15 +18,7 @@
|
|
|
18
18
|
width: var(--pf-c-number-input--c-form-control--Width);
|
|
19
19
|
text-align: right;
|
|
20
20
|
|
|
21
|
-
|
|
22
|
-
// stylelint-disable
|
|
23
|
-
-moz-appearance: textfield;
|
|
24
|
-
&::-webkit-outer-spin-button,
|
|
25
|
-
&::-webkit-inner-spin-button {
|
|
26
|
-
-webkit-appearance: none;
|
|
27
|
-
margin: 0;
|
|
28
|
-
}
|
|
29
|
-
// stylelint-enable
|
|
21
|
+
@extend %pf-remove-num-arrows;
|
|
30
22
|
}
|
|
31
23
|
}
|
|
32
24
|
|
|
@@ -1,3 +1,11 @@
|
|
|
1
|
+
.pf-c-pagination__nav-page-select .pf-c-form-control {
|
|
2
|
+
appearance: textfield;
|
|
3
|
+
}
|
|
4
|
+
.pf-c-pagination__nav-page-select .pf-c-form-control::-webkit-inner-spin-button, .pf-c-pagination__nav-page-select .pf-c-form-control::-webkit-outer-spin-button {
|
|
5
|
+
appearance: none;
|
|
6
|
+
margin: 0;
|
|
7
|
+
}
|
|
8
|
+
|
|
1
9
|
.pf-c-pagination {
|
|
2
10
|
--pf-c-pagination--child--MarginRight: var(--pf-global--spacer--lg);
|
|
3
11
|
--pf-c-pagination--m-bottom--child--MarginRight: 0;
|
|
@@ -26,7 +34,7 @@
|
|
|
26
34
|
--pf-c-pagination__nav-page-select--PaddingLeft: var(--pf-global--spacer--md);
|
|
27
35
|
--pf-c-pagination__nav-page-select--PaddingRight: var(--pf-global--spacer--md);
|
|
28
36
|
--pf-c-pagination__nav-page-select--child--MarginRight: var(--pf-global--spacer--xs);
|
|
29
|
-
--pf-c-pagination__nav-page-select--c-form-control--width-base:
|
|
37
|
+
--pf-c-pagination__nav-page-select--c-form-control--width-base: calc(var(--pf-global--spacer--sm) * 2 + var(--pf-global--BorderWidth--sm) * 2);
|
|
30
38
|
--pf-c-pagination__nav-page-select--c-form-control--width-chars: 2;
|
|
31
39
|
--pf-c-pagination__nav-page-select--c-form-control--Width: calc(var(--pf-c-pagination__nav-page-select--c-form-control--width-base) + (var(--pf-c-pagination__nav-page-select--c-form-control--width-chars) * 1ch));
|
|
32
40
|
--pf-c-pagination__total-items--Display: block;
|
|
@@ -37,7 +37,7 @@ $pf-c-pagination--breakpoint-map: build-breakpoint-map();
|
|
|
37
37
|
--pf-c-pagination__nav-page-select--PaddingLeft: var(--pf-global--spacer--md);
|
|
38
38
|
--pf-c-pagination__nav-page-select--PaddingRight: var(--pf-global--spacer--md);
|
|
39
39
|
--pf-c-pagination__nav-page-select--child--MarginRight: var(--pf-global--spacer--xs);
|
|
40
|
-
--pf-c-pagination__nav-page-select--c-form-control--width-base:
|
|
40
|
+
--pf-c-pagination__nav-page-select--c-form-control--width-base: calc(var(--pf-global--spacer--sm) * 2 + var(--pf-global--BorderWidth--sm) * 2);
|
|
41
41
|
--pf-c-pagination__nav-page-select--c-form-control--width-chars: 2;
|
|
42
42
|
--pf-c-pagination__nav-page-select--c-form-control--Width: calc(var(--pf-c-pagination__nav-page-select--c-form-control--width-base) + (var(--pf-c-pagination__nav-page-select--c-form-control--width-chars) * 1ch));
|
|
43
43
|
|
|
@@ -257,6 +257,8 @@ $pf-c-pagination--breakpoint-map: build-breakpoint-map();
|
|
|
257
257
|
|
|
258
258
|
.pf-c-form-control {
|
|
259
259
|
width: var(--pf-c-pagination__nav-page-select--c-form-control--Width);
|
|
260
|
+
|
|
261
|
+
@extend %pf-remove-num-arrows;
|
|
260
262
|
}
|
|
261
263
|
}
|
|
262
264
|
|
|
@@ -172,6 +172,9 @@
|
|
|
172
172
|
.pf-c-progress-stepper__step.pf-m-info {
|
|
173
173
|
--pf-c-progress-stepper__step-icon--Color: var(--pf-global--info-color--100);
|
|
174
174
|
}
|
|
175
|
+
.pf-c-progress-stepper__step:last-child {
|
|
176
|
+
--pf-c-progress-stepper__step-main--MarginBottom: 0;
|
|
177
|
+
}
|
|
175
178
|
|
|
176
179
|
.pf-c-progress-stepper__step-connector {
|
|
177
180
|
position: relative;
|
|
@@ -208,6 +208,10 @@
|
|
|
208
208
|
&.pf-m-info {
|
|
209
209
|
--pf-c-progress-stepper__step-icon--Color: var(--pf-global--info-color--100);
|
|
210
210
|
}
|
|
211
|
+
|
|
212
|
+
&:last-child {
|
|
213
|
+
--pf-c-progress-stepper__step-main--MarginBottom: 0;
|
|
214
|
+
}
|
|
211
215
|
}
|
|
212
216
|
|
|
213
217
|
// The step icon wrapper provides a container on which to use the before for the line connecting the steps
|
|
@@ -23260,7 +23260,7 @@ Basic striped table rows are supported on tables with a single `<tbody>` element
|
|
|
23260
23260
|
|
|
23261
23261
|
```html
|
|
23262
23262
|
<table
|
|
23263
|
-
class="pf-c-table pf-m-grid-md
|
|
23263
|
+
class="pf-c-table pf-m-grid-md"
|
|
23264
23264
|
role="grid"
|
|
23265
23265
|
aria-label="This is a striped tr example"
|
|
23266
23266
|
id="table-striped-tr"
|
|
@@ -4357,21 +4357,14 @@ wrapperTag: div
|
|
|
4357
4357
|
>
|
|
4358
4358
|
<thead>
|
|
4359
4359
|
<tr role="row">
|
|
4360
|
-
<td
|
|
4361
|
-
<input
|
|
4362
|
-
type="checkbox"
|
|
4363
|
-
name="check-all"
|
|
4364
|
-
aria-label="Select all rows"
|
|
4365
|
-
/>
|
|
4366
|
-
</td>
|
|
4360
|
+
<td></td>
|
|
4367
4361
|
<th role="columnheader" scope="col">Repositories</th>
|
|
4368
4362
|
<th role="columnheader" scope="col">Branches</th>
|
|
4369
4363
|
<th role="columnheader" scope="col">Pull requests</th>
|
|
4370
4364
|
<th role="columnheader" scope="col">Workspaces</th>
|
|
4371
4365
|
<th role="columnheader" scope="col">Last commit</th>
|
|
4372
|
-
<td
|
|
4373
|
-
|
|
4374
|
-
<td role="cell"></td>
|
|
4366
|
+
<td></td>
|
|
4367
|
+
<td></td>
|
|
4375
4368
|
</tr>
|
|
4376
4369
|
</thead>
|
|
4377
4370
|
|
|
@@ -5612,13 +5605,7 @@ wrapperTag: div
|
|
|
5612
5605
|
>
|
|
5613
5606
|
<thead>
|
|
5614
5607
|
<tr role="row">
|
|
5615
|
-
<td
|
|
5616
|
-
<input
|
|
5617
|
-
type="checkbox"
|
|
5618
|
-
name="check-all"
|
|
5619
|
-
aria-label="Select all rows"
|
|
5620
|
-
/>
|
|
5621
|
-
</td>
|
|
5608
|
+
<td></td>
|
|
5622
5609
|
<th
|
|
5623
5610
|
class="pf-c-table__sort pf-m-selected"
|
|
5624
5611
|
role="columnheader"
|
|
@@ -5694,8 +5681,8 @@ wrapperTag: div
|
|
|
5694
5681
|
</div>
|
|
5695
5682
|
</button>
|
|
5696
5683
|
</th>
|
|
5697
|
-
<td
|
|
5698
|
-
<td
|
|
5684
|
+
<td></td>
|
|
5685
|
+
<td></td>
|
|
5699
5686
|
</tr>
|
|
5700
5687
|
</thead>
|
|
5701
5688
|
|
|
@@ -7008,13 +6995,7 @@ wrapperTag: div
|
|
|
7008
6995
|
</button>
|
|
7009
6996
|
</td>
|
|
7010
6997
|
|
|
7011
|
-
<td
|
|
7012
|
-
<input
|
|
7013
|
-
type="checkbox"
|
|
7014
|
-
name="check-all"
|
|
7015
|
-
aria-label="Select all rows"
|
|
7016
|
-
/>
|
|
7017
|
-
</td>
|
|
6998
|
+
<td></td>
|
|
7018
6999
|
<th
|
|
7019
7000
|
class="pf-m-width-30"
|
|
7020
7001
|
role="columnheader"
|
|
@@ -7024,9 +7005,8 @@ wrapperTag: div
|
|
|
7024
7005
|
<th role="columnheader" scope="col">Pull requests</th>
|
|
7025
7006
|
<th role="columnheader" scope="col">Work spaces</th>
|
|
7026
7007
|
<th role="columnheader" scope="col">Last commit</th>
|
|
7027
|
-
<td
|
|
7028
|
-
|
|
7029
|
-
<td role="cell"></td>
|
|
7008
|
+
<td></td>
|
|
7009
|
+
<td></td>
|
|
7030
7010
|
</tr>
|
|
7031
7011
|
</thead>
|
|
7032
7012
|
|
|
@@ -8519,22 +8499,15 @@ wrapperTag: div
|
|
|
8519
8499
|
>
|
|
8520
8500
|
<thead>
|
|
8521
8501
|
<tr role="row">
|
|
8522
|
-
<td
|
|
8523
|
-
<input
|
|
8524
|
-
type="checkbox"
|
|
8525
|
-
name="check-all"
|
|
8526
|
-
aria-label="Select all rows"
|
|
8527
|
-
/>
|
|
8528
|
-
</td>
|
|
8502
|
+
<td></td>
|
|
8529
8503
|
<th role="columnheader" scope="col">Contributor</th>
|
|
8530
8504
|
<th role="columnheader" scope="col">Position</th>
|
|
8531
8505
|
<th role="columnheader" scope="col">Location</th>
|
|
8532
8506
|
<th role="columnheader" scope="col">Last seen</th>
|
|
8533
8507
|
<th role="columnheader" scope="col">Numbers</th>
|
|
8534
8508
|
<th class="pf-c-table__icon" role="columnheader" scope="col">Icons</th>
|
|
8535
|
-
<
|
|
8536
|
-
|
|
8537
|
-
<th role="columnheader"></th>
|
|
8509
|
+
<td></td>
|
|
8510
|
+
<td></td>
|
|
8538
8511
|
</tr>
|
|
8539
8512
|
</thead>
|
|
8540
8513
|
|
|
@@ -14857,21 +14830,14 @@ wrapperTag: div
|
|
|
14857
14830
|
>
|
|
14858
14831
|
<thead>
|
|
14859
14832
|
<tr role="row">
|
|
14860
|
-
<td
|
|
14861
|
-
<input
|
|
14862
|
-
type="checkbox"
|
|
14863
|
-
name="check-all"
|
|
14864
|
-
aria-label="Select all rows"
|
|
14865
|
-
/>
|
|
14866
|
-
</td>
|
|
14833
|
+
<td></td>
|
|
14867
14834
|
<th role="columnheader" scope="col">Repositories</th>
|
|
14868
14835
|
<th role="columnheader" scope="col">Branches</th>
|
|
14869
14836
|
<th role="columnheader" scope="col">Pull requests</th>
|
|
14870
14837
|
<th role="columnheader" scope="col">Workspaces</th>
|
|
14871
14838
|
<th role="columnheader" scope="col">Last commit</th>
|
|
14872
|
-
<td
|
|
14873
|
-
|
|
14874
|
-
<td role="cell"></td>
|
|
14839
|
+
<td></td>
|
|
14840
|
+
<td></td>
|
|
14875
14841
|
</tr>
|
|
14876
14842
|
</thead>
|
|
14877
14843
|
|
|
@@ -16175,21 +16141,14 @@ wrapperTag: div
|
|
|
16175
16141
|
>
|
|
16176
16142
|
<thead>
|
|
16177
16143
|
<tr role="row">
|
|
16178
|
-
<td
|
|
16179
|
-
<input
|
|
16180
|
-
type="checkbox"
|
|
16181
|
-
name="check-all"
|
|
16182
|
-
aria-label="Select all rows"
|
|
16183
|
-
/>
|
|
16184
|
-
</td>
|
|
16144
|
+
<td></td>
|
|
16185
16145
|
<th role="columnheader" scope="col">Repositories</th>
|
|
16186
16146
|
<th role="columnheader" scope="col">Branches</th>
|
|
16187
16147
|
<th role="columnheader" scope="col">Pull requests</th>
|
|
16188
16148
|
<th role="columnheader" scope="col">Workspaces</th>
|
|
16189
16149
|
<th role="columnheader" scope="col">Last commit</th>
|
|
16190
|
-
<td
|
|
16191
|
-
|
|
16192
|
-
<td role="cell"></td>
|
|
16150
|
+
<td></td>
|
|
16151
|
+
<td></td>
|
|
16193
16152
|
</tr>
|
|
16194
16153
|
</thead>
|
|
16195
16154
|
|
|
@@ -17580,21 +17539,14 @@ wrapperTag: div
|
|
|
17580
17539
|
>
|
|
17581
17540
|
<thead>
|
|
17582
17541
|
<tr role="row">
|
|
17583
|
-
<td
|
|
17584
|
-
<input
|
|
17585
|
-
type="checkbox"
|
|
17586
|
-
name="check-all"
|
|
17587
|
-
aria-label="Select all rows"
|
|
17588
|
-
/>
|
|
17589
|
-
</td>
|
|
17542
|
+
<td></td>
|
|
17590
17543
|
<th role="columnheader" scope="col">Repositories</th>
|
|
17591
17544
|
<th role="columnheader" scope="col">Branches</th>
|
|
17592
17545
|
<th role="columnheader" scope="col">Pull requests</th>
|
|
17593
17546
|
<th role="columnheader" scope="col">Workspaces</th>
|
|
17594
17547
|
<th role="columnheader" scope="col">Last commit</th>
|
|
17595
|
-
<td
|
|
17596
|
-
|
|
17597
|
-
<td role="cell"></td>
|
|
17548
|
+
<td></td>
|
|
17549
|
+
<td></td>
|
|
17598
17550
|
</tr>
|
|
17599
17551
|
</thead>
|
|
17600
17552
|
|
|
@@ -2246,21 +2246,14 @@ section: components
|
|
|
2246
2246
|
>
|
|
2247
2247
|
<thead>
|
|
2248
2248
|
<tr role="row">
|
|
2249
|
-
<td
|
|
2250
|
-
<input
|
|
2251
|
-
type="checkbox"
|
|
2252
|
-
name="check-all"
|
|
2253
|
-
aria-label="Select all rows"
|
|
2254
|
-
/>
|
|
2255
|
-
</td>
|
|
2249
|
+
<td></td>
|
|
2256
2250
|
<th role="columnheader" scope="col">Repositories</th>
|
|
2257
2251
|
<th role="columnheader" scope="col">Branches</th>
|
|
2258
2252
|
<th role="columnheader" scope="col">Pull requests</th>
|
|
2259
2253
|
<th role="columnheader" scope="col">Workspaces</th>
|
|
2260
2254
|
<th role="columnheader" scope="col">Last commit</th>
|
|
2261
|
-
<td
|
|
2262
|
-
|
|
2263
|
-
<td role="cell"></td>
|
|
2255
|
+
<td></td>
|
|
2256
|
+
<td></td>
|
|
2264
2257
|
</tr>
|
|
2265
2258
|
</thead>
|
|
2266
2259
|
|
package/package.json
CHANGED
package/patternfly-no-reset.css
CHANGED
|
@@ -104,6 +104,14 @@
|
|
|
104
104
|
}
|
|
105
105
|
}
|
|
106
106
|
|
|
107
|
+
.pf-c-number-input .pf-c-form-control, .pf-c-pagination__nav-page-select .pf-c-form-control {
|
|
108
|
+
appearance: textfield;
|
|
109
|
+
}
|
|
110
|
+
.pf-c-number-input .pf-c-form-control::-webkit-inner-spin-button, .pf-c-pagination__nav-page-select .pf-c-form-control::-webkit-inner-spin-button, .pf-c-number-input .pf-c-form-control::-webkit-outer-spin-button, .pf-c-pagination__nav-page-select .pf-c-form-control::-webkit-outer-spin-button {
|
|
111
|
+
appearance: none;
|
|
112
|
+
margin: 0;
|
|
113
|
+
}
|
|
114
|
+
|
|
107
115
|
:root {
|
|
108
116
|
--pf-global--palette--black-100: #fafafa;
|
|
109
117
|
--pf-global--palette--black-150: #f5f5f5;
|
|
@@ -19560,7 +19568,7 @@ ul.pf-c-list {
|
|
|
19560
19568
|
--pf-c-pagination__nav-page-select--PaddingLeft: var(--pf-global--spacer--md);
|
|
19561
19569
|
--pf-c-pagination__nav-page-select--PaddingRight: var(--pf-global--spacer--md);
|
|
19562
19570
|
--pf-c-pagination__nav-page-select--child--MarginRight: var(--pf-global--spacer--xs);
|
|
19563
|
-
--pf-c-pagination__nav-page-select--c-form-control--width-base:
|
|
19571
|
+
--pf-c-pagination__nav-page-select--c-form-control--width-base: calc(var(--pf-global--spacer--sm) * 2 + var(--pf-global--BorderWidth--sm) * 2);
|
|
19564
19572
|
--pf-c-pagination__nav-page-select--c-form-control--width-chars: 2;
|
|
19565
19573
|
--pf-c-pagination__nav-page-select--c-form-control--Width: calc(var(--pf-c-pagination__nav-page-select--c-form-control--width-base) + (var(--pf-c-pagination__nav-page-select--c-form-control--width-chars) * 1ch));
|
|
19566
19574
|
--pf-c-pagination__total-items--Display: block;
|
|
@@ -20443,6 +20451,9 @@ ul.pf-c-list {
|
|
|
20443
20451
|
.pf-c-progress-stepper__step.pf-m-info {
|
|
20444
20452
|
--pf-c-progress-stepper__step-icon--Color: var(--pf-global--info-color--100);
|
|
20445
20453
|
}
|
|
20454
|
+
.pf-c-progress-stepper__step:last-child {
|
|
20455
|
+
--pf-c-progress-stepper__step-main--MarginBottom: 0;
|
|
20456
|
+
}
|
|
20446
20457
|
|
|
20447
20458
|
.pf-c-progress-stepper__step-connector {
|
|
20448
20459
|
position: relative;
|
|
@@ -27268,7 +27279,7 @@ svg.pf-c-spinner.pf-m-xl {
|
|
|
27268
27279
|
.pf-c-number-input {
|
|
27269
27280
|
--pf-c-number-input__unit--c-input-group--MarginLeft: var(--pf-global--spacer--sm);
|
|
27270
27281
|
--pf-c-number-input__icon--FontSize: var(--pf-global--FontSize--xs);
|
|
27271
|
-
--pf-c-number-input--c-form-control--width-base: calc(var(--pf-global--spacer--sm) * 2);
|
|
27282
|
+
--pf-c-number-input--c-form-control--width-base: calc(var(--pf-global--spacer--sm) * 2 + var(--pf-global--BorderWidth--sm) * 2);
|
|
27272
27283
|
--pf-c-number-input--c-form-control--width-chars: 4;
|
|
27273
27284
|
--pf-c-number-input--c-form-control--Width: calc(var(--pf-c-number-input--c-form-control--width-base) + var(--pf-c-number-input--c-form-control--width-chars) * 1ch);
|
|
27274
27285
|
display: inline-flex;
|
|
@@ -27278,11 +27289,6 @@ svg.pf-c-spinner.pf-m-xl {
|
|
|
27278
27289
|
display: inline-flex;
|
|
27279
27290
|
width: var(--pf-c-number-input--c-form-control--Width);
|
|
27280
27291
|
text-align: right;
|
|
27281
|
-
-moz-appearance: textfield;
|
|
27282
|
-
}
|
|
27283
|
-
.pf-c-number-input .pf-c-form-control::-webkit-outer-spin-button, .pf-c-number-input .pf-c-form-control::-webkit-inner-spin-button {
|
|
27284
|
-
-webkit-appearance: none;
|
|
27285
|
-
margin: 0;
|
|
27286
27292
|
}
|
|
27287
27293
|
|
|
27288
27294
|
.pf-c-input-group + .pf-c-number-input__unit,
|
package/patternfly.css
CHANGED
|
@@ -104,6 +104,14 @@
|
|
|
104
104
|
}
|
|
105
105
|
}
|
|
106
106
|
|
|
107
|
+
.pf-c-number-input .pf-c-form-control, .pf-c-pagination__nav-page-select .pf-c-form-control {
|
|
108
|
+
appearance: textfield;
|
|
109
|
+
}
|
|
110
|
+
.pf-c-number-input .pf-c-form-control::-webkit-inner-spin-button, .pf-c-pagination__nav-page-select .pf-c-form-control::-webkit-inner-spin-button, .pf-c-number-input .pf-c-form-control::-webkit-outer-spin-button, .pf-c-pagination__nav-page-select .pf-c-form-control::-webkit-outer-spin-button {
|
|
111
|
+
appearance: none;
|
|
112
|
+
margin: 0;
|
|
113
|
+
}
|
|
114
|
+
|
|
107
115
|
:root {
|
|
108
116
|
--pf-global--palette--black-100: #fafafa;
|
|
109
117
|
--pf-global--palette--black-150: #f5f5f5;
|
|
@@ -19682,7 +19690,7 @@ ul.pf-c-list {
|
|
|
19682
19690
|
--pf-c-pagination__nav-page-select--PaddingLeft: var(--pf-global--spacer--md);
|
|
19683
19691
|
--pf-c-pagination__nav-page-select--PaddingRight: var(--pf-global--spacer--md);
|
|
19684
19692
|
--pf-c-pagination__nav-page-select--child--MarginRight: var(--pf-global--spacer--xs);
|
|
19685
|
-
--pf-c-pagination__nav-page-select--c-form-control--width-base:
|
|
19693
|
+
--pf-c-pagination__nav-page-select--c-form-control--width-base: calc(var(--pf-global--spacer--sm) * 2 + var(--pf-global--BorderWidth--sm) * 2);
|
|
19686
19694
|
--pf-c-pagination__nav-page-select--c-form-control--width-chars: 2;
|
|
19687
19695
|
--pf-c-pagination__nav-page-select--c-form-control--Width: calc(var(--pf-c-pagination__nav-page-select--c-form-control--width-base) + (var(--pf-c-pagination__nav-page-select--c-form-control--width-chars) * 1ch));
|
|
19688
19696
|
--pf-c-pagination__total-items--Display: block;
|
|
@@ -20565,6 +20573,9 @@ ul.pf-c-list {
|
|
|
20565
20573
|
.pf-c-progress-stepper__step.pf-m-info {
|
|
20566
20574
|
--pf-c-progress-stepper__step-icon--Color: var(--pf-global--info-color--100);
|
|
20567
20575
|
}
|
|
20576
|
+
.pf-c-progress-stepper__step:last-child {
|
|
20577
|
+
--pf-c-progress-stepper__step-main--MarginBottom: 0;
|
|
20578
|
+
}
|
|
20568
20579
|
|
|
20569
20580
|
.pf-c-progress-stepper__step-connector {
|
|
20570
20581
|
position: relative;
|
|
@@ -27390,7 +27401,7 @@ svg.pf-c-spinner.pf-m-xl {
|
|
|
27390
27401
|
.pf-c-number-input {
|
|
27391
27402
|
--pf-c-number-input__unit--c-input-group--MarginLeft: var(--pf-global--spacer--sm);
|
|
27392
27403
|
--pf-c-number-input__icon--FontSize: var(--pf-global--FontSize--xs);
|
|
27393
|
-
--pf-c-number-input--c-form-control--width-base: calc(var(--pf-global--spacer--sm) * 2);
|
|
27404
|
+
--pf-c-number-input--c-form-control--width-base: calc(var(--pf-global--spacer--sm) * 2 + var(--pf-global--BorderWidth--sm) * 2);
|
|
27394
27405
|
--pf-c-number-input--c-form-control--width-chars: 4;
|
|
27395
27406
|
--pf-c-number-input--c-form-control--Width: calc(var(--pf-c-number-input--c-form-control--width-base) + var(--pf-c-number-input--c-form-control--width-chars) * 1ch);
|
|
27396
27407
|
display: inline-flex;
|
|
@@ -27400,11 +27411,6 @@ svg.pf-c-spinner.pf-m-xl {
|
|
|
27400
27411
|
display: inline-flex;
|
|
27401
27412
|
width: var(--pf-c-number-input--c-form-control--Width);
|
|
27402
27413
|
text-align: right;
|
|
27403
|
-
-moz-appearance: textfield;
|
|
27404
|
-
}
|
|
27405
|
-
.pf-c-number-input .pf-c-form-control::-webkit-outer-spin-button, .pf-c-number-input .pf-c-form-control::-webkit-inner-spin-button {
|
|
27406
|
-
-webkit-appearance: none;
|
|
27407
|
-
margin: 0;
|
|
27408
27414
|
}
|
|
27409
27415
|
|
|
27410
27416
|
.pf-c-input-group + .pf-c-number-input__unit,
|