@aziontech/theme 0.1.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/LICENSE +21 -0
- package/README.md +466 -0
- package/package.json +52 -0
- package/src/azion/_custom.scss +3 -0
- package/src/azion/_extensions.scss +37 -0
- package/src/azion/_fonts.scss +153 -0
- package/src/azion/_variables-widget.scss +400 -0
- package/src/azion/_variables.scss +407 -0
- package/src/azion/custom/_code.scss +11 -0
- package/src/azion/custom/_focus.scss +5 -0
- package/src/azion/custom/_scrollbehavior.scss +6 -0
- package/src/azion/custom/_selection.scss +4 -0
- package/src/azion/custom/_special-button.scss +57 -0
- package/src/azion/extended-components/_autocomplete.scss +13 -0
- package/src/azion/extended-components/_badge.scss +53 -0
- package/src/azion/extended-components/_breadcumb.scss +18 -0
- package/src/azion/extended-components/_button.scss +134 -0
- package/src/azion/extended-components/_calendar.scss +310 -0
- package/src/azion/extended-components/_carousel.scss +9 -0
- package/src/azion/extended-components/_checkbox.scss +33 -0
- package/src/azion/extended-components/_datatable.scss +130 -0
- package/src/azion/extended-components/_dialog.scss +45 -0
- package/src/azion/extended-components/_divider.scss +37 -0
- package/src/azion/extended-components/_dropdown.scss +10 -0
- package/src/azion/extended-components/_dropdownitem.scss +13 -0
- package/src/azion/extended-components/_inlinemessage.scss +10 -0
- package/src/azion/extended-components/_inputnumber.scss +40 -0
- package/src/azion/extended-components/_inputpassword.scss +4 -0
- package/src/azion/extended-components/_inputswitch.scss +53 -0
- package/src/azion/extended-components/_listbox.scss +35 -0
- package/src/azion/extended-components/_markdown.scss +135 -0
- package/src/azion/extended-components/_menuitem.scss +22 -0
- package/src/azion/extended-components/_multiselect.scss +167 -0
- package/src/azion/extended-components/_overlaypanel.scss +18 -0
- package/src/azion/extended-components/_picklist.scss +25 -0
- package/src/azion/extended-components/_progressbar.scss +6 -0
- package/src/azion/extended-components/_radiobutton.scss +63 -0
- package/src/azion/extended-components/_selectbutton.scss +36 -0
- package/src/azion/extended-components/_sidebar.scss +28 -0
- package/src/azion/extended-components/_splitbutton.scss +22 -0
- package/src/azion/extended-components/_tabmenu.scss +21 -0
- package/src/azion/extended-components/_tabview.scss +41 -0
- package/src/azion/extended-components/_tag.scss +47 -0
- package/src/azion/extended-components/_toast.scss +9 -0
- package/src/azion/extended-components/_tooltip.scss +7 -0
- package/src/azion/extended-components/_treeselect.scss +10 -0
- package/src/azion/extended-components/jsonform/_inputcheckbox.scss +41 -0
- package/src/azion/extended-components/jsonform/_inputtext.scss +26 -0
- package/src/azion/extended-components/jsonform/_label.scss +185 -0
- package/src/azion/extended-components/jsonform/_select.scss +34 -0
- package/src/azion/theme-base/_colors.scss +18 -0
- package/src/azion/theme-base/_common.scss +75 -0
- package/src/azion/theme-base/_components.scss +103 -0
- package/src/azion/theme-base/_mixins.scss +250 -0
- package/src/azion/theme-base/components/button/_button.scss +567 -0
- package/src/azion/theme-base/components/button/_speeddial.scss +97 -0
- package/src/azion/theme-base/components/button/_splitbutton.scss +390 -0
- package/src/azion/theme-base/components/data/_carousel.scss +37 -0
- package/src/azion/theme-base/components/data/_datatable.scss +347 -0
- package/src/azion/theme-base/components/data/_dataview.scss +47 -0
- package/src/azion/theme-base/components/data/_filter.scss +138 -0
- package/src/azion/theme-base/components/data/_orderlist.scss +70 -0
- package/src/azion/theme-base/components/data/_organizationchart.scss +50 -0
- package/src/azion/theme-base/components/data/_paginator.scss +92 -0
- package/src/azion/theme-base/components/data/_picklist.scss +70 -0
- package/src/azion/theme-base/components/data/_timeline.scss +38 -0
- package/src/azion/theme-base/components/data/_tree.scss +90 -0
- package/src/azion/theme-base/components/data/_treetable.scss +251 -0
- package/src/azion/theme-base/components/file/_fileupload.scss +82 -0
- package/src/azion/theme-base/components/input/_autocomplete.scss +114 -0
- package/src/azion/theme-base/components/input/_calendar.scss +251 -0
- package/src/azion/theme-base/components/input/_cascadeselect.scss +106 -0
- package/src/azion/theme-base/components/input/_checkbox.scss +86 -0
- package/src/azion/theme-base/components/input/_chips.scss +53 -0
- package/src/azion/theme-base/components/input/_colorpicker.scss +18 -0
- package/src/azion/theme-base/components/input/_dropdown.scss +147 -0
- package/src/azion/theme-base/components/input/_editor.scss +122 -0
- package/src/azion/theme-base/components/input/_inputgroup.scss +74 -0
- package/src/azion/theme-base/components/input/_inputnumber.scss +5 -0
- package/src/azion/theme-base/components/input/_inputswitch.scss +62 -0
- package/src/azion/theme-base/components/input/_inputtext.scss +100 -0
- package/src/azion/theme-base/components/input/_listbox.scss +89 -0
- package/src/azion/theme-base/components/input/_multiselect.scss +166 -0
- package/src/azion/theme-base/components/input/_password.scss +33 -0
- package/src/azion/theme-base/components/input/_radiobutton.scss +78 -0
- package/src/azion/theme-base/components/input/_rating.scss +60 -0
- package/src/azion/theme-base/components/input/_selectbutton.scss +50 -0
- package/src/azion/theme-base/components/input/_slider.scss +49 -0
- package/src/azion/theme-base/components/input/_togglebutton.scss +52 -0
- package/src/azion/theme-base/components/input/_treeselect.scss +91 -0
- package/src/azion/theme-base/components/menu/_breadcrumb.scss +42 -0
- package/src/azion/theme-base/components/menu/_contextmenu.scss +39 -0
- package/src/azion/theme-base/components/menu/_dock.scss +95 -0
- package/src/azion/theme-base/components/menu/_megamenu.scss +55 -0
- package/src/azion/theme-base/components/menu/_menu.scss +33 -0
- package/src/azion/theme-base/components/menu/_menubar.scss +141 -0
- package/src/azion/theme-base/components/menu/_panelmenu.scss +153 -0
- package/src/azion/theme-base/components/menu/_steps.scss +56 -0
- package/src/azion/theme-base/components/menu/_tabmenu.scss +49 -0
- package/src/azion/theme-base/components/menu/_tieredmenu.scss +43 -0
- package/src/azion/theme-base/components/messages/_inlinemessage.scss +64 -0
- package/src/azion/theme-base/components/messages/_message.scss +100 -0
- package/src/azion/theme-base/components/messages/_toast.scss +100 -0
- package/src/azion/theme-base/components/misc/_avatar.scss +30 -0
- package/src/azion/theme-base/components/misc/_badge.scss +48 -0
- package/src/azion/theme-base/components/misc/_blockui.scss +0 -0
- package/src/azion/theme-base/components/misc/_chip.scss +39 -0
- package/src/azion/theme-base/components/misc/_inplace.scss +17 -0
- package/src/azion/theme-base/components/misc/_progressbar.scss +17 -0
- package/src/azion/theme-base/components/misc/_progressspinner.scss +49 -0
- package/src/azion/theme-base/components/misc/_scrolltop.scss +25 -0
- package/src/azion/theme-base/components/misc/_skeleton.scss +8 -0
- package/src/azion/theme-base/components/misc/_tag.scss +40 -0
- package/src/azion/theme-base/components/misc/_terminal.scss +12 -0
- package/src/azion/theme-base/components/multimedia/_galleria.scss +151 -0
- package/src/azion/theme-base/components/multimedia/_image.scss +54 -0
- package/src/azion/theme-base/components/overlay/_confirmpopup.scss +72 -0
- package/src/azion/theme-base/components/overlay/_dialog.scss +64 -0
- package/src/azion/theme-base/components/overlay/_overlaypanel.scss +38 -0
- package/src/azion/theme-base/components/overlay/_sidebar.scss +23 -0
- package/src/azion/theme-base/components/overlay/_tooltip.scss +33 -0
- package/src/azion/theme-base/components/panel/_accordion.scss +118 -0
- package/src/azion/theme-base/components/panel/_card.scss +30 -0
- package/src/azion/theme-base/components/panel/_divider.scss +40 -0
- package/src/azion/theme-base/components/panel/_fieldset.scss +51 -0
- package/src/azion/theme-base/components/panel/_panel.scss +47 -0
- package/src/azion/theme-base/components/panel/_scrollpanel.scss +11 -0
- package/src/azion/theme-base/components/panel/_splitter.scss +24 -0
- package/src/azion/theme-base/components/panel/_tabview.scss +66 -0
- package/src/azion/theme-base/components/panel/_toolbar.scss +11 -0
- package/src/azion/theme-widget.scss +9 -0
- package/src/azion/theme.scss +9 -0
- package/src/azion/variables/_button.scss +438 -0
- package/src/azion/variables/_data.scss +346 -0
- package/src/azion/variables/_form.scss +570 -0
- package/src/azion/variables/_general.scss +149 -0
- package/src/azion/variables/_media.scss +231 -0
- package/src/azion/variables/_menu.scss +287 -0
- package/src/azion/variables/_message.scss +145 -0
- package/src/azion/variables/_misc.scss +143 -0
- package/src/azion/variables/_overlay.scss +67 -0
- package/src/azion/variables/_panel.scss +327 -0
- package/src/tokens/README.md +345 -0
- package/src/tokens/build/css-vars.js +41 -0
- package/src/tokens/build/preset.js +69 -0
- package/src/tokens/build/refs.js +7 -0
- package/src/tokens/build/resolve.js +102 -0
- package/src/tokens/build/tailwind-helper.js +12 -0
- package/src/tokens/build/tailwind-plugin.js +175 -0
- package/src/tokens/colors-brand.js +24 -0
- package/src/tokens/index.js +16 -0
- package/src/tokens/primitives/brand.js +69 -0
- package/src/tokens/primitives/colors.js +133 -0
- package/src/tokens/semantic/backgrounds.js +48 -0
- package/src/tokens/semantic/borders.js +46 -0
- package/src/tokens/semantic/text.js +78 -0
|
@@ -0,0 +1,92 @@
|
|
|
1
|
+
.p-paginator {
|
|
2
|
+
background: $paginatorBg;
|
|
3
|
+
color: $paginatorTextColor;
|
|
4
|
+
border: $paginatorBorder;
|
|
5
|
+
border-width: $paginatorBorderWidth;
|
|
6
|
+
padding: $paginatorPadding;
|
|
7
|
+
border-radius: $borderRadius;
|
|
8
|
+
|
|
9
|
+
.p-paginator-first,
|
|
10
|
+
.p-paginator-prev,
|
|
11
|
+
.p-paginator-next,
|
|
12
|
+
.p-paginator-last {
|
|
13
|
+
background-color: $paginatorElementBg;
|
|
14
|
+
border: $paginatorElementBorder;
|
|
15
|
+
color: $paginatorElementIconColor;
|
|
16
|
+
min-width: $paginatorElementWidth;
|
|
17
|
+
height: $paginatorElementHeight;
|
|
18
|
+
margin: $paginatorElementMargin;
|
|
19
|
+
transition: $listItemTransition;
|
|
20
|
+
border-radius: $paginatorElementBorderRadius;
|
|
21
|
+
|
|
22
|
+
&:not(.p-disabled):not(.p-highlight):hover {
|
|
23
|
+
background: $paginatorElementHoverBg;
|
|
24
|
+
border-color: $paginatorElementHoverBorderColor;
|
|
25
|
+
color: $paginatorElementIconHoverColor;
|
|
26
|
+
}
|
|
27
|
+
}
|
|
28
|
+
|
|
29
|
+
.p-paginator-first {
|
|
30
|
+
border-top-left-radius: $paginatorElementBorderRadius;
|
|
31
|
+
border-bottom-left-radius: $paginatorElementBorderRadius;
|
|
32
|
+
}
|
|
33
|
+
|
|
34
|
+
.p-paginator-last {
|
|
35
|
+
border-top-right-radius: $paginatorElementBorderRadius;
|
|
36
|
+
border-bottom-right-radius: $paginatorElementBorderRadius;
|
|
37
|
+
}
|
|
38
|
+
|
|
39
|
+
.p-dropdown {
|
|
40
|
+
margin-left: $inlineSpacing;
|
|
41
|
+
margin-right: $inlineSpacing;
|
|
42
|
+
height: $paginatorElementHeight;
|
|
43
|
+
|
|
44
|
+
.p-dropdown-label {
|
|
45
|
+
padding-right: 0;
|
|
46
|
+
}
|
|
47
|
+
}
|
|
48
|
+
|
|
49
|
+
.p-paginator-page-input {
|
|
50
|
+
margin-left: $inlineSpacing;
|
|
51
|
+
margin-right: $inlineSpacing;
|
|
52
|
+
|
|
53
|
+
.p-inputtext {
|
|
54
|
+
max-width: $paginatorElementWidth;
|
|
55
|
+
}
|
|
56
|
+
}
|
|
57
|
+
|
|
58
|
+
.p-paginator-current {
|
|
59
|
+
background-color: $paginatorElementBg;
|
|
60
|
+
border: $paginatorElementBorder;
|
|
61
|
+
color: $paginatorElementIconColor;
|
|
62
|
+
min-width: $paginatorElementWidth;
|
|
63
|
+
height: $paginatorElementHeight;
|
|
64
|
+
margin: $paginatorElementMargin;
|
|
65
|
+
padding: 0 $inlineSpacing;
|
|
66
|
+
}
|
|
67
|
+
|
|
68
|
+
.p-paginator-pages {
|
|
69
|
+
.p-paginator-page {
|
|
70
|
+
background-color: $paginatorElementBg;
|
|
71
|
+
border: $paginatorElementBorder;
|
|
72
|
+
color: $paginatorElementIconColor;
|
|
73
|
+
min-width: $paginatorElementWidth;
|
|
74
|
+
height: $paginatorElementHeight;
|
|
75
|
+
margin: $paginatorElementMargin;
|
|
76
|
+
transition: $listItemTransition;
|
|
77
|
+
border-radius: $paginatorElementBorderRadius;
|
|
78
|
+
|
|
79
|
+
&.p-highlight {
|
|
80
|
+
background: $highlightBg;
|
|
81
|
+
border-color: $highlightBg;
|
|
82
|
+
color: $highlightTextColor;
|
|
83
|
+
}
|
|
84
|
+
|
|
85
|
+
&:not(.p-highlight):hover {
|
|
86
|
+
background: $paginatorElementHoverBg;
|
|
87
|
+
border-color: $paginatorElementHoverBorderColor;
|
|
88
|
+
color: $paginatorElementIconHoverColor;
|
|
89
|
+
}
|
|
90
|
+
}
|
|
91
|
+
}
|
|
92
|
+
}
|
|
@@ -0,0 +1,70 @@
|
|
|
1
|
+
.p-picklist {
|
|
2
|
+
.p-picklist-buttons {
|
|
3
|
+
padding: $panelContentPadding;
|
|
4
|
+
|
|
5
|
+
.p-button {
|
|
6
|
+
margin-bottom: $inlineSpacing;
|
|
7
|
+
}
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
.p-picklist-header {
|
|
11
|
+
background: $panelHeaderBg;
|
|
12
|
+
color: $panelHeaderTextColor;
|
|
13
|
+
border: $panelHeaderBorder;
|
|
14
|
+
padding: $panelHeaderPadding;
|
|
15
|
+
font-weight: $panelHeaderFontWeight;
|
|
16
|
+
border-bottom: 0 none;
|
|
17
|
+
border-top-right-radius: $borderRadius;
|
|
18
|
+
border-top-left-radius: $borderRadius;
|
|
19
|
+
}
|
|
20
|
+
|
|
21
|
+
.p-picklist-list {
|
|
22
|
+
border: $panelContentBorder;
|
|
23
|
+
background: $panelContentBg;
|
|
24
|
+
color: $panelContentTextColor;
|
|
25
|
+
padding: $inputListPadding;
|
|
26
|
+
border-bottom-right-radius: $borderRadius;
|
|
27
|
+
border-bottom-left-radius: $borderRadius;
|
|
28
|
+
outline: 0 none;
|
|
29
|
+
|
|
30
|
+
.p-picklist-item {
|
|
31
|
+
padding: $inputListItemPadding;
|
|
32
|
+
margin: $inputListItemMargin;
|
|
33
|
+
border: $inputListItemBorder;
|
|
34
|
+
color: $inputListItemTextColor;
|
|
35
|
+
background: $inputListItemBg;
|
|
36
|
+
transition: transform $transitionDuration, $listItemTransition;
|
|
37
|
+
|
|
38
|
+
&:not(.p-highlight):hover {
|
|
39
|
+
background: $inputListItemHoverBg;
|
|
40
|
+
color: $inputListItemTextHoverColor;
|
|
41
|
+
}
|
|
42
|
+
|
|
43
|
+
&.p-focus {
|
|
44
|
+
color: $inputListItemTextFocusColor;
|
|
45
|
+
background: $inputListItemFocusBg;
|
|
46
|
+
}
|
|
47
|
+
|
|
48
|
+
&.p-highlight {
|
|
49
|
+
color: $highlightTextColor;
|
|
50
|
+
background: $highlightBg;
|
|
51
|
+
|
|
52
|
+
&.p-focus {
|
|
53
|
+
background: $highlightFocusBg;
|
|
54
|
+
}
|
|
55
|
+
}
|
|
56
|
+
}
|
|
57
|
+
}
|
|
58
|
+
|
|
59
|
+
&.p-picklist-striped {
|
|
60
|
+
.p-picklist-list {
|
|
61
|
+
.p-picklist-item:nth-child(even) {
|
|
62
|
+
background: $panelContentEvenRowBg;
|
|
63
|
+
|
|
64
|
+
&:hover {
|
|
65
|
+
background: $inputListItemHoverBg;
|
|
66
|
+
}
|
|
67
|
+
}
|
|
68
|
+
}
|
|
69
|
+
}
|
|
70
|
+
}
|
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
.p-timeline {
|
|
2
|
+
.p-timeline-event-marker {
|
|
3
|
+
border: $timelineEventMarkerBorder;
|
|
4
|
+
border-radius: $timelineEventMarkerBorderRadius;
|
|
5
|
+
width: $timelineEventMarkerWidth;
|
|
6
|
+
height: $timelineEventMarkerHeight;
|
|
7
|
+
background-color: $timelineEventMarkerBackground;
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
.p-timeline-event-connector {
|
|
11
|
+
background-color: $timelineEventColor;
|
|
12
|
+
}
|
|
13
|
+
|
|
14
|
+
&.p-timeline-vertical {
|
|
15
|
+
.p-timeline-event-opposite,
|
|
16
|
+
.p-timeline-event-content {
|
|
17
|
+
padding: $timelineVerticalEventContentPadding;
|
|
18
|
+
}
|
|
19
|
+
|
|
20
|
+
.p-timeline-event-connector {
|
|
21
|
+
width: $timelineEventConnectorSize;
|
|
22
|
+
}
|
|
23
|
+
}
|
|
24
|
+
|
|
25
|
+
&.p-timeline-horizontal {
|
|
26
|
+
.p-timeline-event-opposite,
|
|
27
|
+
.p-timeline-event-content {
|
|
28
|
+
padding: $timelineHorizontalEventContentPadding;
|
|
29
|
+
}
|
|
30
|
+
|
|
31
|
+
.p-timeline-event-connector {
|
|
32
|
+
height: $timelineEventConnectorSize;
|
|
33
|
+
}
|
|
34
|
+
}
|
|
35
|
+
}
|
|
36
|
+
|
|
37
|
+
|
|
38
|
+
|
|
@@ -0,0 +1,90 @@
|
|
|
1
|
+
.p-tree {
|
|
2
|
+
border: $panelContentBorder;
|
|
3
|
+
background: $panelContentBg;
|
|
4
|
+
color: $panelContentTextColor;
|
|
5
|
+
padding: $panelContentPadding;
|
|
6
|
+
border-radius: $borderRadius;
|
|
7
|
+
|
|
8
|
+
.p-tree-container {
|
|
9
|
+
.p-treenode {
|
|
10
|
+
padding: $treeNodePadding;
|
|
11
|
+
outline: 0 none;
|
|
12
|
+
|
|
13
|
+
&:focus > .p-treenode-content {
|
|
14
|
+
@include focused-listitem();
|
|
15
|
+
}
|
|
16
|
+
|
|
17
|
+
.p-treenode-content {
|
|
18
|
+
border-radius: $borderRadius;
|
|
19
|
+
transition: $listItemTransition;
|
|
20
|
+
padding: $treeNodeContentPadding;
|
|
21
|
+
|
|
22
|
+
.p-tree-toggler {
|
|
23
|
+
margin-right: $inlineSpacing;
|
|
24
|
+
@include action-icon();
|
|
25
|
+
}
|
|
26
|
+
|
|
27
|
+
.p-treenode-icon {
|
|
28
|
+
margin-right: $inlineSpacing;
|
|
29
|
+
color: $treeNodeIconColor;
|
|
30
|
+
}
|
|
31
|
+
|
|
32
|
+
.p-checkbox {
|
|
33
|
+
margin-right: $inlineSpacing;
|
|
34
|
+
|
|
35
|
+
.p-indeterminate {
|
|
36
|
+
.p-checkbox-icon {
|
|
37
|
+
color: $textColor;
|
|
38
|
+
}
|
|
39
|
+
}
|
|
40
|
+
}
|
|
41
|
+
|
|
42
|
+
&.p-highlight {
|
|
43
|
+
background: $highlightBg;
|
|
44
|
+
color: $highlightTextColor;
|
|
45
|
+
|
|
46
|
+
.p-tree-toggler,
|
|
47
|
+
.p-treenode-icon {
|
|
48
|
+
color: $highlightTextColor;
|
|
49
|
+
|
|
50
|
+
&:hover {
|
|
51
|
+
color: $highlightTextColor;
|
|
52
|
+
}
|
|
53
|
+
}
|
|
54
|
+
}
|
|
55
|
+
|
|
56
|
+
&.p-treenode-selectable:not(.p-highlight):hover {
|
|
57
|
+
background: $inputListItemHoverBg;
|
|
58
|
+
color: $inputListItemTextHoverColor;
|
|
59
|
+
}
|
|
60
|
+
}
|
|
61
|
+
}
|
|
62
|
+
}
|
|
63
|
+
|
|
64
|
+
.p-tree-filter-container {
|
|
65
|
+
margin-bottom: $inlineSpacing;
|
|
66
|
+
|
|
67
|
+
.p-tree-filter {
|
|
68
|
+
width: 100%;
|
|
69
|
+
padding-right: nth($inputPadding, 2) + $primeIconFontSize;
|
|
70
|
+
}
|
|
71
|
+
|
|
72
|
+
.p-tree-filter-icon {
|
|
73
|
+
right: nth($inputPadding, 2);
|
|
74
|
+
color: $inputIconColor;
|
|
75
|
+
}
|
|
76
|
+
}
|
|
77
|
+
|
|
78
|
+
.p-treenode-children {
|
|
79
|
+
padding: $treeNodeChildrenPadding;
|
|
80
|
+
}
|
|
81
|
+
|
|
82
|
+
.p-tree-loading-icon {
|
|
83
|
+
font-size: $loadingIconFontSize;
|
|
84
|
+
|
|
85
|
+
&.p-icon {
|
|
86
|
+
width: $loadingIconFontSize;
|
|
87
|
+
height: $loadingIconFontSize;
|
|
88
|
+
}
|
|
89
|
+
}
|
|
90
|
+
}
|
|
@@ -0,0 +1,251 @@
|
|
|
1
|
+
.p-treetable {
|
|
2
|
+
.p-paginator-top {
|
|
3
|
+
border-width: $tableTopPaginatorBorderWidth;
|
|
4
|
+
border-radius: 0;
|
|
5
|
+
}
|
|
6
|
+
|
|
7
|
+
.p-paginator-bottom {
|
|
8
|
+
border-width: $tableBottomPaginatorBorderWidth;
|
|
9
|
+
border-radius: 0;
|
|
10
|
+
}
|
|
11
|
+
|
|
12
|
+
.p-treetable-header {
|
|
13
|
+
background: $tableHeaderBg;
|
|
14
|
+
color: $tableHeaderTextColor;
|
|
15
|
+
border: $tableHeaderBorder;
|
|
16
|
+
border-width: $tableHeaderBorderWidth;
|
|
17
|
+
padding: $tableHeaderPadding;
|
|
18
|
+
font-weight: $tableHeaderFontWeight;
|
|
19
|
+
}
|
|
20
|
+
|
|
21
|
+
.p-treetable-footer {
|
|
22
|
+
background: $tableFooterBg;
|
|
23
|
+
color: $tableFooterTextColor;
|
|
24
|
+
border: $tableFooterBorder;
|
|
25
|
+
border-width: $tableFooterBorderWidth;
|
|
26
|
+
padding: $tableFooterPadding;
|
|
27
|
+
font-weight: $tableFooterFontWeight;
|
|
28
|
+
}
|
|
29
|
+
|
|
30
|
+
.p-treetable-thead > tr > th {
|
|
31
|
+
text-align: $tableCellContentAlignment;
|
|
32
|
+
padding: $tableHeaderCellPadding;
|
|
33
|
+
border: $tableHeaderCellBorder;
|
|
34
|
+
border-width: $tableHeaderCellBorderWidth;
|
|
35
|
+
font-weight: $tableHeaderCellFontWeight;
|
|
36
|
+
color: $tableHeaderCellTextColor;
|
|
37
|
+
background: $tableHeaderCellBg;
|
|
38
|
+
transition: $listItemTransition;
|
|
39
|
+
}
|
|
40
|
+
|
|
41
|
+
.p-treetable-tfoot > tr > td {
|
|
42
|
+
text-align: $tableCellContentAlignment;
|
|
43
|
+
padding: $tableFooterCellPadding;
|
|
44
|
+
border: $tableFooterCellBorder;
|
|
45
|
+
border-width: $tableFooterCellBorderWidth;
|
|
46
|
+
font-weight: $tableFooterCellFontWeight;
|
|
47
|
+
color: $tableFooterCellTextColor;
|
|
48
|
+
background: $tableFooterCellBg;
|
|
49
|
+
}
|
|
50
|
+
|
|
51
|
+
.p-sortable-column {
|
|
52
|
+
outline-color: $focusOutlineColor;
|
|
53
|
+
|
|
54
|
+
.p-sortable-column-icon {
|
|
55
|
+
color: $tableHeaderCellIconColor;
|
|
56
|
+
margin-left: $inlineSpacing;
|
|
57
|
+
}
|
|
58
|
+
|
|
59
|
+
.p-sortable-column-badge {
|
|
60
|
+
border-radius: 50%;
|
|
61
|
+
height: $tableSortableColumnBadgeSize;
|
|
62
|
+
min-width: $tableSortableColumnBadgeSize;
|
|
63
|
+
line-height: $tableSortableColumnBadgeSize;
|
|
64
|
+
color: $highlightTextColor;
|
|
65
|
+
background: $highlightBg;
|
|
66
|
+
margin-left: $inlineSpacing;
|
|
67
|
+
}
|
|
68
|
+
|
|
69
|
+
&:not(.p-highlight):hover {
|
|
70
|
+
background: $tableHeaderCellHoverBg;
|
|
71
|
+
color: $tableHeaderCellTextHoverColor;
|
|
72
|
+
|
|
73
|
+
.p-sortable-column-icon {
|
|
74
|
+
color: $tableHeaderCellIconHoverColor;
|
|
75
|
+
}
|
|
76
|
+
}
|
|
77
|
+
|
|
78
|
+
&.p-highlight {
|
|
79
|
+
background: $tableHeaderCellHighlightBg;
|
|
80
|
+
color: $tableHeaderCellHighlightTextColor;
|
|
81
|
+
|
|
82
|
+
.p-sortable-column-icon {
|
|
83
|
+
color: $tableHeaderCellHighlightTextColor;
|
|
84
|
+
}
|
|
85
|
+
}
|
|
86
|
+
}
|
|
87
|
+
|
|
88
|
+
.p-treetable-tbody {
|
|
89
|
+
> tr {
|
|
90
|
+
background: $tableBodyRowBg;
|
|
91
|
+
color: $tableBodyRowTextColor;
|
|
92
|
+
transition: $listItemTransition;
|
|
93
|
+
|
|
94
|
+
> td {
|
|
95
|
+
text-align: $tableCellContentAlignment;
|
|
96
|
+
border: $tableBodyCellBorder;
|
|
97
|
+
border-width: $tableBodyCellBorderWidth;
|
|
98
|
+
padding: $tableBodyCellPadding;
|
|
99
|
+
|
|
100
|
+
.p-treetable-toggler {
|
|
101
|
+
@include action-icon();
|
|
102
|
+
margin-right: $inlineSpacing;
|
|
103
|
+
|
|
104
|
+
& + .p-checkbox {
|
|
105
|
+
margin-right: $inlineSpacing;
|
|
106
|
+
|
|
107
|
+
.p-indeterminate {
|
|
108
|
+
.p-checkbox-icon {
|
|
109
|
+
color: $textColor;
|
|
110
|
+
}
|
|
111
|
+
}
|
|
112
|
+
}
|
|
113
|
+
}
|
|
114
|
+
}
|
|
115
|
+
|
|
116
|
+
&:focus-visible {
|
|
117
|
+
outline: 0.15rem solid $focusOutlineColor;
|
|
118
|
+
outline-offset: -0.15rem;
|
|
119
|
+
}
|
|
120
|
+
|
|
121
|
+
&.p-highlight {
|
|
122
|
+
background: $highlightBg;
|
|
123
|
+
color: $highlightTextColor;
|
|
124
|
+
|
|
125
|
+
.p-treetable-toggler {
|
|
126
|
+
color: $highlightTextColor;
|
|
127
|
+
|
|
128
|
+
&:hover {
|
|
129
|
+
color: $highlightTextColor;
|
|
130
|
+
}
|
|
131
|
+
|
|
132
|
+
}
|
|
133
|
+
}
|
|
134
|
+
}
|
|
135
|
+
}
|
|
136
|
+
|
|
137
|
+
&.p-treetable-hoverable-rows {
|
|
138
|
+
.p-treetable-tbody > tr:not(.p-highlight):hover {
|
|
139
|
+
background: $tableBodyRowHoverBg;
|
|
140
|
+
color: $tableBodyRowTextHoverColor;
|
|
141
|
+
|
|
142
|
+
.p-treetable-toggler {
|
|
143
|
+
color: $tableBodyRowTextHoverColor;
|
|
144
|
+
}
|
|
145
|
+
}
|
|
146
|
+
}
|
|
147
|
+
|
|
148
|
+
.p-column-resizer-helper {
|
|
149
|
+
background: $tableResizerHelperBg;
|
|
150
|
+
}
|
|
151
|
+
|
|
152
|
+
.p-treetable-scrollable-header,
|
|
153
|
+
.p-treetable-scrollable-footer {
|
|
154
|
+
background: $panelHeaderBg;
|
|
155
|
+
}
|
|
156
|
+
|
|
157
|
+
.p-treetable-loading-icon {
|
|
158
|
+
font-size: $loadingIconFontSize;
|
|
159
|
+
|
|
160
|
+
&.p-icon {
|
|
161
|
+
width: $loadingIconFontSize;
|
|
162
|
+
height: $loadingIconFontSize;
|
|
163
|
+
}
|
|
164
|
+
}
|
|
165
|
+
|
|
166
|
+
&.p-treetable-gridlines {
|
|
167
|
+
.p-datatable-header {
|
|
168
|
+
border-width: 1px 1px 0 1px;
|
|
169
|
+
}
|
|
170
|
+
|
|
171
|
+
.p-treetable-footer {
|
|
172
|
+
border-width: 0 1px 1px 1px;
|
|
173
|
+
}
|
|
174
|
+
|
|
175
|
+
.p-treetable-top {
|
|
176
|
+
border-width: 0 1px 0 1px;
|
|
177
|
+
}
|
|
178
|
+
|
|
179
|
+
.p-treetable-bottom {
|
|
180
|
+
border-width: 0 1px 1px 1px;
|
|
181
|
+
}
|
|
182
|
+
|
|
183
|
+
.p-treetable-thead {
|
|
184
|
+
> tr {
|
|
185
|
+
> th {
|
|
186
|
+
border-width: 1px;
|
|
187
|
+
}
|
|
188
|
+
}
|
|
189
|
+
}
|
|
190
|
+
|
|
191
|
+
.p-treetable-tbody {
|
|
192
|
+
> tr {
|
|
193
|
+
> td {
|
|
194
|
+
border-width: 1px;
|
|
195
|
+
}
|
|
196
|
+
}
|
|
197
|
+
}
|
|
198
|
+
|
|
199
|
+
.p-treetable-tfoot {
|
|
200
|
+
> tr {
|
|
201
|
+
> td {
|
|
202
|
+
border-width: 1px;
|
|
203
|
+
}
|
|
204
|
+
}
|
|
205
|
+
}
|
|
206
|
+
}
|
|
207
|
+
|
|
208
|
+
&.p-treetable-sm {
|
|
209
|
+
.p-treetable-header {
|
|
210
|
+
@include scaledPadding($tableHeaderPadding, $scaleSM);
|
|
211
|
+
}
|
|
212
|
+
|
|
213
|
+
.p-treetable-thead > tr > th {
|
|
214
|
+
@include scaledPadding($tableHeaderCellPadding, $tableScaleSM);
|
|
215
|
+
}
|
|
216
|
+
|
|
217
|
+
.p-treetable-tbody > tr > td {
|
|
218
|
+
@include scaledPadding($tableBodyCellPadding, $tableScaleSM);
|
|
219
|
+
}
|
|
220
|
+
|
|
221
|
+
.p-treetable-tfoot > tr > td {
|
|
222
|
+
@include scaledPadding($tableFooterPadding, $tableScaleSM);
|
|
223
|
+
}
|
|
224
|
+
|
|
225
|
+
.p-treetable-footer {
|
|
226
|
+
@include scaledPadding($tableFooterPadding, $tableScaleSM);
|
|
227
|
+
}
|
|
228
|
+
}
|
|
229
|
+
|
|
230
|
+
&.p-treetable-lg {
|
|
231
|
+
.p-treetable-header {
|
|
232
|
+
@include scaledPadding($tableHeaderPadding, $tableScaleLG);
|
|
233
|
+
}
|
|
234
|
+
|
|
235
|
+
.p-treetable-thead > tr > th {
|
|
236
|
+
@include scaledPadding($tableHeaderCellPadding, $tableScaleLG);
|
|
237
|
+
}
|
|
238
|
+
|
|
239
|
+
.p-treetable-tbody > tr > td {
|
|
240
|
+
@include scaledPadding($tableBodyCellPadding, $tableScaleLG);
|
|
241
|
+
}
|
|
242
|
+
|
|
243
|
+
.p-treetable-tfoot > tr > td {
|
|
244
|
+
@include scaledPadding($tableFooterPadding, $tableScaleLG);
|
|
245
|
+
}
|
|
246
|
+
|
|
247
|
+
.p-treetable-footer {
|
|
248
|
+
@include scaledPadding($tableFooterPadding, $tableScaleLG);
|
|
249
|
+
}
|
|
250
|
+
}
|
|
251
|
+
}
|
|
@@ -0,0 +1,82 @@
|
|
|
1
|
+
.p-fileupload {
|
|
2
|
+
.p-fileupload-buttonbar {
|
|
3
|
+
background: $panelHeaderBg;
|
|
4
|
+
padding: $panelHeaderPadding;
|
|
5
|
+
border: $panelHeaderBorder;
|
|
6
|
+
color: $panelHeaderTextColor;
|
|
7
|
+
border-bottom: 0 none;
|
|
8
|
+
border-top-right-radius: $borderRadius;
|
|
9
|
+
border-top-left-radius: $borderRadius;
|
|
10
|
+
gap: $inlineSpacing;
|
|
11
|
+
|
|
12
|
+
.p-button {
|
|
13
|
+
&.p-fileupload-choose.p-focus {
|
|
14
|
+
@include focused();
|
|
15
|
+
}
|
|
16
|
+
}
|
|
17
|
+
}
|
|
18
|
+
|
|
19
|
+
.p-fileupload-content {
|
|
20
|
+
background: $panelContentBg;
|
|
21
|
+
padding: $fileUploadContentPadding;
|
|
22
|
+
border: $panelContentBorder;
|
|
23
|
+
color: $panelContentTextColor;
|
|
24
|
+
border-bottom-right-radius: $borderRadius;
|
|
25
|
+
border-bottom-left-radius: $borderRadius;
|
|
26
|
+
|
|
27
|
+
&.p-fileupload-highlight {
|
|
28
|
+
border: $fileUploadContentHoverBorder;
|
|
29
|
+
background-color: $highlightBg;
|
|
30
|
+
}
|
|
31
|
+
}
|
|
32
|
+
|
|
33
|
+
.p-fileupload-file {
|
|
34
|
+
padding: $fileUploadFilePadding;
|
|
35
|
+
border: $fileUploadFileBorder;
|
|
36
|
+
border-radius: $borderRadius;
|
|
37
|
+
gap: $inlineSpacing;
|
|
38
|
+
margin-bottom: $inlineSpacing;
|
|
39
|
+
|
|
40
|
+
&:last-child {
|
|
41
|
+
margin-bottom: 0;
|
|
42
|
+
}
|
|
43
|
+
}
|
|
44
|
+
|
|
45
|
+
.p-fileupload-file-name {
|
|
46
|
+
margin-bottom: $inlineSpacing;
|
|
47
|
+
}
|
|
48
|
+
|
|
49
|
+
.p-fileupload-file-size {
|
|
50
|
+
margin-right: $inlineSpacing;
|
|
51
|
+
}
|
|
52
|
+
|
|
53
|
+
.p-progressbar {
|
|
54
|
+
height: $fileUploadProgressBarHeight;
|
|
55
|
+
}
|
|
56
|
+
|
|
57
|
+
.p-fileupload-row {
|
|
58
|
+
>div {
|
|
59
|
+
padding: $tableBodyCellPadding;
|
|
60
|
+
}
|
|
61
|
+
}
|
|
62
|
+
|
|
63
|
+
&.p-fileupload-advanced {
|
|
64
|
+
.p-message {
|
|
65
|
+
margin-top: 0;
|
|
66
|
+
}
|
|
67
|
+
}
|
|
68
|
+
}
|
|
69
|
+
|
|
70
|
+
.p-fileupload-choose {
|
|
71
|
+
&:not(.p-disabled):hover {
|
|
72
|
+
background: $buttonHoverBg;
|
|
73
|
+
color: $buttonTextHoverColor;
|
|
74
|
+
border-color: $buttonHoverBorderColor;
|
|
75
|
+
}
|
|
76
|
+
|
|
77
|
+
&:not(.p-disabled):active {
|
|
78
|
+
background: $buttonActiveBg;
|
|
79
|
+
color: $buttonTextActiveColor;
|
|
80
|
+
border-color: $buttonActiveBorderColor;
|
|
81
|
+
}
|
|
82
|
+
}
|