@gooddata/sdk-ui-filters 11.43.0-alpha.4 → 11.43.0-alpha.5

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 (31) hide show
  1. package/esm/DateFilter/DateFilter.js +1 -1
  2. package/package.json +13 -14
  3. package/styles/css/attributeFilter.css +14 -655
  4. package/styles/css/attributeFilter.css.map +1 -1
  5. package/styles/css/attributeFilterNext/attributeFilter.css +14 -655
  6. package/styles/css/attributeFilterNext/attributeFilter.css.map +1 -1
  7. package/styles/css/attributeFilterNext/attributeFilterAddons.css +14 -655
  8. package/styles/css/attributeFilterNext/attributeFilterAddons.css.map +1 -1
  9. package/styles/css/attributeFilterNext/attributeFilterDropdownBody.css +14 -655
  10. package/styles/css/attributeFilterNext/attributeFilterDropdownBody.css.map +1 -1
  11. package/styles/css/attributeFilterNext/attributeFilterDropdownButton.css +14 -655
  12. package/styles/css/attributeFilterNext/attributeFilterDropdownButton.css.map +1 -1
  13. package/styles/css/attributeFilterNext/attributeFilterElementsSelect.css +14 -655
  14. package/styles/css/attributeFilterNext/attributeFilterElementsSelect.css.map +1 -1
  15. package/styles/css/attributeFilterNext/attributeFilterEmptyResult.css +14 -655
  16. package/styles/css/attributeFilterNext/attributeFilterEmptyResult.css.map +1 -1
  17. package/styles/css/attributeFilterNext/attributeFilterStatusBar.css +14 -655
  18. package/styles/css/attributeFilterNext/attributeFilterStatusBar.css.map +1 -1
  19. package/styles/css/attributeFilterNext.css +14 -655
  20. package/styles/css/attributeFilterNext.css.map +1 -1
  21. package/styles/css/components/DateFilterBody.css +0 -3
  22. package/styles/css/components/DateFilterBody.css.map +1 -1
  23. package/styles/css/dateFilter.css +14 -658
  24. package/styles/css/dateFilter.css.map +1 -1
  25. package/styles/css/filterGroup.css +2 -2
  26. package/styles/css/main.css +16 -660
  27. package/styles/css/main.css.map +1 -1
  28. package/styles/scss/attributeFilter.scss +0 -1
  29. package/styles/scss/attributeFilterNext/_attributeFilterVariables.scss +0 -1
  30. package/styles/scss/components/DateFilterBody.scss +0 -4
  31. package/styles/scss/filterGroup.scss +1 -1
