@patternfly/patternfly 5.0.0-alpha.53 → 5.0.0-alpha.55
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/FormControl/form-control.css +164 -214
- package/components/FormControl/form-control.scss +175 -281
- package/components/FormControl/themes/dark/form-control.scss +1 -2
- package/components/NumberInput/number-input.css +0 -1
- package/components/NumberInput/number-input.scss +0 -1
- package/components/Table/table-grid.css +380 -391
- package/components/Table/table-grid.scss +97 -92
- package/components/Table/table-tree-view.css +254 -254
- package/components/Table/table-tree-view.scss +30 -30
- package/components/Table/table.css +232 -232
- package/components/Table/table.scss +265 -255
- package/docs/components/CalendarMonth/examples/CalendarMonth.md +32 -28
- package/docs/components/ClipboardCopy/examples/ClipboardCopy.md +52 -46
- package/docs/components/DatePicker/examples/DatePicker.md +55 -49
- package/docs/components/FileUpload/examples/FileUpload.md +105 -93
- package/docs/components/Form/examples/Form.md +165 -145
- package/docs/components/FormControl/examples/FormControl.md +439 -475
- package/docs/components/InlineEdit/examples/InlineEdit.md +137 -104
- package/docs/components/InputGroup/examples/InputGroup.md +84 -74
- package/docs/components/Login/examples/Login.md +92 -82
- package/docs/components/NumberInput/examples/NumberInput.md +99 -87
- package/docs/components/Pagination/examples/Pagination.md +100 -89
- package/docs/components/Select/examples/Select.md +77 -68
- package/docs/components/Slider/examples/Slider.md +31 -44
- package/docs/components/Table/examples/Table.md +6839 -3703
- package/docs/components/TextInputGroup/examples/TextInputGroup.md +60 -52
- package/docs/components/Toolbar/examples/Toolbar.md +18 -16
- package/docs/components/Wizard/examples/Wizard.md +280 -245
- package/docs/demos/Alert/examples/Alert.md +69 -57
- package/docs/demos/Button/examples/Button.md +54 -48
- package/docs/demos/Card/examples/Card.md +73 -34
- package/docs/demos/CardView/examples/CardView.md +9 -8
- package/docs/demos/DataList/examples/DataList.md +223 -84
- package/docs/demos/DescriptionList/examples/DescriptionList.md +63 -23
- package/docs/demos/Form/examples/BasicForms.md +247 -227
- package/docs/demos/HelperText/examples/HelperText.md +37 -33
- package/docs/demos/Modal/examples/Modal.md +14 -21
- package/docs/demos/PasswordGenerator/examples/PasswordGenerator.md +11 -10
- package/docs/demos/PasswordStrength/examples/PasswordStrength.md +44 -40
- package/docs/demos/Table/examples/Table.md +2765 -1397
- package/docs/demos/Tabs/examples/Tabs.md +203 -50
- package/docs/demos/Toolbar/examples/Toolbar.md +300 -137
- package/docs/demos/Wizard/examples/Wizard.md +448 -392
- package/package.json +3 -3
- package/patternfly-no-globals.css +1027 -1089
- package/patternfly.css +1027 -1089
- package/patternfly.min.css +1 -1
- package/patternfly.min.css.map +1 -1
- package/docs/components/FormControl/examples/FormControl.css +0 -5
|
@@ -2,7 +2,6 @@
|
|
|
2
2
|
|
|
3
3
|
@mixin pf-v5-theme-dark-form-control() {
|
|
4
4
|
.#{$form-control} {
|
|
5
|
-
--#{$form-control}__select--BackgroundUrl: #{pf-bg-svg($pf-v5-c-form-control__select--Coordinates, $pf-v5-c-form-control__select--ViewBox, $pf-v5-global--Color--100)};
|
|
6
5
|
--#{$form-control}--BorderTopColor: transparent;
|
|
7
6
|
--#{$form-control}--BorderRightColor: transparent;
|
|
8
7
|
--#{$form-control}--BorderBottomColor: var(--#{$pf-global}--BorderColor--400);
|
|
@@ -19,7 +18,7 @@
|
|
|
19
18
|
filter: #{"invert(1)"};
|
|
20
19
|
}
|
|
21
20
|
|
|
22
|
-
|
|
21
|
+
&.pf-m-readonly {
|
|
23
22
|
border-bottom-color: var(--#{$pf-global}--palette--black-700); // should be a var?
|
|
24
23
|
}
|
|
25
24
|
}
|
|
@@ -26,7 +26,6 @@
|
|
|
26
26
|
--pf-v5-c-number-input--c-form-control--width-icon: var(--pf-v5-c-number-input--m-status--c-form-control--width-icon);
|
|
27
27
|
}
|
|
28
28
|
.pf-v5-c-number-input .pf-v5-c-form-control {
|
|
29
|
-
display: inline-flex;
|
|
30
29
|
width: var(--pf-v5-c-number-input--c-form-control--Width);
|
|
31
30
|
text-align: right;
|
|
32
31
|
}
|