@orangesix/react 1.0.10 → 1.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.
Files changed (134) hide show
  1. package/api/index.d.ts +2 -2
  2. package/autocomplete/index.cjs.js +2 -0
  3. package/autocomplete/index.cjs.js.map +1 -0
  4. package/autocomplete/index.d.ts +149 -0
  5. package/autocomplete/index.esm.js +2 -0
  6. package/autocomplete/index.esm.js.map +1 -0
  7. package/autocomplete/package.json +5 -0
  8. package/box/_box.scss +0 -27
  9. package/box/index.cjs.js.map +1 -1
  10. package/box/index.d.ts +2 -2
  11. package/box/index.esm.js.map +1 -1
  12. package/editor/_editor.scss +12 -21
  13. package/editor/index.cjs.js.map +1 -1
  14. package/editor/index.esm.js.map +1 -1
  15. package/inputfilter/_inputfilter.scss +2 -7
  16. package/inputfilter/index.cjs.js.map +1 -1
  17. package/inputfilter/index.d.ts +1 -1
  18. package/inputfilter/index.esm.js.map +1 -1
  19. package/package.json +16 -23
  20. package/style/index.cjs.js +2 -0
  21. package/style/index.cjs.js.map +1 -0
  22. package/style/index.d.ts +2 -0
  23. package/style/index.esm.js +2 -0
  24. package/style/index.esm.js.map +1 -0
  25. package/style/index.ts +0 -0
  26. package/style/scss/_variables.scss +925 -0
  27. package/style/scss/bootstrap.scss +31 -0
  28. package/style/scss/components/_root.scss +110 -0
  29. package/style/scss/components/button/_button.scss +644 -0
  30. package/style/scss/components/button/_speeddial.scss +91 -0
  31. package/style/scss/components/button/_splitbutton.scss +359 -0
  32. package/style/scss/components/data/_carousel.scss +39 -0
  33. package/style/scss/components/data/_datascroller.scss +47 -0
  34. package/style/scss/components/data/_datatable.scss +414 -0
  35. package/style/scss/components/data/_dataview.scss +47 -0
  36. package/style/scss/components/data/_filter.scss +138 -0
  37. package/style/scss/components/data/_orderlist.scss +86 -0
  38. package/style/scss/components/data/_organizationchart.scss +50 -0
  39. package/style/scss/components/data/_paginator.scss +91 -0
  40. package/style/scss/components/data/_picklist.scss +74 -0
  41. package/style/scss/components/data/_timeline.scss +38 -0
  42. package/style/scss/components/data/_tree.scss +184 -0
  43. package/style/scss/components/data/_treetable.scss +431 -0
  44. package/style/scss/components/file/_fileupload.scss +41 -0
  45. package/style/scss/components/input/_autocomplete.scss +106 -0
  46. package/style/scss/components/input/_calendar.scss +251 -0
  47. package/style/scss/components/input/_cascadeselect.scss +107 -0
  48. package/style/scss/components/input/_checkbox.scss +181 -0
  49. package/style/scss/components/input/_chips.scss +102 -0
  50. package/style/scss/components/input/_colorpicker.scss +18 -0
  51. package/style/scss/components/input/_dropdown.scss +255 -0
  52. package/style/scss/components/input/_editor.scss +122 -0
  53. package/style/scss/components/input/_iconfield.scss +10 -0
  54. package/style/scss/components/input/_inputgroup.scss +74 -0
  55. package/style/scss/components/input/_inputicon.scss +15 -0
  56. package/style/scss/components/input/_inputnumber.scss +5 -0
  57. package/style/scss/components/input/_inputotp.scss +10 -0
  58. package/style/scss/components/input/_inputswitch.scss +100 -0
  59. package/style/scss/components/input/_inputtext.scss +101 -0
  60. package/style/scss/components/input/_listbox.scss +139 -0
  61. package/style/scss/components/input/_mention.scss +31 -0
  62. package/style/scss/components/input/_multiselect.scss +278 -0
  63. package/style/scss/components/input/_password.scss +33 -0
  64. package/style/scss/components/input/_radiobutton.scss +170 -0
  65. package/style/scss/components/input/_rating.scss +81 -0
  66. package/style/scss/components/input/_selectbutton.scss +50 -0
  67. package/style/scss/components/input/_slider.scss +49 -0
  68. package/style/scss/components/input/_togglebutton.scss +99 -0
  69. package/style/scss/components/input/_treeselect.scss +151 -0
  70. package/style/scss/components/input/_tristatecheckbox.scss +46 -0
  71. package/style/scss/components/menu/_breadcrumb.scss +42 -0
  72. package/style/scss/components/menu/_contextmenu.scss +39 -0
  73. package/style/scss/components/menu/_dock.scss +109 -0
  74. package/style/scss/components/menu/_megamenu.scss +141 -0
  75. package/style/scss/components/menu/_menu.scss +33 -0
  76. package/style/scss/components/menu/_menubar.scss +216 -0
  77. package/style/scss/components/menu/_panelmenu.scss +153 -0
  78. package/style/scss/components/menu/_slidemenu.scss +60 -0
  79. package/style/scss/components/menu/_steps.scss +57 -0
  80. package/style/scss/components/menu/_tabmenu.scss +50 -0
  81. package/style/scss/components/menu/_tieredmenu.scss +43 -0
  82. package/style/scss/components/messages/_inlinemessage.scss +69 -0
  83. package/style/scss/components/messages/_message.scss +107 -0
  84. package/style/scss/components/messages/_toast.scss +100 -0
  85. package/style/scss/components/misc/_avatar.scss +34 -0
  86. package/style/scss/components/misc/_badge.scss +77 -0
  87. package/style/scss/components/misc/_blockui.scss +0 -0
  88. package/style/scss/components/misc/_chip.scss +39 -0
  89. package/style/scss/components/misc/_inplace.scss +17 -0
  90. package/style/scss/components/misc/_metergroup.scss +81 -0
  91. package/style/scss/components/misc/_progressbar.scss +17 -0
  92. package/style/scss/components/misc/_scrolltop.scss +25 -0
  93. package/style/scss/components/misc/_skeleton.scss +8 -0
  94. package/style/scss/components/misc/_tag.scss +40 -0
  95. package/style/scss/components/misc/_terminal.scss +12 -0
  96. package/style/scss/components/multimedia/_galleria.scss +153 -0
  97. package/style/scss/components/multimedia/_image.scss +54 -0
  98. package/style/scss/components/overlay/_confirmpopup.scss +72 -0
  99. package/style/scss/components/overlay/_dialog.scss +78 -0
  100. package/style/scss/components/overlay/_overlaypanel.scss +64 -0
  101. package/style/scss/components/overlay/_sidebar.scss +23 -0
  102. package/style/scss/components/overlay/_tooltip.scss +33 -0
  103. package/style/scss/components/panel/_accordion.scss +118 -0
  104. package/style/scss/components/panel/_card.scss +30 -0
  105. package/style/scss/components/panel/_divider.scss +31 -0
  106. package/style/scss/components/panel/_fieldset.scss +47 -0
  107. package/style/scss/components/panel/_panel.scss +47 -0
  108. package/style/scss/components/panel/_scrollpanel.scss +10 -0
  109. package/style/scss/components/panel/_splitter.scss +23 -0
  110. package/style/scss/components/panel/_stepper.scss +136 -0
  111. package/style/scss/components/panel/_tabview.scss +148 -0
  112. package/style/scss/components/panel/_toolbar.scss +11 -0
  113. package/style/scss/core/_colors.scss +18 -0
  114. package/style/scss/core/_extensions.scss +27 -0
  115. package/style/scss/core/_mixins.scss +243 -0
  116. package/style/scss/core/_reset.scss +75 -0
  117. package/table/index.cjs.js +1 -1
  118. package/table/index.cjs.js.map +1 -1
  119. package/table/index.d.ts +3 -8
  120. package/table/index.esm.js +1 -1
  121. package/table/index.esm.js.map +1 -1
  122. package/tablepivot/_tablepivot.scss +15 -31
  123. package/tablepivot/index.cjs.js.map +1 -1
  124. package/tablepivot/index.esm.js.map +1 -1
  125. package/tabview/index.cjs.js +2 -0
  126. package/tabview/index.cjs.js.map +1 -0
  127. package/tabview/index.d.ts +137 -0
  128. package/tabview/index.esm.js +2 -0
  129. package/tabview/index.esm.js.map +1 -0
  130. package/tabview/package.json +5 -0
  131. package/utils/index.cjs.js.map +1 -1
  132. package/utils/index.esm.js.map +1 -1
  133. package/api/theme.css +0 -1
  134. package/table/_table.scss +0 -136
