@gooddata/sdk-ui-kit 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 (37) hide show
  1. package/esm/@ui/UiGranteeRowControls/UiGranteeRowControls.d.ts +5 -2
  2. package/esm/@ui/UiGranteeRowControls/UiGranteeRowControls.d.ts.map +1 -1
  3. package/esm/@ui/UiGranteeRowControls/UiGranteeRowControls.js +16 -4
  4. package/esm/@ui/UiMenu/UiMenu.d.ts.map +1 -1
  5. package/esm/@ui/UiMenu/UiMenu.js +1 -1
  6. package/esm/@ui/UiMoreOptionsMenu/UiMoreOptionsMenu.d.ts +10 -3
  7. package/esm/@ui/UiMoreOptionsMenu/UiMoreOptionsMenu.d.ts.map +1 -1
  8. package/esm/@ui/UiMoreOptionsMenu/UiMoreOptionsMenu.js +18 -4
  9. package/esm/@ui/UiPermissionMenu/UiPermissionMenu.d.ts +3 -1
  10. package/esm/@ui/UiPermissionMenu/UiPermissionMenu.d.ts.map +1 -1
  11. package/esm/@ui/UiPopover/UiPopover.d.ts.map +1 -1
  12. package/esm/@ui/UiPopover/UiPopover.js +1 -1
  13. package/esm/List/LegacyList.d.ts +1 -1
  14. package/esm/List/LegacyList.d.ts.map +1 -1
  15. package/esm/List/LegacyList.js +103 -55
  16. package/esm/List/List.d.ts +1 -1
  17. package/esm/List/List.d.ts.map +1 -1
  18. package/esm/List/List.js +95 -53
  19. package/esm/Overlay/Overlay.js +2 -2
  20. package/esm/locales.d.ts +3 -0
  21. package/esm/locales.d.ts.map +1 -1
  22. package/esm/locales.js +1 -0
  23. package/esm/sdk-ui-kit.d.ts +19 -8
  24. package/package.json +12 -13
  25. package/src/@ui/UiGranteeRowControls/UiGranteeRowControls.scss +8 -0
  26. package/src/@ui/UiLabelsChecklist/UiLabelsChecklist.scss +11 -0
  27. package/src/@ui/UiMenu/UiMenu.scss +9 -0
  28. package/styles/css/insightList.css +1 -3
  29. package/styles/css/insightList.css.map +1 -1
  30. package/styles/css/list.css +14 -655
  31. package/styles/css/list.css.map +1 -1
  32. package/styles/css/main.css +33 -658
  33. package/styles/css/main.css.map +1 -1
  34. package/styles/css/menu.css +14 -655
  35. package/styles/css/menu.css.map +1 -1
  36. package/styles/scss/insightList.scss +1 -3
  37. package/styles/scss/list.scss +15 -65
@@ -1828,6 +1828,12 @@
1828
1828
  .gd-ui-kit-menu__content-container {
1829
1829
  display: contents;
1830
1830
  }
1831
+ .gd-ui-kit-menu__content-wrapper {
1832
+ display: flex;
1833
+ flex-direction: column;
1834
+ flex: 1 1 auto;
1835
+ min-height: 0;
1836
+ }
1831
1837
  .gd-ui-kit-menu__items-container {
1832
1838
  width: 100%;
1833
1839
  height: 100%;
@@ -3851,17 +3857,24 @@
3851
3857
  align-self: stretch;
3852
3858
  display: flex;
3853
3859
  flex-direction: column;
3860
+ min-height: 0;
3861
+ flex: 1 1 auto;
3854
3862
  }
3855
3863
  .gd-ui-kit-labels-checklist .gd-ui-kit-submenu-header {
3856
3864
  box-sizing: border-box;
3865
+ flex: none;
3857
3866
  }
3858
3867
  .gd-ui-kit-labels-checklist__items {
3859
3868
  display: flex;
3860
3869
  flex-direction: column;
3861
3870
  padding: var(--gd-spacing-5px) 0;
3871
+ overflow-y: auto;
3872
+ overscroll-behavior: contain;
3873
+ min-height: 0;
3862
3874
  }
