@patternfly/patternfly 4.162.0 → 4.162.1
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/DataList/data-list.scss +1 -1
- package/components/Table/table.css +14 -3
- package/components/Table/table.scss +16 -3
- package/components/_all.scss +88 -88
- package/docs/components/Table/examples/Table.md +1029 -883
- package/docs/demos/Table/examples/Table.md +100 -100
- package/package.json +7 -7
- package/patternfly-addons.scss +10 -10
- package/patternfly-base-no-reset.scss +1 -1
- package/patternfly-no-reset.css +14 -3
- package/patternfly-no-reset.scss +1 -1
- package/patternfly.css +14 -3
- package/patternfly.min.css +1 -1
- package/patternfly.min.css.map +1 -1
- package/patternfly.scss +1 -1
|
@@ -394,9 +394,14 @@
|
|
|
394
394
|
outline-offset: var(--pf-c-table--thead--m-nested-column-header--button--OutlineOffset);
|
|
395
395
|
}
|
|
396
396
|
.pf-c-table thead.pf-m-nested-column-header th,
|
|
397
|
-
.pf-c-table thead.pf-m-nested-column-header td
|
|
397
|
+
.pf-c-table thead.pf-m-nested-column-header td,
|
|
398
|
+
.pf-c-table thead.pf-m-nested-column-header input {
|
|
398
399
|
vertical-align: middle;
|
|
399
400
|
}
|
|
401
|
+
.pf-c-table thead.pf-m-nested-column-header .pf-c-table__check label {
|
|
402
|
+
display: flex;
|
|
403
|
+
align-items: center;
|
|
404
|
+
}
|
|
400
405
|
.pf-c-table thead.pf-m-nested-column-header tr:not(:first-child) th:not([rowspan]),
|
|
401
406
|
.pf-c-table thead.pf-m-nested-column-header tr:not(:first-child) td:not([rowspan]) {
|
|
402
407
|
--pf-c-table--cell--PaddingTop: var(--pf-c-table--thead--m-nested-column-header--tr--PaddingTop);
|
|
@@ -429,7 +434,7 @@
|
|
|
429
434
|
background-color: transparent;
|
|
430
435
|
border-left: var(--pf-c-table__expandable-row--after--BorderLeftWidth) solid var(--pf-c-table__expandable-row--after--BorderColor);
|
|
431
436
|
}
|
|
432
|
-
.pf-c-table tbody .pf-c-table__check
|
|
437
|
+
.pf-c-table tbody .pf-c-table__check input {
|
|
433
438
|
margin-top: var(--pf-c-table__check--input--MarginTop);
|
|
434
439
|
vertical-align: top;
|
|
435
440
|
}
|
|
@@ -716,9 +721,15 @@
|
|
|
716
721
|
.pf-c-table__check {
|
|
717
722
|
--pf-c-table--cell--FontSize: var(--pf-c-table__check--input--FontSize);
|
|
718
723
|
}
|
|
719
|
-
.pf-c-table__check
|
|
724
|
+
.pf-c-table__check label:not([disabled]),
|
|
725
|
+
.pf-c-table__check input:not([disabled]) {
|
|
720
726
|
cursor: pointer;
|
|
721
727
|
}
|
|
728
|
+
.pf-c-table__check label {
|
|
729
|
+
display: block;
|
|
730
|
+
padding: inherit;
|
|
731
|
+
margin: calc(var(--pf-c-table--cell--PaddingTop) * -1) calc(var(--pf-c-table--cell--PaddingRight) * -1) calc(var(--pf-c-table--cell--PaddingBottom) * -1) calc(var(--pf-c-table--cell--PaddingLeft) * -1);
|
|
732
|
+
}
|
|
722
733
|
|
|
723
734
|
.pf-c-table__favorite .pf-c-button {
|
|
724
735
|
--pf-c-button--m-plain--Color: var(--pf-c-table__favorite--c-button--Color);
|
|
@@ -453,10 +453,16 @@
|
|
|
453
453
|
}
|
|
454
454
|
|
|
455
455
|
th,
|
|
456
|
-
td
|
|
456
|
+
td,
|
|
457
|
+
input {
|
|
457
458
|
vertical-align: middle;
|
|
458
459
|
}
|
|
459
460
|
|
|
461
|
+
.pf-c-table__check label {
|
|
462
|
+
display: flex;
|
|
463
|
+
align-items: center;
|
|
464
|
+
}
|
|
465
|
+
|
|
460
466
|
tr:not(:first-child) {
|
|
461
467
|
th,
|
|
462
468
|
td {
|
|
@@ -515,7 +521,7 @@
|
|
|
515
521
|
|
|
516
522
|
// Check table cell
|
|
517
523
|
.pf-c-table__check {
|
|
518
|
-
|
|
524
|
+
input {
|
|
519
525
|
margin-top: var(--pf-c-table__check--input--MarginTop);
|
|
520
526
|
vertical-align: top;
|
|
521
527
|
}
|
|
@@ -902,9 +908,16 @@
|
|
|
902
908
|
.pf-c-table__check {
|
|
903
909
|
--pf-c-table--cell--FontSize: var(--pf-c-table__check--input--FontSize);
|
|
904
910
|
|
|
905
|
-
|
|
911
|
+
label:not([disabled]),
|
|
912
|
+
input:not([disabled]) {
|
|
906
913
|
cursor: pointer;
|
|
907
914
|
}
|
|
915
|
+
|
|
916
|
+
label {
|
|
917
|
+
display: block;
|
|
918
|
+
padding: inherit;
|
|
919
|
+
margin: calc(var(--pf-c-table--cell--PaddingTop) * -1) calc(var(--pf-c-table--cell--PaddingRight) * -1) calc(var(--pf-c-table--cell--PaddingBottom) * -1) calc(var(--pf-c-table--cell--PaddingLeft) * -1);
|
|
920
|
+
}
|
|
908
921
|
}
|
|
909
922
|
|
|
910
923
|
// Favorite body cell
|
package/components/_all.scss
CHANGED
|
@@ -1,88 +1,88 @@
|
|
|
1
|
-
@import "./AboutModalBox/about-modal-box
|
|
2
|
-
@import "./Accordion/accordion
|
|
3
|
-
@import "./ActionList/action-list
|
|
4
|
-
@import "./Alert/alert
|
|
5
|
-
@import "./AlertGroup/alert-group
|
|
6
|
-
@import "./AppLauncher/app-launcher
|
|
7
|
-
@import "./Avatar/avatar
|
|
8
|
-
@import "./Backdrop/backdrop
|
|
9
|
-
@import "./BackgroundImage/background-image
|
|
10
|
-
@import "./BackToTop/back-to-top
|
|
11
|
-
@import "./Badge/badge
|
|
12
|
-
@import "./Banner/banner
|
|
13
|
-
@import "./Brand/brand
|
|
14
|
-
@import "./Breadcrumb/breadcrumb
|
|
15
|
-
@import "./Button/button
|
|
16
|
-
@import "./CalendarMonth/calendar-month
|
|
17
|
-
@import "./Card/card
|
|
18
|
-
@import "./Check/check
|
|
19
|
-
@import "./Chip/chip
|
|
20
|
-
@import "./ChipGroup/chip-group
|
|
21
|
-
@import "./ClipboardCopy/clipboard-copy
|
|
22
|
-
@import "./CodeBlock/code-block
|
|
23
|
-
@import "./CodeEditor/code-editor
|
|
24
|
-
@import "./Content/content
|
|
25
|
-
@import "./ContextSelector/context-selector
|
|
26
|
-
@import "./DataList/data-list
|
|
27
|
-
@import "./DescriptionList/description-list
|
|
28
|
-
@import "./DragDrop/drag-drop
|
|
29
|
-
@import "./DualListSelector/dual-list-selector
|
|
30
|
-
@import "./Toolbar/toolbar
|
|
31
|
-
@import "./DatePicker/date-picker
|
|
32
|
-
@import "./Divider/divider
|
|
33
|
-
@import "./Drawer/drawer
|
|
34
|
-
@import "./Dropdown/dropdown
|
|
35
|
-
@import "./EmptyState/empty-state
|
|
36
|
-
@import "./ExpandableSection/expandable-section
|
|
37
|
-
@import "./FileUpload/file-upload
|
|
38
|
-
@import "./Form/form
|
|
39
|
-
@import "./FormControl/form-control
|
|
40
|
-
@import "./Hint/hint
|
|
41
|
-
@import "./HelperText/helper-text
|
|
42
|
-
@import "./InlineEdit/inline-edit
|
|
43
|
-
@import "./InputGroup/input-group
|
|
44
|
-
@import "./JumpLinks/jump-links
|
|
45
|
-
@import "./Label/label
|
|
46
|
-
@import "./LabelGroup/label-group
|
|
47
|
-
@import "./List/list
|
|
48
|
-
@import "./LogViewer/log-viewer
|
|
49
|
-
@import "./Login/login
|
|
50
|
-
@import "./Masthead/masthead
|
|
51
|
-
@import "./Menu/menu
|
|
52
|
-
@import "./MenuToggle/menu-toggle
|
|
53
|
-
@import "./ModalBox/modal-box
|
|
54
|
-
@import "./Nav/nav
|
|
55
|
-
@import "./NotificationBadge/notification-badge
|
|
56
|
-
@import "./NotificationDrawer/notification-drawer
|
|
57
|
-
@import "./OptionsMenu/options-menu
|
|
58
|
-
@import "./OverflowMenu/overflow-menu
|
|
59
|
-
@import "./Page/page
|
|
60
|
-
@import "./Pagination/pagination
|
|
61
|
-
@import "./Panel/panel
|
|
62
|
-
@import "./Popover/popover
|
|
63
|
-
@import "./Progress/progress
|
|
64
|
-
@import "./ProgressStepper/progress-stepper
|
|
65
|
-
@import "./Radio/radio
|
|
66
|
-
@import "./SearchInput/search-input
|
|
67
|
-
@import "./Select/select
|
|
68
|
-
@import "./Sidebar/sidebar
|
|
69
|
-
@import "./SimpleList/simple-list
|
|
70
|
-
@import "./Skeleton/skeleton
|
|
71
|
-
@import "./SkipToContent/skip-to-content
|
|
72
|
-
@import "./Slider/slider
|
|
73
|
-
@import "./Spinner/spinner
|
|
74
|
-
@import "./Switch/switch
|
|
75
|
-
@import "./TabContent/tab-content
|
|
76
|
-
@import "./Table/table-grid
|
|
77
|
-
@import "./Table/table
|
|
78
|
-
@import "./Table/table-scrollable
|
|
79
|
-
@import "./Table/table-tree-view
|
|
80
|
-
@import "./Tabs/tabs
|
|
81
|
-
@import "./TextInputGroup/text-input-group
|
|
82
|
-
@import "./Tile/tile
|
|
83
|
-
@import "./Title/title
|
|
84
|
-
@import "./ToggleGroup/toggle-group
|
|
85
|
-
@import "./Tooltip/tooltip
|
|
86
|
-
@import "./NumberInput/number-input
|
|
87
|
-
@import "./TreeView/tree-view
|
|
88
|
-
@import "./Wizard/wizard
|
|
1
|
+
@import "./AboutModalBox/about-modal-box";
|
|
2
|
+
@import "./Accordion/accordion";
|
|
3
|
+
@import "./ActionList/action-list";
|
|
4
|
+
@import "./Alert/alert";
|
|
5
|
+
@import "./AlertGroup/alert-group";
|
|
6
|
+
@import "./AppLauncher/app-launcher";
|
|
7
|
+
@import "./Avatar/avatar";
|
|
8
|
+
@import "./Backdrop/backdrop";
|
|
9
|
+
@import "./BackgroundImage/background-image";
|
|
10
|
+
@import "./BackToTop/back-to-top";
|
|
11
|
+
@import "./Badge/badge";
|
|
12
|
+
@import "./Banner/banner";
|
|
13
|
+
@import "./Brand/brand";
|
|
14
|
+
@import "./Breadcrumb/breadcrumb";
|
|
15
|
+
@import "./Button/button";
|
|
16
|
+
@import "./CalendarMonth/calendar-month";
|
|
17
|
+
@import "./Card/card";
|
|
18
|
+
@import "./Check/check";
|
|
19
|
+
@import "./Chip/chip";
|
|
20
|
+
@import "./ChipGroup/chip-group";
|
|
21
|
+
@import "./ClipboardCopy/clipboard-copy";
|
|
22
|
+
@import "./CodeBlock/code-block";
|
|
23
|
+
@import "./CodeEditor/code-editor";
|
|
24
|
+
@import "./Content/content";
|
|
25
|
+
@import "./ContextSelector/context-selector";
|
|
26
|
+
@import "./DataList/data-list";
|
|
27
|
+
@import "./DescriptionList/description-list";
|
|
28
|
+
@import "./DragDrop/drag-drop";
|
|
29
|
+
@import "./DualListSelector/dual-list-selector";
|
|
30
|
+
@import "./Toolbar/toolbar";
|
|
31
|
+
@import "./DatePicker/date-picker";
|
|
32
|
+
@import "./Divider/divider";
|
|
33
|
+
@import "./Drawer/drawer";
|
|
34
|
+
@import "./Dropdown/dropdown";
|
|
35
|
+
@import "./EmptyState/empty-state";
|
|
36
|
+
@import "./ExpandableSection/expandable-section";
|
|
37
|
+
@import "./FileUpload/file-upload";
|
|
38
|
+
@import "./Form/form";
|
|
39
|
+
@import "./FormControl/form-control";
|
|
40
|
+
@import "./Hint/hint";
|
|
41
|
+
@import "./HelperText/helper-text";
|
|
42
|
+
@import "./InlineEdit/inline-edit";
|
|
43
|
+
@import "./InputGroup/input-group";
|
|
44
|
+
@import "./JumpLinks/jump-links";
|
|
45
|
+
@import "./Label/label";
|
|
46
|
+
@import "./LabelGroup/label-group";
|
|
47
|
+
@import "./List/list";
|
|
48
|
+
@import "./LogViewer/log-viewer";
|
|
49
|
+
@import "./Login/login";
|
|
50
|
+
@import "./Masthead/masthead";
|
|
51
|
+
@import "./Menu/menu";
|
|
52
|
+
@import "./MenuToggle/menu-toggle";
|
|
53
|
+
@import "./ModalBox/modal-box";
|
|
54
|
+
@import "./Nav/nav";
|
|
55
|
+
@import "./NotificationBadge/notification-badge";
|
|
56
|
+
@import "./NotificationDrawer/notification-drawer";
|
|
57
|
+
@import "./OptionsMenu/options-menu";
|
|
58
|
+
@import "./OverflowMenu/overflow-menu";
|
|
59
|
+
@import "./Page/page";
|
|
60
|
+
@import "./Pagination/pagination";
|
|
61
|
+
@import "./Panel/panel";
|
|
62
|
+
@import "./Popover/popover";
|
|
63
|
+
@import "./Progress/progress";
|
|
64
|
+
@import "./ProgressStepper/progress-stepper";
|
|
65
|
+
@import "./Radio/radio";
|
|
66
|
+
@import "./SearchInput/search-input";
|
|
67
|
+
@import "./Select/select";
|
|
68
|
+
@import "./Sidebar/sidebar";
|
|
69
|
+
@import "./SimpleList/simple-list";
|
|
70
|
+
@import "./Skeleton/skeleton";
|
|
71
|
+
@import "./SkipToContent/skip-to-content";
|
|
72
|
+
@import "./Slider/slider";
|
|
73
|
+
@import "./Spinner/spinner";
|
|
74
|
+
@import "./Switch/switch";
|
|
75
|
+
@import "./TabContent/tab-content";
|
|
76
|
+
@import "./Table/table-grid";
|
|
77
|
+
@import "./Table/table";
|
|
78
|
+
@import "./Table/table-scrollable";
|
|
79
|
+
@import "./Table/table-tree-view";
|
|
80
|
+
@import "./Tabs/tabs";
|
|
81
|
+
@import "./TextInputGroup/text-input-group";
|
|
82
|
+
@import "./Tile/tile";
|
|
83
|
+
@import "./Title/title";
|
|
84
|
+
@import "./ToggleGroup/toggle-group";
|
|
85
|
+
@import "./Tooltip/tooltip";
|
|
86
|
+
@import "./NumberInput/number-input";
|
|
87
|
+
@import "./TreeView/tree-view";
|
|
88
|
+
@import "./Wizard/wizard";
|