@@ -1,612 +1,3 @@
1
- /**
2
- * Copyright Schrodinger, LLC
3
- * All rights reserved.
4
- *
5
- * This source code is licensed under the BSD-style license found in the
6
- * LICENSE file in the root directory of this source tree. An additional grant
7
- * of patent rights can be found in the PATENTS file in the same directory.
8
- *
9
- * @providesModule Scrollbar
10
- *
11
- */
12
- /**
13
- * Scrollbars.
14
- */
15
- /* Touching the scroll-track directly makes the scroll-track bolder */
16
- .public_Scrollbar_main.public_Scrollbar_mainActive,
17
- .public_Scrollbar_main {
18
- background-color: #fff;
19
- border-left: 1px solid #d3d3d3;
20
- }
21
-
22
- .fixedDataTable_isRTL .public_Scrollbar_main.public_Scrollbar_mainActive,
23
- .fixedDataTable_isRTL .public_Scrollbar_main {
24
- border-right: 1px solid #d3d3d3;
25
- border-left-width: 0;
26
- }
27
-
28
- .public_Scrollbar_mainOpaque,
29
- .public_Scrollbar_mainOpaque.public_Scrollbar_mainActive,
30
- .public_Scrollbar_mainOpaque:hover {
31
- background-color: #fff;
32
- }
33
-
34
- .public_Scrollbar_face:after {
35
- background-color: #c2c2c2;
36
- }
37
-
38
- .public_Scrollbar_main:hover .public_Scrollbar_face:after,
39
- .public_Scrollbar_mainActive .public_Scrollbar_face:after,
40
- .public_Scrollbar_faceActive:after {
41
- background-color: #7d7d7d;
42
- }
43
-
44
- /**
45
- * Copyright Schrodinger, LLC
46
- * All rights reserved.
47
- *
48
- * This source code is licensed under the BSD-style license found in the
49
- * LICENSE file in the root directory of this source tree. An additional grant
50
- * of patent rights can be found in the PATENTS file in the same directory.
51
- *
52
- * @providesModule fixedDataTable
53
- *
54
- */
55
- /**
56
- * Table.
57
- */
58
- .public_fixedDataTable_main {
59
- border-color: #d3d3d3;
60
- }
61
-
62
- .public_fixedDataTable_header,
63
- .public_fixedDataTable_hasBottomBorder {
64
- border-color: #d3d3d3;
65
- }
66
-
67
- .public_fixedDataTable_header .public_fixedDataTableCell_main {
68
- font-weight: bold;
69
- }
70
-
71
- .public_fixedDataTable_header,
72
- .public_fixedDataTable_scrollbarSpacer,
73
- .public_fixedDataTable_header .public_fixedDataTableCell_main {
74
- background-color: #f6f7f8;
75
- background-image: linear-gradient(#fff, #efefef);
76
- }
77
-
78
- .public_fixedDataTable_scrollbarSpacer {
79
- position: absolute;
80
- z-index: 99;
81
- top: 0;
82
- }
83
-
84
- .public_fixedDataTable_footer .public_fixedDataTableCell_main {
85
- background-color: #f6f7f8;
86
- border-color: #d3d3d3;
87
- }
88
-
89
- .public_fixedDataTable_topShadow {
90
- background-image: linear-gradient(180deg, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0));
91
- }
92
-
93
- .public_fixedDataTable_bottomShadow {
94
- background-image: linear-gradient(0deg, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0));
95
- }
96
-
97
- .public_fixedDataTable_horizontalScrollbar .public_Scrollbar_mainHorizontal {
98
- background-color: #fff;
99
- }
100
-
101
- /**
102
- * Column reorder goodies.
103
- */
104
- .fixedDataTableCellLayout_columnReorderContainer {
105
- border-color: #0284ff;
106
- background-color: rgba(0, 0, 0, 0.1);
107
- width: 12px;
108
- margin-right: -12px;
109
- float: left;
110
- cursor: move;
111
- }
112
-
113
- .fixedDataTable_isRTL .fixedDataTableCellLayout_columnReorderContainer {
114
- margin-right: auto;
115
- margin-left: -12px;
116
- float: right;
117
- }
118
-
119
- .fixedDataTableCellLayout_columnReorderContainer:after {
120
- content: "::";
121
- position: absolute;
122
- top: 50%;
123
- left: 1px;
124
- transform: translateY(-50%);
125
- }
126
-
127
- .fixedDataTable_isRTL .fixedDataTableCellLayout_columnReorderContainer:after {
128
- left: auto;
129
- right: 1px;
130
- }
131
-
132
- /**
133
- * Copyright Schrodinger, LLC
134
- * All rights reserved.
135
- *
136
- * This source code is licensed under the BSD-style license found in the
137
- * LICENSE file in the root directory of this source tree. An additional grant
138
- * of patent rights can be found in the PATENTS file in the same directory.
139
- *
140
- * @providesModule fixedDataTableRow
141
- */
142
- /**
143
- * Table row.
144
- */
145
- .public_fixedDataTableRow_main {
146
- background-color: #fff;
147
- }
148
-
149
- .public_fixedDataTableRow_highlighted,
150
- .public_fixedDataTableRow_highlighted .public_fixedDataTableCell_main {
151
- background-color: #f6f7f8;
152
- }
153
-
154
- .public_fixedDataTableRow_fixedColumnsDivider {
155
- border-color: #d3d3d3;
156
- }
157
-
158
- .public_fixedDataTableRow_columnsShadow {
159
- background-image: linear-gradient(90deg, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0));
160
- }
161
-
162
- .fixedDataTable_isRTL .public_fixedDataTableRow_columnsShadow {
163
- background-image: linear-gradient(270deg, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0));
164
- }
165
-
166
- .public_fixedDataTableRow_columnsRightShadow {
167
- transform: rotate(180deg);
168
- }
169
-
170
- /**
171
- * Copyright Schrodinger, LLC
172
- * All rights reserved.
173
- *
174
- * This source code is licensed under the BSD-style license found in the
175
- * LICENSE file in the root directory of this source tree. An additional grant
176
- * of patent rights can be found in the PATENTS file in the same directory.
177
- *
178
- * @providesModule fixedDataTableColumnResizerLine
179
- *
180
- */
181
- /**
182
- * Column resizer line.
183
- */
184
- .public_fixedDataTableColumnResizerLine_main {
185
- border-color: #0284ff;
186
- width: 1px;
187
- }
188
-
189
- /**
190
- * Copyright Schrodinger, LLC
191
- * All rights reserved.
192
- *
193
- * This source code is licensed under the BSD-style license found in the
194
- * LICENSE file in the root directory of this source tree. An additional grant
195
- * of patent rights can be found in the PATENTS file in the same directory.
196
- *
197
- * @providesModule ScrollbarLayout
198
- */
199
- .ScrollbarLayout_main {
200
- box-sizing: border-box;
201
- outline: none;
202
- overflow: hidden;
203
- position: absolute;
204
- -webkit-user-select: none;
205
- -moz-user-select: none;
206
- -ms-user-select: none;
207
- user-select: none;
208
- }
209
-
210
- .ScrollbarLayout_mainVertical {
211
- bottom: 0;
212
- right: 0;
213
- top: 0;
214
- width: 15px;
215
- }
216
-
217
- .ScrollbarLayout_mainHorizontal {
218
- height: 15px;
219
- left: 0;
220
- }
221
-
222
- .ScrollbarLayout_face {
223
- left: 0;
224
- overflow: hidden;
225
- position: absolute;
226
- z-index: 1;
227
- /* keep the thumb aligned to the center */
228
- display: flex;
229
- justify-content: center;
230
- align-items: center;
231
- }
232
-
233
- /**
234
- * This selector renders the "nub" of the scrollface. The nub must
235
- * be rendered as pseudo-element so that it won't receive any UI events then
236
- * we can get the correct `event.offsetX` and `event.offsetY` from the
237
- * scrollface element while dragging it.
238
- */
239
- .ScrollbarLayout_face:after {
240
- border-radius: 6px;
241
- content: "";
242
- display: block;
243
- position: absolute;
244
- transition-duration: 250ms;
245
- transition-timing-function: ease;
246
- transition-property: background-color, height, width;
247
- }
248
-
249
- .ScrollbarLayout_faceHorizontal {
250
- bottom: 0;
251
- left: 0;
252
- top: 0;
253
- }
254
-
255
- .ScrollbarLayout_faceHorizontal:after {
256
- width: 100%;
257
- height: calc(100% - 8px);
258
- }
259
-
260
- .fixedDataTable_isRTL .ScrollbarLayout_faceHorizontal,
261
- .fixedDataTable_isRTL .ScrollbarLayout_faceHorizontal:after {
262
- right: 0;
263
- left: auto;
264
- }
265
-
266
- /* expand horizontal scrollbar face when active */
267
- .ScrollbarLayout_faceHorizontal.public_Scrollbar_faceActive:after,
268
- .ScrollbarLayout_main:hover .ScrollbarLayout_faceHorizontal:after {
269
- height: calc(100% - 4px);
270
- }
271
-
272
- .ScrollbarLayout_faceVertical {
273
- left: 0;
274
- right: 0;
275
- top: 0;
276
- }
277
-
278
- .ScrollbarLayout_faceVertical:after {
279
- height: 100%;
280
- width: calc(100% - 8px);
281
- }
282
-
283
- /* expand veritcal scrollbar face when active */
284
- .ScrollbarLayout_main:hover .ScrollbarLayout_faceVertical:after,
285
- .ScrollbarLayout_faceVertical.public_Scrollbar_faceActive:after {
286
- width: calc(100% - 4px);
287
- }
288
-
289
- /**
290
- * Copyright Schrodinger, LLC
291
- * All rights reserved.
292
- *
293
- * This source code is licensed under the BSD-style license found in the
294
- * LICENSE file in the root directory of this source tree. An additional grant
295
- * of patent rights can be found in the PATENTS file in the same directory.
296
- *
297
- * @providesModule fixedDataTableCellLayout
298
- */
299
- .fixedDataTableCellLayout_main {
300
- border-right-style: solid;
301
- border-right-width: 1px;
302
- border-width: 0 1px 0 0;
303
- box-sizing: border-box;
304
- display: block;
305
- overflow: hidden;
306
- position: absolute;
307
- white-space: normal;
308
- }
309
-
310
- .fixedDataTable_isRTL .fixedDataTableCellLayout_main {
311
- border-right-width: 0;
312
- border-left-style: solid;
313
- border-left-width: 1px;
314
- }
315
-
316
- .fixedDataTableCellLayout_lastChild {
317
- border-width: 0 1px 1px 0;
318
- }
319
-
320
- .fixedDataTableCellLayout_alignRight {
321
- text-align: right;
322
- }
323
-
324
- .fixedDataTableCellLayout_alignCenter {
325
- text-align: center;
326
- }
327
-
328
- .fixedDataTableCellLayout_wrap {
329
- display: table-cell;
330
- vertical-align: middle;
331
- box-sizing: border-box;
332
- }
333
-
334
- .fixedDataTableCellLayout_wrap1 {
335
- display: table;
336
- }
337
-
338
- .fixedDataTableCellLayout_wrap2 {
339
- display: table-row;
340
- }
341
-
342
- .fixedDataTableCellLayout_wrap3 {
343
- display: table-cell;
344
- vertical-align: middle;
345
- }
346
-
347
- .fixedDataTableCellLayout_columnResizerContainer {
348
- position: absolute;
349
- right: 0px;
350
- width: 6px;
351
- z-index: 1;
352
- }
353
-
354
- .fixedDataTable_isRTL .fixedDataTableCellLayout_columnResizerContainer {
355
- left: 0px;
356
- right: auto;
357
- }
358
-
359
- .fixedDataTableCellLayout_columnResizerContainer:hover {
360
- cursor: ew-resize;
361
- background-color: #0284ff;
362
- }
363
-
364
- /**
365
- * Copyright Schrodinger, LLC
366
- * All rights reserved.
367
- *
368
- * This source code is licensed under the BSD-style license found in the
369
- * LICENSE file in the root directory of this source tree. An additional grant
370
- * of patent rights can be found in the PATENTS file in the same directory.
371
- *
372
- * @providesModule fixedDataTableCellGroupLayout
373
- */
374
- .fixedDataTableCellGroupLayout_cellGroup {
375
- -webkit-backface-visibility: hidden;
376
- backface-visibility: hidden;
377
- left: 0;
378
- overflow: hidden;
379
- position: absolute;
380
- top: 0;
381
- white-space: nowrap;
382
- }
383
-
384
- .fixedDataTable_isRTL .fixedDataTableCellGroupLayout_cellGroup {
385
- right: 0;
386
- left: auto;
387
- }
388
-
389
- .fixedDataTableCellGroupLayout_cellGroup > .public_fixedDataTableCell_main {
390
- display: inline-block;
391
- vertical-align: top;
392
- white-space: normal;
393
- }
394
-
395
- .fixedDataTableCellGroupLayout_cellGroupWrapper {
396
- position: absolute;
397
- top: 0;
398
- }
399
-
400
- /**
401
- * Copyright Schrodinger, LLC
402
- * All rights reserved.
403
- *
404
- * This source code is licensed under the BSD-style license found in the
405
- * LICENSE file in the root directory of this source tree. An additional grant
406
- * of patent rights can be found in the PATENTS file in the same directory.
407
- *
408
- * @providesModule fixedDataTableColumnResizerLineLayout
409
- */
410
- .fixedDataTableColumnResizerLineLayout_mouseArea {
411
- cursor: ew-resize;
412
- position: absolute;
413
- right: -5px;
414
- width: 12px;
415
- }
416
-
417
- .fixedDataTable_isRTL .fixedDataTableColumnResizerLineLayout_mouseArea {
418
- right: auto;
419
- left: -5px;
420
- }
421
-
422
- .fixedDataTableColumnResizerLineLayout_main {
423
- border-right-style: solid;
424
- border-right-width: 1px;
425
- box-sizing: border-box;
426
- position: absolute;
427
- z-index: 100;
428
- pointer-events: none;
429
- }
430
-
431
- .fixedDataTable_isRTL .fixedDataTableColumnResizerLineLayout_main {
432
- border-right-width: 0;
433
- border-left-style: solid;
434
- border-left-width: 1px;
435
- }
436
-
437
- /**
438
- * Copyright Schrodinger, LLC
439
- * All rights reserved.
440
- *
441
- * This source code is licensed under the BSD-style license found in the
442
- * LICENSE file in the root directory of this source tree. An additional grant
443
- * of patent rights can be found in the PATENTS file in the same directory.
444
- *
445
- * @providesModule fixedDataTableLayout
446
- */
447
- .fixedDataTableLayout_main {
448
- border-style: solid;
449
- border-width: 1px;
450
- box-sizing: border-box;
451
- overflow: hidden;
452
- position: relative;
453
- }
454
-
455
- .fixedDataTableLayout_header,
456
- .fixedDataTableLayout_hasBottomBorder {
457
- border-bottom-style: solid;
458
- border-bottom-width: 1px;
459
- }
460
-
461
- .fixedDataTableLayout_footer .public_fixedDataTableCell_main {
462
- border-top-style: solid;
463
- border-top-width: 1px;
464
- }
465
-
466
- .fixedDataTableLayout_topShadow,
467
- .fixedDataTableLayout_bottomShadow {
468
- height: 4px;
469
- left: 0;
470
- position: absolute;
471
- right: 0;
472
- z-index: 1;
473
- }
474
-
475
- .fixedDataTableLayout_bottomShadow {
476
- margin-top: -4px;
477
- }
478
-
479
- .fixedDataTableLayout_rowsContainer {
480
- overflow: hidden;
481
- position: relative;
482
- }
483
-
484
- /**
485
- * Copyright Schrodinger, LLC
486
- * All rights reserved.
487
- *
488
- * This source code is licensed under the BSD-style license found in the
489
- * LICENSE file in the root directory of this source tree. An additional grant
490
- * of patent rights can be found in the PATENTS file in the same directory.
491
- *
492
- * @providesModule fixedDataTableRowLayout
493
- */
494
- .fixedDataTableRowLayout_main {
495
- box-sizing: border-box;
496
- overflow: hidden;
497
- position: absolute;
498
- top: 0;
499
- }
500
-
501
- .fixedDataTableRowLayout_body {
502
- left: 0;
503
- right: 0;
504
- position: absolute;
505
- top: 0;
506
- }
507
-
508
- .fixedDataTableRowLayout_rowExpanded {
509
- box-sizing: border-box;
510
- left: 0;
511
- position: absolute;
512
- }
513
-
514
- .fixedDataTableRowLayout_fixedColumnsDivider {
515
- -webkit-backface-visibility: hidden;
516
- backface-visibility: hidden;
517
- border-left-style: solid;
518
- border-left-width: 1px;
519
- left: 0;
520
- position: absolute;
521
- top: 0;
522
- width: 0;
523
- }
524
-
525
- .fixedDataTable_isRTL .fixedDataTableRowLayout_fixedColumnsDivider {
526
- border-left-width: 0;
527
- border-right-style: solid;
528
- border-right-width: 1px;
529
- }
530
-
531
- .fixedDataTableRowLayout_columnsShadow {
532
- position: absolute;
533
- width: 4px;
534
- }
535
-
536
- .fixedDataTableRowLayout_columnsRightShadow {
537
- right: 1px;
538
- }
539
-
540
- .fixedDataTable_isRTL .fixedDataTableRowLayout_columnsRightShadow {
541
- left: 1px;
542
- right: auto;
543
- }
544
-
545
- .fixedDataTableRowLayout_rowWrapper {
546
- position: absolute;
547
- top: 0;
548
- }
549
-
550
- /**
551
- * Copyright Schrodinger, LLC
552
- * All rights reserved.
553
- *
554
- * This source code is licensed under the BSD-style license found in the
555
- * LICENSE file in the root directory of this source tree. An additional grant
556
- * of patent rights can be found in the PATENTS file in the same directory.
557
- *
558
- * @providesModule fixedDataTableCell
559
- */
560
- /**
561
- * Table cell.
562
- */
563
- .public_fixedDataTableCell_main {
564
- background-color: #fff;
565
- border-color: #d3d3d3;
566
- }
567
-
568
- .public_fixedDataTableCell_highlighted {
569
- background-color: #f4f4f4;
570
- }
571
-
572
- .public_fixedDataTableCell_cellContent {
573
- padding: 8px;
574
- }
575
-
576
- .public_fixedDataTableCell_columnResizerKnob {
577
- background-color: #0284ff;
578
- }
579
-
580
- .public_fixedDataTableCell_hasReorderHandle .public_fixedDataTableCell_wrap1 .public_fixedDataTableCell_cellContent {
581
- margin-left: 12px;
582
- }
583
-
584
- .public_fixedDataTableCell_hasReorderHandle .public_fixedDataTableCell_wrap.public_fixedDataTableCell_cellContent {
585
- padding-left: 20px;
586
- }
587
-
588
- .fixedDataTable_isRTL .public_fixedDataTableCell_hasReorderHandle .public_fixedDataTableCell_wrap1 .public_fixedDataTableCell_cellContent {
589
- margin-left: auto;
590
- margin-right: 12px;
591
- }
592
-
593
- .fixedDataTable_isRTL .public_fixedDataTableCell_hasReorderHandle .public_fixedDataTableCell_wrap.public_fixedDataTableCell_cellContent {
594
- padding-right: 20px;
595
- }
596
-
597
- .public_fixedDataTableCell_reordering {
598
- z-index: 2;
599
- }
600
-
601
- .public_fixedDataTableCell_resizeReorderCellContainer {
602
- position: fixed;
603
- background-color: #f6f7f8;
604
- background-image: linear-gradient(#fff, #efefef);
605
- border-color: #d3d3d3;
606
- border-right-style: solid;
607
- border-right-width: 1px;
608
- }
609
-
610
1
  /* 0, 640px */
611
2
  /* 641px, 1024px */
612
3
  /* 1025px, 1440px */
@@ -1565,62 +956,30 @@ button.gd-list-item {
1565
956
  margin-left: 8px;
1566
957
  }
1567
958
 
1568
- .gd-infinite-list .fixedDataTableLayout_topShadow,
1569
- .gd-infinite-list .fixedDataTableLayout_bottomShadow {
1570
- display: none;
1571
- }
1572
- .gd-infinite-list .public_fixedDataTable_main,
1573
- .gd-infinite-list .fixedDataTableCellLayout_main,
1574
- .gd-infinite-list .fixedDataTableRowLayout_main {
1575
- border: none;
1576
- }
1577
- .gd-infinite-list .public_fixedDataTable_main:focus-visible {
1578
- outline: revert;
1579
- }
1580
- .gd-infinite-list .public_Scrollbar_main, .gd-infinite-list .public_Scrollbar_main.public_Scrollbar_mainActive {
1581
- border-color: transparent;
1582
- }
1583
- .gd-infinite-list .public_Scrollbar_main, .gd-infinite-list .public_Scrollbar_mainActive {
1584
- background-color: transparent;
959
+ .gd-infinite-list .gd-infinite-list-scroll-container {
960
+ overflow-x: hidden;
961
+ overflow-y: auto;
962
+ overscroll-behavior: contain;
1585
963
  }
1586
- .gd-infinite-list .public_Scrollbar_main:hover .public_Scrollbar_face::after, .gd-infinite-list .public_Scrollbar_mainActive .public_Scrollbar_face::after {
1587
- background-color: var(--gd-palette-complementary-5, #b0beca);
964
+ .gd-infinite-list .gd-infinite-list-scroll-container::-webkit-scrollbar {
965
+ -webkit-appearance: none;
966
+ appearance: none;
967
+ width: 6px;
1588
968
  }
1589
- .gd-infinite-list .public_Scrollbar_face::after {
969
+ .gd-infinite-list .gd-infinite-list-scroll-container::-webkit-scrollbar-thumb {
970
+ border-radius: 3px;
1590
971
  background-color: rgba(176, 190, 202, 0.3);
1591
972
  }
1592
- .gd-infinite-list .public_Scrollbar_faceActive::after {
973
+ .gd-infinite-list .gd-infinite-list-scroll-container:hover::-webkit-scrollbar-thumb {
1593
974
  background-color: var(--gd-palette-complementary-5, #b0beca);
1594
975
  }
1595
- .gd-infinite-list .public_fixedDataTable_header,
1596
- .gd-infinite-list .public_fixedDataTable_header .public_fixedDataTableCell_main,
1597
- .gd-infinite-list .public_fixedDataTable_scrollbarSpacer {
1598
- background: none;
1599
- }
1600
- .gd-infinite-list .public_fixedDataTableRow_main,
1601
- .gd-infinite-list .public_fixedDataTableCell_main,
1602
- .gd-infinite-list .public_fixedDataTableRow_highlighted,
1603
- .gd-infinite-list .public_fixedDataTableRow_highlighted .public_fixedDataTableCell_main {
1604
- background-color: transparent;
976
+ .gd-infinite-list .gd-infinite-list-scroll-container:focus-visible {
977
+ outline: revert;
1605
978
  }
1606
- .gd-infinite-list .public_fixedDataTableCell_cellContent {
1607
- padding: 0;
979
+ .gd-infinite-list .gd-infinite-list-item {
1608
980
  white-space: nowrap;
1609
981
  color: var(--gd-palette-complementary-8, #464e56);
1610
982
  }
1611
- .gd-infinite-list .public_fixedDataTableCell_cellContent:hover {
1612
- background-color: transparent;
1613
- }
1614
- .gd-infinite-list .fixedDataTableCellLayout_wrap1 {
1615
- table-layout: fixed;
1616
- }
1617
- .gd-infinite-list .fixedDataTableCellLayout_wrap2,
1618
- .gd-infinite-list .fixedDataTableCellLayout_wrap3 {
1619
- width: inherit;
1620
- }
1621
- .gd-infinite-list .fixedDataTableCellLayout_wrap2,
1622
- .gd-infinite-list .fixedDataTableCellLayout_wrap3,
1623
- .gd-infinite-list .public_fixedDataTableCell_cellContent,
1624
983
  .gd-infinite-list .gd-project-list-item {
1625
984
  height: inherit;
1626
985
  }