es-grid-template 1.2.0 → 1.2.2

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 (69) hide show
  1. package/assets/index.css +695 -0
  2. package/assets/index.scss +1063 -0
  3. package/es/grid-component/ColumnsChoose.d.ts +1 -0
  4. package/es/grid-component/ColumnsChoose.js +63 -28
  5. package/es/grid-component/ColumnsGroup/ColumnsGroup.d.ts +12 -0
  6. package/es/grid-component/ColumnsGroup/ColumnsGroup.js +223 -0
  7. package/es/grid-component/ColumnsGroup/index.d.ts +1 -0
  8. package/es/grid-component/ColumnsGroup/index.js +1 -0
  9. package/es/grid-component/ConvertColumnTable.d.ts +7 -0
  10. package/es/grid-component/ConvertColumnTable.js +143 -0
  11. package/es/grid-component/EditableCell.js +1 -1
  12. package/es/grid-component/GridStyle.js +1 -1
  13. package/es/grid-component/InternalTable.d.ts +1 -0
  14. package/es/grid-component/InternalTable.js +150 -249
  15. package/es/grid-component/TableGrid.d.ts +4 -1
  16. package/es/grid-component/TableGrid.js +31 -70
  17. package/es/grid-component/hooks/{useColumns → columns}/index.d.ts +2 -2
  18. package/es/grid-component/hooks/{useColumns → columns}/index.js +20 -16
  19. package/es/grid-component/hooks/content/HeaderContent.d.ts +11 -0
  20. package/es/grid-component/hooks/content/HeaderContent.js +79 -0
  21. package/es/grid-component/hooks/content/TooltipContent.d.ts +13 -0
  22. package/es/grid-component/hooks/content/TooltipContent.js +74 -0
  23. package/es/grid-component/hooks/useColumns.d.ts +16 -0
  24. package/es/grid-component/hooks/useColumns.js +280 -0
  25. package/es/grid-component/hooks/utils.d.ts +26 -1
  26. package/es/grid-component/hooks/utils.js +331 -1
  27. package/es/grid-component/index.js +3 -1
  28. package/es/grid-component/styles.scss +365 -68
  29. package/es/grid-component/table/Grid.d.ts +2 -0
  30. package/es/grid-component/table/Grid.js +18 -6
  31. package/es/grid-component/table/GridEdit.d.ts +4 -1
  32. package/es/grid-component/table/GridEdit.js +941 -307
  33. package/es/grid-component/table/Group.d.ts +13 -0
  34. package/es/grid-component/table/Group.js +154 -0
  35. package/es/grid-component/type.d.ts +39 -2
  36. package/lib/grid-component/ColumnsChoose.d.ts +1 -0
  37. package/lib/grid-component/ColumnsChoose.js +62 -27
  38. package/lib/grid-component/ColumnsGroup/ColumnsGroup.d.ts +12 -0
  39. package/lib/grid-component/ColumnsGroup/ColumnsGroup.js +234 -0
  40. package/lib/grid-component/ColumnsGroup/index.d.ts +1 -0
  41. package/lib/grid-component/ColumnsGroup/index.js +16 -0
  42. package/lib/grid-component/ConvertColumnTable.d.ts +7 -0
  43. package/lib/grid-component/ConvertColumnTable.js +152 -0
  44. package/lib/grid-component/EditableCell.js +1 -1
  45. package/lib/grid-component/GridStyle.js +1 -1
  46. package/lib/grid-component/InternalTable.d.ts +1 -0
  47. package/lib/grid-component/InternalTable.js +144 -249
  48. package/lib/grid-component/TableGrid.d.ts +4 -1
  49. package/lib/grid-component/TableGrid.js +26 -68
  50. package/lib/grid-component/hooks/{useColumns → columns}/index.d.ts +2 -2
  51. package/lib/grid-component/hooks/{useColumns → columns}/index.js +20 -16
  52. package/lib/grid-component/hooks/content/HeaderContent.d.ts +11 -0
  53. package/lib/grid-component/hooks/content/HeaderContent.js +86 -0
  54. package/lib/grid-component/hooks/content/TooltipContent.d.ts +13 -0
  55. package/lib/grid-component/hooks/content/TooltipContent.js +81 -0
  56. package/lib/grid-component/hooks/useColumns.d.ts +16 -0
  57. package/lib/grid-component/hooks/useColumns.js +291 -0
  58. package/lib/grid-component/hooks/utils.d.ts +26 -1
  59. package/lib/grid-component/hooks/utils.js +347 -5
  60. package/lib/grid-component/index.js +2 -1
  61. package/lib/grid-component/styles.scss +365 -68
  62. package/lib/grid-component/table/Grid.d.ts +2 -0
  63. package/lib/grid-component/table/Grid.js +18 -6
  64. package/lib/grid-component/table/GridEdit.d.ts +4 -1
  65. package/lib/grid-component/table/GridEdit.js +939 -305
  66. package/lib/grid-component/table/Group.d.ts +13 -0
  67. package/lib/grid-component/table/Group.js +163 -0
  68. package/lib/grid-component/type.d.ts +39 -2
  69. package/package.json +106 -105
