es-grid-template 1.8.64 → 1.8.65

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 (125) hide show
  1. package/es/grid-component/ColumnsGroup/ColumnsGroup.js +4 -1
  2. package/es/grid-component/TempTable.js +2 -2
  3. package/es/grid-component/hooks/utils.d.ts +2 -8
  4. package/es/grid-component/hooks/utils.js +175 -144
  5. package/es/grid-component/index.d.ts +1 -1
  6. package/es/grid-component/index.js +0 -4
  7. package/es/grid-component/type.d.ts +7 -0
  8. package/es/table-component/type.d.ts +8 -0
  9. package/es/table-virtuoso/ColumnsGroup/ColumnsGroup.d.ts +12 -0
  10. package/es/table-virtuoso/ColumnsGroup/ColumnsGroup.js +232 -0
  11. package/es/table-virtuoso/ColumnsGroup/index.d.ts +1 -0
  12. package/es/table-virtuoso/ColumnsGroup/index.js +1 -0
  13. package/es/{grid-component → table-virtuoso}/InternalTable.d.ts +2 -3
  14. package/es/table-virtuoso/InternalTable.js +413 -0
  15. package/es/table-virtuoso/body/TableBody.d.ts +14 -0
  16. package/es/table-virtuoso/body/TableBody.js +84 -0
  17. package/es/table-virtuoso/body/TableBodyCell.d.ts +14 -0
  18. package/es/table-virtuoso/body/TableBodyCell.js +466 -0
  19. package/es/table-virtuoso/body/TableBodyRow.d.ts +13 -0
  20. package/es/table-virtuoso/body/TableBodyRow.js +116 -0
  21. package/es/table-virtuoso/footer/TableFooterCell.d.ts +7 -0
  22. package/es/table-virtuoso/footer/TableFooterCell.js +54 -0
  23. package/es/table-virtuoso/header/TableHeadCell.d.ts +14 -0
  24. package/es/table-virtuoso/header/TableHeadCell.js +265 -0
  25. package/es/table-virtuoso/header/renderFilter.d.ts +20 -0
  26. package/es/table-virtuoso/header/renderFilter.js +289 -0
  27. package/es/table-virtuoso/hook/constant.d.ts +73 -0
  28. package/es/table-virtuoso/hook/constant.js +240 -0
  29. package/es/table-virtuoso/hook/convert.d.ts +1 -0
  30. package/es/table-virtuoso/hook/convert.js +28 -0
  31. package/es/table-virtuoso/hook/useColumns.d.ts +28 -0
  32. package/es/table-virtuoso/hook/useColumns.js +302 -0
  33. package/es/table-virtuoso/hook/useFilterOperator.d.ts +7 -0
  34. package/es/table-virtuoso/hook/useFilterOperator.js +33 -0
  35. package/es/table-virtuoso/hook/utils.d.ts +159 -0
  36. package/es/table-virtuoso/hook/utils.js +2263 -0
  37. package/es/table-virtuoso/index.d.ts +2 -0
  38. package/es/table-virtuoso/index.js +2 -0
  39. package/es/table-virtuoso/style.d.ts +22 -0
  40. package/es/table-virtuoso/style.js +11 -0
  41. package/es/table-virtuoso/style.scss +1440 -0
  42. package/es/table-virtuoso/table/Grid.d.ts +37 -0
  43. package/es/table-virtuoso/table/Grid.js +302 -0
  44. package/es/table-virtuoso/table/TableContainer.d.ts +49 -0
  45. package/es/table-virtuoso/table/TableContainer.js +305 -0
  46. package/es/table-virtuoso/table/TableWrapper.d.ts +20 -0
  47. package/es/table-virtuoso/table/TableWrapper.js +158 -0
  48. package/es/table-virtuoso/type.d.ts +0 -0
  49. package/es/table-virtuoso/type.js +785 -0
  50. package/es/table-virtuoso/useContext.d.ts +97 -0
  51. package/es/table-virtuoso/useContext.js +21 -0
  52. package/lib/grid-component/ColumnsGroup/ColumnsGroup.js +4 -1
  53. package/lib/grid-component/TempTable.js +2 -2
  54. package/lib/grid-component/hooks/utils.d.ts +2 -8
  55. package/lib/grid-component/hooks/utils.js +176 -152
  56. package/lib/grid-component/index.d.ts +1 -1
  57. package/lib/grid-component/index.js +0 -3
  58. package/lib/grid-component/type.d.ts +7 -0
  59. package/lib/table-component/type.d.ts +8 -0
  60. package/lib/table-virtuoso/ColumnsGroup/ColumnsGroup.d.ts +12 -0
  61. package/lib/table-virtuoso/ColumnsGroup/ColumnsGroup.js +243 -0
  62. package/lib/table-virtuoso/ColumnsGroup/index.d.ts +1 -0
  63. package/lib/table-virtuoso/ColumnsGroup/index.js +16 -0
  64. package/lib/{grid-component → table-virtuoso}/InternalTable.d.ts +2 -3
  65. package/lib/table-virtuoso/InternalTable.js +422 -0
  66. package/lib/table-virtuoso/body/TableBody.d.ts +14 -0
  67. package/lib/table-virtuoso/body/TableBody.js +95 -0
  68. package/lib/table-virtuoso/body/TableBodyCell.d.ts +14 -0
  69. package/lib/table-virtuoso/body/TableBodyCell.js +473 -0
  70. package/lib/table-virtuoso/body/TableBodyRow.d.ts +13 -0
  71. package/lib/table-virtuoso/body/TableBodyRow.js +124 -0
  72. package/lib/table-virtuoso/footer/TableFooterCell.d.ts +7 -0
  73. package/lib/table-virtuoso/footer/TableFooterCell.js +63 -0
  74. package/lib/table-virtuoso/header/TableHeadCell.d.ts +14 -0
  75. package/lib/table-virtuoso/header/TableHeadCell.js +274 -0
  76. package/lib/table-virtuoso/header/renderFilter.d.ts +20 -0
  77. package/lib/table-virtuoso/header/renderFilter.js +299 -0
  78. package/lib/table-virtuoso/hook/constant.d.ts +73 -0
  79. package/lib/table-virtuoso/hook/constant.js +247 -0
  80. package/lib/table-virtuoso/hook/convert.d.ts +1 -0
  81. package/lib/table-virtuoso/hook/convert.js +34 -0
  82. package/lib/table-virtuoso/hook/useColumns.d.ts +28 -0
  83. package/lib/table-virtuoso/hook/useColumns.js +315 -0
  84. package/lib/table-virtuoso/hook/useFilterOperator.d.ts +7 -0
  85. package/lib/table-virtuoso/hook/useFilterOperator.js +40 -0
  86. package/lib/table-virtuoso/hook/utils.d.ts +159 -0
  87. package/lib/table-virtuoso/hook/utils.js +2389 -0
  88. package/lib/table-virtuoso/index.d.ts +2 -0
  89. package/lib/table-virtuoso/index.js +9 -0
  90. package/lib/table-virtuoso/style.d.ts +22 -0
  91. package/lib/table-virtuoso/style.js +18 -0
  92. package/lib/table-virtuoso/style.scss +1440 -0
  93. package/lib/table-virtuoso/table/Grid.d.ts +37 -0
  94. package/lib/table-virtuoso/table/Grid.js +311 -0
  95. package/lib/table-virtuoso/table/TableContainer.d.ts +49 -0
  96. package/lib/table-virtuoso/table/TableContainer.js +313 -0
  97. package/lib/table-virtuoso/table/TableWrapper.d.ts +20 -0
  98. package/lib/table-virtuoso/table/TableWrapper.js +164 -0
  99. package/lib/table-virtuoso/type.d.ts +0 -0
  100. package/lib/table-virtuoso/type.js +786 -0
  101. package/lib/table-virtuoso/useContext.d.ts +97 -0
  102. package/lib/table-virtuoso/useContext.js +27 -0
  103. package/package.json +2 -1
  104. package/es/grid-component/ConvertColumnTable.d.ts +0 -7
  105. package/es/grid-component/ConvertColumnTable.js +0 -144
  106. package/es/grid-component/InternalTable.js +0 -1170
  107. package/es/grid-component/table/Grid.d.ts +0 -23
  108. package/es/grid-component/table/Grid.js +0 -49
  109. package/es/grid-component/table/GridEdit.d.ts +0 -23
  110. package/es/grid-component/table/GridEdit.js +0 -2726
  111. package/es/grid-component/table/Group.d.ts +0 -21
  112. package/es/grid-component/table/Group.js +0 -195
  113. package/es/grid-component/table/InfiniteTable.d.ts +0 -23
  114. package/es/grid-component/table/InfiniteTable.js +0 -101
  115. package/lib/grid-component/ConvertColumnTable.d.ts +0 -7
  116. package/lib/grid-component/ConvertColumnTable.js +0 -153
  117. package/lib/grid-component/InternalTable.js +0 -1178
  118. package/lib/grid-component/table/Grid.d.ts +0 -23
  119. package/lib/grid-component/table/Grid.js +0 -58
  120. package/lib/grid-component/table/GridEdit.d.ts +0 -23
  121. package/lib/grid-component/table/GridEdit.js +0 -2723
  122. package/lib/grid-component/table/Group.d.ts +0 -21
  123. package/lib/grid-component/table/Group.js +0 -204
  124. package/lib/grid-component/table/InfiniteTable.d.ts +0 -23
  125. package/lib/grid-component/table/InfiniteTable.js +0 -109