3863
3875
  .gd-ui-kit-labels-checklist__actions {
3864
3876
  display: flex;
3877
+ flex: none;
3865
3878
  justify-content: flex-end;
3866
3879
  gap: var(--gd-spacing-10px);
3867
3880
  padding: var(--gd-spacing-10px);
@@ -3994,6 +4007,11 @@
3994
4007
  align-items: center;
3995
4008
  cursor: default;
3996
4009
  }
4010
+ .gd-ui-kit-grantee-row-controls__readonly-permission {
4011
+ font-size: 12px;
4012
+ color: var(--gd-palette-complementary-6);
4013
+ white-space: nowrap;
4014
+ }
3997
4015
 
3998
4016
  .gd-ui-kit-toast {
3999
4017
  position: fixed;
@@ -8005,615 +8023,6 @@ textarea.gd-input, textarea.input-text {
8005
8023
  min-width: 95px;
8006
8024
  }
8007
8025
 
8008
- /**
8009
- * Copyright Schrodinger, LLC
8010
- * All rights reserved.
8011
- *
8012
- * This source code is licensed under the BSD-style license found in the
8013
- * LICENSE file in the root directory of this source tree. An additional grant
8014
- * of patent rights can be found in the PATENTS file in the same directory.
8015
- *
8016
- * @providesModule Scrollbar
8017
- *
8018
- */
8019
- /**
8020
- * Scrollbars.
8021
- */
8022
- /* Touching the scroll-track directly makes the scroll-track bolder */
8023
- .public_Scrollbar_main.public_Scrollbar_mainActive,
8024
- .public_Scrollbar_main {
8025
- background-color: #fff;
8026
- border-left: 1px solid #d3d3d3;
8027
- }
8028
-
8029
- .fixedDataTable_isRTL .public_Scrollbar_main.public_Scrollbar_mainActive,
8030
- .fixedDataTable_isRTL .public_Scrollbar_main {
8031
- border-right: 1px solid #d3d3d3;
8032
- border-left-width: 0;
8033
- }
8034
-
8035
- .public_Scrollbar_mainOpaque,
8036
- .public_Scrollbar_mainOpaque.public_Scrollbar_mainActive,
8037
- .public_Scrollbar_mainOpaque:hover {
8038
- background-color: #fff;
8039
- }
8040
-
8041
- .public_Scrollbar_face:after {
8042
- background-color: #c2c2c2;
8043
- }
8044
-
8045
- .public_Scrollbar_main:hover .public_Scrollbar_face:after,
8046
- .public_Scrollbar_mainActive .public_Scrollbar_face:after,
8047
- .public_Scrollbar_faceActive:after {
8048
- background-color: #7d7d7d;
8049
- }
8050
-
8051
- /**
8052
- * Copyright Schrodinger, LLC
8053
- * All rights reserved.
8054
- *
8055
- * This source code is licensed under the BSD-style license found in the
8056
- * LICENSE file in the root directory of this source tree. An additional grant
8057
- * of patent rights can be found in the PATENTS file in the same directory.
8058
- *
8059
- * @providesModule fixedDataTable
8060
- *
8061
- */
8062
- /**
8063
- * Table.
8064
- */
8065
- .public_fixedDataTable_main {
8066
- border-color: #d3d3d3;
8067
- }
8068
-
8069
- .public_fixedDataTable_header,
8070
- .public_fixedDataTable_hasBottomBorder {
8071
- border-color: #d3d3d3;
8072
- }
8073
-
8074
- .public_fixedDataTable_header .public_fixedDataTableCell_main {
8075
- font-weight: bold;
8076
- }
8077
-
8078
- .public_fixedDataTable_header,
8079
- .public_fixedDataTable_scrollbarSpacer,
8080
- .public_fixedDataTable_header .public_fixedDataTableCell_main {
8081
- background-color: #f6f7f8;
8082
- background-image: linear-gradient(#fff, #efefef);
8083
- }
8084
-
8085
- .public_fixedDataTable_scrollbarSpacer {
8086
- position: absolute;
8087
- z-index: 99;
8088
- top: 0;
8089
- }
8090
-
8091
- .public_fixedDataTable_footer .public_fixedDataTableCell_main {
8092
- background-color: #f6f7f8;
8093
- border-color: #d3d3d3;
8094
- }
8095
-
8096
- .public_fixedDataTable_topShadow {
8097
- background-image: linear-gradient(180deg, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0));
8098
- }
8099
-
8100
- .public_fixedDataTable_bottomShadow {
8101
- background-image: linear-gradient(0deg, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0));
8102
- }
8103
-
8104
- .public_fixedDataTable_horizontalScrollbar .public_Scrollbar_mainHorizontal {
8105
- background-color: #fff;
8106
- }
8107
-
8108
- /**
8109
- * Column reorder goodies.
8110
- */
8111
- .fixedDataTableCellLayout_columnReorderContainer {
8112
- border-color: #0284ff;
8113
- background-color: rgba(0, 0, 0, 0.1);
8114
- width: 12px;
8115
- margin-right: -12px;
8116
- float: left;
8117
- cursor: move;
8118
- }
8119
-
8120
- .fixedDataTable_isRTL .fixedDataTableCellLayout_columnReorderContainer {
8121
- margin-right: auto;
8122
- margin-left: -12px;
8123
- float: right;
8124
- }
8125
-
8126
- .fixedDataTableCellLayout_columnReorderContainer:after {
8127
- content: "::";
8128
- position: absolute;
8129
- top: 50%;
8130
- left: 1px;
8131
- transform: translateY(-50%);
8132
- }
8133
-
8134
- .fixedDataTable_isRTL .fixedDataTableCellLayout_columnReorderContainer:after {
8135
- left: auto;
8136
- right: 1px;
8137
- }
8138
-
8139
- /**
8140
- * Copyright Schrodinger, LLC
8141
- * All rights reserved.
8142
- *
8143
- * This source code is licensed under the BSD-style license found in the
8144
- * LICENSE file in the root directory of this source tree. An additional grant
8145
- * of patent rights can be found in the PATENTS file in the same directory.
8146
- *
8147
- * @providesModule fixedDataTableRow
8148
- */
8149
- /**
8150
- * Table row.
8151
- */
8152
- .public_fixedDataTableRow_main {
8153
- background-color: #fff;
8154
- }
8155
-
8156
- .public_fixedDataTableRow_highlighted,
8157
- .public_fixedDataTableRow_highlighted .public_fixedDataTableCell_main {
8158
- background-color: #f6f7f8;
8159
- }
8160
-
8161
- .public_fixedDataTableRow_fixedColumnsDivider {
8162
- border-color: #d3d3d3;
8163
- }
8164
-
8165
- .public_fixedDataTableRow_columnsShadow {
8166
- background-image: linear-gradient(90deg, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0));
8167
- }
8168
-
8169
- .fixedDataTable_isRTL .public_fixedDataTableRow_columnsShadow {
8170
- background-image: linear-gradient(270deg, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0));
8171
- }
8172
-
8173
- .public_fixedDataTableRow_columnsRightShadow {
8174
- transform: rotate(180deg);
8175
- }
8176
-
8177
- /**
8178
- * Copyright Schrodinger, LLC
8179
- * All rights reserved.
8180
- *
8181
- * This source code is licensed under the BSD-style license found in the
8182
- * LICENSE file in the root directory of this source tree. An additional grant
8183
- * of patent rights can be found in the PATENTS file in the same directory.
8184
- *
8185
- * @providesModule fixedDataTableColumnResizerLine
8186
- *
8187
- */
8188
- /**
8189
- * Column resizer line.
8190
- */
8191
- .public_fixedDataTableColumnResizerLine_main {
8192
- border-color: #0284ff;
8193
- width: 1px;
8194
- }
8195
-
8196
- /**
8197
- * Copyright Schrodinger, LLC
8198
- * All rights reserved.
8199
- *
8200
- * This source code is licensed under the BSD-style license found in the
8201
- * LICENSE file in the root directory of this source tree. An additional grant
8202
- * of patent rights can be found in the PATENTS file in the same directory.
8203
- *
8204
- * @providesModule ScrollbarLayout
8205
- */
8206
- .ScrollbarLayout_main {
8207
- box-sizing: border-box;
8208
- outline: none;
8209
- overflow: hidden;
8210
- position: absolute;
8211
- -webkit-user-select: none;
8212
- -moz-user-select: none;
8213
- -ms-user-select: none;
8214
- user-select: none;
8215
- }
8216
-
8217
- .ScrollbarLayout_mainVertical {
8218
- bottom: 0;
8219
- right: 0;
8220
- top: 0;
8221
- width: 15px;
8222
- }
8223
-
8224
- .ScrollbarLayout_mainHorizontal {
8225
- height: 15px;
8226
- left: 0;
8227
- }
8228
-
8229
- .ScrollbarLayout_face {
8230
- left: 0;
8231
- overflow: hidden;
8232
- position: absolute;
8233
- z-index: 1;
8234
- /* keep the thumb aligned to the center */
8235
- display: flex;
8236
- justify-content: center;
8237
- align-items: center;
8238
- }
8239
-
8240
- /**
8241
- * This selector renders the "nub" of the scrollface. The nub must
8242
- * be rendered as pseudo-element so that it won't receive any UI events then
8243
- * we can get the correct `event.offsetX` and `event.offsetY` from the
8244
- * scrollface element while dragging it.
8245
- */
8246
- .ScrollbarLayout_face:after {
8247
- border-radius: 6px;
8248
- content: "";
8249
- display: block;
8250
- position: absolute;
8251
- transition-duration: 250ms;
8252
- transition-timing-function: ease;
8253
- transition-property: background-color, height, width;
8254
- }
8255
-
8256
- .ScrollbarLayout_faceHorizontal {
8257
- bottom: 0;
8258
- left: 0;
8259
- top: 0;
8260
- }
8261
-
8262
- .ScrollbarLayout_faceHorizontal:after {
8263
- width: 100%;
8264
- height: calc(100% - 8px);
8265
- }
8266
-
8267
- .fixedDataTable_isRTL .ScrollbarLayout_faceHorizontal,
8268
- .fixedDataTable_isRTL .ScrollbarLayout_faceHorizontal:after {
8269
- right: 0;
8270
- left: auto;
8271
- }
8272
-
8273
- /* expand horizontal scrollbar face when active */
8274
- .ScrollbarLayout_faceHorizontal.public_Scrollbar_faceActive:after,
8275
- .ScrollbarLayout_main:hover .ScrollbarLayout_faceHorizontal:after {
8276
- height: calc(100% - 4px);
8277
- }
8278
-
8279
- .ScrollbarLayout_faceVertical {
8280
- left: 0;
8281
- right: 0;
8282
- top: 0;
8283
- }
8284
-
8285
- .ScrollbarLayout_faceVertical:after {
8286
- height: 100%;
8287
- width: calc(100% - 8px);
8288
- }
8289
-
8290
- /* expand veritcal scrollbar face when active */
8291
- .ScrollbarLayout_main:hover .ScrollbarLayout_faceVertical:after,
8292
- .ScrollbarLayout_faceVertical.public_Scrollbar_faceActive:after {
8293
- width: calc(100% - 4px);
8294
- }
8295
-
8296
- /**
8297
- * Copyright Schrodinger, LLC
8298
- * All rights reserved.
8299
- *
8300
- * This source code is licensed under the BSD-style license found in the
8301
- * LICENSE file in the root directory of this source tree. An additional grant
8302
- * of patent rights can be found in the PATENTS file in the same directory.
8303
- *
8304
- * @providesModule fixedDataTableCellLayout
8305
- */
8306
- .fixedDataTableCellLayout_main {
8307
- border-right-style: solid;
8308
- border-right-width: 1px;
8309
- border-width: 0 1px 0 0;
8310
- box-sizing: border-box;
8311
- display: block;
8312
- overflow: hidden;
8313
- position: absolute;
8314
- white-space: normal;
8315
- }
8316
-
8317
- .fixedDataTable_isRTL .fixedDataTableCellLayout_main {
8318
- border-right-width: 0;
8319
- border-left-style: solid;
8320
- border-left-width: 1px;
8321
- }
8322
-
8323
- .fixedDataTableCellLayout_lastChild {
8324
- border-width: 0 1px 1px 0;
8325
- }
8326
-
8327
- .fixedDataTableCellLayout_alignRight {
8328
- text-align: right;
8329
- }
8330
-
8331
- .fixedDataTableCellLayout_alignCenter {
8332
- text-align: center;
8333
- }
8334
-
8335
- .fixedDataTableCellLayout_wrap {
8336
- display: table-cell;
8337
- vertical-align: middle;
8338
- box-sizing: border-box;
8339
- }
8340
-
8341
- .fixedDataTableCellLayout_wrap1 {
8342
- display: table;
8343
- }
8344
-
8345
- .fixedDataTableCellLayout_wrap2 {
8346
- display: table-row;
8347
- }
8348
-
8349
- .fixedDataTableCellLayout_wrap3 {
8350
- display: table-cell;
8351
- vertical-align: middle;
8352
- }
8353
-
8354
- .fixedDataTableCellLayout_columnResizerContainer {
8355
- position: absolute;
8356
- right: 0px;
8357
- width: 6px;
8358
- z-index: 1;
8359
- }
8360
-
8361
- .fixedDataTable_isRTL .fixedDataTableCellLayout_columnResizerContainer {
8362
- left: 0px;
8363
- right: auto;
8364
- }
8365
-
8366
- .fixedDataTableCellLayout_columnResizerContainer:hover {
8367
- cursor: ew-resize;
8368
- background-color: #0284ff;
8369
- }
8370
-
8371
- /**
8372
- * Copyright Schrodinger, LLC
8373
- * All rights reserved.
8374
- *
8375
- * This source code is licensed under the BSD-style license found in the
8376
- * LICENSE file in the root directory of this source tree. An additional grant
8377
- * of patent rights can be found in the PATENTS file in the same directory.
8378
- *
8379
- * @providesModule fixedDataTableCellGroupLayout
8380
- */
8381
- .fixedDataTableCellGroupLayout_cellGroup {
8382
- -webkit-backface-visibility: hidden;
8383
- backface-visibility: hidden;
8384
- left: 0;
8385
- overflow: hidden;
8386
- position: absolute;
8387
- top: 0;
8388
- white-space: nowrap;
8389
- }
8390
-
8391
- .fixedDataTable_isRTL .fixedDataTableCellGroupLayout_cellGroup {
8392
- right: 0;
8393
- left: auto;
8394
- }
8395
-
8396
- .fixedDataTableCellGroupLayout_cellGroup > .public_fixedDataTableCell_main {
8397
- display: inline-block;
8398
- vertical-align: top;
8399
- white-space: normal;
8400
- }
8401
-
8402
- .fixedDataTableCellGroupLayout_cellGroupWrapper {
8403
- position: absolute;
8404
- top: 0;
8405
- }
8406
-
8407
- /**
8408
- * Copyright Schrodinger, LLC
8409
- * All rights reserved.
8410
- *
8411
- * This source code is licensed under the BSD-style license found in the
8412
- * LICENSE file in the root directory of this source tree. An additional grant
8413
- * of patent rights can be found in the PATENTS file in the same directory.
8414
- *
8415
- * @providesModule fixedDataTableColumnResizerLineLayout
8416
- */
8417
- .fixedDataTableColumnResizerLineLayout_mouseArea {
8418
- cursor: ew-resize;
8419
- position: absolute;
8420
- right: -5px;
8421
- width: 12px;
8422
- }
8423
-
8424
- .fixedDataTable_isRTL .fixedDataTableColumnResizerLineLayout_mouseArea {
8425
- right: auto;
8426
- left: -5px;
8427
- }
8428
-
8429
- .fixedDataTableColumnResizerLineLayout_main {
8430
- border-right-style: solid;
8431
- border-right-width: 1px;
8432
- box-sizing: border-box;
8433
- position: absolute;
8434
- z-index: 100;
8435
- pointer-events: none;
8436
- }
8437
-
8438
- .fixedDataTable_isRTL .fixedDataTableColumnResizerLineLayout_main {
8439
- border-right-width: 0;
8440
- border-left-style: solid;
8441
- border-left-width: 1px;
8442
- }
8443
-
8444
- /**
8445
- * Copyright Schrodinger, LLC
8446
- * All rights reserved.
8447
- *
8448
- * This source code is licensed under the BSD-style license found in the
8449
- * LICENSE file in the root directory of this source tree. An additional grant
8450
- * of patent rights can be found in the PATENTS file in the same directory.
8451
- *
8452
- * @providesModule fixedDataTableLayout
8453
- */
8454
- .fixedDataTableLayout_main {
8455
- border-style: solid;
8456
- border-width: 1px;
8457
- box-sizing: border-box;
8458
- overflow: hidden;
8459
- position: relative;
8460
- }
8461
-
8462
- .fixedDataTableLayout_header,
8463
- .fixedDataTableLayout_hasBottomBorder {
8464
- border-bottom-style: solid;
8465
- border-bottom-width: 1px;
8466
- }
8467
-
8468
- .fixedDataTableLayout_footer .public_fixedDataTableCell_main {
8469
- border-top-style: solid;
8470
- border-top-width: 1px;
8471
- }
8472
-
8473
- .fixedDataTableLayout_topShadow,
8474
- .fixedDataTableLayout_bottomShadow {
8475
- height: 4px;
8476
- left: 0;
8477
- position: absolute;
8478
- right: 0;
8479
- z-index: 1;
8480
- }
8481
-
8482
- .fixedDataTableLayout_bottomShadow {
8483
- margin-top: -4px;
8484
- }
8485
-
8486
- .fixedDataTableLayout_rowsContainer {
8487
- overflow: hidden;
8488
- position: relative;
8489
- }
8490
-
8491
- /**
8492
- * Copyright Schrodinger, LLC
8493
- * All rights reserved.
8494
- *
8495
- * This source code is licensed under the BSD-style license found in the
8496
- * LICENSE file in the root directory of this source tree. An additional grant
8497
- * of patent rights can be found in the PATENTS file in the same directory.
8498
- *
8499
- * @providesModule fixedDataTableRowLayout
8500
- */
8501
- .fixedDataTableRowLayout_main {
8502
- box-sizing: border-box;
8503
- overflow: hidden;
8504
- position: absolute;
8505
- top: 0;
8506
- }
8507
-
8508
- .fixedDataTableRowLayout_body {
8509
- left: 0;
8510
- right: 0;
8511
- position: absolute;
8512
- top: 0;
8513
- }
8514
-
8515
- .fixedDataTableRowLayout_rowExpanded {
8516
- box-sizing: border-box;
8517
- left: 0;
8518
- position: absolute;
8519
- }
8520
-
8521
- .fixedDataTableRowLayout_fixedColumnsDivider {
8522
- -webkit-backface-visibility: hidden;
8523
- backface-visibility: hidden;
8524
- border-left-style: solid;
8525
- border-left-width: 1px;
8526
- left: 0;
8527
- position: absolute;
8528
- top: 0;
8529
- width: 0;
8530
- }
8531
-
8532
- .fixedDataTable_isRTL .fixedDataTableRowLayout_fixedColumnsDivider {
8533
- border-left-width: 0;
8534
- border-right-style: solid;
8535
- border-right-width: 1px;
8536
- }
8537
-
8538
- .fixedDataTableRowLayout_columnsShadow {
8539
- position: absolute;
8540
- width: 4px;
8541
- }
8542
-
8543
- .fixedDataTableRowLayout_columnsRightShadow {
8544
- right: 1px;
8545
- }
8546
-
8547
- .fixedDataTable_isRTL .fixedDataTableRowLayout_columnsRightShadow {
8548
- left: 1px;
8549
- right: auto;
8550
- }
8551
-
8552
- .fixedDataTableRowLayout_rowWrapper {
8553
- position: absolute;
8554
- top: 0;
8555
- }
8556
-
8557
- /**
8558
- * Copyright Schrodinger, LLC
8559
- * All rights reserved.
8560
- *
8561
- * This source code is licensed under the BSD-style license found in the
8562
- * LICENSE file in the root directory of this source tree. An additional grant
8563
- * of patent rights can be found in the PATENTS file in the same directory.
8564
- *
8565
- * @providesModule fixedDataTableCell
8566
- */
8567
- /**
8568
- * Table cell.
8569
- */
8570
- .public_fixedDataTableCell_main {
8571
- background-color: #fff;
8572
- border-color: #d3d3d3;
8573
- }
8574
-
8575
- .public_fixedDataTableCell_highlighted {
8576
- background-color: #f4f4f4;
8577
- }
8578
-
8579
- .public_fixedDataTableCell_cellContent {
8580
- padding: 8px;
8581
- }
8582
-
8583
- .public_fixedDataTableCell_columnResizerKnob {
8584
- background-color: #0284ff;
8585
- }
8586
-
8587
- .public_fixedDataTableCell_hasReorderHandle .public_fixedDataTableCell_wrap1 .public_fixedDataTableCell_cellContent {
8588
- margin-left: 12px;
8589
- }
8590
-
8591
- .public_fixedDataTableCell_hasReorderHandle .public_fixedDataTableCell_wrap.public_fixedDataTableCell_cellContent {
8592
- padding-left: 20px;
8593
- }
8594
-
8595
- .fixedDataTable_isRTL .public_fixedDataTableCell_hasReorderHandle .public_fixedDataTableCell_wrap1 .public_fixedDataTableCell_cellContent {
8596
- margin-left: auto;
8597
- margin-right: 12px;
8598
- }
8599
-
8600
- .fixedDataTable_isRTL .public_fixedDataTableCell_hasReorderHandle .public_fixedDataTableCell_wrap.public_fixedDataTableCell_cellContent {
8601
- padding-right: 20px;
8602
- }
8603
-
8604
- .public_fixedDataTableCell_reordering {
8605
- z-index: 2;
8606
- }
8607
-
8608
- .public_fixedDataTableCell_resizeReorderCellContainer {
8609
- position: fixed;
8610
- background-color: #f6f7f8;
8611
- background-image: linear-gradient(#fff, #efefef);
8612
- border-color: #d3d3d3;
8613
- border-right-style: solid;
8614
- border-right-width: 1px;
8615
- }
8616
-
8617
8026
  .animation-fadeIn,
8618
8027
  .animation-fadeOut,
8619
8028
  .animation-bounce {
@@ -9028,62 +8437,30 @@ button.gd-list-item {
9028
8437
  margin-left: 8px;
9029
8438
  }
9030
8439
 
9031
- .gd-infinite-list .fixedDataTableLayout_topShadow,
9032
- .gd-infinite-list .fixedDataTableLayout_bottomShadow {
9033
- display: none;
9034
- }
9035
- .gd-infinite-list .public_fixedDataTable_main,
9036
- .gd-infinite-list .fixedDataTableCellLayout_main,
9037
- .gd-infinite-list .fixedDataTableRowLayout_main {
9038
- border: none;
9039
- }
9040
- .gd-infinite-list .public_fixedDataTable_main:focus-visible {
9041
- outline: revert;
9042
- }
9043
- .gd-infinite-list .public_Scrollbar_main, .gd-infinite-list .public_Scrollbar_main.public_Scrollbar_mainActive {
9044
- border-color: transparent;
9045
- }
9046
- .gd-infinite-list .public_Scrollbar_main, .gd-infinite-list .public_Scrollbar_mainActive {
9047
- background-color: transparent;
8440
+ .gd-infinite-list .gd-infinite-list-scroll-container {
8441
+ overflow-x: hidden;
8442
+ overflow-y: auto;
8443
+ overscroll-behavior: contain;
9048
8444
  }
9049
- .gd-infinite-list .public_Scrollbar_main:hover .public_Scrollbar_face::after, .gd-infinite-list .public_Scrollbar_mainActive .public_Scrollbar_face::after {
9050
- background-color: var(--gd-palette-complementary-5, #b0beca);
8445
+ .gd-infinite-list .gd-infinite-list-scroll-container::-webkit-scrollbar {
8446
+ -webkit-appearance: none;
8447
+ appearance: none;
8448
+ width: 6px;
9051
8449
  }
9052
- .gd-infinite-list .public_Scrollbar_face::after {
8450
+ .gd-infinite-list .gd-infinite-list-scroll-container::-webkit-scrollbar-thumb {
8451
+ border-radius: 3px;
9053
8452
  background-color: rgba(176, 190, 202, 0.3);
9054
8453
  }
9055
- .gd-infinite-list .public_Scrollbar_faceActive::after {
8454
+ .gd-infinite-list .gd-infinite-list-scroll-container:hover::-webkit-scrollbar-thumb {
9056
8455
  background-color: var(--gd-palette-complementary-5, #b0beca);
9057
8456
  }
9058
- .gd-infinite-list .public_fixedDataTable_header,
9059
- .gd-infinite-list .public_fixedDataTable_header .public_fixedDataTableCell_main,
9060
- .gd-infinite-list .public_fixedDataTable_scrollbarSpacer {
9061
- background: none;
9062
- }
9063
- .gd-infinite-list .public_fixedDataTableRow_main,
9064
- .gd-infinite-list .public_fixedDataTableCell_main,
9065
- .gd-infinite-list .public_fixedDataTableRow_highlighted,
9066
- .gd-infinite-list .public_fixedDataTableRow_highlighted .public_fixedDataTableCell_main {
9067
- background-color: transparent;
8457
+ .gd-infinite-list .gd-infinite-list-scroll-container:focus-visible {
8458
+ outline: revert;
9068
8459
  }
9069
- .gd-infinite-list .public_fixedDataTableCell_cellContent {
9070
- padding: 0;
8460
+ .gd-infinite-list .gd-infinite-list-item {
9071
8461
  white-space: nowrap;
9072
8462
  color: var(--gd-palette-complementary-8, #464e56);
9073
8463
  }
9074
- .gd-infinite-list .public_fixedDataTableCell_cellContent:hover {
9075
- background-color: transparent;
9076
- }
9077
- .gd-infinite-list .fixedDataTableCellLayout_wrap1 {
9078
- table-layout: fixed;
9079
- }
9080
- .gd-infinite-list .fixedDataTableCellLayout_wrap2,
9081
- .gd-infinite-list .fixedDataTableCellLayout_wrap3 {
9082
- width: inherit;
9083
- }
9084
- .gd-infinite-list .fixedDataTableCellLayout_wrap2,
9085
- .gd-infinite-list .fixedDataTableCellLayout_wrap3,
9086
- .gd-infinite-list .public_fixedDataTableCell_cellContent,
9087
8464
  .gd-infinite-list .gd-project-list-item {
9088
8465
  height: inherit;
9089
8466
  }
@@ -9260,9 +8637,7 @@ button.gd-list-item {
9260
8637
  background-image: url("@gooddata/sdk-ui-kit/styles/images/visualization-types/pushpin.svg"), url("@gooddata/sdk-ui-kit/styles/images/visualization-types/pushpin-active.svg");
9261
8638
  }
9262
8639
 
9263
- .gd-visualizations-list .public_fixedDataTableRow_main,
9264
- .gd-visualizations-list .public_fixedDataTableCell_main,
9265
- .gd-visualizations-list .fixedDataTableCellGroupLayout_cellGroup {
8640
+ .gd-visualizations-list .gd-infinite-list-item {
9266
8641
  overflow: visible;
9267
8642
  }
9268
8643