@@ -0,0 +1,414 @@
1
+ .p-datatable {
2
+ width: 100%;
3
+
4
+ .p-datatable-wrapper {
5
+ &::-webkit-scrollbar {
6
+ width: $scrollBarWidth;
7
+ height: $scrollBarHeight;
8
+ }
9
+
10
+ &::-webkit-scrollbar-thumb {
11
+ background: $scrollThumbBg;
12
+ border-radius: $scrollTopBorderRadius;
13
+ }
14
+ }
15
+
16
+ .p-paginator-top {
17
+ border-width: $tableTopPaginatorBorderWidth;
18
+ border-radius: 0;
19
+ }
20
+
21
+ .p-paginator-bottom {
22
+ border-width: $tableBottomPaginatorBorderWidth;
23
+ border-radius: 0;
24
+ }
25
+
26
+ .p-datatable-header {
27
+ background: $tableHeaderBg;
28
+ color: $tableHeaderTextColor;
29
+ border: $tableHeaderBorder;
30
+ border-width: $tableHeaderBorderWidth;
31
+ padding: $tableHeaderPadding;
32
+ font-weight: $tableHeaderFontWeight;
33
+ }
34
+
35
+ .p-datatable-footer {
36
+ background: $tableFooterBg;
37
+ color: $tableFooterTextColor;
38
+ border: $tableFooterBorder;
39
+ border-width: $tableFooterBorderWidth;
40
+ padding: $tableFooterPadding;
41
+ font-weight: $tableFooterFontWeight;
42
+ }
43
+
44
+ .p-datatable-thead > tr > th {
45
+ text-align: $tableCellContentAlignment;
46
+ padding: $tableHeaderCellPadding;
47
+ border: $tableHeaderCellBorder;
48
+ border-width: $tableHeaderCellBorderWidth !important;
49
+ border-color: $tableHeaderCellBorderColor !important;
50
+ color: $tableHeaderCellTextColor;
51
+ background: $tableHeaderCellBg;
52
+ transition: $listItemTransition;
53
+
54
+ /* Customer */
55
+ font-weight: $tableHeaderCellFontWeight;
56
+ font-size: $tableHeaderCellFontSize;
57
+ text-transform: $tableHeaderCellTextTransform;
58
+ }
59
+
60
+ .p-datatable-tfoot > tr > td {
61
+ text-align: $tableCellContentAlignment;
62
+ padding: $tableFooterCellPadding;
63
+ border: $tableFooterCellBorder;
64
+ border-width: $tableFooterCellBorderWidth;
65
+ font-weight: $tableFooterCellFontWeight;
66
+ color: $tableFooterCellTextColor;
67
+ background: $tableFooterCellBg;
68
+ }
69
+
70
+ .p-sortable-column {
71
+ .p-sortable-column-icon {
72
+ color: $tableHeaderCellIconColor;
73
+ margin-left: $inlineSpacing;
74
+ }
75
+
76
+ .p-sortable-column-badge {
77
+ border-radius: 50%;
78
+ height: $tableSortableColumnBadgeSize;
79
+ min-width: $tableSortableColumnBadgeSize;
80
+ line-height: $tableSortableColumnBadgeSize;
81
+ color: $highlightTextColor;
82
+ background: $highlightBg;
83
+ margin-left: $inlineSpacing;
84
+ }
85
+
86
+ &:not(.p-highlight):not(.p-sortable-disabled):hover {
87
+ background: $tableHeaderCellHoverBg;
88
+ color: $tableHeaderCellTextHoverColor;
89
+
90
+ .p-sortable-column-icon {
91
+ color: $tableHeaderCellIconHoverColor;
92
+ }
93
+ }
94
+
95
+ &.p-highlight {
96
+ background: $tableHeaderCellHighlightBg;
97
+ color: $tableHeaderCellHighlightTextColor;
98
+
99
+ .p-sortable-column-icon {
100
+ color: $tableHeaderCellHighlightTextColor;
101
+ }
102
+
103
+ &:not(.p-sortable-disabled):hover {
104
+ background: $tableHeaderCellHighlightHoverBg;
105
+ color: $tableHeaderCellHighlightTextColor;
106
+
107
+ .p-sortable-column-icon {
108
+ color: $tableHeaderCellHighlightTextColor;
109
+ }
110
+ }
111
+ }
112
+
113
+ &:focus-visible {
114
+ box-shadow: $inputListItemFocusShadow;
115
+ outline: 0 none;
116
+ }
117
+ }
118
+
119
+ .p-datatable-tbody {
120
+ > tr {
121
+ background: $tableBodyRowBg;
122
+ color: $tableBodyRowTextColor;
123
+ transition: $listItemTransition;
124
+ border-width: $tableBodyCellBorderWidth !important;
125
+ border-color: $tableBodyCellBorderColor !important;
126
+ font-size: $tableBodyCellFontSize !important;
127
+ user-select: text !important;
128
+
129
+ > td {
130
+ text-align: $tableCellContentAlignment;
131
+ border: $tableBodyCellBorder;
132
+ border-width: $tableBodyCellBorderWidth;
133
+ padding: $tableBodyCellPadding;
134
+ user-select: text !important;
135
+
136
+ .p-row-toggler,
137
+ .p-row-editor-init,
138
+ .p-row-editor-save,
139
+ .p-row-editor-cancel {
140
+ @include action-icon();
141
+ }
142
+
143
+ .p-row-editor-save {
144
+ margin-right: $inlineSpacing;
145
+ }
146
+
147
+ > .p-column-title {
148
+ font-weight: $tableHeaderCellFontWeight;
149
+ }
150
+
151
+ &.p-highlight {
152
+ background: $highlightBg;
153
+ color: $highlightTextColor;
154
+ }
155
+ }
156
+
157
+ &.p-highlight {
158
+ background: $highlightBg;
159
+ color: $highlightTextColor;
160
+ }
161
+
162
+ &.p-highlight-contextmenu {
163
+ outline: 0.15rem solid $focusOutlineColor;
164
+ outline-offset: -0.15rem;
165
+ }
166
+
167
+ &.p-datatable-dragpoint-top > td {
168
+ box-shadow: inset 0 2px 0 0 $highlightBg;
169
+ }
170
+
171
+ &.p-datatable-dragpoint-bottom > td {
172
+ box-shadow: inset 0 -2px 0 0 $highlightBg;
173
+ }
174
+ }
175
+ }
176
+
177
+ &.p-datatable-selectable {
178
+ .p-datatable-tbody > tr.p-selectable-row {
179
+ &:not(.p-highlight):not(.p-datatable-emptymessage):hover {
180
+ background: $tableBodyRowHoverBg;
181
+ color: $tableBodyRowTextHoverColor;
182
+ }
183
+
184
+ &:focus-visible {
185
+ outline: .15rem solid $focusOutlineColor;
186
+ outline-offset: -.15rem;
187
+ }
188
+ }
189
+ }
190
+
191
+ &.p-datatable-selectable-cell {
192
+ .p-datatable-tbody > tr.p-selectable-row {
193
+ & > td.p-selectable-cell {
194
+ &:not(.p-highlight):hover {
195
+ background: $tableBodyRowHoverBg;
196
+ color: $tableBodyRowTextHoverColor;
197
+ }
198
+
199
+ &:focus-visible {
200
+ outline: .15rem solid $focusOutlineColor;
201
+ outline-offset: -.15rem;
202
+ }
203
+ }
204
+ }
205
+ }
206
+
207
+ &.p-datatable-hoverable-rows {
208
+ .p-datatable-tbody > tr:not(.p-highlight):not(.p-datatable-emptymessage):hover {
209
+ background: $tableBodyRowHoverBg;
210
+ color: $tableBodyRowTextHoverColor;
211
+ }
212
+ }
213
+
214
+ .p-column-resizer-helper {
215
+ background: $tableResizerHelperBg;
216
+ }
217
+
218
+ .p-datatable-scrollable-header,
219
+ .p-datatable-scrollable-footer {
220
+ background: $panelHeaderBg;
221
+ }
222
+
223
+ &.p-datatable-scrollable > .p-datatable-wrapper > .p-datatable-table,
224
+ &.p-datatable-scrollable > .p-datatable-wrapper > .p-virtualscroller > .p-datatable-table {
225
+ > .p-datatable-thead,
226
+ > .p-datatable-tfoot {
227
+ background-color: $tableHeaderCellBg;
228
+ }
229
+ }
230
+
231
+ .p-datatable-loading-icon {
232
+ font-size: $loadingIconFontSize;
233
+
234
+ &.p-icon {
235
+ width: $loadingIconFontSize;
236
+ height: $loadingIconFontSize;
237
+ }
238
+ }
239
+
240
+ &.p-datatable-gridlines {
241
+ .p-datatable-header {
242
+ border-width: 1px 1px 0 1px;
243
+ }
244
+
245
+ .p-datatable-footer {
246
+ border-width: 0 1px 1px 1px;
247
+ }
248
+
249
+ .p-paginator-top {
250
+ border-width: 0 1px 0 1px;
251
+ }
252
+
253
+ .p-paginator-bottom {
254
+ border-width: 0 1px 1px 1px;
255
+ }
256
+
257
+ .p-datatable-thead {
258
+ > tr {
259
+ > th {
260
+ border-width: 1px 0 1px 1px !important;
261
+
262
+ &:last-child {
263
+ border-width: 1px !important;
264
+ }
265
+ }
266
+ }
267
+ }
268
+
269
+ .p-datatable-tbody {
270
+ > tr {
271
+ > td {
272
+ border-width: 1px 0 0 1px !important;
273
+
274
+ &:last-child {
275
+ border-width: 1px 1px 0 1px !important;
276
+ }
277
+ }
278
+
279
+ &:last-child {
280
+ > td {
281
+ border-width: 1px 0 1px 1px !important;
282
+
283
+ &:last-child {
284
+ border-width: 1px !important;
285
+ }
286
+ }
287
+ }
288
+ }
289
+ }
290
+
291
+ .p-datatable-tfoot {
292
+ > tr {
293
+ > td {
294
+ border-width: 1px 0 1px 1px;
295
+
296
+ &:last-child {
297
+ border-width: 1px 1px 1px 1px;
298
+ }
299
+ }
300
+ }
301
+ }
302
+
303
+ .p-datatable-thead + .p-datatable-tfoot {
304
+ > tr {
305
+ > td {
306
+ border-width: 0 0 1px 1px;
307
+
308
+ &:last-child {
309
+ border-width: 0 1px 1px 1px;
310
+ }
311
+ }
312
+ }
313
+ }
314
+
315
+ &:has(.p-datatable-thead):has(.p-datatable-tbody) .p-datatable-tbody {
316
+ > tr {
317
+ > td {
318
+ border-width: 0 0 1px 1px;
319
+
320
+ &:last-child {
321
+ border-width: 0 1px 1px 1px;
322
+ }
323
+ }
324
+ }
325
+ }
326
+
327
+ &:has(.p-datatable-tbody):has(.p-datatable-tfoot) .p-datatable-tbody {
328
+ > tr {
329
+ &:last-child {
330
+ > td {
331
+ border-width: 0 0 0 1px;
332
+
333
+ &:last-child {
334
+ border-width: 0 1px 0 1px;
335
+ }
336
+ }
337
+ }
338
+ }
339
+ }
340
+ }
341
+
342
+ &.p-datatable-striped {
343
+ .p-datatable-tbody {
344
+ > tr.p-row-odd {
345
+ background: $tableBodyRowEvenBg;
346
+
347
+ &.p-highlight {
348
+ background: $highlightBg;
349
+ color: $highlightTextColor;
350
+
351
+ .p-row-toggler {
352
+ color: $highlightTextColor;
353
+
354
+ &:hover {
355
+ color: $highlightTextColor;
356
+ }
357
+ }
358
+ }
359
+
360
+ & + .p-row-expanded {
361
+ background: $tableBodyRowEvenBg;
362
+ }
363
+ }
364
+ }
365
+ }
366
+
367
+ &.p-datatable-sm {
368
+ .p-datatable-header {
369
+ @include scaledPadding($tableHeaderPadding, $tableScaleSM);
370
+ }
371
+
372
+ .p-datatable-thead > tr > th {
373
+ @include scaledPadding($tableHeaderCellPadding, $tableScaleSM);
374
+ }
375
+
376
+ .p-datatable-tbody > tr > td {
377
+ @include scaledPadding($tableBodyCellPadding, $tableScaleSM);
378
+ }
379
+
380
+ .p-datatable-tfoot > tr > td {
381
+ @include scaledPadding($tableFooterPadding, $tableScaleSM);
382
+ }
383
+
384
+ .p-datatable-footer {
385
+ @include scaledPadding($tableFooterPadding, $tableScaleSM);
386
+ }
387
+ }
388
+
389
+ &.p-datatable-lg {
390
+ .p-datatable-header {
391
+ @include scaledPadding($tableHeaderPadding, $tableScaleLG);
392
+ }
393
+
394
+ .p-datatable-thead > tr > th {
395
+ @include scaledPadding($tableHeaderCellPadding, $tableScaleLG);
396
+ }
397
+
398
+ .p-datatable-tbody > tr > td {
399
+ @include scaledPadding($tableBodyCellPadding, $tableScaleLG);
400
+ }
401
+
402
+ .p-datatable-tfoot > tr > td {
403
+ @include scaledPadding($tableFooterPadding, $tableScaleLG);
404
+ }
405
+
406
+ .p-datatable-footer {
407
+ @include scaledPadding($tableFooterPadding, $tableScaleLG);
408
+ }
409
+ }
410
+ }
411
+
412
+ .p-datatable-drag-selection-helper {
413
+ background: $tableDragHelperBg;
414
+ }
@@ -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-footer {
29
+ background: $tableFooterBg;
30
+ color: $tableFooterTextColor;
31
+ border: $tableFooterBorder;
32
+ border-width: $tableFooterBorderWidth;
33
+ padding: $tableFooterPadding;
34
+ font-weight: $tableFooterFontWeight;
35
+ border-bottom-left-radius: $borderRadius;
36
+ border-bottom-right-radius: $borderRadius;
37
+ }
38
+
39
+ .p-dataview-loading-icon {
40
+ font-size: $loadingIconFontSize;
41
+
42
+ &.p-icon {
43
+ width: $loadingIconFontSize;
44
+ height: $loadingIconFontSize;
45
+ }
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,86 @@
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-filter-container {
22
+ padding: $panelHeaderPadding;
23
+ background: $panelContentBg;
24
+ border: $panelHeaderBorder;
25
+ border-bottom: 0 none;
26
+
27
+ .p-orderlist-filter-input {
28
+ padding-right: nth($inputPadding, 2) + $primeIconFontSize;
29
+ }
30
+
31
+ .p-orderlist-filter-icon {
32
+ right: nth($inputPadding, 2);
33
+ color: $inputIconColor;
34
+ }
35
+ }
36
+
37
+ .p-orderlist-list {
38
+ border: $panelContentBorder;
39
+ background: $panelContentBg;
40
+ color: $panelContentTextColor;
41
+ padding: $inputListPadding;
42
+ border-bottom-right-radius: $borderRadius;
43
+ border-bottom-left-radius: $borderRadius;
44
+ outline: 0 none;
45
+
46
+ .p-orderlist-item {
47
+ padding: $inputListItemPadding;
48
+ margin: $inputListItemMargin;
49
+ border: $inputListItemBorder;
50
+ color: $inputListItemTextColor;
51
+ background: $inputListItemBg;
52
+ transition: transform $transitionDuration, $listItemTransition;
53
+
54
+ &:not(.p-highlight):hover {
55
+ background: $inputListItemHoverBg;
56
+ color: $inputListItemTextHoverColor;
57
+ }
58
+
59
+ &.p-focus {
60
+ color: $inputListItemTextFocusColor;
61
+ background: $inputListItemFocusBg;
62
+ }
63
+
64
+ &.p-highlight {
65
+ color: $highlightTextColor;
66
+ background: $highlightBg;
67
+
68
+ &.p-focus {
69
+ background: $highlightFocusBg;
70
+ }
71
+ }
72
+ }
73
+ }
74
+
75
+ &.p-orderlist-striped {
76
+ .p-orderlist-list {
77
+ .p-orderlist-item:nth-child(even) {
78
+ background: $panelContentEvenRowBg;
79
+
80
+ &:hover {
81
+ background: $inputListItemHoverBg;
82
+ }
83
+ }
84
+ }
85
+ }
86
+ }