@@ -0,0 +1,1440 @@
1
+ $prefix: 'ui-rc' !default;
2
+ $antdPrefix: 'ant' !default;
3
+ $boxShadowColor: rgba(5, 5, 5, 0.09) !default;
4
+ $fontFamily: "Montserrat", Helvetica, Arial, serif !default;
5
+ $border-radius: 6px !default;
6
+
7
+ $primary: #eb4619 !default;
8
+
9
+ $rowHoverBg: #FBDED6 !default;
10
+ $rowSelectedBg: #FEF2EF !default;
11
+ $tableBorderColor: #e0e0e0 !default;
12
+ $border-selected-color: #0550C5 !default;
13
+ $body-color: #ffffff !default;
14
+ $cell-selected-bg: #F3F8FF !default;
15
+ $cell-index-selected-bg: #1869E6 !default;
16
+ $cell-index-focus-bg: #E6EFFD !default;
17
+
18
+ // 404071
19
+
20
+ // dark
21
+ $tableBorderColorDark: #44485E !default;
22
+
23
+ $rowHoverBg-Dark: #404071 !default;
24
+
25
+ $rowSelectedBg-Dark: #25293C !default;
26
+
27
+ $border-selected-color-Dark: #538ff1 !default;
28
+ $cell-index-selected-bg-Dark: #1869E6 !default;
29
+
30
+ $body-color-Dark: #343e59 !default;
31
+
32
+ $cell-selected-bg-Dark: #F3F8FF !default;
33
+ $cell-index-focus-bg-Dark: #E6EFFD !default;
34
+
35
+
36
+
37
+
38
+
39
+ * {
40
+ box-sizing: border-box;
41
+ }
42
+
43
+
44
+ .#{$prefix}-grid {
45
+
46
+ // border: 1px solid $tableBorderColor;
47
+
48
+ color: #000000de;
49
+ background-color: #ffffff;
50
+
51
+ font-size: 14px;
52
+
53
+ table {
54
+ // border-collapse: collapse;
55
+ border-collapse: separate;
56
+ border-spacing: 0;
57
+ table-layout: fixed;
58
+ // border: 1px solid $tableBorderColor;
59
+ }
60
+
61
+ .#{$prefix}-grid-container {
62
+
63
+ // border: 1px solid $tableBorderColor;
64
+ // border-right: 0;
65
+ // font-size: 13px;
66
+
67
+ // &::after {
68
+ // content: "";
69
+ // position: absolute;
70
+ // top: 0px;
71
+ // right: 0;
72
+ // height: 100%;
73
+ // border-right: 1px solid $tableBorderColor;
74
+ // pointer-events: none;
75
+ // z-index: 1;
76
+ // }
77
+
78
+ .#{$prefix}-grid-cell {
79
+
80
+ padding: 7px 8px;
81
+
82
+ &.#{$prefix}-grid-cell-text-center {
83
+ text-align: center;
84
+ justify-content: center;
85
+
86
+ }
87
+
88
+ &.#{$prefix}-grid-cell-text-right {
89
+ justify-content: flex-end;
90
+ text-align: right;
91
+
92
+ }
93
+
94
+ &.#{$prefix}-grid-cell-ellipsis {
95
+
96
+
97
+ .ui-rc_cell-content {
98
+ width: 100%;
99
+ overflow: hidden;
100
+ white-space: nowrap;
101
+ text-overflow: ellipsis;
102
+ word-break: keep-all;
103
+
104
+ &.select-cell {
105
+ padding-right: 18px;
106
+ position: relative;
107
+
108
+ }
109
+
110
+ .caret-down {
111
+ float: right;
112
+ position: absolute;
113
+ right: 0;
114
+
115
+ &::before {
116
+ content: '';
117
+ display: inline-block;
118
+ margin-left: 4px;
119
+ vertical-align: middle;
120
+ width: 0;
121
+ height: 0;
122
+ border-left: 5px solid transparent;
123
+ border-right: 5px solid transparent;
124
+ border-top: 5px solid #6f7777;
125
+ }
126
+ }
127
+
128
+ }
129
+
130
+ }
131
+
132
+ &.#{$prefix}-grid-cell-wrap {
133
+ white-space: normal;
134
+ // overflow: hidden;
135
+ text-overflow: ellipsis;
136
+ word-break: break-word;
137
+ }
138
+
139
+ .#{$prefix}-grid-header-text-wrap {
140
+ white-space: normal;
141
+ overflow: hidden;
142
+ text-overflow: ellipsis;
143
+ word-break: break-word;
144
+ }
145
+
146
+ }
147
+
148
+ .#{$prefix}-grid-thead {
149
+ // background-color: #ffffff;
150
+ background-color: inherit;
151
+ font-weight: 500;
152
+
153
+ .#{$prefix}-grid-cell {
154
+ font-weight: inherit;
155
+ color: #000000E0;
156
+
157
+ background-color: inherit;
158
+ // border-inline-end: 1px solid $tableBorderColor;
159
+ // border-bottom: 1px solid $tableBorderColor;
160
+
161
+ &.ui-rc-grid-cell-ellipsis {
162
+
163
+ .ui-rc-table-column-title,
164
+ .#{$prefix}-grid-cell-ellipsis {
165
+ width: 100%;
166
+ overflow: hidden;
167
+ white-space: nowrap;
168
+ text-overflow: ellipsis;
169
+ word-break: keep-all;
170
+ }
171
+
172
+ }
173
+
174
+ &.ui-rc-grid-cell-wrap {
175
+
176
+ .ui-rc-table-column-title,
177
+ .#{$prefix}-grid-cell-text-wrap {
178
+ white-space: normal;
179
+ word-break: break-word;
180
+ overflow: hidden;
181
+ }
182
+
183
+ }
184
+
185
+ &:hover {
186
+ .ui-rc-header-trigger {
187
+
188
+ .ui-rc-table-column-sorter-cancel {
189
+ opacity: 1;
190
+
191
+ }
192
+
193
+ }
194
+ }
195
+
196
+
197
+ .#{$prefix}-grid-filter-column {
198
+ display: flex;
199
+ justify-content: space-between;
200
+ width: 100%;
201
+ align-items: center;
202
+ position: relative;
203
+ z-index: 3;
204
+ }
205
+
206
+ .ui-rc-header-trigger {
207
+ padding-left: 6px;
208
+ display: flex;
209
+ align-items: center;
210
+
211
+ .ui-rc-table-column-sorter-cancel {
212
+ opacity: 0;
213
+ }
214
+
215
+ }
216
+
217
+ .resizer {
218
+
219
+ /* background: rgba(0, 0, 0, 0.5); */
220
+ cursor: col-resize;
221
+ height: 100%;
222
+ position: absolute;
223
+ right: 0;
224
+ top: 0;
225
+ z-index: 3;
226
+ touch-action: none;
227
+ user-select: none;
228
+ width: 5px;
229
+
230
+ // &::before {
231
+ // content: '';
232
+ // border-left: 2px solid blue;
233
+ // }
234
+ }
235
+
236
+ .resizer.isResizing {
237
+ // &::before {
238
+ // content: '';
239
+ // // border-left: 2px solid gray;
240
+ // border-left: 2px solid rgb(70, 115, 228);
241
+ // position: absolute;
242
+ // // height: 50%;
243
+ // height: 100%;
244
+ // // top: 25%
245
+ // }
246
+
247
+ // background: blue;
248
+ opacity: 1;
249
+ }
250
+
251
+
252
+
253
+
254
+ }
255
+
256
+ }
257
+
258
+ .#{$prefix}-grid-tbody {
259
+
260
+ .#{$prefix}-grid-row {
261
+ border-bottom: 1px solid lightgray;
262
+ }
263
+
264
+ .#{$prefix}-grid-row {
265
+ display: flex;
266
+ position: absolute;
267
+ width: 100%;
268
+ // background-color: #ffffff;
269
+ background-color: inherit;
270
+
271
+ &:hover {
272
+ .#{$prefix}-grid-cell:not(.editable) {
273
+ // background-color: $rowHoverBg;
274
+
275
+ &.cell-editable,
276
+ &.#{$prefix}-grid-cell-index,
277
+ &.#{$prefix}-grid-cell-selection {
278
+ // background-color: transparent;
279
+ }
280
+
281
+ // &.ui-rc-grid-cell-index {
282
+ // background-color: #ffffff;
283
+ // }
284
+ }
285
+ }
286
+
287
+ &.#{$prefix}-grid-row-selected {
288
+
289
+ .#{$prefix}-grid-cell {
290
+ background-color: $rowSelectedBg;
291
+ }
292
+
293
+ }
294
+
295
+ &.#{$prefix}-grid-row-focus {
296
+
297
+ .#{$prefix}-grid-cell {
298
+ background-color: $rowHoverBg;
299
+ }
300
+
301
+ }
302
+
303
+ }
304
+
305
+ .#{$prefix}-grid-cell {
306
+ outline: none;
307
+ border-inline-end: 1px solid $tableBorderColor;
308
+
309
+ border-bottom: 1px solid $tableBorderColor;
310
+
311
+ // background-color: $body-color;
312
+ background-color: inherit;
313
+
314
+ &.#{$prefix}-grid-cell-ellipsis:not(:has(>.ui-rc_cell-content)) {
315
+ overflow: hidden;
316
+ white-space: nowrap;
317
+ text-overflow: ellipsis;
318
+ word-break: keep-all;
319
+
320
+
321
+
322
+ }
323
+
324
+ &.#{$prefix}-grid-cell-index-selected {
325
+ background-color: $cell-index-selected-bg !important;
326
+ color: #ffffff;
327
+ }
328
+
329
+
330
+
331
+ &.cell-editable {
332
+
333
+ // padding: 0;
334
+ user-select: none;
335
+
336
+ &.cell-border-top {
337
+
338
+ //border-bottom: 1px solid $border-selected-color;
339
+ &::after {
340
+ content: "";
341
+ position: absolute;
342
+ top: 0px;
343
+ left: 0;
344
+ //right: 0;
345
+ //bottom: 0;
346
+ height: 1px;
347
+ width: 100%;
348
+ border-top: 1px solid $border-selected-color;
349
+ /* line đè lên border gốc */
350
+ pointer-events: none;
351
+ /* không ảnh hưởng đến tương tác */
352
+ z-index: 1;
353
+ }
354
+
355
+ // &.ui-rc-grid-cell-fix-left-last {
356
+ // &::after {
357
+ // left: -100%;
358
+ // }
359
+ // }
360
+
361
+ // &.ui-rc-grid-cell-fix-right-first {
362
+ // &::after {
363
+ // left: 100%;
364
+ // }
365
+ // }
366
+
367
+ }
368
+
369
+ &.cell-border-bottom {
370
+ border-bottom: 1px solid $border-selected-color;
371
+
372
+
373
+ }
374
+
375
+ &.cell-border-left {
376
+
377
+ &::before {
378
+ content: "";
379
+ position: absolute;
380
+ top: 0;
381
+ left: 0;
382
+ //right: 0;
383
+ //bottom: 0;
384
+ height: 102%;
385
+ width: 1px;
386
+ border-left: 1px solid $border-selected-color;
387
+ /* line đè lên border gốc */
388
+ pointer-events: none;
389
+ /* không ảnh hưởng đến tương tác */
390
+ z-index: 1;
391
+ }
392
+ }
393
+
394
+ &.cell-border-right {
395
+ border-inline-end: 1px solid $border-selected-color;
396
+
397
+ }
398
+
399
+ &.cell-paste-border-top {
400
+
401
+ // border-bottom: 1px dashed #949494;
402
+ &::after {
403
+ content: "";
404
+ position: absolute;
405
+ top: 0px;
406
+ left: 0;
407
+ //right: 0;
408
+ //bottom: 0;
409
+ height: 1px;
410
+ width: 100%;
411
+ border-top: 1px dashed #949494;
412
+ /* line đè lên border gốc */
413
+ pointer-events: none;
414
+ /* không ảnh hưởng đến tương tác */
415
+ z-index: 1;
416
+ }
417
+
418
+ &.ui-rc-grid-cell-fix-left-last {
419
+ &::after {
420
+ left: -100%;
421
+ }
422
+ }
423
+
424
+ &.ui-rc-grid-cell-fix-right-first {
425
+ &::after {
426
+ left: 100%;
427
+ }
428
+ }
429
+ }
430
+
431
+ &.cell-paste-border-bottom {
432
+ border-bottom: 1px dashed #949494;
433
+ }
434
+
435
+ &.cell-paste-border-left {
436
+ // border-inline-end: 1px dashed #949494;
437
+
438
+ &::before {
439
+ content: "";
440
+ position: absolute;
441
+ top: 0;
442
+ left: 0;
443
+ //right: 0;
444
+ //bottom: 0;
445
+ height: 102%;
446
+ width: 1px;
447
+ border-left: 1px dashed #949494;
448
+ /* line đè lên border gốc */
449
+ pointer-events: none;
450
+ /* không ảnh hưởng đến tương tác */
451
+ z-index: 1;
452
+ }
453
+ }
454
+
455
+ &.cell-paste-border-right {
456
+ border-inline-end: 1px dashed #949494;
457
+ }
458
+
459
+ .dragging-point {
460
+ //visibility: hidden;
461
+ width: 6px;
462
+ height: 6px;
463
+ position: absolute;
464
+ cursor: crosshair;
465
+ right: 0px;
466
+ bottom: 0px;
467
+ //background: red;
468
+
469
+ &.hidden {
470
+ display: none;
471
+ }
472
+
473
+ .dot-point {
474
+ position: absolute;
475
+ width: 6px;
476
+ height: 6px;
477
+ border-radius: 0px;
478
+ background-color: $border-selected-color;
479
+ bottom: 0;
480
+ right: 0;
481
+ }
482
+
483
+ }
484
+
485
+ }
486
+
487
+ &.cell-editing {
488
+ padding: 0;
489
+
490
+ //padding: 0 !important;
491
+ &:focus-visible {
492
+ outline: none;
493
+ }
494
+
495
+ .ant-form-item,
496
+ .ant-row.ant-form-item-row,
497
+ .ant-col.ant-form-item-control,
498
+ .ant-form-item-control-input,
499
+ .ant-form-item-control-input-content,
500
+ .ant-input {
501
+ height: 100% !important;
502
+ max-height: unset !important;
503
+
504
+ &:focus-visible {
505
+ outline: none;
506
+ }
507
+ }
508
+
509
+ textarea.ant-input {
510
+ line-height: 1.8;
511
+ }
512
+
513
+ input.be-cell-editing,
514
+ .ant-picker,
515
+ .ui-rc-select-selector,
516
+ .ui-rc-table-select-selector {
517
+ padding-inline: 7px;
518
+ }
519
+
520
+ .#{$prefix}-checkbox-wrapper {
521
+ .#{$prefix}-checkbox {
522
+ background-color: red;
523
+ }
524
+
525
+ .#{$prefix}-checkbox-input {
526
+ &:focus-visible {
527
+ outline: none;
528
+ }
529
+ }
530
+ }
531
+
532
+
533
+ .ant-input,
534
+ .ant-picker {
535
+ border-radius: 0;
536
+ }
537
+
538
+ // color picker
539
+
540
+ .ant-color-picker-trigger {
541
+ height: 100%;
542
+ border-radius: 0;
543
+
544
+ .ant-color-picker-color-block {
545
+ height: 100%;
546
+ width: 100%;
547
+ }
548
+
549
+ }
550
+
551
+
552
+ // ------------ select ---------------
553
+
554
+ .#{$prefix}-table-select-single .#{$prefix}-table-select-selector,
555
+ .#{$prefix}-select-single .#{$prefix}-select-selector,
556
+ .ui-rc-table-select-selector {
557
+
558
+ border-radius: 0 !important;
559
+
560
+ }
561
+
562
+ .#{$prefix}-table-select-single:not(.#{$prefix}-table-select-customize-input) {
563
+ .#{$prefix}-table-select-selector {
564
+ .#{$prefix}-table-select-selection-search-input {
565
+ height: auto;
566
+ }
567
+ }
568
+ }
569
+ }
570
+
571
+ &.#{$prefix}-grid-cell-selected {
572
+ background-color: $cell-selected-bg !important;
573
+ }
574
+
575
+ &.disable {
576
+ padding: 7px 8px !important;
577
+ background-color: #f0f0f0;
578
+ }
579
+
580
+ &.#{$prefix}-grid-cell-command {
581
+ padding: 2px 8px;
582
+
583
+ .ui-rc_cell-content {
584
+ display: flex;
585
+ }
586
+ }
587
+
588
+
589
+ .isValid {
590
+ &::after {
591
+ content: "";
592
+ position: absolute;
593
+ top: 0;
594
+ right: 0;
595
+ width: 0;
596
+ height: 0;
597
+ border-top: 0 solid transparent;
598
+ border-right: 8px solid red;
599
+ border-bottom: 8px solid transparent;
600
+ }
601
+ }
602
+ }
603
+
604
+ }
605
+
606
+ .#{$prefix}-grid-tfoot {
607
+ // background-color: rgb(250, 250, 250);
608
+
609
+ .#{$prefix}-grid-footer-row {
610
+ border-bottom-width: 1px;
611
+ border-bottom-color: $tableBorderColor;
612
+ border-bottom-style: solid;
613
+
614
+ border-top-width: 1px;
615
+ border-top-color: $tableBorderColor;
616
+ border-top-style: solid;
617
+
618
+ background-color: #fafafa;
619
+
620
+ }
621
+
622
+ .#{$prefix}-grid-cell {
623
+
624
+ background-color: inherit;
625
+
626
+ border-inline-end: 1px solid $tableBorderColor;
627
+ }
628
+ }
629
+
630
+ }
631
+
632
+
633
+
634
+ .#{$prefix}-grid-container {
635
+
636
+
637
+
638
+ &.ui-rc-table-ping-left {
639
+
640
+ .#{$prefix}-grid-cell {
641
+
642
+ &.cell-editable {
643
+
644
+
645
+ &.cell-border-top {
646
+
647
+ &.ui-rc-grid-cell-fix-left-last {
648
+ &::after {
649
+ left: -100%;
650
+ }
651
+ }
652
+
653
+ }
654
+
655
+ &.cell-paste-border-top {
656
+
657
+
658
+ &.ui-rc-grid-cell-fix-left-last {
659
+ &::after {
660
+ left: -100%;
661
+ }
662
+ }
663
+
664
+ &.ui-rc-grid-cell-fix-right-first {
665
+ &::after {
666
+ left: 100%;
667
+ }
668
+ }
669
+ }
670
+
671
+ }
672
+
673
+
674
+
675
+ &.#{$prefix}-grid-cell-fix-left-last {
676
+
677
+ &::after {
678
+ position: absolute;
679
+ top: 0;
680
+ right: 0;
681
+ bottom: -1px;
682
+ width: 30px;
683
+ transform: translateX(100%);
684
+ transition: box-shadow 0.3s;
685
+ content: "";
686
+ pointer-events: none;
687
+ box-shadow: inset 10px 0 8px -8px rgba(5, 5, 5, 0.09);
688
+ }
689
+
690
+
691
+ }
692
+
693
+
694
+
695
+ }
696
+
697
+ }
698
+
699
+ &.ui-rc-table-ping-right {
700
+
701
+ .#{$prefix}-grid-cell {
702
+
703
+ &.#{$prefix}-grid-cell-fix-right-first {
704
+ &::after {
705
+ position: absolute;
706
+ top: 0;
707
+ bottom: -1px;
708
+ left: 0;
709
+ width: 30px;
710
+ transform: translateX(-100%);
711
+ transition: box-shadow 0.3s;
712
+ content: "";
713
+ pointer-events: none;
714
+ box-shadow: inset -10px 0 8px -8px rgba(5, 5, 5, 0.09);
715
+ }
716
+
717
+ &::before {
718
+ content: "";
719
+ position: absolute;
720
+ inset-block: 0;
721
+ inset-inline-start: -1px;
722
+ border-inline-start: 1px solid #e0e0e0;
723
+ }
724
+ }
725
+
726
+ &.cell-editable {
727
+
728
+
729
+
730
+ &.cell-border-top {
731
+
732
+ // &::after {
733
+ // content: "";
734
+ // position: absolute;
735
+ // top: 0px;
736
+ // left: 0;
737
+ // //right: 0;
738
+ // //bottom: 0;
739
+ // height: 1px;
740
+ // width: 100%;
741
+ // border-top: 1px solid $border-selected-color;
742
+ // /* line đè lên border gốc */
743
+ // pointer-events: none;
744
+ // /* không ảnh hưởng đến tương tác */
745
+ // z-index: 1;
746
+ // }
747
+
748
+ // &.ui-rc-grid-cell-fix-left-last {
749
+ // &::after {
750
+ // left: -100%;
751
+ // }
752
+ // }
753
+
754
+
755
+ &.ui-rc-grid-cell-fix-right-first {
756
+ &::after {
757
+ left: 100%;
758
+ }
759
+ }
760
+
761
+ }
762
+
763
+
764
+ &.cell-paste-border-top {
765
+
766
+
767
+ &.ui-rc-grid-cell-fix-left-last {
768
+ &::after {
769
+ left: -100%;
770
+ }
771
+ }
772
+
773
+ &.ui-rc-grid-cell-fix-right-first {
774
+ &::after {
775
+ left: 100%;
776
+ }
777
+ }
778
+ }
779
+
780
+
781
+ }
782
+
783
+ }
784
+
785
+ }
786
+
787
+ }
788
+
789
+
790
+
791
+ // bottom toolbar
792
+ .ui-rc-toolbar-bottom {
793
+ // border-bottom: 1px solid #e0e0e0;
794
+ border-right: 1px solid #e0e0e0;
795
+ border-left: 1px solid #e0e0e0;
796
+
797
+ .be-toolbar-item {
798
+ .toolbar-dropdown-button {
799
+ .ant-btn.ant-btn-default.ant-btn-variant-outlined.ant-btn-compact-item.ant-btn-compact-first-item {
800
+ border-color: #28c76f;
801
+ }
802
+
803
+ .ant-btn.ant-btn-default.ant-btn-variant-outlined.ant-btn-compact-item.ant-btn-compact-last-item {
804
+ border-color: #28c76f;
805
+
806
+ .ant-btn-icon {
807
+ color: #28c76f;
808
+ }
809
+ }
810
+ }
811
+
812
+ }
813
+ }
814
+
815
+ .ui-rc-toolbar-bottom_border-bottom {
816
+ border-bottom: 1px solid #e0e0e0;
817
+ }
818
+
819
+ .ui-rc-toolbar-bottom {
820
+ position: relative;
821
+ padding: .25rem 1rem;
822
+ background-color: #ffffff;
823
+
824
+ // &::before {
825
+ // content: "";
826
+ // position: absolute;
827
+ // border-left: 1px solid #e0e0e0;
828
+ // height: 100%;
829
+ // bottom: 0;
830
+ // left: 0;
831
+ // //z-index: -1;
832
+ // }
833
+
834
+ // &::after {
835
+ // content: "";
836
+ // position: absolute;
837
+ // border-left: 1px solid #e0e0e0;
838
+ // height: 100%;
839
+ // bottom: 0;
840
+ // visibility: visible;
841
+ // right: 0;
842
+ // //z-index: -1;
843
+ // }
844
+
845
+ .toolbar-button {
846
+ border-radius: 0;
847
+
848
+ .ant-btn,
849
+ .ui-rc-btn {
850
+ border-radius: 0;
851
+ }
852
+ }
853
+ }
854
+
855
+ .spinner-loading {
856
+ position: absolute;
857
+ top: 0;
858
+ left: 0;
859
+ width: 100%;
860
+ height: 100%;
861
+ z-index: 4;
862
+ background-color: #ffffff80;
863
+ }
864
+
865
+
866
+
867
+ }
868
+
869
+ .#{$prefix}-grid {
870
+ .#{$prefix}-grid-top-toolbar {
871
+ padding: 5px 10px;
872
+ border-inline: 1px solid $tableBorderColor;
873
+ border-top: 1px solid $tableBorderColor;
874
+ }
875
+ }
876
+
877
+
878
+
879
+ // ------------ paging ---------------
880
+
881
+
882
+
883
+
884
+ .#{$prefix}-grid {
885
+
886
+ .#{$prefix}-pagination {
887
+ // &::before {
888
+ // content: "";
889
+ // position: absolute;
890
+ // border-left: 1px solid $tableBorderColor;
891
+ // height: 55px;
892
+ // bottom: 0;
893
+ // left: 0;
894
+ // }
895
+
896
+ // &::after {
897
+ // content: "";
898
+ // position: absolute;
899
+ // border-left: 1px solid $tableBorderColor;
900
+ // height: 55px;
901
+ // bottom: 0;
902
+ // visibility: visible;
903
+ // right: 0;
904
+ // }
905
+
906
+ &.top-pagination {
907
+ border: none;
908
+ padding-top: 0;
909
+ padding-bottom: 0;
910
+
911
+ .#{$prefix}-pagination-total-text {
912
+ margin-left: auto;
913
+ }
914
+ }
915
+
916
+ padding: 10px;
917
+
918
+ border-bottom: 1px solid $tableBorderColor;
919
+ border-inline: 1px solid $tableBorderColor;
920
+
921
+ }
922
+
923
+ .#{$prefix}-pagination {
924
+
925
+ .#{$prefix}-pagination-total-text {
926
+ white-space: nowrap;
927
+ }
928
+
929
+ .#{$prefix}-pagination-item-active {
930
+ border-color: $primary;
931
+
932
+ &:hover {
933
+ border-color: $primary;
934
+
935
+ a {
936
+ color: $primary;
937
+ }
938
+ }
939
+
940
+ a {
941
+ color: $primary;
942
+ }
943
+ }
944
+
945
+ .#{$prefix}-pagination-jump-prev,
946
+ .#{$prefix}-pagination-jump-next {
947
+ .#{$prefix}-pagination-item-container {
948
+ .#{$prefix}-pagination-item-link-icon {
949
+ color: $primary;
950
+ }
951
+ }
952
+ }
953
+ }
954
+ }
955
+
956
+ // .container {
957
+ // margin: 1rem auto;
958
+ // }
959
+
960
+
961
+ .ui-rc-table-row-expand {
962
+ color: inherit;
963
+ text-decoration: none;
964
+ outline: none;
965
+ cursor: pointer;
966
+ transition: all 0.3s;
967
+ border: 1px solid #f0f0f0;
968
+ padding: 0;
969
+ background: #ffffff;
970
+ user-select: none;
971
+ position: relative;
972
+ float: left;
973
+ width: 17px;
974
+ height: 17px;
975
+ line-height: 17px;
976
+ border-radius: 6px;
977
+ transform: scale(0.9411764705882353);
978
+ margin-inline-end: 8px;
979
+ }
980
+
981
+ .ui-rc-table-row-expand-icon {
982
+ color: inherit;
983
+ text-decoration: none;
984
+ outline: none;
985
+ cursor: pointer;
986
+ transition: all 0.3s;
987
+ border: 1px solid #f0f0f0;
988
+ padding: 0;
989
+ background: #ffffff;
990
+ user-select: none;
991
+ position: relative;
992
+ float: left;
993
+ width: 17px;
994
+ height: 17px;
995
+ line-height: 17px;
996
+ border-radius: 6px;
997
+ transform: scale(0.9411764705882353);
998
+ }
999
+
1000
+ .ui-rc-table-row-expand-icon::before {
1001
+ top: 7px;
1002
+ inset-inline-end: 3px;
1003
+ inset-inline-start: 3px;
1004
+ height: 1px;
1005
+ }
1006
+
1007
+ .ui-rc-table-row-expand-icon::after {
1008
+ top: 3px;
1009
+ bottom: 3px;
1010
+ inset-inline-start: 7px;
1011
+ width: 1px;
1012
+ transform: rotate(90deg);
1013
+ }
1014
+
1015
+ .ui-rc-table-row-expand-icon::before,
1016
+ .ui-rc-table-row-expand-icon::after {
1017
+ position: absolute;
1018
+ background: #000000de;
1019
+ transition: transform 0.3s ease-out;
1020
+ content: "";
1021
+
1022
+ }
1023
+
1024
+ .ui-rc-table-row-expand-icon-spaced {
1025
+ background: transparent;
1026
+ border: 0;
1027
+ visibility: hidden;
1028
+ margin-inline-end: 8px;
1029
+ }
1030
+
1031
+
1032
+ .ui-rc-table-row-expand-icon-expanded::after {
1033
+ top: 3px;
1034
+ bottom: 3px;
1035
+ inset-inline-start: 7px;
1036
+ width: 1px;
1037
+ transform: rotate(90deg);
1038
+ }
1039
+
1040
+ .ui-rc-table-row-expand-icon-collapsed::after {
1041
+ transform: rotate(0deg);
1042
+ }
1043
+
1044
+ .ui-rc-table-row-expand-icon-collapsed::before {
1045
+ transform: rotate(-180deg);
1046
+ }
1047
+
1048
+
1049
+ .#{$prefix}-grid-filter-dropdown {
1050
+ box-sizing: border-box;
1051
+ margin: 0;
1052
+ padding: 0;
1053
+ color: rgba(0, 0, 0, 0.88);
1054
+ font-size: 14px;
1055
+ line-height: 1.5714285714285714;
1056
+ list-style: none;
1057
+ font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, 'Noto Sans', sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol', 'Noto Color Emoji';
1058
+ min-width: 120px;
1059
+ background-color: #ffffff;
1060
+ border-radius: 6px;
1061
+ box-shadow: 0 6px 16px 0 rgba(0, 0, 0, 0.08), 0 3px 6px -4px rgba(0, 0, 0, 0.12), 0 9px 28px 8px rgba(0, 0, 0, 0.05);
1062
+ overflow: hidden;
1063
+ }
1064
+
1065
+
1066
+
1067
+ .rc-menu-popup {
1068
+ z-index: 1090 !important;
1069
+ }
1070
+
1071
+
1072
+ // -------------- Checkbox ----------
1073
+
1074
+ .#{$prefix}-checkbox-indeterminate {
1075
+ &:hover {
1076
+ .#{$prefix}-checkbox-inner {
1077
+ border-color: $primary !important;
1078
+ ;
1079
+ }
1080
+ }
1081
+
1082
+ .#{$prefix}-checkbox-inner {
1083
+ &:after {
1084
+ background-color: $primary;
1085
+ }
1086
+ }
1087
+ }
1088
+
1089
+ //.#{$prefix}-checkbox-input {
1090
+ // &:focus-visible {
1091
+ // outline: none;
1092
+ // }
1093
+ //}
1094
+
1095
+ .#{$prefix}-checkbox .#{$prefix}-checkbox-input:focus-visible+.#{$prefix}-checkbox-inner {
1096
+ outline: none;
1097
+ }
1098
+
1099
+ .#{$prefix}-checkbox {
1100
+ &.#{$prefix}-checkbox-checked {
1101
+ &:hover {
1102
+ .#{$prefix}-checkbox-inner {
1103
+ background-color: $primary;
1104
+ border-color: $primary;
1105
+ }
1106
+ }
1107
+
1108
+ .#{$prefix}-checkbox-inner {
1109
+ background-color: $primary;
1110
+ border-color: $primary;
1111
+ }
1112
+ }
1113
+ }
1114
+
1115
+ .#{$prefix}-checkbox:not(.#{$prefix}-checkbox-disabled):hover {
1116
+ .#{$prefix}-checkbox-inner {
1117
+ border-color: $primary;
1118
+ }
1119
+ }
1120
+
1121
+ .#{$prefix}-checkbox-wrapper:not(.#{$prefix}-checkbox-wrapper-disabled):hover {
1122
+ .#{$prefix}-checkbox-inner {
1123
+ border-color: $primary;
1124
+ }
1125
+
1126
+ .#{$prefix}-checkbox-checked:not(.#{$prefix}-checkbox-disabled) {
1127
+ .#{$prefix}-checkbox-inner {
1128
+ background-color: $primary;
1129
+ }
1130
+ }
1131
+ }
1132
+
1133
+
1134
+ // -------------- radio ----------
1135
+
1136
+ .ui-rc-radio-wrapper {
1137
+ .ui-rc-radio-checked {
1138
+ .ui-rc-radio-inner {
1139
+ background-color: $primary;
1140
+ border-color: $primary;
1141
+ }
1142
+ }
1143
+
1144
+ &:hover {
1145
+ .ui-rc-radio-inner {
1146
+ border-color: $primary;
1147
+ }
1148
+ }
1149
+ }
1150
+
1151
+ // ------------ Tree ---------------
1152
+
1153
+ .#{$prefix}-tree {
1154
+ .#{$prefix}-tree-checkbox-checked {
1155
+ .#{$prefix}-tree-checkbox-inner {
1156
+ background-color: $primary;
1157
+ border-color: $primary;
1158
+ }
1159
+ }
1160
+
1161
+ .#{$prefix}-tree-checkbox-wrapper-checked:not(.#{$prefix}-tree-checkbox-wrapper-disabled):hover,
1162
+ .#{$prefix}-tree-checkbox-checked:not(.#{$prefix}-tree-checkbox-disabled):hover {
1163
+ .#{$prefix}-tree-checkbox-inner {
1164
+ background-color: $primary;
1165
+ }
1166
+ }
1167
+
1168
+ .#{$prefix}-tree-checkbox-wrapper:not(.#{$prefix}-tree-checkbox-wrapper-disabled):hover,
1169
+ .#{$prefix}-tree-checkbox:not(.#{$prefix}-tree-checkbox-disabled):hover {
1170
+ .#{$prefix}-tree-checkbox-inner {
1171
+ border-color: $primary;
1172
+ }
1173
+ }
1174
+ }
1175
+
1176
+
1177
+ // ------------ ant Tree ---------------
1178
+
1179
+ .#{$antdPrefix}-tree {
1180
+ .#{$antdPrefix}-tree-checkbox-checked {
1181
+ .#{$antdPrefix}-tree-checkbox-inner {
1182
+ background-color: $primary;
1183
+ border-color: $primary;
1184
+ }
1185
+ }
1186
+
1187
+ .#{$antdPrefix}-tree-checkbox-wrapper-checked:not(.#{$antdPrefix}-tree-checkbox-wrapper-disabled):hover,
1188
+ .#{$antdPrefix}-tree-checkbox-checked:not(.#{$antdPrefix}-tree-checkbox-disabled):hover {
1189
+ .#{$antdPrefix}-tree-checkbox-inner {
1190
+ background-color: $primary;
1191
+ }
1192
+ }
1193
+
1194
+ .#{$antdPrefix}-tree-checkbox-wrapper:not(.#{$antdPrefix}-tree-checkbox-wrapper-disabled):hover,
1195
+ .#{$antdPrefix}-tree-checkbox:not(.#{$antdPrefix}-tree-checkbox-disabled):hover {
1196
+ .#{$antdPrefix}-tree-checkbox-inner {
1197
+ border-color: $primary;
1198
+ }
1199
+ }
1200
+ }
1201
+
1202
+ .ui-rc-pagination {
1203
+ border-bottom: 1px solid #e0e0e0;
1204
+ border-top: 1px solid #e0e0e0;
1205
+ margin: 0;
1206
+ padding: .75rem 1rem;
1207
+ background-color: #ffffff;
1208
+
1209
+ .ui-rc-pagination-total-text {
1210
+ order: 2;
1211
+ margin-left: auto;
1212
+ }
1213
+
1214
+
1215
+
1216
+ &.pagination-template {
1217
+ position: relative;
1218
+
1219
+
1220
+ }
1221
+
1222
+
1223
+
1224
+ }
1225
+
1226
+
1227
+ // #region theme
1228
+ // theme
1229
+
1230
+ // ------------light-----------
1231
+
1232
+ .#{$prefix}-grid-light {
1233
+ background-color: #ffffff;
1234
+
1235
+ &.ui-rc-grid .ui-rc-grid-container .ui-rc-grid-thead .ui-rc-grid-cell {}
1236
+ }
1237
+
1238
+
1239
+ // rgb(225 222 245 / 0.12
1240
+
1241
+ .#{$prefix}-grid-dark {
1242
+ background-color: $body-color-Dark;
1243
+ color: #ffffff;
1244
+
1245
+ &.ui-rc-grid .ui-rc-grid-container .ui-rc-grid-thead .ui-rc-grid-cell {
1246
+ background-color: $body-color-Dark;
1247
+ color: #E1DEF5E6;
1248
+ }
1249
+
1250
+ &.ui-rc-grid .ui-rc-grid-container .ui-rc-grid-tbody .ui-rc-grid-cell {
1251
+ // background-color: $body-color-Dark;
1252
+ // color: #E1DEF5E6;
1253
+ }
1254
+
1255
+ &.ui-rc-grid .ui-rc-grid-container .ui-rc-grid-tfoot .ui-rc-grid-cell {
1256
+ background-color: #25293C;
1257
+ color: #E1DEF5E6;
1258
+ }
1259
+
1260
+ &.ui-rc-grid {
1261
+ .ui-rc-toolbar-bottom {
1262
+ background-color: $body-color-Dark;
1263
+ color: #E1DEF5E6;
1264
+ border-color: $tableBorderColorDark;
1265
+ }
1266
+ }
1267
+
1268
+ &.ui-rc-grid .ui-rc-grid-container.ui-rc-table-ping-right .ui-rc-grid-cell.ui-rc-grid-cell-fix-right-first::before {
1269
+ border-inline-start-color: $tableBorderColorDark;
1270
+ }
1271
+
1272
+ &.ui-rc-grid .ui-rc-grid-container .ui-rc-grid-tbody .ui-rc-grid-cell.cell-editable {
1273
+
1274
+
1275
+ &.cell-border-right {
1276
+ border-right-color: $border-selected-color-Dark;
1277
+ }
1278
+
1279
+ &.cell-border-bottom {
1280
+ border-bottom-color: $border-selected-color-Dark;
1281
+ }
1282
+
1283
+ &.cell-border-left::before {
1284
+ border-color: $border-selected-color-Dark;
1285
+ }
1286
+
1287
+ &.cell-border-top::after {
1288
+ border-color: $border-selected-color-Dark;
1289
+ }
1290
+ }
1291
+
1292
+ .ui-rc-pagination {
1293
+ background-color: $body-color-Dark;
1294
+ color: #E1DEF5E6;
1295
+
1296
+ border-bottom: 1px solid $tableBorderColorDark;
1297
+ border-top: 1px solid $tableBorderColorDark;
1298
+ border-inline-color: $tableBorderColorDark;
1299
+
1300
+ .ui-rc-pagination-prev {
1301
+ .anticon.anticon-left {
1302
+ color: #ffffff;
1303
+ }
1304
+ }
1305
+
1306
+ .ui-rc-pagination-disabled {
1307
+ .anticon.anticon-left {
1308
+ color: #7d7a7a;
1309
+ }
1310
+ }
1311
+
1312
+ .ui-rc-pagination-next {
1313
+ .anticon.anticon-right {
1314
+ color: #ffffff;
1315
+ }
1316
+
1317
+ &.ui-rc-pagination-disabled {
1318
+ .anticon.anticon-right {
1319
+ color: #7d7a7a;
1320
+ }
1321
+ }
1322
+
1323
+ }
1324
+ }
1325
+
1326
+ .ui-rc-toolbar {
1327
+ .ui-rc-toolbar-selection-item {
1328
+ background-color: #25293C;
1329
+ color: #E1DEF5E6;
1330
+ }
1331
+
1332
+ }
1333
+
1334
+ &.ui-rc-grid {
1335
+ .ui-rc-grid-top-toolbar {
1336
+ border-top-color: $tableBorderColorDark;
1337
+ border-inline-color: $tableBorderColorDark;
1338
+
1339
+ }
1340
+ }
1341
+
1342
+ &.ui-rc-grid .ui-rc-grid-container::after {
1343
+ border-right-color: $tableBorderColorDark;
1344
+ }
1345
+
1346
+ &.ui-rc-grid {
1347
+ .ui-rc-grid-container {
1348
+ // border-bottom: 0;
1349
+ border-color: $tableBorderColorDark;
1350
+
1351
+ .ui-rc-grid-tbody {
1352
+ .ui-rc-grid-row {
1353
+ border-bottom-color: $tableBorderColorDark;
1354
+
1355
+
1356
+ }
1357
+
1358
+ .ui-rc-grid-cell {
1359
+ border-inline-end-color: $tableBorderColorDark;
1360
+ background-color: $body-color-Dark;
1361
+ color: #E1DEF5E6;
1362
+
1363
+ &.ui-rc-grid-cell-selected {
1364
+
1365
+ background-color: #33335d !important;
1366
+
1367
+ }
1368
+
1369
+ &.disable {
1370
+ background-color: #272A2F;
1371
+ }
1372
+
1373
+ // input
1374
+ // .ui-rc-table-select-selector,
1375
+ // .ui-rc-select-selector,
1376
+ // .ant-input-outlined,
1377
+ // .ant-picker-outlined {
1378
+ // background-color: #272933;
1379
+ // color: #ffffff;
1380
+
1381
+ // .ui-rc-table-select-selection-placeholder,
1382
+ // .ui-rc-select-selection-placeholder {
1383
+ // color: #797171;
1384
+ // }
1385
+ // }
1386
+ // .ant-picker-input {
1387
+
1388
+ // input {
1389
+ // &::placeholder {
1390
+ // color: #797171;
1391
+ // }
1392
+ // }
1393
+ // }
1394
+ // .ant-input-outlined::placeholder {
1395
+ // color: #797171;
1396
+ // }
1397
+
1398
+
1399
+ }
1400
+
1401
+ .ui-rc-grid-row-selected {
1402
+ .ui-rc-grid-cell {
1403
+ background-color: $rowSelectedBg-Dark;
1404
+
1405
+ // &.disable {
1406
+ // background-color: #272A2F;
1407
+ // }
1408
+ }
1409
+ }
1410
+
1411
+ }
1412
+
1413
+ .ui-rc-grid-thead {
1414
+ .ui-rc-grid-cell {
1415
+ border-inline-end-color: $tableBorderColorDark;
1416
+ border-bottom-color: $tableBorderColorDark;
1417
+ }
1418
+ }
1419
+
1420
+ .ui-rc-grid-tfoot {
1421
+ .#{$prefix}-grid-footer-row {
1422
+ border-bottom-color: $tableBorderColorDark;
1423
+
1424
+ border-top-color: $tableBorderColorDark;
1425
+
1426
+
1427
+
1428
+ }
1429
+
1430
+ .ui-rc-grid-cell {
1431
+ border-inline-end-color: $tableBorderColorDark;
1432
+ }
1433
+ }
1434
+ }
1435
+ }
1436
+
1437
+ .ui-rc-toolbar-bottom_border-bottom {
1438
+ border-bottom-color: $tableBorderColorDark;
1439
+ }
1440
+ }