@@ -0,0 +1,695 @@
1
+ .react-hot-toast {
2
+ font-size: 1rem;
3
+ color: #ffffff;
4
+ letter-spacing: 0.14px;
5
+ box-shadow: 0px 4px 10px -4px rgba(58, 53, 65, 0.6);
6
+ border-radius: 6px;
7
+ }
8
+
9
+ .popup-context-menu {
10
+ min-width: 200px;
11
+ }
12
+
13
+ .ui-rc-table-wrapper p {
14
+ margin: 0;
15
+ }
16
+ .ui-rc-table-wrapper .ui-rc-table {
17
+ color: rgba(0, 0, 0, 0.8705882353);
18
+ }
19
+ .ui-rc-table-wrapper.table-none-column-select .ui-rc-table-cell.ui-rc-table-selection-column {
20
+ padding: 0 !important;
21
+ overflow: hidden !important;
22
+ border-inline-end: 0 !important;
23
+ }
24
+ .ui-rc-table-wrapper .ui-rc-table {
25
+ line-height: 20px;
26
+ }
27
+ .ui-rc-table-wrapper .ui-rc-table .ui-rc-table-cell .ui-rc-table-filter-column .ui-rc-dropdown-trigger.ui-rc-table-filter-trigger {
28
+ margin-left: 0;
29
+ }
30
+ .ui-rc-table-wrapper .ui-rc-table .ui-rc-table-cell.cell-group {
31
+ font-weight: 600;
32
+ background-color: #f5f5f5;
33
+ border-inline-end-color: transparent !important;
34
+ }
35
+ .ui-rc-table-wrapper .ui-rc-table .ui-rc-table-cell.cell-group-fixed {
36
+ font-weight: 600;
37
+ position: sticky;
38
+ text-align: left !important;
39
+ left: 0;
40
+ z-index: 15;
41
+ }
42
+ .ui-rc-table-wrapper .ui-rc-table-tbody-virtual .ui-rc-table-cell {
43
+ border-bottom: 1px solid #e0e0e0;
44
+ }
45
+ .ui-rc-table-wrapper .ui-rc-table-bordered .ui-rc-table-tbody-virtual .ui-rc-table-cell {
46
+ border-inline-end: 1px solid #e0e0e0;
47
+ }
48
+ .ui-rc-table-wrapper .ui-rc-table-tbody .ui-rc-table-row.ui-rc-table-row-selected > .ui-rc-table-cell {
49
+ background: #FEF2EF;
50
+ }
51
+ .ui-rc-table-wrapper .ui-rc-table-tbody .ui-rc-table-row > .ui-rc-table-cell.ui-rc-table-cell-row-hover {
52
+ background: #FBDED6;
53
+ }
54
+ .ui-rc-table-wrapper .ui-rc-table-tbody .ui-rc-table-row > .ui-rc-table-cell.ui-rc-cell-command {
55
+ padding: 5px 8px;
56
+ }
57
+ .ui-rc-table-wrapper .ui-rc-table-tbody .ui-rc-table-row > .ui-rc-table-cell.ui-rc-cell-command .ui-rc-cell-command__content {
58
+ display: flex;
59
+ gap: 5px;
60
+ overflow: hidden;
61
+ }
62
+ .ui-rc-table-wrapper .ui-rc-table-tbody .ui-rc-table-row:has(.indent-level-0) .ui-rc-table-cell.cell-number .ui-rc_content {
63
+ padding-left: 0px;
64
+ }
65
+ .ui-rc-table-wrapper .ui-rc-table-tbody .ui-rc-table-row:has(.indent-level-1) .ui-rc-table-cell.cell-number .ui-rc_content {
66
+ padding-left: 10px;
67
+ }
68
+ .ui-rc-table-wrapper .ui-rc-table-tbody .ui-rc-table-row:has(.indent-level-2) .ui-rc-table-cell.cell-number .ui-rc_content {
69
+ padding-left: 20px;
70
+ }
71
+ .ui-rc-table-wrapper .ui-rc-table-tbody .ui-rc-table-row:has(.indent-level-3) .ui-rc-table-cell.cell-number .ui-rc_content {
72
+ padding-left: 30px;
73
+ }
74
+ .ui-rc-table-wrapper .ui-rc-table-tbody .ui-rc-table-row:has(.indent-level-4) .ui-rc-table-cell.cell-number .ui-rc_content {
75
+ padding-left: 40px;
76
+ }
77
+ .ui-rc-table-wrapper .ui-rc-table-tbody .ui-rc-table-row:has(.indent-level-5) .ui-rc-table-cell.cell-number .ui-rc_content {
78
+ padding-left: 50px;
79
+ }
80
+ .ui-rc-table-wrapper .ui-rc-table-tbody .ui-rc-table-row:has(.indent-level-6) .ui-rc-table-cell.cell-number .ui-rc_content {
81
+ padding-left: 60px;
82
+ }
83
+ .ui-rc-table-wrapper .ui-rc-table-tbody .ui-rc-table-row:has(.indent-level-7) .ui-rc-table-cell.cell-number .ui-rc_content {
84
+ padding-left: 70px;
85
+ }
86
+ .ui-rc-table-wrapper .ui-rc-table-tbody .ui-rc-table-row:has(.indent-level-8) .ui-rc-table-cell.cell-number .ui-rc_content {
87
+ padding-left: 80px;
88
+ }
89
+ .ui-rc-table-wrapper .ui-rc-table-tbody .ui-rc-table-row:has(.indent-level-9) .ui-rc-table-cell.cell-number .ui-rc_content {
90
+ padding-left: 90px;
91
+ }
92
+ .ui-rc-table-wrapper .ui-rc-table-tbody .ui-rc-table-row:has(.indent-level-10) .ui-rc-table-cell.cell-number .ui-rc_content {
93
+ padding-left: 100px;
94
+ }
95
+ .ui-rc-table-wrapper .ui-rc-table-tbody .ui-rc-table-placeholder .ui-rc-table-cell {
96
+ padding-top: 0 !important;
97
+ padding-bottom: 0 !important;
98
+ }
99
+ .ui-rc-table-wrapper .ui-rc-table-tbody .ui-rc-table-placeholder .ui-rc-table-cell .ui-rc-table-expanded-row-fixed {
100
+ margin-top: 0 !important;
101
+ margin-bottom: 0 !important;
102
+ }
103
+ .ui-rc-table-wrapper .ui-rc-table-thead > tr > th,
104
+ .ui-rc-table-wrapper .ui-rc-table-thead > tr > td {
105
+ border-bottom: 1px solid #e0e0e0;
106
+ font-weight: 500;
107
+ }
108
+ .ui-rc-table-wrapper .ui-rc-table-summary .ui-rc-table-cell {
109
+ background-color: #fafafa;
110
+ height: 39px;
111
+ font-weight: 600;
112
+ }
113
+ .ui-rc-table-wrapper .ui-rc-table-summary > tr > td {
114
+ border-bottom: 1px solid #e0e0e0;
115
+ }
116
+ .ui-rc-table-wrapper .ui-rc-table-bordered .ui-rc-table-tbody-virtual .ui-rc-table-cell.ui-rc-table-cell-fix-right-first:before {
117
+ border-inline-start: 1px solid #e0e0e0;
118
+ }
119
+ .ui-rc-table-wrapper .ui-rc-table.ui-rc-table-bordered > .ui-rc-table-container {
120
+ border-inline-start: 1px solid #e0e0e0;
121
+ border-top: 1px solid #e0e0e0;
122
+ }
123
+ .ui-rc-table-wrapper .ui-rc-table.ui-rc-table-bordered > .ui-rc-table-container::after {
124
+ border-inline-end: 1px solid #e0e0e0;
125
+ }
126
+ .ui-rc-table-wrapper .ui-rc-table.ui-rc-table-bordered > .ui-rc-table-container > .ui-rc-table-content > table > thead > tr:not(:last-child) > th,
127
+ .ui-rc-table-wrapper .ui-rc-table.ui-rc-table-bordered > .ui-rc-table-container > .ui-rc-table-header > table > thead > tr:not(:last-child) > th,
128
+ .ui-rc-table-wrapper .ui-rc-table.ui-rc-table-bordered > .ui-rc-table-container > .ui-rc-table-body > table > thead > tr:not(:last-child) > th,
129
+ .ui-rc-table-wrapper .ui-rc-table.ui-rc-table-bordered > .ui-rc-table-container > .ui-rc-table-summary > table > thead > tr:not(:last-child) > th {
130
+ border-bottom: 1px solid #e0e0e0;
131
+ }
132
+ .ui-rc-table-wrapper .ui-rc-table.ui-rc-table-bordered > .ui-rc-table-container > .ui-rc-table-content > table > thead > tr > th,
133
+ .ui-rc-table-wrapper .ui-rc-table.ui-rc-table-bordered > .ui-rc-table-container > .ui-rc-table-content > table > thead > tr > td,
134
+ .ui-rc-table-wrapper .ui-rc-table.ui-rc-table-bordered > .ui-rc-table-container > .ui-rc-table-content > table > tbody > tr > th,
135
+ .ui-rc-table-wrapper .ui-rc-table.ui-rc-table-bordered > .ui-rc-table-container > .ui-rc-table-content > table > tbody > tr > td,
136
+ .ui-rc-table-wrapper .ui-rc-table.ui-rc-table-bordered > .ui-rc-table-container > .ui-rc-table-content > table > tfoot > tr > th,
137
+ .ui-rc-table-wrapper .ui-rc-table.ui-rc-table-bordered > .ui-rc-table-container > .ui-rc-table-content > table > tfoot > tr > td,
138
+ .ui-rc-table-wrapper .ui-rc-table.ui-rc-table-bordered > .ui-rc-table-container > .ui-rc-table-header > table > thead > tr > th,
139
+ .ui-rc-table-wrapper .ui-rc-table.ui-rc-table-bordered > .ui-rc-table-container > .ui-rc-table-header > table > thead > tr > td,
140
+ .ui-rc-table-wrapper .ui-rc-table.ui-rc-table-bordered > .ui-rc-table-container > .ui-rc-table-header > table > tbody > tr > th,
141
+ .ui-rc-table-wrapper .ui-rc-table.ui-rc-table-bordered > .ui-rc-table-container > .ui-rc-table-header > table > tbody > tr > td,
142
+ .ui-rc-table-wrapper .ui-rc-table.ui-rc-table-bordered > .ui-rc-table-container > .ui-rc-table-header > table > tfoot > tr > th,
143
+ .ui-rc-table-wrapper .ui-rc-table.ui-rc-table-bordered > .ui-rc-table-container > .ui-rc-table-header > table > tfoot > tr > td,
144
+ .ui-rc-table-wrapper .ui-rc-table.ui-rc-table-bordered > .ui-rc-table-container > .ui-rc-table-body > table > thead > tr > th,
145
+ .ui-rc-table-wrapper .ui-rc-table.ui-rc-table-bordered > .ui-rc-table-container > .ui-rc-table-body > table > thead > tr > td,
146
+ .ui-rc-table-wrapper .ui-rc-table.ui-rc-table-bordered > .ui-rc-table-container > .ui-rc-table-body > table > tbody > tr > th,
147
+ .ui-rc-table-wrapper .ui-rc-table.ui-rc-table-bordered > .ui-rc-table-container > .ui-rc-table-body > table > tbody > tr > td,
148
+ .ui-rc-table-wrapper .ui-rc-table.ui-rc-table-bordered > .ui-rc-table-container > .ui-rc-table-body > table > tfoot > tr > th,
149
+ .ui-rc-table-wrapper .ui-rc-table.ui-rc-table-bordered > .ui-rc-table-container > .ui-rc-table-body > table > tfoot > tr > td,
150
+ .ui-rc-table-wrapper .ui-rc-table.ui-rc-table-bordered > .ui-rc-table-container > .ui-rc-table-summary > table > thead > tr > th,
151
+ .ui-rc-table-wrapper .ui-rc-table.ui-rc-table-bordered > .ui-rc-table-container > .ui-rc-table-summary > table > thead > tr > td,
152
+ .ui-rc-table-wrapper .ui-rc-table.ui-rc-table-bordered > .ui-rc-table-container > .ui-rc-table-summary > table > tbody > tr > th,
153
+ .ui-rc-table-wrapper .ui-rc-table.ui-rc-table-bordered > .ui-rc-table-container > .ui-rc-table-summary > table > tbody > tr > td,
154
+ .ui-rc-table-wrapper .ui-rc-table.ui-rc-table-bordered > .ui-rc-table-container > .ui-rc-table-summary > table > tfoot > tr > th,
155
+ .ui-rc-table-wrapper .ui-rc-table.ui-rc-table-bordered > .ui-rc-table-container > .ui-rc-table-summary > table > tfoot > tr > td {
156
+ border-inline-end: 1px solid #e0e0e0;
157
+ }
158
+ .ui-rc-table-wrapper .ui-rc-table.ui-rc-table-bordered > .ui-rc-table-title {
159
+ border: 1px solid #e0e0e0;
160
+ border-bottom: 0;
161
+ }
162
+ .ui-rc-table-wrapper .ui-rc-table.ui-rc-table-ping-right:not(.ui-rc-table-has-fix-right) .ui-rc-table-container::after {
163
+ box-shadow: inset -10px 0 8px -8px rgba(5, 5, 5, 0.09);
164
+ }
165
+ .ui-rc-table-wrapper .ui-rc-table-ping-left .ui-rc-table-cell-fix-left-first::after,
166
+ .ui-rc-table-wrapper .ui-rc-table-ping-left .ui-rc-table-cell-fix-left-last::after {
167
+ box-shadow: inset 10px 0 8px -8px rgba(5, 5, 5, 0.09);
168
+ }
169
+ .ui-rc-table-wrapper .ui-rc-table-ping-right .ui-rc-table-cell-fix-right-first::after,
170
+ .ui-rc-table-wrapper .ui-rc-table-ping-right .ui-rc-table-cell-fix-right-last::after {
171
+ box-shadow: inset -10px 0 8px -8px rgba(5, 5, 5, 0.09);
172
+ }
173
+ .ui-rc-table-wrapper .ui-rc-table.ui-rc-table-bordered > .ui-rc-table-container > .ui-rc-table-header > table > thead > tr > .ui-rc-table-cell-fix-right-first::before,
174
+ .ui-rc-table-wrapper .ui-rc-table.ui-rc-table-bordered > .ui-rc-table-container > .ui-rc-table-summary > table > tfoot > tr > .ui-rc-table-cell-fix-right-first::before {
175
+ border-inline-start: 1px solid #e0e0e0;
176
+ content: "";
177
+ position: absolute;
178
+ inset-block: 0;
179
+ inset-inline-start: -1px;
180
+ }
181
+
182
+ .ui-rc-table-wrapper.grid-editable .ui-rc-table .ui-rc-table-tbody .rc-ui-cell-editable {
183
+ overflow: unset;
184
+ display: flex;
185
+ padding: 0;
186
+ }
187
+ .ui-rc-table-wrapper.grid-editable .ui-rc-table .ui-rc-table-tbody .rc-ui-cell-editable .ui-rc-table-row-expand-icon {
188
+ top: 8px;
189
+ left: 8px;
190
+ }
191
+ .ui-rc-table-wrapper.grid-editable .ui-rc-table .ui-rc-table-tbody .rc-ui-cell-editable.cell-editable.cell-border-top {
192
+ border-bottom: 1px solid #0550C5;
193
+ }
194
+ .ui-rc-table-wrapper.grid-editable .ui-rc-table .ui-rc-table-tbody .rc-ui-cell-editable.cell-editable.cell-border-bottom {
195
+ border-bottom: 1px solid #0550C5;
196
+ }
197
+ .ui-rc-table-wrapper.grid-editable .ui-rc-table .ui-rc-table-tbody .rc-ui-cell-editable.cell-editable.cell-paste-border-bottom {
198
+ border-bottom: 1px dashed #949494;
199
+ }
200
+ .ui-rc-table-wrapper.grid-editable .ui-rc-table .ui-rc-table-tbody .rc-ui-cell-editable.cell-editable.cell-border-left {
201
+ border-inline-end: 1px solid #0550C5;
202
+ }
203
+ .ui-rc-table-wrapper.grid-editable .ui-rc-table .ui-rc-table-tbody .rc-ui-cell-editable.cell-editable.cell-paste-border-left {
204
+ border-inline-end: 1px dashed #949494;
205
+ }
206
+ .ui-rc-table-wrapper.grid-editable .ui-rc-table .ui-rc-table-tbody .rc-ui-cell-editable.cell-editable.cell-border-right {
207
+ border-inline-end: 1px solid #0550C5;
208
+ }
209
+ .ui-rc-table-wrapper.grid-editable .ui-rc-table .ui-rc-table-tbody .rc-ui-cell-editable.cell-editable.cell-paste-border-right {
210
+ border-inline-end: 1px dashed #949494;
211
+ }
212
+ .ui-rc-table-wrapper.grid-editable .ui-rc-table .ui-rc-table-tbody .rc-ui-cell-editable.cell-editable.ui-rc-table-cell-fix-right.cell-border-end {
213
+ z-index: 3;
214
+ }
215
+ .ui-rc-table-wrapper.grid-editable .ui-rc-table .ui-rc-table-tbody .rc-ui-cell-editable.cell-editable.cell-border-end {
216
+ z-index: 1;
217
+ }
218
+ .ui-rc-table-wrapper.grid-editable .ui-rc-table .ui-rc-table-tbody .rc-ui-cell-editable.cell-editable.ui-rc-table-cell-fix-right-first.cell-border-end {
219
+ z-index: 3;
220
+ }
221
+ .ui-rc-table-wrapper.grid-editable .ui-rc-table .ui-rc-table-tbody .rc-ui-cell-editable.cell-editable.ui-rc-table-cell-fix-right-first.next-cell-border-left::before {
222
+ border-inline-start: 1px solid #0550C5;
223
+ }
224
+ .ui-rc-table-wrapper.grid-editable .ui-rc-table .ui-rc-table-tbody .rc-ui-cell-editable.cell-editable.ui-rc-table-cell-fix-right-first.next-cell-paste-border-left::before {
225
+ border-inline-start: 1px dashed #949494;
226
+ }
227
+ .ui-rc-table-wrapper.grid-editable .ui-rc-table .ui-rc-table-tbody .rc-ui-cell-editable.cell-editable.ui-rc-table-cell-fix-right-first.fixed-cell-border-left::before {
228
+ border-inline-start: 1px solid #0550C5;
229
+ }
230
+ .ui-rc-table-wrapper.grid-editable .ui-rc-table .ui-rc-table-tbody .rc-ui-cell-editable.cell-editable.ui-rc-table-cell-fix-right-first.fixed-cell-paste-border-left::before {
231
+ border-inline-start: 1px dashed #949494;
232
+ }
233
+ .ui-rc-table-wrapper.grid-editable .ui-rc-table .ui-rc-table-tbody .rc-ui-cell-editable.cell-editable.ui-rc-table-cell-fix-left-last.cell-border-end {
234
+ z-index: 3;
235
+ }
236
+ .ui-rc-table-wrapper.grid-editable .ui-rc-table.ui-rc-table-ping-left .ui-rc-table-tbody .rc-ui-cell-editable.cell-editable.ui-rc-table-cell-fix-left-last.cell-border-left {
237
+ border-inline-end: 1px solid #e0e0e0;
238
+ }
239
+ .ui-rc-table-wrapper.grid-editable .ui-rc-table.ui-rc-table-ping-left:not(.ui-rc-table.ui-rc-table-ping-right) .ui-rc-table-tbody .rc-ui-cell-editable.cell-editable.ui-rc-table-cell-fix-right {
240
+ z-index: 0;
241
+ }
242
+ .ui-rc-table-wrapper.grid-editable .ui-rc-table.ui-rc-table-ping-left:not(.ui-rc-table.ui-rc-table-ping-right) .ui-rc-table-tbody .rc-ui-cell-editable.cell-editable.ui-rc-table-cell-fix-right.cell-border-end {
243
+ z-index: 3;
244
+ }
245
+ .ui-rc-table-wrapper.grid-editable .ui-rc-table.ui-rc-table-ping-right .ui-rc-table-tbody .rc-ui-cell-editable.cell-editable.ui-rc-table-cell-fix-right-first.next-cell-border-left::before {
246
+ border-inline-start: 1px solid #e0e0e0;
247
+ }
248
+ .ui-rc-table-wrapper.grid-editable .ui-rc-table.ui-rc-table-ping-right .ui-rc-table-tbody .rc-ui-cell-editable.cell-editable.ui-rc-table-cell-fix-left-last.cell-border-end {
249
+ z-index: 3;
250
+ }
251
+ .ui-rc-table-wrapper.grid-editable .ui-rc-table.ui-rc-table-ping-right .ui-rc-table-tbody .rc-ui-cell-editable.cell-border-end {
252
+ z-index: 1;
253
+ }
254
+ .ui-rc-table-wrapper.grid-editable .ui-rc-table.ui-rc-table-small .ui-rc-table-selection-column {
255
+ padding: 6px 8px;
256
+ }
257
+ .ui-rc-table-wrapper.grid-editable .ui-rc_cell-content {
258
+ user-select: none;
259
+ padding: 7px 8px;
260
+ overflow: hidden;
261
+ }
262
+ .ui-rc-table-wrapper.grid-editable .ui-rc_cell-content .ui-rc_content {
263
+ width: 100%;
264
+ }
265
+ .ui-rc-table-wrapper.grid-editable .ui-rc_cell-content .dragging-point {
266
+ width: 10px;
267
+ height: 10px;
268
+ position: absolute;
269
+ cursor: crosshair;
270
+ right: 0;
271
+ bottom: 0;
272
+ }
273
+ .ui-rc-table-wrapper.grid-editable .ui-rc_cell-content .dragging-point .dot-point {
274
+ position: absolute;
275
+ width: 8px;
276
+ height: 8px;
277
+ border-radius: 6px;
278
+ background-color: #0550C5;
279
+ bottom: -4px;
280
+ right: -4px;
281
+ }
282
+ .ui-rc-table-wrapper.grid-editable .ui-rc_cell-content.selected {
283
+ background-color: #E6EFFD;
284
+ }
285
+ .ui-rc-table-wrapper.grid-editable .ui-rc_cell-content--index.focus {
286
+ background-color: #CEDBEF;
287
+ }
288
+ .ui-rc-table-wrapper.grid-editable .ui-rc_cell-content--index.selected {
289
+ background-color: #0550C5;
290
+ color: #fff;
291
+ }
292
+ .ui-rc-table-wrapper.grid-editable .ui-rc-table-tbody .ui-rc-table-row.ui-rc-table-row-selected > .ui-rc-table-cell {
293
+ background: #FEF2EF;
294
+ }
295
+ .ui-rc-table-wrapper.grid-editable .ui-rc-table-tbody .ui-rc-table-row > .ui-rc-table-cell.ui-rc-table-cell-row-hover {
296
+ background: #FBDED6;
297
+ }
298
+ .ui-rc-table-wrapper.grid-editable .ui-rc-table-tbody .ui-rc-table-row .ui-rc-table-cell .ui-rc-table-row-indent {
299
+ position: absolute;
300
+ }
301
+ .ui-rc-table-wrapper.grid-editable .ui-rc-table-tbody .ui-rc-table-row .ui-rc-table-cell .ui-rc-table-row-indent.indent-level-1 {
302
+ padding-left: 25px;
303
+ }
304
+ .ui-rc-table-wrapper.grid-editable .ui-rc-table-tbody .ui-rc-table-row .ui-rc-table-cell .ui-rc-table-row-indent.indent-level-2 {
305
+ padding-left: 50px;
306
+ }
307
+ .ui-rc-table-wrapper.grid-editable .ui-rc-table-tbody .ui-rc-table-row .ui-rc-table-cell .ui-rc-table-row-indent.indent-level-3 {
308
+ padding-left: 75px;
309
+ }
310
+ .ui-rc-table-wrapper.grid-editable .ui-rc-table-tbody .ui-rc-table-row .ui-rc-table-cell .ui-rc-table-row-indent.indent-level-4 {
311
+ padding-left: 100px;
312
+ }
313
+ .ui-rc-table-wrapper.grid-editable .ui-rc-table-tbody .ui-rc-table-row .ui-rc-table-cell .ui-rc-table-row-indent.indent-level-5 {
314
+ padding-left: 125px;
315
+ }
316
+ .ui-rc-table-wrapper.grid-editable .ui-rc-table-tbody .ui-rc-table-row .ui-rc-table-cell .ui-rc-table-row-indent.indent-level-6 {
317
+ padding-left: 150px;
318
+ }
319
+ .ui-rc-table-wrapper.grid-editable .ui-rc-table-tbody .ui-rc-table-row .ui-rc-table-cell .ui-rc-table-row-indent.indent-level-7 {
320
+ padding-left: 175px;
321
+ }
322
+ .ui-rc-table-wrapper.grid-editable .ui-rc-table-tbody .ui-rc-table-row .ui-rc-table-cell .ui-rc-table-row-indent.indent-level-8 {
323
+ padding-left: 200px;
324
+ }
325
+ .ui-rc-table-wrapper.grid-editable .ui-rc-table-tbody .ui-rc-table-row .ui-rc-table-cell .ui-rc-table-row-indent.indent-level-9 {
326
+ padding-left: 225px;
327
+ }
328
+ .ui-rc-table-wrapper.grid-editable .ui-rc-table-tbody .ui-rc-table-row .ui-rc-table-cell .ui-rc-table-row-indent.indent-level-10 {
329
+ padding-left: 250px;
330
+ }
331
+ .ui-rc-table-wrapper.grid-editable .ui-rc-table-tbody .ui-rc-table-row .ui-rc-table-cell:has(.indent-level-0) .ui-rc-table-row-expand-icon {
332
+ position: absolute;
333
+ padding-left: 0px;
334
+ }
335
+ .ui-rc-table-wrapper.grid-editable .ui-rc-table-tbody .ui-rc-table-row .ui-rc-table-cell:has(.indent-level-0) .ui-rc_cell-content {
336
+ padding-left: 8px;
337
+ }
338
+ .ui-rc-table-wrapper.grid-editable .ui-rc-table-tbody .ui-rc-table-row .ui-rc-table-cell:has(.indent-level-1) .ui-rc-table-row-expand-icon {
339
+ position: absolute;
340
+ padding-left: 10px;
341
+ }
342
+ .ui-rc-table-wrapper.grid-editable .ui-rc-table-tbody .ui-rc-table-row .ui-rc-table-cell:has(.indent-level-1) .ui-rc_cell-content {
343
+ padding-left: 33px;
344
+ }
345
+ .ui-rc-table-wrapper.grid-editable .ui-rc-table-tbody .ui-rc-table-row .ui-rc-table-cell:has(.indent-level-2) .ui-rc-table-row-expand-icon {
346
+ position: absolute;
347
+ padding-left: 20px;
348
+ }
349
+ .ui-rc-table-wrapper.grid-editable .ui-rc-table-tbody .ui-rc-table-row .ui-rc-table-cell:has(.indent-level-2) .ui-rc_cell-content {
350
+ padding-left: 58px;
351
+ }
352
+ .ui-rc-table-wrapper.grid-editable .ui-rc-table-tbody .ui-rc-table-row .ui-rc-table-cell:has(.indent-level-3) .ui-rc-table-row-expand-icon {
353
+ position: absolute;
354
+ padding-left: 30px;
355
+ }
356
+ .ui-rc-table-wrapper.grid-editable .ui-rc-table-tbody .ui-rc-table-row .ui-rc-table-cell:has(.indent-level-3) .ui-rc_cell-content {
357
+ padding-left: 83px;
358
+ }
359
+ .ui-rc-table-wrapper.grid-editable .ui-rc-table-tbody .ui-rc-table-row .ui-rc-table-cell:has(.indent-level-4) .ui-rc-table-row-expand-icon {
360
+ position: absolute;
361
+ padding-left: 40px;
362
+ }
363
+ .ui-rc-table-wrapper.grid-editable .ui-rc-table-tbody .ui-rc-table-row .ui-rc-table-cell:has(.indent-level-4) .ui-rc_cell-content {
364
+ padding-left: 108px;
365
+ }
366
+ .ui-rc-table-wrapper.grid-editable .ui-rc-table-tbody .ui-rc-table-row .ui-rc-table-cell:has(.indent-level-5) .ui-rc-table-row-expand-icon {
367
+ position: absolute;
368
+ padding-left: 50px;
369
+ }
370
+ .ui-rc-table-wrapper.grid-editable .ui-rc-table-tbody .ui-rc-table-row .ui-rc-table-cell:has(.indent-level-5) .ui-rc_cell-content {
371
+ padding-left: 133px;
372
+ }
373
+ .ui-rc-table-wrapper.grid-editable .ui-rc-table-tbody .ui-rc-table-row .ui-rc-table-cell:has(.indent-level-6) .ui-rc-table-row-expand-icon {
374
+ position: absolute;
375
+ padding-left: 60px;
376
+ }
377
+ .ui-rc-table-wrapper.grid-editable .ui-rc-table-tbody .ui-rc-table-row .ui-rc-table-cell:has(.indent-level-6) .ui-rc_cell-content {
378
+ padding-left: 158px;
379
+ }
380
+ .ui-rc-table-wrapper.grid-editable .ui-rc-table-tbody .ui-rc-table-row .ui-rc-table-cell:has(.indent-level-7) .ui-rc-table-row-expand-icon {
381
+ position: absolute;
382
+ padding-left: 70px;
383
+ }
384
+ .ui-rc-table-wrapper.grid-editable .ui-rc-table-tbody .ui-rc-table-row .ui-rc-table-cell:has(.indent-level-7) .ui-rc_cell-content {
385
+ padding-left: 183px;
386
+ }
387
+ .ui-rc-table-wrapper.grid-editable .ui-rc-table-tbody .ui-rc-table-row .ui-rc-table-cell:has(.indent-level-8) .ui-rc-table-row-expand-icon {
388
+ position: absolute;
389
+ padding-left: 80px;
390
+ }
391
+ .ui-rc-table-wrapper.grid-editable .ui-rc-table-tbody .ui-rc-table-row .ui-rc-table-cell:has(.indent-level-8) .ui-rc_cell-content {
392
+ padding-left: 208px;
393
+ }
394
+ .ui-rc-table-wrapper.grid-editable .ui-rc-table-tbody .ui-rc-table-row .ui-rc-table-cell:has(.indent-level-9) .ui-rc-table-row-expand-icon {
395
+ position: absolute;
396
+ padding-left: 90px;
397
+ }
398
+ .ui-rc-table-wrapper.grid-editable .ui-rc-table-tbody .ui-rc-table-row .ui-rc-table-cell:has(.indent-level-9) .ui-rc_cell-content {
399
+ padding-left: 233px;
400
+ }
401
+ .ui-rc-table-wrapper.grid-editable .ui-rc-table-tbody .ui-rc-table-row .ui-rc-table-cell:has(.indent-level-10) .ui-rc-table-row-expand-icon {
402
+ position: absolute;
403
+ padding-left: 100px;
404
+ }
405
+ .ui-rc-table-wrapper.grid-editable .ui-rc-table-tbody .ui-rc-table-row .ui-rc-table-cell:has(.indent-level-10) .ui-rc_cell-content {
406
+ padding-left: 258px;
407
+ }
408
+ .ui-rc-table-wrapper.grid-editable .ui-rc-table-tbody .ui-rc-table-row .ui-rc-table-cell:has(.indent-level-0) .ui-rc-table-row-expand-icon {
409
+ position: absolute;
410
+ left: 8px !important;
411
+ }
412
+ .ui-rc-table-wrapper.grid-editable .ui-rc-table-tbody .ui-rc-table-row .ui-rc-table-cell:has(.indent-level-0) .ui-rc_cell-content {
413
+ padding-left: 33px;
414
+ }
415
+ .ui-rc-table-wrapper.grid-editable .ui-rc-table-tbody .ui-rc-table-row .ui-rc-table-cell:has(.indent-level-1) .ui-rc-table-row-expand-icon {
416
+ position: absolute;
417
+ left: 33px !important;
418
+ }
419
+ .ui-rc-table-wrapper.grid-editable .ui-rc-table-tbody .ui-rc-table-row .ui-rc-table-cell:has(.indent-level-1) .ui-rc_cell-content {
420
+ padding-left: 58px;
421
+ }
422
+ .ui-rc-table-wrapper.grid-editable .ui-rc-table-tbody .ui-rc-table-row .ui-rc-table-cell:has(.indent-level-2) .ui-rc-table-row-expand-icon {
423
+ position: absolute;
424
+ left: 58px !important;
425
+ }
426
+ .ui-rc-table-wrapper.grid-editable .ui-rc-table-tbody .ui-rc-table-row .ui-rc-table-cell:has(.indent-level-2) .ui-rc_cell-content {
427
+ padding-left: 83px;
428
+ }
429
+ .ui-rc-table-wrapper.grid-editable .ui-rc-table-tbody .ui-rc-table-row .ui-rc-table-cell:has(.indent-level-3) .ui-rc-table-row-expand-icon {
430
+ position: absolute;
431
+ left: 83px !important;
432
+ }
433
+ .ui-rc-table-wrapper.grid-editable .ui-rc-table-tbody .ui-rc-table-row .ui-rc-table-cell:has(.indent-level-3) .ui-rc_cell-content {
434
+ padding-left: 108px;
435
+ }
436
+ .ui-rc-table-wrapper.grid-editable .ui-rc-table-tbody .ui-rc-table-row .ui-rc-table-cell:has(.indent-level-4) .ui-rc-table-row-expand-icon {
437
+ position: absolute;
438
+ left: 108px !important;
439
+ }
440
+ .ui-rc-table-wrapper.grid-editable .ui-rc-table-tbody .ui-rc-table-row .ui-rc-table-cell:has(.indent-level-4) .ui-rc_cell-content {
441
+ padding-left: 133px;
442
+ }
443
+ .ui-rc-table-wrapper.grid-editable .ui-rc-table-tbody .ui-rc-table-row .ui-rc-table-cell:has(.indent-level-5) .ui-rc-table-row-expand-icon {
444
+ position: absolute;
445
+ left: 133px !important;
446
+ }
447
+ .ui-rc-table-wrapper.grid-editable .ui-rc-table-tbody .ui-rc-table-row .ui-rc-table-cell:has(.indent-level-5) .ui-rc_cell-content {
448
+ padding-left: 158px;
449
+ }
450
+ .ui-rc-table-wrapper.grid-editable .ui-rc-table-tbody .ui-rc-table-row .ui-rc-table-cell:has(.indent-level-6) .ui-rc-table-row-expand-icon {
451
+ position: absolute;
452
+ left: 158px !important;
453
+ }
454
+ .ui-rc-table-wrapper.grid-editable .ui-rc-table-tbody .ui-rc-table-row .ui-rc-table-cell:has(.indent-level-6) .ui-rc_cell-content {
455
+ padding-left: 183px;
456
+ }
457
+ .ui-rc-table-wrapper.grid-editable .ui-rc-table-tbody .ui-rc-table-row .ui-rc-table-cell:has(.indent-level-7) .ui-rc-table-row-expand-icon {
458
+ position: absolute;
459
+ left: 183px !important;
460
+ }
461
+ .ui-rc-table-wrapper.grid-editable .ui-rc-table-tbody .ui-rc-table-row .ui-rc-table-cell:has(.indent-level-7) .ui-rc_cell-content {
462
+ padding-left: 208px;
463
+ }
464
+ .ui-rc-table-wrapper.grid-editable .ui-rc-table-tbody .ui-rc-table-row .ui-rc-table-cell:has(.indent-level-8) .ui-rc-table-row-expand-icon {
465
+ position: absolute;
466
+ left: 208px !important;
467
+ }
468
+ .ui-rc-table-wrapper.grid-editable .ui-rc-table-tbody .ui-rc-table-row .ui-rc-table-cell:has(.indent-level-8) .ui-rc_cell-content {
469
+ padding-left: 233px;
470
+ }
471
+ .ui-rc-table-wrapper.grid-editable .ui-rc-table-tbody .ui-rc-table-row .ui-rc-table-cell:has(.indent-level-9) .ui-rc-table-row-expand-icon {
472
+ position: absolute;
473
+ left: 233px !important;
474
+ }
475
+ .ui-rc-table-wrapper.grid-editable .ui-rc-table-tbody .ui-rc-table-row .ui-rc-table-cell:has(.indent-level-9) .ui-rc_cell-content {
476
+ padding-left: 258px;
477
+ }
478
+ .ui-rc-table-wrapper.grid-editable .ui-rc-table-tbody .ui-rc-table-row .ui-rc-table-cell:has(.indent-level-10) .ui-rc-table-row-expand-icon {
479
+ position: absolute;
480
+ left: 258px !important;
481
+ }
482
+ .ui-rc-table-wrapper.grid-editable .ui-rc-table-tbody .ui-rc-table-row .ui-rc-table-cell:has(.indent-level-10) .ui-rc_cell-content {
483
+ padding-left: 283px;
484
+ }
485
+ .ui-rc-table-wrapper.grid-editable .ui-rc-table-tbody .ui-rc-table-cell.ui-rc-table-cell-ellipsis .ui-rc_cell-content .ui-rc_content {
486
+ text-overflow: ellipsis;
487
+ text-decoration: none;
488
+ transition: 0.3s;
489
+ white-space: nowrap;
490
+ overflow: hidden;
491
+ }
492
+ .ui-rc-table-wrapper.grid-editable .ui-rc-table-tbody .ui-rc-table-cell.cell-editing:focus-visible {
493
+ outline: none;
494
+ }
495
+ .ui-rc-table-wrapper.grid-editable .ui-rc-table-tbody .ui-rc-table-cell.cell-editing .ant-form-item,
496
+ .ui-rc-table-wrapper.grid-editable .ui-rc-table-tbody .ui-rc-table-cell.cell-editing .ant-row.ant-form-item-row,
497
+ .ui-rc-table-wrapper.grid-editable .ui-rc-table-tbody .ui-rc-table-cell.cell-editing .ant-col.ant-form-item-control,
498
+ .ui-rc-table-wrapper.grid-editable .ui-rc-table-tbody .ui-rc-table-cell.cell-editing .ant-form-item-control-input,
499
+ .ui-rc-table-wrapper.grid-editable .ui-rc-table-tbody .ui-rc-table-cell.cell-editing .ant-form-item-control-input-content,
500
+ .ui-rc-table-wrapper.grid-editable .ui-rc-table-tbody .ui-rc-table-cell.cell-editing .ant-input {
501
+ height: 100%;
502
+ }
503
+ .ui-rc-table-wrapper.grid-editable .ui-rc-table-tbody .ui-rc-table-cell.cell-editing .ant-form-item:focus-visible,
504
+ .ui-rc-table-wrapper.grid-editable .ui-rc-table-tbody .ui-rc-table-cell.cell-editing .ant-row.ant-form-item-row:focus-visible,
505
+ .ui-rc-table-wrapper.grid-editable .ui-rc-table-tbody .ui-rc-table-cell.cell-editing .ant-col.ant-form-item-control:focus-visible,
506
+ .ui-rc-table-wrapper.grid-editable .ui-rc-table-tbody .ui-rc-table-cell.cell-editing .ant-form-item-control-input:focus-visible,
507
+ .ui-rc-table-wrapper.grid-editable .ui-rc-table-tbody .ui-rc-table-cell.cell-editing .ant-form-item-control-input-content:focus-visible,
508
+ .ui-rc-table-wrapper.grid-editable .ui-rc-table-tbody .ui-rc-table-cell.cell-editing .ant-input:focus-visible {
509
+ outline: none;
510
+ }
511
+ .ui-rc-table-wrapper.grid-editable .ui-rc-table-tbody .ui-rc-table-cell.cell-editing .ui-rc-checkbox-wrapper .ui-rc-checkbox {
512
+ background-color: red;
513
+ }
514
+ .ui-rc-table-wrapper.grid-editable .ui-rc-table-tbody .ui-rc-table-cell.cell-editing .ui-rc-checkbox-wrapper .ui-rc-checkbox-input:focus-visible {
515
+ outline: none;
516
+ }
517
+ .ui-rc-table-wrapper.grid-editable .ui-rc-table-tbody .ui-rc-table-cell.cell-editing .ant-input, .ui-rc-table-wrapper.grid-editable .ui-rc-table-tbody .ui-rc-table-cell.cell-editing .ant-picker {
518
+ border-radius: 0;
519
+ }
520
+ .ui-rc-table-wrapper.grid-editable .ui-rc-table-tbody .ui-rc-table-cell.cell-editing .ant-color-picker-trigger {
521
+ height: 100%;
522
+ border-radius: 0;
523
+ }
524
+ .ui-rc-table-wrapper.grid-editable .ui-rc-table-tbody .ui-rc-table-cell.cell-editing .ant-color-picker-trigger .ant-color-picker-color-block {
525
+ height: 100%;
526
+ width: 100%;
527
+ }
528
+ .ui-rc-table-wrapper.grid-editable .ui-rc-table-tbody .ui-rc-table-cell.cell-editing .ui-rc-table-select-single .ui-rc-table-select-selector,
529
+ .ui-rc-table-wrapper.grid-editable .ui-rc-table-tbody .ui-rc-table-cell.cell-editing .ui-rc-select-single .ui-rc-select-selector {
530
+ border-radius: 0;
531
+ }
532
+ .ui-rc-table-wrapper.grid-editable .ui-rc-table-tbody .ui-rc-table-cell.cell-editing .ui-rc-table-select-single:not(.ui-rc-table-select-customize-input) .ui-rc-table-select-selector .ui-rc-table-select-selection-search-input {
533
+ height: auto;
534
+ }
535
+ .ui-rc-table-wrapper.grid-editable .ui-rc-table-tbody .ui-rc-table-cell.cell-editable:focus-visible {
536
+ outline: none;
537
+ }
538
+ .ui-rc-table-wrapper.grid-editable .ui-rc-table-tbody .ui-rc-table-cell .ui-rc-table-cell-content {
539
+ display: flex;
540
+ height: 100%;
541
+ }
542
+ .ui-rc-table-wrapper.grid-editable .ui-rc-table-tbody .ui-rc-table-cell .ui-rc_cell-content,
543
+ .ui-rc-table-wrapper.grid-editable .ui-rc-table-tbody .ui-rc-table-cell .ui-rc-table-cell-content {
544
+ flex: 1;
545
+ }
546
+ .ui-rc-table-wrapper.grid-editable .ui-rc-table-tbody .ui-rc-table-cell .ui-rc_content:has(.ant-color-picker-trigger) {
547
+ padding: 1px 8px;
548
+ }
549
+
550
+ .ui-rc-checkbox-indeterminate:hover .ui-rc-checkbox-inner {
551
+ border-color: #eb4619 !important;
552
+ }
553
+ .ui-rc-checkbox-indeterminate .ui-rc-checkbox-inner:after {
554
+ background-color: #eb4619;
555
+ }
556
+
557
+ .ui-rc-checkbox .ui-rc-checkbox-input:focus-visible + .ui-rc-checkbox-inner {
558
+ outline: none;
559
+ }
560
+
561
+ .ui-rc-checkbox.ui-rc-checkbox-checked:hover .ui-rc-checkbox-inner {
562
+ background-color: #eb4619;
563
+ border-color: #eb4619;
564
+ }
565
+ .ui-rc-checkbox.ui-rc-checkbox-checked .ui-rc-checkbox-inner {
566
+ background-color: #eb4619;
567
+ border-color: #eb4619;
568
+ }
569
+
570
+ .ui-rc-checkbox:not(.ui-rc-checkbox-disabled):hover .ui-rc-checkbox-inner {
571
+ border-color: #eb4619;
572
+ }
573
+
574
+ .ui-rc-checkbox-wrapper:not(.ui-rc-checkbox-wrapper-disabled):hover .ui-rc-checkbox-inner {
575
+ border-color: #eb4619;
576
+ }
577
+ .ui-rc-checkbox-wrapper:not(.ui-rc-checkbox-wrapper-disabled):hover .ui-rc-checkbox-checked:not(.ui-rc-checkbox-disabled) .ui-rc-checkbox-inner {
578
+ background-color: #eb4619;
579
+ }
580
+
581
+ .ui-rc-tree .ui-rc-tree-checkbox-checked .ui-rc-tree-checkbox-inner {
582
+ background-color: #eb4619;
583
+ border-color: #eb4619;
584
+ }
585
+ .ui-rc-tree .ui-rc-tree-checkbox-wrapper-checked:not(.ui-rc-tree-checkbox-wrapper-disabled):hover .ui-rc-tree-checkbox-inner,
586
+ .ui-rc-tree .ui-rc-tree-checkbox-checked:not(.ui-rc-tree-checkbox-disabled):hover .ui-rc-tree-checkbox-inner {
587
+ background-color: #eb4619;
588
+ }
589
+ .ui-rc-tree .ui-rc-tree-checkbox-wrapper:not(.ui-rc-tree-checkbox-wrapper-disabled):hover .ui-rc-tree-checkbox-inner,
590
+ .ui-rc-tree .ui-rc-tree-checkbox:not(.ui-rc-tree-checkbox-disabled):hover .ui-rc-tree-checkbox-inner {
591
+ border-color: #eb4619;
592
+ }
593
+
594
+ .ant-tree .ant-tree-checkbox-checked .ant-tree-checkbox-inner {
595
+ background-color: #eb4619;
596
+ border-color: #eb4619;
597
+ }
598
+ .ant-tree .ant-tree-checkbox-wrapper-checked:not(.ant-tree-checkbox-wrapper-disabled):hover .ant-tree-checkbox-inner,
599
+ .ant-tree .ant-tree-checkbox-checked:not(.ant-tree-checkbox-disabled):hover .ant-tree-checkbox-inner {
600
+ background-color: #eb4619;
601
+ }
602
+ .ant-tree .ant-tree-checkbox-wrapper:not(.ant-tree-checkbox-wrapper-disabled):hover .ant-tree-checkbox-inner,
603
+ .ant-tree .ant-tree-checkbox:not(.ant-tree-checkbox-disabled):hover .ant-tree-checkbox-inner {
604
+ border-color: #eb4619;
605
+ }
606
+
607
+ .ui-rc-table-wrapper .ui-rc-table-pagination.ui-rc-pagination {
608
+ margin: 0;
609
+ }
610
+
611
+ .ui-rc-table-wrapper .ui-rc-table .ui-rc-pagination {
612
+ border-bottom: 1px solid #e0e0e0;
613
+ }
614
+ .ui-rc-table-wrapper .ui-rc-table .ui-rc-pagination::before {
615
+ content: "";
616
+ position: absolute;
617
+ border-left: 1px solid #e0e0e0;
618
+ height: 55px;
619
+ bottom: 0;
620
+ left: 0;
621
+ }
622
+ .ui-rc-table-wrapper .ui-rc-table .ui-rc-pagination::after {
623
+ content: "";
624
+ position: absolute;
625
+ border-left: 1px solid #e0e0e0;
626
+ height: 55px;
627
+ bottom: 0;
628
+ visibility: visible;
629
+ right: 0;
630
+ }
631
+ .ui-rc-table-wrapper .ui-rc-table .ui-rc-pagination.top-pagination {
632
+ border: none;
633
+ padding-top: 0;
634
+ padding-bottom: 0;
635
+ }
636
+ .ui-rc-table-wrapper .ui-rc-table .ui-rc-pagination.top-pagination .ui-rc-pagination-total-text {
637
+ margin-left: auto;
638
+ }
639
+
640
+ .ui-rc-pagination .ui-rc-pagination-total-text {
641
+ white-space: nowrap;
642
+ }
643
+ .ui-rc-pagination .ui-rc-pagination-item-active {
644
+ border-color: #eb4619;
645
+ }
646
+ .ui-rc-pagination .ui-rc-pagination-item-active:hover {
647
+ border-color: #eb4619;
648
+ }
649
+ .ui-rc-pagination .ui-rc-pagination-item-active:hover a {
650
+ color: #eb4619;
651
+ }
652
+ .ui-rc-pagination .ui-rc-pagination-item-active a {
653
+ color: #eb4619;
654
+ }
655
+ .ui-rc-pagination .ui-rc-pagination-jump-prev .ui-rc-pagination-item-container .ui-rc-pagination-item-link-icon, .ui-rc-pagination .ui-rc-pagination-jump-next .ui-rc-pagination-item-container .ui-rc-pagination-item-link-icon {
656
+ color: #eb4619;
657
+ }
658
+
659
+ .ui-rc-table-wrapper .ui-rc-table.ui-rc-table-small .ui-rc-table-cell:has(.ant-color-picker-trigger) {
660
+ padding: 1px 8px;
661
+ }
662
+ .ui-rc-table-wrapper .ui-rc-table.ui-rc-table-small .ui-rc-table-cell .ant-color-picker-trigger {
663
+ width: 100%;
664
+ min-height: 20px;
665
+ }
666
+ .ui-rc-table-wrapper .ui-rc-table.ui-rc-table-small .ui-rc-table-cell .ant-color-picker-trigger .ant-color-picker-clear {
667
+ height: 20px;
668
+ }
669
+
670
+ .ui-rc-table-wrapper .ui-rc-table.ui-rc-table-bordered > .ui-rc-table-container > .ui-rc-table-content > table > thead > tr > .ui-rc-table-cell-fix-right-first::after,
671
+ .ui-rc-table-wrapper .ui-rc-table.ui-rc-table-bordered > .ui-rc-table-container > .ui-rc-table-header > table > thead > tr > .ui-rc-table-cell-fix-right-first::after,
672
+ .ui-rc-table-wrapper .ui-rc-table.ui-rc-table-bordered > .ui-rc-table-container > .ui-rc-table-body > table > thead > tr > .ui-rc-table-cell-fix-right-first::after,
673
+ .ui-rc-table-wrapper .ui-rc-table.ui-rc-table-bordered > .ui-rc-table-container > .ui-rc-table-summary > table > thead > tr > .ui-rc-table-cell-fix-right-first::after,
674
+ .ui-rc-table-wrapper .ui-rc-table.ui-rc-table-bordered > .ui-rc-table-container > .ui-rc-table-content > table > tbody > tr > .ui-rc-table-cell-fix-right-first::after,
675
+ .ui-rc-table-wrapper .ui-rc-table.ui-rc-table-bordered > .ui-rc-table-container > .ui-rc-table-header > table > tbody > tr > .ui-rc-table-cell-fix-right-first::after,
676
+ .ui-rc-table-wrapper .ui-rc-table.ui-rc-table-bordered > .ui-rc-table-container > .ui-rc-table-body > table > tbody > tr > .ui-rc-table-cell-fix-right-first::after,
677
+ .ui-rc-table-wrapper .ui-rc-table.ui-rc-table-bordered > .ui-rc-table-container > .ui-rc-table-summary > table > tbody > tr > .ui-rc-table-cell-fix-right-first::after,
678
+ .ui-rc-table-wrapper .ui-rc-table.ui-rc-table-bordered > .ui-rc-table-container > .ui-rc-table-content > table > tfoot > tr > .ui-rc-table-cell-fix-right-first::after,
679
+ .ui-rc-table-wrapper .ui-rc-table.ui-rc-table-bordered > .ui-rc-table-container > .ui-rc-table-header > table > tfoot > tr > .ui-rc-table-cell-fix-right-first::after,
680
+ .ui-rc-table-wrapper .ui-rc-table.ui-rc-table-bordered > .ui-rc-table-container > .ui-rc-table-body > table > tfoot > tr > .ui-rc-table-cell-fix-right-first::after,
681
+ .ui-rc-table-wrapper .ui-rc-table.ui-rc-table-bordered > .ui-rc-table-container > .ui-rc-table-summary > table > tfoot > tr > .ui-rc-table-cell-fix-right-first::after {
682
+ border-inline-end: 1px solid #e0e0e0;
683
+ }
684
+
685
+ .ui-rc-toolbar-bottom .be-toolbar-item .toolbar-dropdown-button .ant-btn.ant-btn-default.ant-btn-variant-outlined.ant-btn-compact-item.ant-btn-compact-first-item {
686
+ border-color: #28c76f;
687
+ }
688
+ .ui-rc-toolbar-bottom .be-toolbar-item .toolbar-dropdown-button .ant-btn.ant-btn-default.ant-btn-variant-outlined.ant-btn-compact-item.ant-btn-compact-last-item {
689
+ border-color: #28c76f;
690
+ }
691
+ .ui-rc-toolbar-bottom .be-toolbar-item .toolbar-dropdown-button .ant-btn.ant-btn-default.ant-btn-variant-outlined.ant-btn-compact-item.ant-btn-compact-last-item .ant-btn-icon {
692
+ color: #28c76f;
693
+ }
694
+
695
+ /*# sourceMappingURL=index.css.map */