qbs-react-grid 1.2.1 → 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.
- package/dist/css/qbs-react-grid.css +1 -1095
- package/dist/css/qbs-react-grid.min.css +1 -1
- package/dist/css/qbs-react-grid.min.css.map +1 -1
- package/es/Table.js +19 -19
- package/es/less/index.less +3 -0
- package/es/qbsTable/QbsTable.js +34 -7
- package/es/qbsTable/TableCardList.d.ts +5 -0
- package/es/qbsTable/TableCardList.js +564 -0
- package/es/qbsTable/Toolbar.js +16 -2
- package/es/qbsTable/commontypes.d.ts +9 -0
- package/es/qbsTable/utilities/CardComponent.d.ts +12 -0
- package/es/qbsTable/utilities/CardComponent.js +64 -0
- package/es/qbsTable/utilities/CardMenuDropdown.d.ts +13 -0
- package/es/qbsTable/utilities/CardMenuDropdown.js +89 -0
- package/es/qbsTable/utilities/SwitchCardColumns.d.ts +2 -0
- package/es/qbsTable/utilities/SwitchCardColumns.js +24 -0
- package/es/qbsTable/utilities/icons.d.ts +3 -0
- package/es/qbsTable/utilities/icons.js +45 -0
- package/es/utils/getTotalByColumns.js +1 -1
- package/es/utils/mergeCells.js +1 -1
- package/es/utils/useCellDescriptor.js +11 -11
- package/es/utils/useClassNames.js +2 -0
- package/lib/Table.js +19 -19
- package/lib/less/index.less +3 -0
- package/lib/qbsTable/QbsTable.js +34 -7
- package/lib/qbsTable/TableCardList.d.ts +5 -0
- package/lib/qbsTable/TableCardList.js +571 -0
- package/lib/qbsTable/Toolbar.js +16 -2
- package/lib/qbsTable/commontypes.d.ts +9 -0
- package/lib/qbsTable/utilities/CardComponent.d.ts +12 -0
- package/lib/qbsTable/utilities/CardComponent.js +72 -0
- package/lib/qbsTable/utilities/CardMenuDropdown.d.ts +13 -0
- package/lib/qbsTable/utilities/CardMenuDropdown.js +95 -0
- package/lib/qbsTable/utilities/SwitchCardColumns.d.ts +2 -0
- package/lib/qbsTable/utilities/SwitchCardColumns.js +30 -0
- package/lib/qbsTable/utilities/icons.d.ts +3 -0
- package/lib/qbsTable/utilities/icons.js +50 -2
- package/lib/utils/getTotalByColumns.js +1 -1
- package/lib/utils/mergeCells.js +1 -1
- package/lib/utils/useCellDescriptor.js +11 -11
- package/lib/utils/useClassNames.js +2 -0
- package/package.json +11 -6
- package/src/less/index.less +3 -0
- package/src/qbsTable/QbsTable.tsx +201 -173
- package/src/qbsTable/TableCardList.tsx +629 -0
- package/src/qbsTable/Toolbar.tsx +22 -2
- package/src/qbsTable/commontypes.ts +9 -0
- package/src/qbsTable/utilities/CardComponent.tsx +102 -0
- package/src/qbsTable/utilities/CardMenuDropdown.tsx +118 -0
- package/src/qbsTable/utilities/SwitchCardColumns.tsx +29 -0
- package/src/qbsTable/utilities/icons.tsx +51 -0
|
@@ -1,1096 +1,2 @@
|
|
|
1
|
-
@-webkit-keyframes loaderSpin {
|
|
2
|
-
from {
|
|
3
|
-
-webkit-transform: rotate(0);
|
|
4
|
-
transform: rotate(0);
|
|
5
|
-
}
|
|
6
|
-
to {
|
|
7
|
-
-webkit-transform: rotate(360deg);
|
|
8
|
-
transform: rotate(360deg);
|
|
9
|
-
}
|
|
10
|
-
}
|
|
11
|
-
@keyframes loaderSpin {
|
|
12
|
-
from {
|
|
13
|
-
-webkit-transform: rotate(0);
|
|
14
|
-
transform: rotate(0);
|
|
15
|
-
}
|
|
16
|
-
to {
|
|
17
|
-
-webkit-transform: rotate(360deg);
|
|
18
|
-
transform: rotate(360deg);
|
|
19
|
-
}
|
|
20
|
-
}
|
|
21
|
-
.rs-table {
|
|
22
|
-
position: relative;
|
|
23
|
-
overflow: hidden;
|
|
24
|
-
border-radius: 0px;
|
|
25
|
-
background-color: #ffffff;
|
|
26
|
-
}
|
|
27
|
-
.rs-table-column-resizing {
|
|
28
|
-
cursor: ew-resize;
|
|
29
|
-
-webkit-user-select: none;
|
|
30
|
-
-moz-user-select: none;
|
|
31
|
-
-ms-user-select: none;
|
|
32
|
-
user-select: none;
|
|
33
|
-
}
|
|
34
|
-
.rs-table-bordered {
|
|
35
|
-
border: 1px solid #eee;
|
|
36
|
-
}
|
|
37
|
-
.rs-table-row {
|
|
38
|
-
overflow: hidden;
|
|
39
|
-
position: absolute;
|
|
40
|
-
width: 100%;
|
|
41
|
-
top: 0;
|
|
42
|
-
transition: none;
|
|
43
|
-
border-bottom: 1px solid #eee;
|
|
44
|
-
}
|
|
45
|
-
.rs-table-hover .rs-table-body-row-wrapper .rs-table-row:hover {
|
|
46
|
-
background: #fff;
|
|
47
|
-
}
|
|
48
|
-
.rs-table-hover .rs-table-body-row-wrapper .rs-table-row:hover .rs-table-cell-group {
|
|
49
|
-
background: #fff;
|
|
50
|
-
}
|
|
51
|
-
.rs-table-hover .rs-table-body-row-wrapper .rs-table-row:hover .rs-table-cell {
|
|
52
|
-
background: #fff;
|
|
53
|
-
}
|
|
54
|
-
.rs-table-row-header {
|
|
55
|
-
background: #f4f4f4;
|
|
56
|
-
}
|
|
57
|
-
.rs-table-row-header .rs-table-cell {
|
|
58
|
-
background: #f4f4f4;
|
|
59
|
-
}
|
|
60
|
-
.rs-table-row-header .rs-table-cell-group-shadow {
|
|
61
|
-
box-shadow: 0 2px 3px rgba(0, 0, 0, 0.28);
|
|
62
|
-
z-index: 5;
|
|
63
|
-
}
|
|
64
|
-
.rs-table-header-row-wrapper {
|
|
65
|
-
z-index: 2;
|
|
66
|
-
position: relative;
|
|
67
|
-
}
|
|
68
|
-
.rs-table-affix-header {
|
|
69
|
-
z-index: 3;
|
|
70
|
-
visibility: hidden;
|
|
71
|
-
}
|
|
72
|
-
.rs-table-affix-header.fixed {
|
|
73
|
-
visibility: visible;
|
|
74
|
-
}
|
|
75
|
-
.rs-table-body-row-wrapper {
|
|
76
|
-
position: relative;
|
|
77
|
-
overflow: hidden;
|
|
78
|
-
z-index: 0;
|
|
79
|
-
}
|
|
80
|
-
.rs-table-body-info {
|
|
81
|
-
width: 100%;
|
|
82
|
-
text-align: center;
|
|
83
|
-
top: 50%;
|
|
84
|
-
position: absolute;
|
|
85
|
-
margin-top: -20px;
|
|
86
|
-
line-height: 40px;
|
|
87
|
-
}
|
|
88
|
-
.rs-table-body-info .icon {
|
|
89
|
-
margin: 0 10px;
|
|
90
|
-
}
|
|
91
|
-
.rs-table-body-info-wheel-area {
|
|
92
|
-
width: 100%;
|
|
93
|
-
}
|
|
94
|
-
.rs-table-cell {
|
|
95
|
-
height: 36px;
|
|
96
|
-
border-bottom: 1px solid #eee;
|
|
97
|
-
display: block;
|
|
98
|
-
overflow: hidden;
|
|
99
|
-
position: absolute;
|
|
100
|
-
white-space: normal;
|
|
101
|
-
background: #fff;
|
|
102
|
-
transition: none;
|
|
103
|
-
box-sizing: border-box;
|
|
104
|
-
}
|
|
105
|
-
.rs-table-cell.first {
|
|
106
|
-
border-left-width: 0;
|
|
107
|
-
}
|
|
108
|
-
.rs-table-cell-wrap1 {
|
|
109
|
-
display: table;
|
|
110
|
-
}
|
|
111
|
-
.rs-table-cell-wrap2 {
|
|
112
|
-
display: table-row;
|
|
113
|
-
}
|
|
114
|
-
.rs-table-cell-wrap3 {
|
|
115
|
-
display: table-cell;
|
|
116
|
-
vertical-align: middle;
|
|
117
|
-
}
|
|
118
|
-
.rs-table-cell-content {
|
|
119
|
-
padding: 8px;
|
|
120
|
-
box-sizing: border-box;
|
|
121
|
-
background-color: #ffffff;
|
|
122
|
-
color: #222;
|
|
123
|
-
font-size: 14px;
|
|
124
|
-
font-style: normal;
|
|
125
|
-
font-weight: 500;
|
|
126
|
-
line-height: 20px;
|
|
127
|
-
overflow: hidden;
|
|
128
|
-
white-space: nowrap;
|
|
129
|
-
text-overflow: ellipsis;
|
|
130
|
-
-ms-text-overflow: ellipsis;
|
|
131
|
-
-o-text-overflow: ellipsis;
|
|
132
|
-
width: 100%;
|
|
133
|
-
}
|
|
134
|
-
.rs-table-cell-header-sortable {
|
|
135
|
-
cursor: pointer;
|
|
136
|
-
}
|
|
137
|
-
.rs-table-cell-header-sort-wrapper {
|
|
138
|
-
display: inline-block;
|
|
139
|
-
}
|
|
140
|
-
.rs-table-cell-full-text:hover {
|
|
141
|
-
overflow: visible;
|
|
142
|
-
z-index: 2 !important;
|
|
143
|
-
width: auto !important;
|
|
144
|
-
box-shadow: inset #3871dc 0px 0px 2px !important;
|
|
145
|
-
}
|
|
146
|
-
.rs-table-cell-full-text:hover .rs-table-cell-content {
|
|
147
|
-
width: auto !important;
|
|
148
|
-
}
|
|
149
|
-
.rs-table-column-resize-spanner {
|
|
150
|
-
height: 36px;
|
|
151
|
-
width: 2px;
|
|
152
|
-
z-index: 3;
|
|
153
|
-
position: absolute;
|
|
154
|
-
cursor: ew-resize !important;
|
|
155
|
-
outline: none;
|
|
156
|
-
}
|
|
157
|
-
.rs-table-column-resize-spanner:hover {
|
|
158
|
-
background-color: #E76458;
|
|
159
|
-
}
|
|
160
|
-
.rs-table-cell-group-fixed-left {
|
|
161
|
-
position: absolute;
|
|
162
|
-
z-index: 4;
|
|
163
|
-
background: #fff;
|
|
164
|
-
}
|
|
165
|
-
.rs-table-cell-group-fixed-right {
|
|
166
|
-
position: absolute;
|
|
167
|
-
z-index: 4;
|
|
168
|
-
background: #fff;
|
|
169
|
-
}
|
|
170
|
-
.rs-table-cell-group-left-shadow {
|
|
171
|
-
box-shadow: 3px 0px 5px rgba(9, 9, 9, 0.08);
|
|
172
|
-
}
|
|
173
|
-
.rs-table-cell-group-shadow,
|
|
174
|
-
.rs-table-cell-group-right-shadow {
|
|
175
|
-
box-shadow: -3px 0px 5px rgba(9, 9, 9, 0.08);
|
|
176
|
-
}
|
|
177
|
-
.rs-table-mouse-area {
|
|
178
|
-
display: none;
|
|
179
|
-
background: #E76458;
|
|
180
|
-
left: -1px;
|
|
181
|
-
top: 0;
|
|
182
|
-
position: absolute;
|
|
183
|
-
width: 2px;
|
|
184
|
-
z-index: 6;
|
|
185
|
-
}
|
|
186
|
-
.rs-table-mouse-area input {
|
|
187
|
-
display: none;
|
|
188
|
-
}
|
|
189
|
-
.rs-table-mouse-area span {
|
|
190
|
-
background: #E76458;
|
|
191
|
-
}
|
|
192
|
-
.rs-table-cell-bordered .rs-table-cell {
|
|
193
|
-
border-right: 1px solid #eee;
|
|
194
|
-
}
|
|
195
|
-
.rs-table-word-wrap .rs-table-cell-content {
|
|
196
|
-
white-space: normal;
|
|
197
|
-
}
|
|
198
|
-
.rs-table-row-expanded {
|
|
199
|
-
position: absolute;
|
|
200
|
-
height: 46px;
|
|
201
|
-
bottom: 0;
|
|
202
|
-
width: 100%;
|
|
203
|
-
z-index: 4;
|
|
204
|
-
border-top: 1px solid #eee;
|
|
205
|
-
padding: 10px;
|
|
206
|
-
background: #f5f5f5;
|
|
207
|
-
}
|
|
208
|
-
.rs-table-loader-wrapper {
|
|
209
|
-
visibility: hidden;
|
|
210
|
-
position: absolute;
|
|
211
|
-
height: 100%;
|
|
212
|
-
width: 100%;
|
|
213
|
-
background-color: rgba(255, 255, 255, 0.9);
|
|
214
|
-
}
|
|
215
|
-
.rs-table-loader {
|
|
216
|
-
width: 100%;
|
|
217
|
-
text-align: center;
|
|
218
|
-
top: 50%;
|
|
219
|
-
position: absolute;
|
|
220
|
-
margin-top: -20px;
|
|
221
|
-
line-height: 40px;
|
|
222
|
-
}
|
|
223
|
-
.rs-table-loader-icon {
|
|
224
|
-
width: 18px;
|
|
225
|
-
height: 18px;
|
|
226
|
-
display: inline-block;
|
|
227
|
-
position: relative;
|
|
228
|
-
margin-right: 12px;
|
|
229
|
-
padding-top: 3px;
|
|
230
|
-
}
|
|
231
|
-
.rs-table-loader-icon::before,
|
|
232
|
-
.rs-table-loader-icon::after {
|
|
233
|
-
width: 18px;
|
|
234
|
-
height: 18px;
|
|
235
|
-
}
|
|
236
|
-
.rs-table-loader-icon::before,
|
|
237
|
-
.rs-table-loader-icon::after {
|
|
238
|
-
content: "";
|
|
239
|
-
position: absolute;
|
|
240
|
-
left: 0;
|
|
241
|
-
right: 0;
|
|
242
|
-
display: block;
|
|
243
|
-
border-radius: 50%;
|
|
244
|
-
}
|
|
245
|
-
.rs-table-loader-icon::before {
|
|
246
|
-
border: 3px solid rgba(247, 247, 250, 0.8);
|
|
247
|
-
}
|
|
248
|
-
.rs-table-loader-icon::after {
|
|
249
|
-
border-width: 3px;
|
|
250
|
-
border-style: solid;
|
|
251
|
-
border-color: #a6a6a6 transparent transparent;
|
|
252
|
-
-webkit-animation: loaderSpin 0.6s infinite linear;
|
|
253
|
-
animation: loaderSpin 0.6s infinite linear;
|
|
254
|
-
}
|
|
255
|
-
.rs-table-loading .rs-table-loader-wrapper {
|
|
256
|
-
visibility: visible;
|
|
257
|
-
}
|
|
258
|
-
.rs-table-cell-expand-icon {
|
|
259
|
-
cursor: pointer;
|
|
260
|
-
outline: none;
|
|
261
|
-
}
|
|
262
|
-
.rs-table-cell-expand-wrapper {
|
|
263
|
-
margin-right: 10px;
|
|
264
|
-
display: inline-block;
|
|
265
|
-
cursor: pointer;
|
|
266
|
-
}
|
|
267
|
-
.rs-table-scrollbar {
|
|
268
|
-
background: rgba(45, 45, 45, 0.05);
|
|
269
|
-
position: absolute;
|
|
270
|
-
}
|
|
271
|
-
.rs-table-scrollbar-active {
|
|
272
|
-
background: rgba(45, 45, 45, 0.1);
|
|
273
|
-
}
|
|
274
|
-
.rs-table-scrollbar-hide {
|
|
275
|
-
display: none;
|
|
276
|
-
}
|
|
277
|
-
.rs-table-scrollbar-handle {
|
|
278
|
-
position: absolute;
|
|
279
|
-
background: rgba(45, 45, 45, 0.5);
|
|
280
|
-
border-radius: 4px;
|
|
281
|
-
}
|
|
282
|
-
.rs-table-scrollbar-horizontal {
|
|
283
|
-
width: 100%;
|
|
284
|
-
height: 5px;
|
|
285
|
-
bottom: 2px;
|
|
286
|
-
}
|
|
287
|
-
.rs-table-scrollbar-horizontal.fixed {
|
|
288
|
-
position: fixed;
|
|
289
|
-
}
|
|
290
|
-
.rs-table-scrollbar-horizontal .rs-table-scrollbar-handle {
|
|
291
|
-
height: 8px;
|
|
292
|
-
left: 0px;
|
|
293
|
-
top: 1px;
|
|
294
|
-
}
|
|
295
|
-
.rs-table-scrollbar-horizontal .rs-table-scrollbar-pressed,
|
|
296
|
-
.rs-table-scrollbar-horizontal:hover {
|
|
297
|
-
height: 5px;
|
|
298
|
-
box-shadow: 1px 1px 2px #ddd inset;
|
|
299
|
-
}
|
|
300
|
-
.rs-table-scrollbar-horizontal .rs-table-scrollbar-pressed .rs-table-scrollbar-handle,
|
|
301
|
-
.rs-table-scrollbar-horizontal:hover .rs-table-scrollbar-handle {
|
|
302
|
-
top: 2px;
|
|
303
|
-
height: 5px;
|
|
304
|
-
}
|
|
305
|
-
.rs-table-scrollbar-vertical {
|
|
306
|
-
top: 0;
|
|
307
|
-
right: 0px;
|
|
308
|
-
width: 5px;
|
|
309
|
-
bottom: 2px;
|
|
310
|
-
}
|
|
311
|
-
.rs-table-scrollbar-vertical .rs-table-scrollbar-handle {
|
|
312
|
-
min-height: 20px;
|
|
313
|
-
width: 5px;
|
|
314
|
-
top: 0px;
|
|
315
|
-
left: 1px;
|
|
316
|
-
}
|
|
317
|
-
.rs-table-scrollbar-vertical .rs-table-scrollbar-pressed,
|
|
318
|
-
.rs-table-scrollbar-vertical:hover {
|
|
319
|
-
width: 5px;
|
|
320
|
-
box-shadow: 1px 1px 2px #ddd inset;
|
|
321
|
-
}
|
|
322
|
-
.rs-table-scrollbar-vertical .rs-table-scrollbar-pressed .rs-table-scrollbar-handle,
|
|
323
|
-
.rs-table-scrollbar-vertical:hover .rs-table-scrollbar-handle {
|
|
324
|
-
left: 2px;
|
|
325
|
-
width: 5px;
|
|
326
|
-
}
|
|
327
|
-
.rs-table-column-group {
|
|
328
|
-
position: absolute;
|
|
329
|
-
left: 0;
|
|
330
|
-
right: 0;
|
|
331
|
-
top: 0;
|
|
332
|
-
width: 100%;
|
|
333
|
-
}
|
|
334
|
-
.rs-table-column-group-header {
|
|
335
|
-
border-bottom: 1px solid #eee;
|
|
336
|
-
position: absolute;
|
|
337
|
-
width: 100%;
|
|
338
|
-
}
|
|
339
|
-
.rs-table-column-group-header-content {
|
|
340
|
-
display: table-cell;
|
|
341
|
-
padding: 8px;
|
|
342
|
-
}
|
|
343
|
-
.rs-table-column-group-cell {
|
|
344
|
-
position: absolute;
|
|
345
|
-
border-right: 1px solid #eee;
|
|
346
|
-
}
|
|
347
|
-
.qbs-table-custom-pagination {
|
|
348
|
-
display: flex;
|
|
349
|
-
justify-content: space-between;
|
|
350
|
-
padding: 8px 12px;
|
|
351
|
-
min-height: 40px;
|
|
352
|
-
align-items: center;
|
|
353
|
-
border-radius: 0 0 4px 4px;
|
|
354
|
-
border-top: 1px solid #d6d8dc;
|
|
355
|
-
background: #fff;
|
|
356
|
-
}
|
|
357
|
-
.qbs-table-custom-pagination-header {
|
|
358
|
-
border-bottom: 1px solid #eee;
|
|
359
|
-
position: absolute;
|
|
360
|
-
width: 100%;
|
|
361
|
-
}
|
|
362
|
-
.qbs-table-custom-pagination-header-content {
|
|
363
|
-
display: table-cell;
|
|
364
|
-
padding: 8px;
|
|
365
|
-
}
|
|
366
|
-
.qbs-table-custom-pagination .qbs-table-pagination-dropdown {
|
|
367
|
-
width: 65px;
|
|
368
|
-
height: 26px;
|
|
369
|
-
display: flex;
|
|
370
|
-
align-items: center;
|
|
371
|
-
justify-content: center;
|
|
372
|
-
font-size: 14px;
|
|
373
|
-
font-style: normal;
|
|
374
|
-
font-weight: 500;
|
|
375
|
-
line-height: 20px;
|
|
376
|
-
border-radius: 6px;
|
|
377
|
-
border: 1px solid #d6d8dc;
|
|
378
|
-
background: #fff;
|
|
379
|
-
}
|
|
380
|
-
.qbs-table-custom-pagination .qbs-table-icon-container {
|
|
381
|
-
padding: 0;
|
|
382
|
-
cursor: pointer;
|
|
383
|
-
display: flex;
|
|
384
|
-
justify-items: center;
|
|
385
|
-
align-items: center;
|
|
386
|
-
color: black;
|
|
387
|
-
background-color: transparent;
|
|
388
|
-
width: 24px;
|
|
389
|
-
height: 24px;
|
|
390
|
-
border-radius: 4px;
|
|
391
|
-
border: 1px solid #999696;
|
|
392
|
-
}
|
|
393
|
-
.qbs-table-custom-pagination .qbs-table-icon-container:hover {
|
|
394
|
-
color: blue;
|
|
395
|
-
}
|
|
396
|
-
.qbs-table-custom-pagination .qbs-table-icon-container:disabled {
|
|
397
|
-
color: grey;
|
|
398
|
-
cursor: not-allowed;
|
|
399
|
-
}
|
|
400
|
-
.qbs-table-custom-pagination .qbs-table-icon-container svg {
|
|
401
|
-
width: 16px;
|
|
402
|
-
height: 16px;
|
|
403
|
-
margin: 0 auto;
|
|
404
|
-
}
|
|
405
|
-
.qbs-table-custom-pagination .qbs-table-pagination-right-block {
|
|
406
|
-
display: flex;
|
|
407
|
-
align-items: center;
|
|
408
|
-
gap: 12px;
|
|
409
|
-
}
|
|
410
|
-
.qbs-table-custom-pagination .qbs-table-pagination-right-block .block-container {
|
|
411
|
-
display: flex;
|
|
412
|
-
align-items: center;
|
|
413
|
-
gap: 12px;
|
|
414
|
-
}
|
|
415
|
-
.qbs-table-custom-pagination .qbs-table-pagination-right-block .block-container .block-item {
|
|
416
|
-
margin: 0;
|
|
417
|
-
display: flex;
|
|
418
|
-
cursor: pointer;
|
|
419
|
-
align-items: center;
|
|
420
|
-
justify-content: center;
|
|
421
|
-
height: 24px;
|
|
422
|
-
width: 24px;
|
|
423
|
-
padding: 0;
|
|
424
|
-
border-radius: 6px;
|
|
425
|
-
font-size: 13px;
|
|
426
|
-
font-style: normal;
|
|
427
|
-
font-weight: 500;
|
|
428
|
-
line-height: 16px;
|
|
429
|
-
border: 1px solid transparent;
|
|
430
|
-
transition: all 0.2s ease;
|
|
431
|
-
}
|
|
432
|
-
.qbs-table-custom-pagination .qbs-table-pagination-right-block .block-container .block-item:hover {
|
|
433
|
-
border-color: #e76458;
|
|
434
|
-
color: #e76458;
|
|
435
|
-
transition: all 0.2s ease;
|
|
436
|
-
}
|
|
437
|
-
.qbs-table-custom-pagination .qbs-table-pagination-right-block .block-container .block-item:active {
|
|
438
|
-
border-color: #e76458;
|
|
439
|
-
color: #e76458;
|
|
440
|
-
transition: all 0.2s ease;
|
|
441
|
-
}
|
|
442
|
-
.qbs-table-custom-pagination .qbs-table-pagination-right-block .block-container .selected {
|
|
443
|
-
color: #e76458;
|
|
444
|
-
border: 1px solid #e76458;
|
|
445
|
-
transition: all 0.2s ease;
|
|
446
|
-
}
|
|
447
|
-
.qbs-table-pagination-flexBox {
|
|
448
|
-
display: flex;
|
|
449
|
-
align-items: center;
|
|
450
|
-
justify-content: flex-end;
|
|
451
|
-
gap: 12px;
|
|
452
|
-
}
|
|
453
|
-
.qbs-table-pagination-flexBox .qbs-table-pagination-text {
|
|
454
|
-
font-size: 14px;
|
|
455
|
-
font-style: normal;
|
|
456
|
-
font-weight: 500;
|
|
457
|
-
line-height: 20px;
|
|
458
|
-
color: #313131;
|
|
459
|
-
}
|
|
460
|
-
.qbs-table-custom-pagination .qbs-table-pagination-dropdown:focus {
|
|
461
|
-
outline: none;
|
|
462
|
-
}
|
|
463
|
-
.custom-select {
|
|
464
|
-
position: relative;
|
|
465
|
-
display: inline-block;
|
|
466
|
-
}
|
|
467
|
-
.custom-select-trigger {
|
|
468
|
-
padding: 2px 8px;
|
|
469
|
-
cursor: pointer;
|
|
470
|
-
border: 1px solid #d6d8dc;
|
|
471
|
-
border-radius: 4px;
|
|
472
|
-
min-width: 65px;
|
|
473
|
-
position: relative;
|
|
474
|
-
font-size: 14px;
|
|
475
|
-
font-weight: 500;
|
|
476
|
-
}
|
|
477
|
-
.custom-select-options {
|
|
478
|
-
position: absolute;
|
|
479
|
-
width: 100%;
|
|
480
|
-
z-index: 1000;
|
|
481
|
-
list-style: none;
|
|
482
|
-
margin: 2px 0 0;
|
|
483
|
-
padding: 0;
|
|
484
|
-
background: #fff;
|
|
485
|
-
border-radius: 8px;
|
|
486
|
-
box-shadow: 0 8px 20px 0 #00000026;
|
|
487
|
-
}
|
|
488
|
-
ul.custom-select-options.top {
|
|
489
|
-
bottom: 100%;
|
|
490
|
-
}
|
|
491
|
-
.custom-select-option {
|
|
492
|
-
padding: 6px 8px;
|
|
493
|
-
cursor: pointer;
|
|
494
|
-
font-weight: 500;
|
|
495
|
-
font-size: 14px;
|
|
496
|
-
}
|
|
497
|
-
.custom-select-option:hover,
|
|
498
|
-
.custom-select-option.selected {
|
|
499
|
-
background-color: #f0f0f0;
|
|
500
|
-
}
|
|
501
|
-
.custom-select-trigger:before {
|
|
502
|
-
content: "";
|
|
503
|
-
position: absolute;
|
|
504
|
-
right: 10px;
|
|
505
|
-
top: 6px;
|
|
506
|
-
font-weight: bold;
|
|
507
|
-
border: solid black;
|
|
508
|
-
border-width: 0 1px 1px 0;
|
|
509
|
-
display: inline-block;
|
|
510
|
-
padding: 3px;
|
|
511
|
-
vertical-align: middle;
|
|
512
|
-
transform: rotate(45deg);
|
|
513
|
-
-webkit-transform: rotate(45deg);
|
|
514
|
-
}
|
|
515
|
-
.qbs-table .qbs-table-toolbar-container {
|
|
516
|
-
display: flex;
|
|
517
|
-
flex-direction: column;
|
|
518
|
-
gap: 12px;
|
|
519
|
-
}
|
|
520
|
-
.qbs-table .qbs-table-border-wrap {
|
|
521
|
-
border-radius: 0 0 4px 4px;
|
|
522
|
-
border: 1px solid #d6d8dc;
|
|
523
|
-
background: #fff;
|
|
524
|
-
}
|
|
525
|
-
.qbs-table .qbs-table-toolbar {
|
|
526
|
-
display: flex;
|
|
527
|
-
align-items: center;
|
|
528
|
-
justify-content: space-between;
|
|
529
|
-
}
|
|
530
|
-
.qbs-table .qbs-table-toolbar .end-container {
|
|
531
|
-
display: flex;
|
|
532
|
-
gap: 10px;
|
|
533
|
-
align-items: center;
|
|
534
|
-
}
|
|
535
|
-
.qbs-table .qbs-table-toolbar .end-container .rows-count {
|
|
536
|
-
padding: 0px 10px;
|
|
537
|
-
}
|
|
538
|
-
.qbs-table .qbs-table-toolbar .start-container {
|
|
539
|
-
display: flex;
|
|
540
|
-
gap: 10px;
|
|
541
|
-
}
|
|
542
|
-
.qbs-table .qbs-table-toolbar .qbs-table-primary-filter {
|
|
543
|
-
display: flex;
|
|
544
|
-
gap: 12px;
|
|
545
|
-
}
|
|
546
|
-
.qbs-table .sub-qbs-table-toolbar {
|
|
547
|
-
display: flex;
|
|
548
|
-
gap: 10px;
|
|
549
|
-
}
|
|
550
|
-
.qbs-table .qbs-table-search-container {
|
|
551
|
-
position: relative;
|
|
552
|
-
align-items: center;
|
|
553
|
-
}
|
|
554
|
-
.qbs-table .qbs-table-search-container .input {
|
|
555
|
-
height: 36px;
|
|
556
|
-
border-radius: 4px;
|
|
557
|
-
min-width: 280px;
|
|
558
|
-
padding: 0 8px;
|
|
559
|
-
padding-left: 36px !important;
|
|
560
|
-
line-height: 36px;
|
|
561
|
-
font-size: 14px;
|
|
562
|
-
font-style: normal;
|
|
563
|
-
font-weight: 500;
|
|
564
|
-
border-radius: 6px;
|
|
565
|
-
border: 1px solid #d6d8dc;
|
|
566
|
-
background: #fff;
|
|
567
|
-
transition: all 0.2s ease;
|
|
568
|
-
}
|
|
569
|
-
.qbs-table .qbs-table-search-container .input:hover {
|
|
570
|
-
outline: none;
|
|
571
|
-
border: 1px solid #d6d8dc;
|
|
572
|
-
background: #fff;
|
|
573
|
-
}
|
|
574
|
-
.qbs-table .qbs-table-search-container .input:focus {
|
|
575
|
-
outline: none;
|
|
576
|
-
border: 1px solid #222;
|
|
577
|
-
background: #fff;
|
|
578
|
-
transition: all 0.2s ease;
|
|
579
|
-
}
|
|
580
|
-
.qbs-table .qbs-table-search-container .search-button {
|
|
581
|
-
position: absolute;
|
|
582
|
-
left: 1px;
|
|
583
|
-
top: 7px;
|
|
584
|
-
display: flex;
|
|
585
|
-
color: #222;
|
|
586
|
-
background-color: transparent;
|
|
587
|
-
}
|
|
588
|
-
.qbs-table .qbs-table-search-container .search-button .icon {
|
|
589
|
-
width: 20px;
|
|
590
|
-
height: 20px;
|
|
591
|
-
}
|
|
592
|
-
.qbs-table .qbs-table-search-container .close-button {
|
|
593
|
-
position: absolute;
|
|
594
|
-
display: flex;
|
|
595
|
-
right: 31px;
|
|
596
|
-
bottom: 5px;
|
|
597
|
-
color: grey;
|
|
598
|
-
background-color: white;
|
|
599
|
-
}
|
|
600
|
-
.qbs-table .qbs-table-search-container .close-button .icon {
|
|
601
|
-
width: 20px;
|
|
602
|
-
height: 20px;
|
|
603
|
-
}
|
|
604
|
-
.qbs-table .popup-content {
|
|
605
|
-
display: none;
|
|
606
|
-
position: absolute;
|
|
607
|
-
background-color: #f9f9f9;
|
|
608
|
-
box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
|
|
609
|
-
padding: 12px 16px;
|
|
610
|
-
z-index: 1;
|
|
611
|
-
}
|
|
612
|
-
.qbs-table .show {
|
|
613
|
-
display: block !important;
|
|
614
|
-
}
|
|
615
|
-
.qbs-table[data-theme='dark'] {
|
|
616
|
-
background-color: #333333;
|
|
617
|
-
color: #ffffff;
|
|
618
|
-
}
|
|
619
|
-
.rs-table-cell-content[data-theme='dark'] {
|
|
620
|
-
background-color: #333333;
|
|
621
|
-
color: #ffffff;
|
|
622
|
-
}
|
|
623
|
-
/* Dropdown container */
|
|
624
|
-
.qbs-table-menu-dropdown {
|
|
625
|
-
position: relative;
|
|
626
|
-
display: flex;
|
|
627
|
-
width: 100%;
|
|
628
|
-
height: 36px;
|
|
629
|
-
align-items: center;
|
|
630
|
-
justify-content: center;
|
|
631
|
-
}
|
|
632
|
-
/* Button to trigger the qbs-table-menu-dropdown */
|
|
633
|
-
.qbs-table-dropbtn {
|
|
634
|
-
background-color: transparent;
|
|
635
|
-
color: black;
|
|
636
|
-
font-size: 16px;
|
|
637
|
-
border: none;
|
|
638
|
-
cursor: pointer;
|
|
639
|
-
}
|
|
640
|
-
/* Dropdown content (hidden by default) */
|
|
641
|
-
.qbs-table-qbs-table-menu-dropdown-content {
|
|
642
|
-
position: absolute;
|
|
643
|
-
min-width: 75px;
|
|
644
|
-
z-index: 999;
|
|
645
|
-
right: 4px;
|
|
646
|
-
margin-bottom: 0;
|
|
647
|
-
margin-top: 0;
|
|
648
|
-
top: 3px;
|
|
649
|
-
display: flex;
|
|
650
|
-
box-sizing: border-box;
|
|
651
|
-
height: 28px;
|
|
652
|
-
border-radius: 8px;
|
|
653
|
-
border: 1px solid #d6d8dc;
|
|
654
|
-
background: #fff;
|
|
655
|
-
box-shadow: 0px 2px 4px 0px rgba(58, 58, 58, 0.09);
|
|
656
|
-
align-items: center;
|
|
657
|
-
justify-content: flex-end;
|
|
658
|
-
gap: 12px;
|
|
659
|
-
padding: 4px;
|
|
660
|
-
}
|
|
661
|
-
/* Dropdown content items */
|
|
662
|
-
.qbs-table-qbs-table-menu-dropdown-content a {
|
|
663
|
-
padding: 0 !important;
|
|
664
|
-
text-decoration: none;
|
|
665
|
-
display: block;
|
|
666
|
-
font-size: 14px;
|
|
667
|
-
font-style: normal;
|
|
668
|
-
font-weight: 500;
|
|
669
|
-
color: #212121;
|
|
670
|
-
width: auto;
|
|
671
|
-
cursor: pointer;
|
|
672
|
-
transition: all 0.2s ease;
|
|
673
|
-
height: 18px;
|
|
674
|
-
}
|
|
675
|
-
.qbs-table-qbs-table-menu-dropdown-content a svg {
|
|
676
|
-
width: 18px;
|
|
677
|
-
height: 18px;
|
|
678
|
-
}
|
|
679
|
-
.qbs-table-qbs-table-menu-dropdown-content button.qbs-table-dropbtn {
|
|
680
|
-
margin-right: 8px;
|
|
681
|
-
margin-top: 2px;
|
|
682
|
-
}
|
|
683
|
-
.qbs-table-qbs-table-menu-dropdown-content a:hover {
|
|
684
|
-
color: #e76458;
|
|
685
|
-
background: #f4f4f4;
|
|
686
|
-
transition: all 0.2s ease;
|
|
687
|
-
}
|
|
688
|
-
/* Tooltip container */
|
|
689
|
-
.qbs-table-tooltip {
|
|
690
|
-
position: relative;
|
|
691
|
-
display: contents;
|
|
692
|
-
cursor: pointer;
|
|
693
|
-
}
|
|
694
|
-
.qbs-table-tooltip .tooltiptext {
|
|
695
|
-
visibility: hidden;
|
|
696
|
-
background-color: #000;
|
|
697
|
-
color: #fff;
|
|
698
|
-
text-align: center;
|
|
699
|
-
padding: 6px;
|
|
700
|
-
border-radius: 4px;
|
|
701
|
-
position: absolute;
|
|
702
|
-
z-index: 9999;
|
|
703
|
-
opacity: 0;
|
|
704
|
-
transition: opacity 0.3s;
|
|
705
|
-
font-size: 12px;
|
|
706
|
-
font-style: normal;
|
|
707
|
-
font-weight: 400;
|
|
708
|
-
line-height: 16px;
|
|
709
|
-
width: 100px;
|
|
710
|
-
}
|
|
711
|
-
.qbs-table-tooltip.up .tooltiptext {
|
|
712
|
-
bottom: 125%;
|
|
713
|
-
left: 0%;
|
|
714
|
-
}
|
|
715
|
-
.qbs-table-tooltip.down .tooltiptext {
|
|
716
|
-
top: 125%;
|
|
717
|
-
right: 0px;
|
|
718
|
-
left: auto;
|
|
719
|
-
}
|
|
720
|
-
.qbs-table-tooltip:hover .tooltiptext {
|
|
721
|
-
visibility: visible;
|
|
722
|
-
opacity: 1;
|
|
723
|
-
}
|
|
724
|
-
.qbs-table-tooltip .tooltiptext::after {
|
|
725
|
-
content: '';
|
|
726
|
-
position: absolute;
|
|
727
|
-
border-width: 5px;
|
|
728
|
-
border-style: solid;
|
|
729
|
-
}
|
|
730
|
-
.qbs-table-tooltip.up .tooltiptext::after {
|
|
731
|
-
top: 100%;
|
|
732
|
-
left: 50%;
|
|
733
|
-
margin-left: -5px;
|
|
734
|
-
border-color: #000 transparent transparent transparent;
|
|
735
|
-
}
|
|
736
|
-
.qbs-table-tooltip.down .tooltiptext::after {
|
|
737
|
-
bottom: 100%;
|
|
738
|
-
left: 50%;
|
|
739
|
-
margin-left: -5px;
|
|
740
|
-
border-color: transparent transparent #000 transparent;
|
|
741
|
-
}
|
|
742
|
-
.rs-table-row {
|
|
743
|
-
overflow: visible !important;
|
|
744
|
-
}
|
|
745
|
-
.qbs-table-toolbar-sub-container {
|
|
746
|
-
display: flex;
|
|
747
|
-
gap: 12px;
|
|
748
|
-
padding: 10px 12px;
|
|
749
|
-
border-radius: 4px 4px 0 0;
|
|
750
|
-
border: 1px solid #d6d8dc;
|
|
751
|
-
background: #fff;
|
|
752
|
-
border-bottom: unset;
|
|
753
|
-
}
|
|
754
|
-
.qbs-table-toolbar-sub-container .rows-count {
|
|
755
|
-
font-size: 14px;
|
|
756
|
-
font-style: normal;
|
|
757
|
-
font-weight: 500;
|
|
758
|
-
line-height: 20px;
|
|
759
|
-
color: #222;
|
|
760
|
-
}
|
|
761
|
-
.qbs-table-toolbar-sub-container.selected-row {
|
|
762
|
-
background: rgba(231, 100, 88, 0.08);
|
|
763
|
-
}
|
|
764
|
-
.qbs-table-toolbar-sub-container-start {
|
|
765
|
-
display: flex;
|
|
766
|
-
gap: 10px;
|
|
767
|
-
align-items: center;
|
|
768
|
-
}
|
|
769
|
-
.qbs-table-column-popup {
|
|
770
|
-
position: fixed;
|
|
771
|
-
padding: 8px;
|
|
772
|
-
z-index: 999;
|
|
773
|
-
right: 10px;
|
|
774
|
-
border-radius: 8px;
|
|
775
|
-
background: #fff;
|
|
776
|
-
box-shadow: 0px 8px 20px 0px rgba(0, 0, 0, 0.15);
|
|
777
|
-
min-width: 272px;
|
|
778
|
-
gap: 4px;
|
|
779
|
-
display: flex;
|
|
780
|
-
flex-direction: column;
|
|
781
|
-
max-height: 500px;
|
|
782
|
-
}
|
|
783
|
-
.qbs-table-popup-container {
|
|
784
|
-
max-width: 400px;
|
|
785
|
-
overflow-y: auto;
|
|
786
|
-
}
|
|
787
|
-
.qbs-table-container {
|
|
788
|
-
padding: 8px 4px;
|
|
789
|
-
white-space: nowrap;
|
|
790
|
-
width: 100%;
|
|
791
|
-
display: flex;
|
|
792
|
-
align-items: center;
|
|
793
|
-
justify-content: space-between;
|
|
794
|
-
gap: 8px;
|
|
795
|
-
}
|
|
796
|
-
.qbs-table-columns-container {
|
|
797
|
-
display: flex;
|
|
798
|
-
flex-direction: row-reverse;
|
|
799
|
-
}
|
|
800
|
-
.qbs-table-columns-label {
|
|
801
|
-
display: flex;
|
|
802
|
-
gap: 10px;
|
|
803
|
-
}
|
|
804
|
-
.qbs-table-columns-drag-icon {
|
|
805
|
-
cursor: grab;
|
|
806
|
-
margin-right: 0;
|
|
807
|
-
}
|
|
808
|
-
.qbs-table-column {
|
|
809
|
-
flex: 1;
|
|
810
|
-
}
|
|
811
|
-
.rs-table-cell-header .rs-table-cell-content {
|
|
812
|
-
padding: 8px;
|
|
813
|
-
border-radius: 0px;
|
|
814
|
-
border-right: 0px;
|
|
815
|
-
background: #f4f4f4;
|
|
816
|
-
font-size: 14px;
|
|
817
|
-
font-style: normal;
|
|
818
|
-
font-weight: 500;
|
|
819
|
-
line-height: 20px;
|
|
820
|
-
color: #222;
|
|
821
|
-
}
|
|
822
|
-
.qbs-table .qbs-table-border-wrap .rs-table .rs-table-cell:hover ~ .rs-table-column-resize-spanner,
|
|
823
|
-
.qbs-table .qbs-table-border-wrap .rs-table .rs-table-cell ~ .rs-table-column-resize-spanner:hover {
|
|
824
|
-
background-color: #e76458;
|
|
825
|
-
}
|
|
826
|
-
.qbs-table .qbs-table-border-wrap .rs-table .rs-table-cell:hover ~ .rs-table-column-resize-spanner:before,
|
|
827
|
-
.qbs-table .qbs-table-border-wrap .rs-table .rs-table-cell ~ .rs-table-column-resize-spanner:hover:before {
|
|
828
|
-
border-color: transparent #e76458 transparent transparent;
|
|
829
|
-
}
|
|
830
|
-
.qbs-table .qbs-table-border-wrap .rs-table .rs-table-cell:hover ~ .rs-table-column-resize-spanner:after,
|
|
831
|
-
.qbs-table .qbs-table-border-wrap .rs-table .rs-table-cell ~ .rs-table-column-resize-spanner:hover:after {
|
|
832
|
-
border-color: transparent transparent transparent #e76458;
|
|
833
|
-
}
|
|
834
|
-
.qbs-table-checkbox {
|
|
835
|
-
position: relative;
|
|
836
|
-
display: flex;
|
|
837
|
-
align-items: center;
|
|
838
|
-
justify-content: center;
|
|
839
|
-
}
|
|
840
|
-
.qbs-table-checkbox .qbs-table-checkbox-input {
|
|
841
|
-
opacity: 0;
|
|
842
|
-
}
|
|
843
|
-
.qbs-table-checkbox .qbs-table-checkbox-input ~ label {
|
|
844
|
-
position: absolute;
|
|
845
|
-
border-radius: 3px;
|
|
846
|
-
border: 1px solid #999696;
|
|
847
|
-
width: 20px;
|
|
848
|
-
height: 20px;
|
|
849
|
-
top: 7px;
|
|
850
|
-
transition: all 0.2s ease;
|
|
851
|
-
cursor: pointer;
|
|
852
|
-
}
|
|
853
|
-
.qbs-table-checkbox .qbs-table-checkbox-input ~ label svg {
|
|
854
|
-
opacity: 0;
|
|
855
|
-
transition: all 0.2s ease;
|
|
856
|
-
position: absolute;
|
|
857
|
-
left: 5px;
|
|
858
|
-
top: 5px;
|
|
859
|
-
width: 9px;
|
|
860
|
-
height: 9px;
|
|
861
|
-
}
|
|
862
|
-
.qbs-table-checkbox .qbs-table-checkbox-input:checked ~ label {
|
|
863
|
-
transition: all 0.2s ease;
|
|
864
|
-
border-radius: 3px;
|
|
865
|
-
background: #e76458;
|
|
866
|
-
border-color: #e76458;
|
|
867
|
-
}
|
|
868
|
-
.qbs-table-checkbox .qbs-table-checkbox-input:checked ~ label svg {
|
|
869
|
-
opacity: 1;
|
|
870
|
-
transition: all 0.2s ease;
|
|
871
|
-
}
|
|
872
|
-
.qbs-checkbox-border-none .rs-table-cell-content {
|
|
873
|
-
border-right: unset;
|
|
874
|
-
}
|
|
875
|
-
.qbs-table-popup-item {
|
|
876
|
-
display: flex;
|
|
877
|
-
flex-direction: column;
|
|
878
|
-
gap: 4px;
|
|
879
|
-
}
|
|
880
|
-
.qbs-table-popup-item .qbs-table-popup-label {
|
|
881
|
-
padding: 4px;
|
|
882
|
-
font-size: 12px;
|
|
883
|
-
font-style: normal;
|
|
884
|
-
font-weight: 600;
|
|
885
|
-
line-height: 16px;
|
|
886
|
-
color: #585858;
|
|
887
|
-
}
|
|
888
|
-
.qbs-table-popup-item .qbs-table-popup-value {
|
|
889
|
-
padding: 8px;
|
|
890
|
-
font-size: 14px;
|
|
891
|
-
font-style: normal;
|
|
892
|
-
font-weight: 500;
|
|
893
|
-
line-height: 20px;
|
|
894
|
-
color: #222;
|
|
895
|
-
}
|
|
896
|
-
.qbs-table-divider {
|
|
897
|
-
width: 100%;
|
|
898
|
-
background: #d6d8dc;
|
|
899
|
-
display: flex;
|
|
900
|
-
min-height: 1px;
|
|
901
|
-
}
|
|
902
|
-
.qbs-table-checkbox.qbs-table-custom-checkbox .qbs-table-checkbox-input ~ label {
|
|
903
|
-
top: -2px;
|
|
904
|
-
}
|
|
905
|
-
.qbs-table-container .qbs-table-popup-value {
|
|
906
|
-
padding: 0;
|
|
907
|
-
flex: 1;
|
|
908
|
-
margin-left: 8px;
|
|
909
|
-
transition: all 0.2s ease;
|
|
910
|
-
}
|
|
911
|
-
.qbs-table-container:hover .qbs-table-popup-value,
|
|
912
|
-
.qbs-table-container:hover .qbs-table-popup-label {
|
|
913
|
-
transition: all 0.2s ease;
|
|
914
|
-
color: #e76458;
|
|
915
|
-
}
|
|
916
|
-
.qbs-table-container .qbs-table-popup-label {
|
|
917
|
-
padding: 0;
|
|
918
|
-
flex: 1;
|
|
919
|
-
margin-left: 8px;
|
|
920
|
-
transition: all 0.2s ease;
|
|
921
|
-
}
|
|
922
|
-
.qbs-table-reset-link {
|
|
923
|
-
padding: 8px;
|
|
924
|
-
font-size: 14px;
|
|
925
|
-
font-style: normal;
|
|
926
|
-
font-weight: 500;
|
|
927
|
-
line-height: 20px;
|
|
928
|
-
color: #c63a3a;
|
|
929
|
-
}
|
|
930
|
-
.qbs-table-reset-link:hover {
|
|
931
|
-
color: #c63a3a;
|
|
932
|
-
text-decoration: none;
|
|
933
|
-
}
|
|
934
|
-
.selected-row-action {
|
|
935
|
-
display: flex;
|
|
936
|
-
gap: 10px;
|
|
937
|
-
}
|
|
938
|
-
.selected-row-action .btn {
|
|
939
|
-
background-color: transparent;
|
|
940
|
-
font-weight: 600;
|
|
941
|
-
padding: 4px;
|
|
942
|
-
}
|
|
943
|
-
.qbs-table-row-link {
|
|
944
|
-
text-decoration: none;
|
|
945
|
-
cursor: pointer;
|
|
946
|
-
}
|
|
947
|
-
.qbs-table-row-link:hover {
|
|
948
|
-
text-decoration: none;
|
|
949
|
-
}
|
|
950
|
-
.rs-table-column-group-header-content {
|
|
951
|
-
text-align: center;
|
|
952
|
-
}
|
|
953
|
-
.rs-table-cell-content {
|
|
954
|
-
vertical-align: center !important;
|
|
955
|
-
display: table-cell;
|
|
956
|
-
}
|
|
957
|
-
.row-status:hover .row-status-tooltip {
|
|
958
|
-
display: block;
|
|
959
|
-
}
|
|
960
|
-
.row-status-tooltip {
|
|
961
|
-
display: none;
|
|
962
|
-
position: fixed;
|
|
963
|
-
width: auto;
|
|
964
|
-
height: auto;
|
|
965
|
-
max-width: 300px;
|
|
966
|
-
max-height: 200px;
|
|
967
|
-
padding: 10px;
|
|
968
|
-
border-radius: 8px;
|
|
969
|
-
border: 1px solid #d6d8dc;
|
|
970
|
-
background: #fff;
|
|
971
|
-
box-shadow: 0px 2px 4px 0px rgba(58, 58, 58, 0.15);
|
|
972
|
-
}
|
|
973
|
-
.row-status-tooltip.bottom-position {
|
|
974
|
-
top: 100%;
|
|
975
|
-
}
|
|
976
|
-
.row-status-tooltip.top-position {
|
|
977
|
-
bottom: 100%;
|
|
978
|
-
}
|
|
979
|
-
.dots-container {
|
|
980
|
-
display: flex;
|
|
981
|
-
padding: 10px;
|
|
982
|
-
}
|
|
983
|
-
.dot {
|
|
984
|
-
height: 20px;
|
|
985
|
-
width: 20px;
|
|
986
|
-
margin-right: 10px;
|
|
987
|
-
border-radius: 10px;
|
|
988
|
-
background-color: #b3d4fc;
|
|
989
|
-
-webkit-animation: pulse 1.5s infinite ease-in-out;
|
|
990
|
-
animation: pulse 1.5s infinite ease-in-out;
|
|
991
|
-
}
|
|
992
|
-
.dot:last-child {
|
|
993
|
-
margin-right: 0;
|
|
994
|
-
}
|
|
995
|
-
.dot:nth-child(1) {
|
|
996
|
-
-webkit-animation-delay: -0.3s;
|
|
997
|
-
animation-delay: -0.3s;
|
|
998
|
-
}
|
|
999
|
-
.dot:nth-child(2) {
|
|
1000
|
-
-webkit-animation-delay: -0.1s;
|
|
1001
|
-
animation-delay: -0.1s;
|
|
1002
|
-
}
|
|
1003
|
-
.dot:nth-child(3) {
|
|
1004
|
-
-webkit-animation-delay: 0.1s;
|
|
1005
|
-
animation-delay: 0.1s;
|
|
1006
|
-
}
|
|
1007
|
-
@-webkit-keyframes pulse {
|
|
1008
|
-
0% {
|
|
1009
|
-
-webkit-transform: scale(0.8);
|
|
1010
|
-
transform: scale(0.8);
|
|
1011
|
-
background-color: #b3d4fc;
|
|
1012
|
-
box-shadow: 0 0 0 0 rgba(178, 212, 252, 0.7);
|
|
1013
|
-
}
|
|
1014
|
-
50% {
|
|
1015
|
-
-webkit-transform: scale(1.2);
|
|
1016
|
-
transform: scale(1.2);
|
|
1017
|
-
background-color: #6793fb;
|
|
1018
|
-
box-shadow: 0 0 0 10px rgba(178, 212, 252, 0);
|
|
1019
|
-
}
|
|
1020
|
-
100% {
|
|
1021
|
-
-webkit-transform: scale(0.8);
|
|
1022
|
-
transform: scale(0.8);
|
|
1023
|
-
background-color: #b3d4fc;
|
|
1024
|
-
box-shadow: 0 0 0 0 rgba(178, 212, 252, 0.7);
|
|
1025
|
-
}
|
|
1026
|
-
}
|
|
1027
|
-
@keyframes pulse {
|
|
1028
|
-
0% {
|
|
1029
|
-
-webkit-transform: scale(0.8);
|
|
1030
|
-
transform: scale(0.8);
|
|
1031
|
-
background-color: #b3d4fc;
|
|
1032
|
-
box-shadow: 0 0 0 0 rgba(178, 212, 252, 0.7);
|
|
1033
|
-
}
|
|
1034
|
-
50% {
|
|
1035
|
-
-webkit-transform: scale(1.2);
|
|
1036
|
-
transform: scale(1.2);
|
|
1037
|
-
background-color: #6793fb;
|
|
1038
|
-
box-shadow: 0 0 0 10px rgba(178, 212, 252, 0);
|
|
1039
|
-
}
|
|
1040
|
-
100% {
|
|
1041
|
-
-webkit-transform: scale(0.8);
|
|
1042
|
-
transform: scale(0.8);
|
|
1043
|
-
background-color: #b3d4fc;
|
|
1044
|
-
box-shadow: 0 0 0 0 rgba(178, 212, 252, 0.7);
|
|
1045
|
-
}
|
|
1046
|
-
}
|
|
1047
|
-
.skeleton-table {
|
|
1048
|
-
width: 100%;
|
|
1049
|
-
padding: 10px;
|
|
1050
|
-
}
|
|
1051
|
-
.skeleton-row {
|
|
1052
|
-
display: flex;
|
|
1053
|
-
margin-bottom: 10px;
|
|
1054
|
-
}
|
|
1055
|
-
.skeleton-cell {
|
|
1056
|
-
flex: 1;
|
|
1057
|
-
height: 10px;
|
|
1058
|
-
/* Adjust as needed */
|
|
1059
|
-
background: #d9dbdd;
|
|
1060
|
-
border-radius: 4px;
|
|
1061
|
-
width: 50px;
|
|
1062
|
-
margin-right: 10px !important;
|
|
1063
|
-
-webkit-animation: loading 1.5s infinite;
|
|
1064
|
-
animation: loading 1.5s infinite;
|
|
1065
|
-
}
|
|
1066
|
-
.skeleton-row:last-child .skeleton-cell {
|
|
1067
|
-
margin-right: 0;
|
|
1068
|
-
}
|
|
1069
|
-
@-webkit-keyframes loading {
|
|
1070
|
-
0% {
|
|
1071
|
-
background-color: #e7ecf4;
|
|
1072
|
-
}
|
|
1073
|
-
50% {
|
|
1074
|
-
background-color: #d9dbdd;
|
|
1075
|
-
}
|
|
1076
|
-
100% {
|
|
1077
|
-
background-color: #e7ecf4;
|
|
1078
|
-
}
|
|
1079
|
-
}
|
|
1080
|
-
@keyframes loading {
|
|
1081
|
-
0% {
|
|
1082
|
-
background-color: #e7ecf4;
|
|
1083
|
-
}
|
|
1084
|
-
50% {
|
|
1085
|
-
background-color: #d9dbdd;
|
|
1086
|
-
}
|
|
1087
|
-
100% {
|
|
1088
|
-
background-color: #e7ecf4;
|
|
1089
|
-
}
|
|
1090
|
-
}
|
|
1091
|
-
.skeleton-divider {
|
|
1092
|
-
height: 5px;
|
|
1093
|
-
margin: 10px;
|
|
1094
|
-
}
|
|
1095
|
-
|
|
1
|
+
*,:after,:before{--tw-border-spacing-x:0;--tw-border-spacing-y:0;--tw-translate-x:0;--tw-translate-y:0;--tw-rotate:0;--tw-skew-x:0;--tw-skew-y:0;--tw-scale-x:1;--tw-scale-y:1;--tw-pan-x: ;--tw-pan-y: ;--tw-pinch-zoom: ;--tw-scroll-snap-strictness:proximity;--tw-gradient-from-position: ;--tw-gradient-via-position: ;--tw-gradient-to-position: ;--tw-ordinal: ;--tw-slashed-zero: ;--tw-numeric-figure: ;--tw-numeric-spacing: ;--tw-numeric-fraction: ;--tw-ring-inset: ;--tw-ring-offset-width:0px;--tw-ring-offset-color:#fff;--tw-ring-color:rgba(59,130,246,0.5);--tw-ring-offset-shadow:0 0 transparent;--tw-ring-shadow:0 0 transparent;--tw-shadow:0 0 transparent;--tw-shadow-colored:0 0 transparent;--tw-blur: ;--tw-brightness: ;--tw-contrast: ;--tw-grayscale: ;--tw-hue-rotate: ;--tw-invert: ;--tw-saturate: ;--tw-sepia: ;--tw-drop-shadow: ;--tw-backdrop-blur: ;--tw-backdrop-brightness: ;--tw-backdrop-contrast: ;--tw-backdrop-grayscale: ;--tw-backdrop-hue-rotate: ;--tw-backdrop-invert: ;--tw-backdrop-opacity: ;--tw-backdrop-saturate: ;--tw-backdrop-sepia: ;--tw-contain-size: ;--tw-contain-layout: ;--tw-contain-paint: ;--tw-contain-style: }::backdrop{--tw-border-spacing-x:0;--tw-border-spacing-y:0;--tw-translate-x:0;--tw-translate-y:0;--tw-rotate:0;--tw-skew-x:0;--tw-skew-y:0;--tw-scale-x:1;--tw-scale-y:1;--tw-pan-x: ;--tw-pan-y: ;--tw-pinch-zoom: ;--tw-scroll-snap-strictness:proximity;--tw-gradient-from-position: ;--tw-gradient-via-position: ;--tw-gradient-to-position: ;--tw-ordinal: ;--tw-slashed-zero: ;--tw-numeric-figure: ;--tw-numeric-spacing: ;--tw-numeric-fraction: ;--tw-ring-inset: ;--tw-ring-offset-width:0px;--tw-ring-offset-color:#fff;--tw-ring-color:rgba(59,130,246,0.5);--tw-ring-offset-shadow:0 0 transparent;--tw-ring-shadow:0 0 transparent;--tw-shadow:0 0 transparent;--tw-shadow-colored:0 0 transparent;--tw-blur: ;--tw-brightness: ;--tw-contrast: ;--tw-grayscale: ;--tw-hue-rotate: ;--tw-invert: ;--tw-saturate: ;--tw-sepia: ;--tw-drop-shadow: ;--tw-backdrop-blur: ;--tw-backdrop-brightness: ;--tw-backdrop-contrast: ;--tw-backdrop-grayscale: ;--tw-backdrop-hue-rotate: ;--tw-backdrop-invert: ;--tw-backdrop-opacity: ;--tw-backdrop-saturate: ;--tw-backdrop-sepia: ;--tw-contain-size: ;--tw-contain-layout: ;--tw-contain-paint: ;--tw-contain-style: }/*! tailwindcss v3.4.12 | MIT License | https://tailwindcss.com*/*,:after,:before{box-sizing:border-box;border:0 solid #e5e7eb}:after,:before{--tw-content:""}:host,html{line-height:1.5;-webkit-text-size-adjust:100%;-moz-tab-size:4;-o-tab-size:4;tab-size:4;font-family:ui-sans-serif,system-ui,sans-serif,Apple Color Emoji,Segoe UI Emoji,Segoe UI Symbol,Noto Color Emoji;font-feature-settings:normal;font-variation-settings:normal;-webkit-tap-highlight-color:transparent}body{margin:0;line-height:inherit}hr{height:0;color:inherit;border-top-width:1px}abbr:where([title]){-webkit-text-decoration:underline dotted;text-decoration:underline dotted}h1,h2,h3,h4,h5,h6{font-size:inherit;font-weight:inherit}a{color:inherit;text-decoration:inherit}b,strong{font-weight:bolder}code,kbd,pre,samp{font-family:ui-monospace,SFMono-Regular,Menlo,Monaco,Consolas,Liberation Mono,Courier New,monospace;font-feature-settings:normal;font-variation-settings:normal;font-size:1em}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sub{bottom:-.25em}sup{top:-.5em}table{text-indent:0;border-color:inherit;border-collapse:collapse}button,input,optgroup,select,textarea{font-family:inherit;font-feature-settings:inherit;font-variation-settings:inherit;font-size:100%;font-weight:inherit;line-height:inherit;letter-spacing:inherit;color:inherit;margin:0;padding:0}button,select{text-transform:none}button,input:where([type=button]),input:where([type=reset]),input:where([type=submit]){-webkit-appearance:button;background-color:transparent;background-image:none}:-moz-focusring{outline:auto}:-moz-ui-invalid{box-shadow:none}progress{vertical-align:baseline}::-webkit-inner-spin-button,::-webkit-outer-spin-button{height:auto}[type=search]{-webkit-appearance:textfield;outline-offset:-2px}::-webkit-search-decoration{-webkit-appearance:none}::-webkit-file-upload-button{-webkit-appearance:button;font:inherit}summary{display:list-item}blockquote,dd,dl,figure,h1,h2,h3,h4,h5,h6,hr,p,pre{margin:0}fieldset{margin:0}fieldset,legend{padding:0}menu,ol,ul{list-style:none;margin:0;padding:0}dialog{padding:0}textarea{resize:vertical}input::-moz-placeholder, textarea::-moz-placeholder{opacity:1;color:#9ca3af}input::placeholder,textarea::placeholder{opacity:1;color:#9ca3af}[role=button],button{cursor:pointer}:disabled{cursor:default}audio,canvas,embed,iframe,img,object,svg,video{display:block;vertical-align:middle}img,video{max-width:100%;height:auto}[hidden]{display:none}.container{width:100%}@media (min-width:640px){.container{max-width:640px}}@media (min-width:768px){.container{max-width:768px}}@media (min-width:1024px){.container{max-width:1024px}}@media (min-width:1280px){.container{max-width:1280px}}@media (min-width:1536px){.container{max-width:1536px}}.visible{visibility:visible}.\!fixed{position:fixed!important}.fixed{position:fixed}.absolute{position:absolute}.relative{position:relative}.bottom-1\.5{bottom:.375rem}.bottom-2{bottom:.5rem}.left-1{left:.25rem}.right-0{right:0}.right-2{right:.5rem}.right-7{right:1.75rem}.top-2{top:.5rem}.top-4{top:1rem}.z-10{z-index:10}.col-span-1{grid-column:span 1/span 1}.mt-1{margin-top:.25rem}.mt-2{margin-top:.5rem}.line-clamp-1{overflow:hidden;display:-webkit-box;-webkit-box-orient:vertical;-webkit-line-clamp:1}.block{display:block}.flex{display:flex}.table{display:table}.table-cell{display:table-cell}.grid{display:grid}.hidden{display:none}.h-4{height:1rem}.h-6{height:1.5rem}.w-4{width:1rem}.w-56{width:14rem}.w-6{width:1.5rem}.w-full{width:100%}.rotate-180{--tw-rotate:180deg}.rotate-180,.transform{transform:translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}.cursor-pointer{cursor:pointer}.resize{resize:both}.grid-cols-5{grid-template-columns:repeat(5,minmax(0,1fr))}.flex-col{flex-direction:column}.place-content-start{place-content:start}.items-center{align-items:center}.justify-end{justify-content:flex-end}.gap-3{gap:.75rem}.gap-y-2{row-gap:.5rem}.break-all{word-break:break-all}.rounded{border-radius:.25rem}.rounded-lg{border-radius:.5rem}.border{border-width:1px}.border-2{border-width:2px}.bg-white{--tw-bg-opacity:1;background-color:rgb(255 255 255/var(--tw-bg-opacity))}.p-2{padding:.5rem}.p-3{padding:.75rem}.px-2{padding-left:.5rem;padding-right:.5rem}.pl-1{padding-left:.25rem}.pl-1\.5{padding-left:.375rem}.pr-1{padding-right:.25rem}.text-center{text-align:center}.text-sm{font-size:.875rem;line-height:1.25rem}.text-xs{font-size:.75rem;line-height:1rem}.font-bold{font-weight:700}.font-medium{font-weight:500}.font-semibold{font-weight:600}.leading-7{line-height:1.75rem}.tracking-\[0\.24px\]{letter-spacing:.24px}.text-black{--tw-text-opacity:1;color:rgb(0 0 0/var(--tw-text-opacity))}.text-blue-500{--tw-text-opacity:1;color:rgb(59 130 246/var(--tw-text-opacity))}.shadow-sm{--tw-shadow:0 1px 2px 0 rgba(0,0,0,0.05);--tw-shadow-colored:0 1px 2px 0 var(--tw-shadow-color);box-shadow:var(--tw-ring-offset-shadow,0 0 transparent),var(--tw-ring-shadow,0 0 transparent),var(--tw-shadow)}.filter{filter:var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow)}.transition{transition-property:color,background-color,border-color,text-decoration-color,fill,stroke,opacity,box-shadow,transform,filter,-webkit-backdrop-filter;transition-property:color,background-color,border-color,text-decoration-color,fill,stroke,opacity,box-shadow,transform,filter,backdrop-filter;transition-property:color,background-color,border-color,text-decoration-color,fill,stroke,opacity,box-shadow,transform,filter,backdrop-filter,-webkit-backdrop-filter;transition-timing-function:cubic-bezier(.4,0,.2,1);transition-duration:.15s}.ease-out{transition-timing-function:cubic-bezier(0,0,.2,1)}@keyframes loaderSpin{0%{transform:rotate(0)}to{transform:rotate(1turn)}}.rs-table{position:relative;overflow:hidden;border-radius:0;background-color:#fff}.rs-table-column-resizing{cursor:ew-resize;-webkit-user-select:none;-moz-user-select:none;user-select:none}.rs-table-bordered{border:1px solid #eee}.rs-table-row{overflow:hidden;position:absolute;width:100%;top:0;transition:none;border-bottom:1px solid #eee}.rs-table-hover .rs-table-body-row-wrapper .rs-table-row:hover,.rs-table-hover .rs-table-body-row-wrapper .rs-table-row:hover .rs-table-cell,.rs-table-hover .rs-table-body-row-wrapper .rs-table-row:hover .rs-table-cell-group{background:#fff}.rs-table-row-header,.rs-table-row-header .rs-table-cell{background:#f4f4f4}.rs-table-row-header .rs-table-cell-group-shadow{box-shadow:0 2px 3px rgba(0,0,0,.28);z-index:5}.rs-table-header-row-wrapper{z-index:2;position:relative}.rs-table-affix-header{z-index:3;visibility:hidden}.rs-table-affix-header.fixed{visibility:visible}.rs-table-body-row-wrapper{position:relative;overflow:hidden;z-index:0}.rs-table-body-info{width:100%;text-align:center;top:50%;position:absolute;margin-top:-20px;line-height:40px}.rs-table-body-info .icon{margin:0 10px}.rs-table-body-info-wheel-area{width:100%}.rs-table-cell{height:36px;border-bottom:1px solid #eee;display:block;overflow:hidden;position:absolute;white-space:normal;background:#fff;transition:none;box-sizing:border-box}.rs-table-cell.first{border-left-width:0}.rs-table-cell-wrap1{display:table}.rs-table-cell-wrap2{display:table-row}.rs-table-cell-wrap3{display:table-cell;vertical-align:middle}.rs-table-cell-content{padding:8px;box-sizing:border-box;background-color:#fff;color:#222;font-size:14px;font-style:normal;font-weight:500;line-height:20px;overflow:hidden;white-space:nowrap;text-overflow:ellipsis;-ms-text-overflow:ellipsis;-o-text-overflow:ellipsis;width:100%}.rs-table-cell-header-sortable{cursor:pointer}.rs-table-cell-header-sort-wrapper{display:inline-block}.rs-table-cell-full-text:hover{overflow:visible;z-index:2!important;width:auto!important;box-shadow:inset 0 0 2px #3871dc!important}.rs-table-cell-full-text:hover .rs-table-cell-content{width:auto!important}.rs-table-column-resize-spanner{height:36px;width:2px;z-index:3;position:absolute;cursor:ew-resize!important;outline:none}.rs-table-column-resize-spanner:hover{background-color:#e76458}.rs-table-cell-group-fixed-left,.rs-table-cell-group-fixed-right{position:absolute;z-index:4;background:#fff}.rs-table-cell-group-left-shadow{box-shadow:3px 0 5px rgba(9,9,9,.08)}.rs-table-cell-group-right-shadow,.rs-table-cell-group-shadow{box-shadow:-3px 0 5px rgba(9,9,9,.08)}.rs-table-mouse-area{display:none;background:#e76458;left:-1px;top:0;position:absolute;width:2px;z-index:6}.rs-table-mouse-area input{display:none}.rs-table-mouse-area span{background:#e76458}.rs-table-cell-bordered .rs-table-cell{border-right:1px solid #eee}.rs-table-word-wrap .rs-table-cell-content{white-space:normal}.rs-table-row-expanded{position:absolute;height:46px;bottom:0;width:100%;z-index:4;border-top:1px solid #eee;padding:10px;background:#f5f5f5}.rs-table-loader-wrapper{visibility:hidden;position:absolute;height:100%;width:100%;background-color:hsla(0,0%,100%,.9)}.rs-table-loader{width:100%;text-align:center;top:50%;position:absolute;margin-top:-20px;line-height:40px}.rs-table-loader-icon{width:18px;height:18px;display:inline-block;position:relative;margin-right:12px;padding-top:3px}.rs-table-loader-icon:after,.rs-table-loader-icon:before{width:18px;height:18px;content:"";position:absolute;left:0;right:0;display:block;border-radius:50%}.rs-table-loader-icon:before{border:3px solid rgba(247,247,250,.8)}.rs-table-loader-icon:after{border:3px solid transparent;border-top-color:#a6a6a6;animation:loaderSpin .6s linear infinite}.rs-table-loading .rs-table-loader-wrapper{visibility:visible}.rs-table-cell-expand-icon{cursor:pointer;outline:none}.rs-table-cell-expand-wrapper{margin-right:10px;display:inline-block;cursor:pointer}.rs-table-scrollbar{background:rgba(45,45,45,.05);position:absolute}.rs-table-scrollbar-active{background:rgba(45,45,45,.1)}.rs-table-scrollbar-hide{display:none}.rs-table-scrollbar-handle{position:absolute;background:rgba(45,45,45,.5);border-radius:4px}.rs-table-scrollbar-horizontal{width:100%;height:5px;bottom:2px}.rs-table-scrollbar-horizontal.fixed{position:fixed}.rs-table-scrollbar-horizontal .rs-table-scrollbar-handle{height:8px;left:0;top:1px}.rs-table-scrollbar-horizontal .rs-table-scrollbar-pressed,.rs-table-scrollbar-horizontal:hover{height:5px;box-shadow:inset 1px 1px 2px #ddd}.rs-table-scrollbar-horizontal .rs-table-scrollbar-pressed .rs-table-scrollbar-handle,.rs-table-scrollbar-horizontal:hover .rs-table-scrollbar-handle{top:2px;height:5px}.rs-table-scrollbar-vertical{top:0;right:0;width:5px;bottom:2px}.rs-table-scrollbar-vertical .rs-table-scrollbar-handle{min-height:20px;width:5px;top:0;left:1px}.rs-table-scrollbar-vertical .rs-table-scrollbar-pressed,.rs-table-scrollbar-vertical:hover{width:5px;box-shadow:inset 1px 1px 2px #ddd}.rs-table-scrollbar-vertical .rs-table-scrollbar-pressed .rs-table-scrollbar-handle,.rs-table-scrollbar-vertical:hover .rs-table-scrollbar-handle{left:2px;width:5px}.rs-table-column-group{position:absolute;left:0;right:0;top:0;width:100%}.rs-table-column-group-header{border-bottom:1px solid #eee;position:absolute;width:100%}.rs-table-column-group-header-content{display:table-cell;padding:8px}.rs-table-column-group-cell{position:absolute;border-right:1px solid #eee}.qbs-table-custom-pagination{display:flex;justify-content:space-between;padding:8px 12px;min-height:40px;align-items:center;border-radius:0 0 4px 4px;border-top:1px solid #d6d8dc;background:#fff}.qbs-table-custom-pagination-header{border-bottom:1px solid #eee;position:absolute;width:100%}.qbs-table-custom-pagination-header-content{display:table-cell;padding:8px}.qbs-table-custom-pagination .qbs-table-pagination-dropdown{width:65px;height:26px;display:flex;align-items:center;justify-content:center;font-size:14px;font-style:normal;font-weight:500;line-height:20px;border-radius:6px;border:1px solid #d6d8dc;background:#fff}.qbs-table-custom-pagination .qbs-table-icon-container{padding:0;cursor:pointer;display:flex;justify-items:center;align-items:center;color:#000;background-color:transparent;width:24px;height:24px;border-radius:4px;border:1px solid #999696}.qbs-table-custom-pagination .qbs-table-icon-container:hover{color:#00f}.qbs-table-custom-pagination .qbs-table-icon-container:disabled{color:grey;cursor:not-allowed}.qbs-table-custom-pagination .qbs-table-icon-container svg{width:16px;height:16px;margin:0 auto}.qbs-table-custom-pagination .qbs-table-pagination-right-block,.qbs-table-custom-pagination .qbs-table-pagination-right-block .block-container{display:flex;align-items:center;gap:12px}.qbs-table-custom-pagination .qbs-table-pagination-right-block .block-container .block-item{margin:0;display:flex;cursor:pointer;align-items:center;justify-content:center;height:24px;width:24px;padding:0;border-radius:6px;font-size:13px;font-style:normal;font-weight:500;line-height:16px;border:1px solid transparent;transition:all .2s ease}.qbs-table-custom-pagination .qbs-table-pagination-right-block .block-container .block-item:active,.qbs-table-custom-pagination .qbs-table-pagination-right-block .block-container .block-item:hover{border-color:#e76458;color:#e76458;transition:all .2s ease}.qbs-table-custom-pagination .qbs-table-pagination-right-block .block-container .selected{color:#e76458;border:1px solid #e76458;transition:all .2s ease}.qbs-table-pagination-flexBox{display:flex;align-items:center;justify-content:flex-end;gap:12px}.qbs-table-pagination-flexBox .qbs-table-pagination-text{font-size:14px;font-style:normal;font-weight:500;line-height:20px;color:#313131}.qbs-table-custom-pagination .qbs-table-pagination-dropdown:focus{outline:none}.custom-select{position:relative;display:inline-block}.custom-select-trigger{padding:2px 8px;cursor:pointer;border:1px solid #d6d8dc;border-radius:4px;min-width:65px;position:relative;font-size:14px;font-weight:500}.custom-select-options{position:absolute;width:100%;z-index:1000;list-style:none;margin:2px 0 0;padding:0;background:#fff;border-radius:8px;box-shadow:0 8px 20px 0 rgba(0,0,0,.14901960784313725)}ul.custom-select-options.top{bottom:100%}.custom-select-option{padding:6px 8px;cursor:pointer;font-weight:500;font-size:14px}.custom-select-option.selected,.custom-select-option:hover{background-color:#f0f0f0}.custom-select-trigger:before{content:"";position:absolute;right:10px;top:6px;font-weight:700;border:solid #000;border-width:0 1px 1px 0;display:inline-block;padding:3px;vertical-align:middle;transform:rotate(45deg);-webkit-transform:rotate(45deg)}.qbs-table .qbs-table-toolbar-container{display:flex;flex-direction:column;gap:12px}.qbs-table .qbs-table-border-wrap{border-radius:0 0 4px 4px;border:1px solid #d6d8dc;background:#fff}.qbs-table .qbs-table-toolbar{display:flex;align-items:center;justify-content:space-between}.qbs-table .qbs-table-toolbar .end-container{display:flex;gap:10px;align-items:center}.qbs-table .qbs-table-toolbar .end-container .rows-count{padding:0 10px}.qbs-table .qbs-table-toolbar .start-container{display:flex;gap:10px}.qbs-table .qbs-table-toolbar .qbs-table-primary-filter{display:flex;gap:12px}.qbs-table .sub-qbs-table-toolbar{display:flex;gap:10px}.qbs-table .qbs-table-search-container{position:relative;align-items:center}.qbs-table .qbs-table-search-container .input{height:36px;min-width:280px;padding:0 8px;padding-left:36px!important;line-height:36px;font-size:14px;font-style:normal;font-weight:500;border-radius:6px;border:1px solid #d6d8dc;background:#fff;transition:all .2s ease}.qbs-table .qbs-table-search-container .input:hover{outline:none;border:1px solid #d6d8dc;background:#fff}.qbs-table .qbs-table-search-container .input:focus{outline:none;border:1px solid #222;background:#fff;transition:all .2s ease}.qbs-table .qbs-table-search-container .search-button{position:absolute;left:1px;top:7px;display:flex;color:#222;background-color:transparent}.qbs-table .qbs-table-search-container .search-button .icon{width:20px;height:20px}.qbs-table .qbs-table-search-container .close-button{position:absolute;display:flex;right:31px;bottom:5px;color:grey;background-color:#fff}.qbs-table .qbs-table-search-container .close-button .icon{width:20px;height:20px}.qbs-table .popup-content{display:none;position:absolute;background-color:#f9f9f9;box-shadow:0 8px 16px 0 rgba(0,0,0,.2);padding:12px 16px;z-index:1}.qbs-table .show{display:block!important}.qbs-table[data-theme=dark],.rs-table-cell-content[data-theme=dark]{background-color:#333;color:#fff}.qbs-table-menu-dropdown{position:relative;display:flex;width:100%;height:36px;align-items:center;justify-content:center}.qbs-table-dropbtn{background-color:transparent;color:#000;font-size:16px;border:none;cursor:pointer}.qbs-table-qbs-table-menu-dropdown-content{position:absolute;min-width:75px;z-index:999;right:4px;margin-bottom:0;margin-top:0;top:3px;display:flex;box-sizing:border-box;height:28px;border-radius:8px;border:1px solid #d6d8dc;background:#fff;box-shadow:0 2px 4px 0 rgba(58,58,58,.09);align-items:center;justify-content:flex-end;gap:12px;padding:4px}.qbs-table-qbs-table-menu-dropdown-content a{padding:0!important;text-decoration:none;display:block;font-size:14px;font-style:normal;font-weight:500;color:#212121;width:auto;cursor:pointer;transition:all .2s ease;height:18px}.qbs-table-qbs-table-menu-dropdown-content a svg{width:18px;height:18px}.qbs-table-qbs-table-menu-dropdown-content button.qbs-table-dropbtn{margin-right:8px;margin-top:2px}.qbs-table-qbs-table-menu-dropdown-content a:hover{color:#e76458;background:#f4f4f4;transition:all .2s ease}.qbs-table-tooltip{position:relative;display:contents;cursor:pointer}.qbs-table-tooltip .tooltiptext{visibility:hidden;background-color:#000;color:#fff;text-align:center;padding:6px;border-radius:4px;position:absolute;z-index:9999;opacity:0;transition:opacity .3s;font-size:12px;font-style:normal;font-weight:400;line-height:16px;width:100px}.qbs-table-tooltip.up .tooltiptext{bottom:125%;left:0}.qbs-table-tooltip.down .tooltiptext{top:125%;right:0;left:auto}.qbs-table-tooltip:hover .tooltiptext{visibility:visible;opacity:1}.qbs-table-tooltip .tooltiptext:after{content:"";position:absolute;border-width:5px;border-style:solid}.qbs-table-tooltip.up .tooltiptext:after{top:100%;left:50%;margin-left:-5px;border-color:#000 transparent transparent}.qbs-table-tooltip.down .tooltiptext:after{bottom:100%;left:50%;margin-left:-5px;border-color:transparent transparent #000}.rs-table-row{overflow:visible!important}.qbs-table-toolbar-sub-container{display:flex;gap:12px;padding:10px 12px;border-radius:4px 4px 0 0;border:1px solid #d6d8dc;background:#fff;border-bottom:unset}.qbs-table-toolbar-sub-container .rows-count{font-size:14px;font-style:normal;font-weight:500;line-height:20px;color:#222}.qbs-table-toolbar-sub-container.selected-row{background:rgba(231,100,88,.08)}.qbs-table-toolbar-sub-container-start{display:flex;gap:10px;align-items:center}.qbs-table-column-popup{position:fixed;padding:8px;z-index:999;right:10px;border-radius:8px;background:#fff;box-shadow:0 8px 20px 0 rgba(0,0,0,.15);min-width:272px;gap:4px;display:flex;flex-direction:column;max-height:500px}.qbs-table-popup-container{max-width:400px;overflow-y:auto}.qbs-table-container{padding:8px 4px;white-space:nowrap;width:100%;display:flex;align-items:center;justify-content:space-between;gap:8px}.qbs-table-columns-container{display:flex;flex-direction:row-reverse}.qbs-table-columns-label{display:flex;gap:10px}.qbs-table-columns-drag-icon{cursor:grab;margin-right:0}.qbs-table-column{flex:1}.rs-table-cell-header .rs-table-cell-content{padding:8px;border-radius:0;border-right:0;background:#f4f4f4;font-size:14px;font-style:normal;font-weight:500;line-height:20px;color:#222}.qbs-table .qbs-table-border-wrap .rs-table .rs-table-cell:hover~.rs-table-column-resize-spanner,.qbs-table .qbs-table-border-wrap .rs-table .rs-table-cell~.rs-table-column-resize-spanner:hover{background-color:#e76458}.qbs-table .qbs-table-border-wrap .rs-table .rs-table-cell:hover~.rs-table-column-resize-spanner:before,.qbs-table .qbs-table-border-wrap .rs-table .rs-table-cell~.rs-table-column-resize-spanner:hover:before{border-color:transparent #e76458 transparent transparent}.qbs-table .qbs-table-border-wrap .rs-table .rs-table-cell:hover~.rs-table-column-resize-spanner:after,.qbs-table .qbs-table-border-wrap .rs-table .rs-table-cell~.rs-table-column-resize-spanner:hover:after{border-color:transparent transparent transparent #e76458}.qbs-table-checkbox{position:relative;display:flex;align-items:center;justify-content:center}.qbs-table-checkbox .qbs-table-checkbox-input{opacity:0}.qbs-table-checkbox .qbs-table-checkbox-input~label{position:absolute;border-radius:3px;border:1px solid #999696;width:20px;height:20px;top:7px;transition:all .2s ease;cursor:pointer}.qbs-table-checkbox .qbs-table-checkbox-input~label svg{opacity:0;transition:all .2s ease;position:absolute;left:5px;top:5px;width:9px;height:9px}.qbs-table-checkbox .qbs-table-checkbox-input:checked~label{transition:all .2s ease;border-radius:3px;background:#e76458;border-color:#e76458}.qbs-table-checkbox .qbs-table-checkbox-input:checked~label svg{opacity:1;transition:all .2s ease}.qbs-checkbox-border-none .rs-table-cell-content{border-right:unset}.qbs-table-popup-item{display:flex;flex-direction:column;gap:4px}.qbs-table-popup-item .qbs-table-popup-label{padding:4px;font-size:12px;font-style:normal;font-weight:600;line-height:16px;color:#585858}.qbs-table-popup-item .qbs-table-popup-value{padding:8px;font-size:14px;font-style:normal;font-weight:500;line-height:20px;color:#222}.qbs-table-divider{width:100%;background:#d6d8dc;display:flex;min-height:1px}.qbs-table-checkbox.qbs-table-custom-checkbox .qbs-table-checkbox-input~label{top:-2px}.qbs-table-container .qbs-table-popup-value{padding:0;flex:1;margin-left:8px;transition:all .2s ease}.qbs-table-container:hover .qbs-table-popup-label,.qbs-table-container:hover .qbs-table-popup-value{transition:all .2s ease;color:#e76458}.qbs-table-container .qbs-table-popup-label{padding:0;flex:1;margin-left:8px;transition:all .2s ease}.qbs-table-reset-link{padding:8px;font-size:14px;font-style:normal;font-weight:500;line-height:20px;color:#c63a3a}.qbs-table-reset-link:hover{color:#c63a3a;text-decoration:none}.selected-row-action{display:flex;gap:10px}.selected-row-action .btn{background-color:transparent;font-weight:600;padding:4px}.qbs-table-row-link{cursor:pointer}.qbs-table-row-link,.qbs-table-row-link:hover{text-decoration:none}.rs-table-column-group-header-content{text-align:center}.rs-table-cell-content{vertical-align:center!important;display:table-cell}.row-status:hover .row-status-tooltip{display:block}.row-status-tooltip{display:none;position:fixed;width:auto;height:auto;max-width:300px;max-height:200px;padding:10px;border-radius:8px;border:1px solid #d6d8dc;background:#fff;box-shadow:0 2px 4px 0 rgba(58,58,58,.15)}.row-status-tooltip.bottom-position{top:100%}.row-status-tooltip.top-position{bottom:100%}.dots-container{display:flex;padding:10px}.dot{height:20px;width:20px;margin-right:10px;border-radius:10px;background-color:#b3d4fc;animation:pulse 1.5s ease-in-out infinite}.dot:last-child{margin-right:0}.dot:first-child{animation-delay:-.3s}.dot:nth-child(2){animation-delay:-.1s}.dot:nth-child(3){animation-delay:.1s}@keyframes pulse{0%{transform:scale(.8);background-color:#b3d4fc;box-shadow:0 0 0 0 rgba(178,212,252,.7)}50%{transform:scale(1.2);background-color:#6793fb;box-shadow:0 0 0 10px rgba(178,212,252,0)}to{transform:scale(.8);background-color:#b3d4fc;box-shadow:0 0 0 0 rgba(178,212,252,.7)}}.skeleton-table{width:100%;padding:10px}.skeleton-row{display:flex;margin-bottom:10px}.skeleton-cell{flex:1;height:10px;background:#d9dbdd;border-radius:4px;width:50px;margin-right:10px!important;animation:loading 1.5s infinite}.skeleton-row:last-child .skeleton-cell{margin-right:0}@keyframes loading{0%{background-color:#e7ecf4}50%{background-color:#d9dbdd}to{background-color:#e7ecf4}}.skeleton-divider{height:5px;margin:10px}@media (prefers-color-scheme:dark){.dark\:bg-\[\#424242\]{--tw-bg-opacity:1;background-color:rgb(66 66 66/var(--tw-bg-opacity))}.dark\:text-white{--tw-text-opacity:1;color:rgb(255 255 255/var(--tw-text-opacity))}}
|
|
1096
2
|
/*# sourceMappingURL=index.css.map */
|