@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,347 @@
|
|
|
1
|
+
.p-datatable {
|
|
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-datatable-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-datatable-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-datatable-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-datatable-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
|
+
.p-sortable-column-icon {
|
|
53
|
+
color: $tableHeaderCellIconColor;
|
|
54
|
+
margin-left: $inlineSpacing;
|
|
55
|
+
}
|
|
56
|
+
|
|
57
|
+
.p-sortable-column-badge {
|
|
58
|
+
border-radius: 50%;
|
|
59
|
+
height: $tableSortableColumnBadgeSize;
|
|
60
|
+
min-width: $tableSortableColumnBadgeSize;
|
|
61
|
+
line-height: $tableSortableColumnBadgeSize;
|
|
62
|
+
color: $highlightTextColor;
|
|
63
|
+
background: $highlightBg;
|
|
64
|
+
margin-left: $inlineSpacing;
|
|
65
|
+
}
|
|
66
|
+
|
|
67
|
+
&:not(.p-highlight):hover {
|
|
68
|
+
background: $tableHeaderCellHoverBg;
|
|
69
|
+
color: $tableHeaderCellTextHoverColor;
|
|
70
|
+
|
|
71
|
+
.p-sortable-column-icon {
|
|
72
|
+
color: $tableHeaderCellIconHoverColor;
|
|
73
|
+
}
|
|
74
|
+
}
|
|
75
|
+
|
|
76
|
+
&.p-highlight {
|
|
77
|
+
background: $tableHeaderCellHighlightBg;
|
|
78
|
+
color: $tableHeaderCellHighlightTextColor;
|
|
79
|
+
|
|
80
|
+
.p-sortable-column-icon {
|
|
81
|
+
color: $tableHeaderCellHighlightTextColor;
|
|
82
|
+
}
|
|
83
|
+
|
|
84
|
+
&:hover {
|
|
85
|
+
background: $tableHeaderCellHighlightHoverBg;
|
|
86
|
+
color: $tableHeaderCellHighlightTextColor;
|
|
87
|
+
|
|
88
|
+
.p-sortable-column-icon {
|
|
89
|
+
color: $tableHeaderCellHighlightTextColor;
|
|
90
|
+
}
|
|
91
|
+
}
|
|
92
|
+
}
|
|
93
|
+
|
|
94
|
+
&:focus-visible {
|
|
95
|
+
box-shadow: $inputListItemFocusShadow;
|
|
96
|
+
outline: 0 none;
|
|
97
|
+
}
|
|
98
|
+
}
|
|
99
|
+
|
|
100
|
+
.p-datatable-tbody {
|
|
101
|
+
> tr {
|
|
102
|
+
background: $tableBodyRowBg;
|
|
103
|
+
color: $tableBodyRowTextColor;
|
|
104
|
+
transition: $listItemTransition;
|
|
105
|
+
|
|
106
|
+
> td {
|
|
107
|
+
text-align: $tableCellContentAlignment;
|
|
108
|
+
border: $tableBodyCellBorder;
|
|
109
|
+
border-width: $tableBodyCellBorderWidth;
|
|
110
|
+
padding: $tableBodyCellPadding;
|
|
111
|
+
|
|
112
|
+
.p-row-toggler,
|
|
113
|
+
.p-row-editor-init,
|
|
114
|
+
.p-row-editor-save,
|
|
115
|
+
.p-row-editor-cancel {
|
|
116
|
+
@include action-icon();
|
|
117
|
+
}
|
|
118
|
+
|
|
119
|
+
.p-row-editor-save {
|
|
120
|
+
margin-right: $inlineSpacing;
|
|
121
|
+
}
|
|
122
|
+
|
|
123
|
+
> .p-column-title {
|
|
124
|
+
font-weight: $tableHeaderCellFontWeight;
|
|
125
|
+
}
|
|
126
|
+
}
|
|
127
|
+
|
|
128
|
+
&:focus-visible {
|
|
129
|
+
outline: 0.15rem solid $focusOutlineColor;
|
|
130
|
+
outline-offset: -0.15rem;
|
|
131
|
+
}
|
|
132
|
+
|
|
133
|
+
&.p-highlight {
|
|
134
|
+
background: $highlightBg;
|
|
135
|
+
color: $highlightTextColor;
|
|
136
|
+
}
|
|
137
|
+
|
|
138
|
+
&.p-highlight-contextmenu {
|
|
139
|
+
outline: 0.15rem solid $focusOutlineColor;
|
|
140
|
+
outline-offset: -0.15rem;
|
|
141
|
+
}
|
|
142
|
+
|
|
143
|
+
&.p-datatable-dragpoint-top > td {
|
|
144
|
+
box-shadow: inset 0 2px 0 0 $highlightBg;
|
|
145
|
+
}
|
|
146
|
+
|
|
147
|
+
&.p-datatable-dragpoint-bottom > td {
|
|
148
|
+
box-shadow: inset 0 -2px 0 0 $highlightBg;
|
|
149
|
+
}
|
|
150
|
+
}
|
|
151
|
+
}
|
|
152
|
+
|
|
153
|
+
&.p-datatable-hoverable-rows {
|
|
154
|
+
.p-datatable-tbody > tr:not(.p-highlight):hover {
|
|
155
|
+
background: $tableBodyRowHoverBg;
|
|
156
|
+
color: $tableBodyRowTextHoverColor;
|
|
157
|
+
}
|
|
158
|
+
}
|
|
159
|
+
|
|
160
|
+
.p-column-resizer-helper {
|
|
161
|
+
background: $tableResizerHelperBg;
|
|
162
|
+
}
|
|
163
|
+
|
|
164
|
+
&.p-datatable-scrollable > .p-datatable-wrapper > .p-datatable-table,
|
|
165
|
+
&.p-datatable-scrollable > .p-datatable-wrapper > .p-virtualscroller > .p-datatable-table {
|
|
166
|
+
> .p-datatable-thead,
|
|
167
|
+
> .p-datatable-tfoot {
|
|
168
|
+
background-color: $tableHeaderCellBg;
|
|
169
|
+
}
|
|
170
|
+
}
|
|
171
|
+
|
|
172
|
+
.p-datatable-loading-icon {
|
|
173
|
+
font-size: $loadingIconFontSize;
|
|
174
|
+
|
|
175
|
+
&.p-icon {
|
|
176
|
+
width: $loadingIconFontSize;
|
|
177
|
+
height: $loadingIconFontSize;
|
|
178
|
+
}
|
|
179
|
+
}
|
|
180
|
+
|
|
181
|
+
&.p-datatable-gridlines {
|
|
182
|
+
.p-datatable-header {
|
|
183
|
+
border-width: 1px 1px 0 1px;
|
|
184
|
+
}
|
|
185
|
+
|
|
186
|
+
.p-datatable-footer {
|
|
187
|
+
border-width: 0 1px 1px 1px;
|
|
188
|
+
}
|
|
189
|
+
|
|
190
|
+
.p-paginator-top {
|
|
191
|
+
border-width: 0 1px 0 1px;
|
|
192
|
+
}
|
|
193
|
+
|
|
194
|
+
.p-paginator-bottom {
|
|
195
|
+
border-width: 0 1px 1px 1px;
|
|
196
|
+
}
|
|
197
|
+
|
|
198
|
+
.p-datatable-thead {
|
|
199
|
+
> tr {
|
|
200
|
+
> th {
|
|
201
|
+
border-width: 1px 0 1px 1px;
|
|
202
|
+
|
|
203
|
+
&:last-child {
|
|
204
|
+
border-width: 1px;
|
|
205
|
+
}
|
|
206
|
+
}
|
|
207
|
+
}
|
|
208
|
+
}
|
|
209
|
+
|
|
210
|
+
.p-datatable-tbody {
|
|
211
|
+
> tr {
|
|
212
|
+
> td {
|
|
213
|
+
border-width: 1px 0 0 1px;
|
|
214
|
+
|
|
215
|
+
&:last-child {
|
|
216
|
+
border-width: 1px 1px 0 1px;
|
|
217
|
+
}
|
|
218
|
+
}
|
|
219
|
+
|
|
220
|
+
&:last-child {
|
|
221
|
+
> td {
|
|
222
|
+
border-width: 1px 0 1px 1px;
|
|
223
|
+
|
|
224
|
+
&:last-child {
|
|
225
|
+
border-width: 1px;
|
|
226
|
+
}
|
|
227
|
+
}
|
|
228
|
+
}
|
|
229
|
+
}
|
|
230
|
+
}
|
|
231
|
+
|
|
232
|
+
.p-datatable-tfoot {
|
|
233
|
+
> tr {
|
|
234
|
+
> td {
|
|
235
|
+
border-width: 1px 0 1px 1px;
|
|
236
|
+
|
|
237
|
+
&:last-child {
|
|
238
|
+
border-width: 1px 1px 1px 1px;
|
|
239
|
+
}
|
|
240
|
+
}
|
|
241
|
+
}
|
|
242
|
+
}
|
|
243
|
+
|
|
244
|
+
.p-datatable-thead + .p-datatable-tfoot {
|
|
245
|
+
> tr {
|
|
246
|
+
> td {
|
|
247
|
+
border-width: 0 0 1px 1px;
|
|
248
|
+
|
|
249
|
+
&:last-child {
|
|
250
|
+
border-width: 0 1px 1px 1px;
|
|
251
|
+
}
|
|
252
|
+
}
|
|
253
|
+
}
|
|
254
|
+
}
|
|
255
|
+
|
|
256
|
+
&:has(.p-datatable-thead):has(.p-datatable-tbody) .p-datatable-tbody {
|
|
257
|
+
> tr {
|
|
258
|
+
> td {
|
|
259
|
+
border-width: 0 0 1px 1px;
|
|
260
|
+
|
|
261
|
+
&:last-child {
|
|
262
|
+
border-width: 0 1px 1px 1px;
|
|
263
|
+
}
|
|
264
|
+
}
|
|
265
|
+
}
|
|
266
|
+
}
|
|
267
|
+
|
|
268
|
+
&:has(.p-datatable-tbody):has(.p-datatable-tfoot) .p-datatable-tbody {
|
|
269
|
+
> tr {
|
|
270
|
+
&:last-child {
|
|
271
|
+
> td {
|
|
272
|
+
border-width: 0 0 0 1px;
|
|
273
|
+
|
|
274
|
+
&:last-child {
|
|
275
|
+
border-width: 0 1px 0 1px;
|
|
276
|
+
}
|
|
277
|
+
}
|
|
278
|
+
}
|
|
279
|
+
}
|
|
280
|
+
}
|
|
281
|
+
}
|
|
282
|
+
|
|
283
|
+
&.p-datatable-striped {
|
|
284
|
+
.p-datatable-tbody {
|
|
285
|
+
> tr:nth-child(even) {
|
|
286
|
+
background: $tableBodyRowEvenBg;
|
|
287
|
+
|
|
288
|
+
&.p-highlight {
|
|
289
|
+
background: $highlightBg;
|
|
290
|
+
color: $highlightTextColor;
|
|
291
|
+
|
|
292
|
+
.p-row-toggler {
|
|
293
|
+
color: $highlightTextColor;
|
|
294
|
+
|
|
295
|
+
&:hover {
|
|
296
|
+
color: $highlightTextColor;
|
|
297
|
+
}
|
|
298
|
+
}
|
|
299
|
+
}
|
|
300
|
+
}
|
|
301
|
+
}
|
|
302
|
+
}
|
|
303
|
+
|
|
304
|
+
&.p-datatable-sm {
|
|
305
|
+
.p-datatable-header {
|
|
306
|
+
@include scaledPadding($tableHeaderPadding, $tableScaleSM);
|
|
307
|
+
}
|
|
308
|
+
|
|
309
|
+
.p-datatable-thead > tr > th {
|
|
310
|
+
@include scaledPadding($tableHeaderCellPadding, $tableScaleSM);
|
|
311
|
+
}
|
|
312
|
+
|
|
313
|
+
.p-datatable-tbody > tr > td {
|
|
314
|
+
@include scaledPadding($tableBodyCellPadding, $tableScaleSM);
|
|
315
|
+
}
|
|
316
|
+
|
|
317
|
+
.p-datatable-tfoot > tr > td {
|
|
318
|
+
@include scaledPadding($tableFooterPadding, $tableScaleSM);
|
|
319
|
+
}
|
|
320
|
+
|
|
321
|
+
.p-datatable-footer {
|
|
322
|
+
@include scaledPadding($tableFooterPadding, $tableScaleSM);
|
|
323
|
+
}
|
|
324
|
+
}
|
|
325
|
+
|
|
326
|
+
&.p-datatable-lg {
|
|
327
|
+
.p-datatable-header {
|
|
328
|
+
@include scaledPadding($tableHeaderPadding, $tableScaleLG);
|
|
329
|
+
}
|
|
330
|
+
|
|
331
|
+
.p-datatable-thead > tr > th {
|
|
332
|
+
@include scaledPadding($tableHeaderCellPadding, $tableScaleLG);
|
|
333
|
+
}
|
|
334
|
+
|
|
335
|
+
.p-datatable-tbody > tr > td {
|
|
336
|
+
@include scaledPadding($tableBodyCellPadding, $tableScaleLG);
|
|
337
|
+
}
|
|
338
|
+
|
|
339
|
+
.p-datatable-tfoot > tr > td {
|
|
340
|
+
@include scaledPadding($tableFooterPadding, $tableScaleLG);
|
|
341
|
+
}
|
|
342
|
+
|
|
343
|
+
.p-datatable-footer {
|
|
344
|
+
@include scaledPadding($tableFooterPadding, $tableScaleLG);
|
|
345
|
+
}
|
|
346
|
+
}
|
|
347
|
+
}
|
|
@@ -0,0 +1,47 @@
|
|
|
1
|
+
.p-dataview {
|
|
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-dataview-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-dataview-content {
|
|
22
|
+
background: $tableBodyRowBg;
|
|
23
|
+
color: $tableBodyRowTextColor;
|
|
24
|
+
border: $dataViewContentBorder;
|
|
25
|
+
padding: $dataViewContentPadding;
|
|
26
|
+
}
|
|
27
|
+
|
|
28
|
+
&.p-dataview-list {
|
|
29
|
+
.p-dataview-content {
|
|
30
|
+
> .p-grid > div {
|
|
31
|
+
border: $dataViewListItemBorder;
|
|
32
|
+
border-width: $dataViewListItemBorderWidth;
|
|
33
|
+
}
|
|
34
|
+
}
|
|
35
|
+
}
|
|
36
|
+
|
|
37
|
+
.p-dataview-footer {
|
|
38
|
+
background: $tableFooterBg;
|
|
39
|
+
color: $tableFooterTextColor;
|
|
40
|
+
border: $tableFooterBorder;
|
|
41
|
+
border-width: $tableFooterBorderWidth;
|
|
42
|
+
padding: $tableFooterPadding;
|
|
43
|
+
font-weight: $tableFooterFontWeight;
|
|
44
|
+
border-bottom-left-radius: $borderRadius;
|
|
45
|
+
border-bottom-right-radius: $borderRadius;
|
|
46
|
+
}
|
|
47
|
+
}
|
|
@@ -0,0 +1,138 @@
|
|
|
1
|
+
.p-column-filter-row {
|
|
2
|
+
.p-column-filter-menu-button,
|
|
3
|
+
.p-column-filter-clear-button {
|
|
4
|
+
margin-left: $inlineSpacing;
|
|
5
|
+
}
|
|
6
|
+
}
|
|
7
|
+
|
|
8
|
+
.p-column-filter-menu-button {
|
|
9
|
+
width: $actionIconWidth;
|
|
10
|
+
height: $actionIconHeight;
|
|
11
|
+
color: $actionIconColor;
|
|
12
|
+
border: $actionIconBorder;
|
|
13
|
+
background: $actionIconBg;
|
|
14
|
+
border-radius: $actionIconBorderRadius;
|
|
15
|
+
transition: $actionIconTransition;
|
|
16
|
+
|
|
17
|
+
&:hover {
|
|
18
|
+
color: $actionIconHoverColor;
|
|
19
|
+
border-color: $actionIconHoverBorderColor;
|
|
20
|
+
background: $actionIconHoverBg;
|
|
21
|
+
}
|
|
22
|
+
|
|
23
|
+
&.p-column-filter-menu-button-open,
|
|
24
|
+
&.p-column-filter-menu-button-open:hover {
|
|
25
|
+
background: $actionIconHoverBg;
|
|
26
|
+
color: $actionIconHoverColor;
|
|
27
|
+
}
|
|
28
|
+
|
|
29
|
+
&.p-column-filter-menu-button-active,
|
|
30
|
+
&.p-column-filter-menu-button-active:hover {
|
|
31
|
+
background: $highlightBg;
|
|
32
|
+
color: $highlightTextColor;
|
|
33
|
+
}
|
|
34
|
+
|
|
35
|
+
&:focus-visible {
|
|
36
|
+
@include focused();
|
|
37
|
+
}
|
|
38
|
+
|
|
39
|
+
}
|
|
40
|
+
|
|
41
|
+
.p-column-filter-clear-button {
|
|
42
|
+
width: $actionIconWidth;
|
|
43
|
+
height: $actionIconHeight;
|
|
44
|
+
color: $actionIconColor;
|
|
45
|
+
border: $actionIconBorder;
|
|
46
|
+
background: $actionIconBg;
|
|
47
|
+
border-radius: $actionIconBorderRadius;
|
|
48
|
+
transition: $actionIconTransition;
|
|
49
|
+
|
|
50
|
+
&:hover {
|
|
51
|
+
color: $actionIconHoverColor;
|
|
52
|
+
border-color: $actionIconHoverBorderColor;
|
|
53
|
+
background: $actionIconHoverBg;
|
|
54
|
+
}
|
|
55
|
+
|
|
56
|
+
&:focus-visible {
|
|
57
|
+
@include focused();
|
|
58
|
+
}
|
|
59
|
+
}
|
|
60
|
+
|
|
61
|
+
.p-column-filter-overlay {
|
|
62
|
+
background: $inputOverlayBg;
|
|
63
|
+
color: $inputListTextColor;
|
|
64
|
+
border: $inputOverlayBorder;
|
|
65
|
+
border-radius: $borderRadius;
|
|
66
|
+
box-shadow: $inputOverlayShadow;
|
|
67
|
+
min-width: $menuWidth;
|
|
68
|
+
|
|
69
|
+
.p-column-filter-row-items {
|
|
70
|
+
padding: $inputListPadding;
|
|
71
|
+
|
|
72
|
+
.p-column-filter-row-item {
|
|
73
|
+
margin: $inputListItemMargin;
|
|
74
|
+
padding: $inputListItemPadding;
|
|
75
|
+
border: $inputListItemBorder;
|
|
76
|
+
color: $inputListItemTextColor;
|
|
77
|
+
background: $inputListItemBg;
|
|
78
|
+
transition: $listItemTransition;
|
|
79
|
+
border-radius: $inputListItemBorderRadius;
|
|
80
|
+
|
|
81
|
+
&.p-highlight {
|
|
82
|
+
color: $highlightTextColor;
|
|
83
|
+
background: $highlightBg;
|
|
84
|
+
}
|
|
85
|
+
|
|
86
|
+
&:not(.p-highlight):not(.p-disabled):hover {
|
|
87
|
+
color: $inputListItemTextHoverColor;
|
|
88
|
+
background: $inputListItemHoverBg;
|
|
89
|
+
}
|
|
90
|
+
|
|
91
|
+
&:focus-visible {
|
|
92
|
+
@include focused-listitem();
|
|
93
|
+
}
|
|
94
|
+
}
|
|
95
|
+
|
|
96
|
+
.p-column-filter-separator {
|
|
97
|
+
border-top: $divider;
|
|
98
|
+
margin: $menuSeparatorMargin;
|
|
99
|
+
}
|
|
100
|
+
}
|
|
101
|
+
}
|
|
102
|
+
|
|
103
|
+
.p-column-filter-overlay-menu {
|
|
104
|
+
.p-column-filter-operator {
|
|
105
|
+
padding: $inputListHeaderPadding;
|
|
106
|
+
border-bottom: $inputListHeaderBorder;
|
|
107
|
+
color: $inputListHeaderTextColor;
|
|
108
|
+
background: $inputOverlayHeaderBg;
|
|
109
|
+
margin: $inputListHeaderMargin;
|
|
110
|
+
border-top-right-radius: $borderRadius;
|
|
111
|
+
border-top-left-radius: $borderRadius;
|
|
112
|
+
}
|
|
113
|
+
|
|
114
|
+
.p-column-filter-constraint {
|
|
115
|
+
padding: $panelContentPadding;
|
|
116
|
+
border-bottom: $divider;
|
|
117
|
+
|
|
118
|
+
.p-column-filter-matchmode-dropdown {
|
|
119
|
+
margin-bottom: $inlineSpacing;
|
|
120
|
+
}
|
|
121
|
+
|
|
122
|
+
.p-column-filter-remove-button {
|
|
123
|
+
margin-top: $inlineSpacing;
|
|
124
|
+
}
|
|
125
|
+
|
|
126
|
+
&:last-child {
|
|
127
|
+
border-bottom: 0 none;
|
|
128
|
+
}
|
|
129
|
+
}
|
|
130
|
+
|
|
131
|
+
.p-column-filter-add-rule {
|
|
132
|
+
padding: $panelFooterPadding;
|
|
133
|
+
}
|
|
134
|
+
|
|
135
|
+
.p-column-filter-buttonbar {
|
|
136
|
+
padding: $panelContentPadding;
|
|
137
|
+
}
|
|
138
|
+
}
|
|
@@ -0,0 +1,70 @@
|
|
|
1
|
+
.p-orderlist {
|
|
2
|
+
.p-orderlist-controls {
|
|
3
|
+
padding: $panelContentPadding;
|
|
4
|
+
|
|
5
|
+
.p-button {
|
|
6
|
+
margin-bottom: $inlineSpacing;
|
|
7
|
+
}
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
.p-orderlist-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-orderlist-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-orderlist-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-orderlist-striped {
|
|
60
|
+
.p-orderlist-list {
|
|
61
|
+
.p-orderlist-item:nth-child(even) {
|
|
62
|
+
background: $panelContentEvenRowBg;
|
|
63
|
+
|
|
64
|
+
&:hover {
|
|
65
|
+
background: $inputListItemHoverBg;
|
|
66
|
+
}
|
|
67
|
+
}
|
|
68
|
+
}
|
|
69
|
+
}
|
|
70
|
+
}
|
|
@@ -0,0 +1,50 @@
|
|
|
1
|
+
.p-organizationchart {
|
|
2
|
+
.p-organizationchart-node-content {
|
|
3
|
+
&.p-organizationchart-selectable-node:not(.p-highlight):hover {
|
|
4
|
+
background: $inputListItemHoverBg;
|
|
5
|
+
color: $inputListItemTextHoverColor;
|
|
6
|
+
}
|
|
7
|
+
|
|
8
|
+
&.p-highlight {
|
|
9
|
+
background: $highlightBg;
|
|
10
|
+
color: $highlightTextColor;
|
|
11
|
+
|
|
12
|
+
.p-node-toggler {
|
|
13
|
+
i {
|
|
14
|
+
color: $highlightBg
|
|
15
|
+
}
|
|
16
|
+
}
|
|
17
|
+
}
|
|
18
|
+
}
|
|
19
|
+
|
|
20
|
+
.p-organizationchart-line-down {
|
|
21
|
+
background: $organizationChartConnectorColor;
|
|
22
|
+
}
|
|
23
|
+
|
|
24
|
+
.p-organizationchart-line-left {
|
|
25
|
+
border-right: $panelContentBorder;
|
|
26
|
+
border-color: $organizationChartConnectorColor;
|
|
27
|
+
}
|
|
28
|
+
|
|
29
|
+
.p-organizationchart-line-top {
|
|
30
|
+
border-top: $panelContentBorder;
|
|
31
|
+
border-color: $organizationChartConnectorColor;
|
|
32
|
+
}
|
|
33
|
+
|
|
34
|
+
.p-organizationchart-node-content {
|
|
35
|
+
border: $panelContentBorder;
|
|
36
|
+
background: $panelContentBg;
|
|
37
|
+
color: $panelContentTextColor;
|
|
38
|
+
padding: $panelContentPadding;
|
|
39
|
+
}
|
|
40
|
+
|
|
41
|
+
.p-organizationchart-node-content .p-node-toggler {
|
|
42
|
+
background: inherit;
|
|
43
|
+
color: inherit;
|
|
44
|
+
border-radius: 50%;
|
|
45
|
+
|
|
46
|
+
&:focus-visible {
|
|
47
|
+
@include focused();
|
|
48
|
+
}
|
|
49
|
+
}
|
|
50
|
+
}
|