@gooddata/sdk-ui-kit 11.43.0-alpha.4 → 11.43.0
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/esm/@ui/UiGeneralAccessRadio/UiGeneralAccessRadio.d.ts +7 -1
- package/esm/@ui/UiGeneralAccessRadio/UiGeneralAccessRadio.d.ts.map +1 -1
- package/esm/@ui/UiGeneralAccessRadio/UiGeneralAccessRadio.js +4 -2
- package/esm/@ui/UiGranteeRowControls/UiGranteeRowControls.d.ts +5 -2
- package/esm/@ui/UiGranteeRowControls/UiGranteeRowControls.d.ts.map +1 -1
- package/esm/@ui/UiGranteeRowControls/UiGranteeRowControls.js +16 -4
- package/esm/@ui/UiMenu/UiMenu.d.ts.map +1 -1
- package/esm/@ui/UiMenu/UiMenu.js +1 -1
- package/esm/@ui/UiMoreOptionsMenu/UiMoreOptionsMenu.d.ts +10 -3
- package/esm/@ui/UiMoreOptionsMenu/UiMoreOptionsMenu.d.ts.map +1 -1
- package/esm/@ui/UiMoreOptionsMenu/UiMoreOptionsMenu.js +18 -4
- package/esm/@ui/UiObjectShareDialog/UiObjectShareDialogCard.d.ts +6 -1
- package/esm/@ui/UiObjectShareDialog/UiObjectShareDialogCard.d.ts.map +1 -1
- package/esm/@ui/UiObjectShareDialog/UiObjectShareDialogCard.js +2 -2
- package/esm/@ui/UiPermissionMenu/UiPermissionMenu.d.ts +3 -1
- package/esm/@ui/UiPermissionMenu/UiPermissionMenu.d.ts.map +1 -1
- package/esm/@ui/UiPopover/UiPopover.d.ts.map +1 -1
- package/esm/@ui/UiPopover/UiPopover.js +1 -1
- package/esm/List/LegacyList.d.ts +1 -1
- package/esm/List/LegacyList.d.ts.map +1 -1
- package/esm/List/LegacyList.js +103 -55
- package/esm/List/List.d.ts +1 -1
- package/esm/List/List.d.ts.map +1 -1
- package/esm/List/List.js +95 -53
- package/esm/Overlay/Overlay.js +2 -2
- package/esm/locales.d.ts +6 -0
- package/esm/locales.d.ts.map +1 -1
- package/esm/locales.js +2 -0
- package/esm/sdk-ui-kit.d.ts +32 -10
- package/package.json +12 -13
- package/src/@ui/UiGranteeRowControls/UiGranteeRowControls.scss +8 -0
- package/src/@ui/UiLabelsChecklist/UiLabelsChecklist.scss +11 -0
- package/src/@ui/UiMenu/UiMenu.scss +9 -0
- package/styles/css/insightList.css +1 -3
- package/styles/css/insightList.css.map +1 -1
- package/styles/css/list.css +14 -655
- package/styles/css/list.css.map +1 -1
- package/styles/css/main.css +33 -658
- package/styles/css/main.css.map +1 -1
- package/styles/css/menu.css +14 -655
- package/styles/css/menu.css.map +1 -1
- package/styles/scss/insightList.scss +1 -3
- package/styles/scss/list.scss +15 -65
package/styles/css/list.css
CHANGED
|
@@ -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
|
.animation-fadeIn,
|
|
611
2
|
.animation-fadeOut,
|
|
612
3
|
.animation-bounce {
|
|
@@ -1393,62 +784,30 @@ button.gd-list-item {
|
|
|
1393
784
|
margin-left: 8px;
|
|
1394
785
|
}
|
|
1395
786
|
|
|
1396
|
-
.gd-infinite-list .
|
|
1397
|
-
|
|
1398
|
-
|
|
1399
|
-
|
|
1400
|
-
.gd-infinite-list .public_fixedDataTable_main,
|
|
1401
|
-
.gd-infinite-list .fixedDataTableCellLayout_main,
|
|
1402
|
-
.gd-infinite-list .fixedDataTableRowLayout_main {
|
|
1403
|
-
border: none;
|
|
1404
|
-
}
|
|
1405
|
-
.gd-infinite-list .public_fixedDataTable_main:focus-visible {
|
|
1406
|
-
outline: revert;
|
|
1407
|
-
}
|
|
1408
|
-
.gd-infinite-list .public_Scrollbar_main, .gd-infinite-list .public_Scrollbar_main.public_Scrollbar_mainActive {
|
|
1409
|
-
border-color: transparent;
|
|
1410
|
-
}
|
|
1411
|
-
.gd-infinite-list .public_Scrollbar_main, .gd-infinite-list .public_Scrollbar_mainActive {
|
|
1412
|
-
background-color: transparent;
|
|
787
|
+
.gd-infinite-list .gd-infinite-list-scroll-container {
|
|
788
|
+
overflow-x: hidden;
|
|
789
|
+
overflow-y: auto;
|
|
790
|
+
overscroll-behavior: contain;
|
|
1413
791
|
}
|
|
1414
|
-
.gd-infinite-list .
|
|
1415
|
-
|
|
792
|
+
.gd-infinite-list .gd-infinite-list-scroll-container::-webkit-scrollbar {
|
|
793
|
+
-webkit-appearance: none;
|
|
794
|
+
appearance: none;
|
|
795
|
+
width: 6px;
|
|
1416
796
|
}
|
|
1417
|
-
.gd-infinite-list .
|
|
797
|
+
.gd-infinite-list .gd-infinite-list-scroll-container::-webkit-scrollbar-thumb {
|
|
798
|
+
border-radius: 3px;
|
|
1418
799
|
background-color: rgba(176, 190, 202, 0.3);
|
|
1419
800
|
}
|
|
1420
|
-
.gd-infinite-list .
|
|
801
|
+
.gd-infinite-list .gd-infinite-list-scroll-container:hover::-webkit-scrollbar-thumb {
|
|
1421
802
|
background-color: var(--gd-palette-complementary-5, #b0beca);
|
|
1422
803
|
}
|
|
1423
|
-
.gd-infinite-list .
|
|
1424
|
-
|
|
1425
|
-
.gd-infinite-list .public_fixedDataTable_scrollbarSpacer {
|
|
1426
|
-
background: none;
|
|
1427
|
-
}
|
|
1428
|
-
.gd-infinite-list .public_fixedDataTableRow_main,
|
|
1429
|
-
.gd-infinite-list .public_fixedDataTableCell_main,
|
|
1430
|
-
.gd-infinite-list .public_fixedDataTableRow_highlighted,
|
|
1431
|
-
.gd-infinite-list .public_fixedDataTableRow_highlighted .public_fixedDataTableCell_main {
|
|
1432
|
-
background-color: transparent;
|
|
804
|
+
.gd-infinite-list .gd-infinite-list-scroll-container:focus-visible {
|
|
805
|
+
outline: revert;
|
|
1433
806
|
}
|
|
1434
|
-
.gd-infinite-list .
|
|
1435
|
-
padding: 0;
|
|
807
|
+
.gd-infinite-list .gd-infinite-list-item {
|
|
1436
808
|
white-space: nowrap;
|
|
1437
809
|
color: var(--gd-palette-complementary-8, #464e56);
|
|
1438
810
|
}
|
|
1439
|
-
.gd-infinite-list .public_fixedDataTableCell_cellContent:hover {
|
|
1440
|
-
background-color: transparent;
|
|
1441
|
-
}
|
|
1442
|
-
.gd-infinite-list .fixedDataTableCellLayout_wrap1 {
|
|
1443
|
-
table-layout: fixed;
|
|
1444
|
-
}
|
|
1445
|
-
.gd-infinite-list .fixedDataTableCellLayout_wrap2,
|
|
1446
|
-
.gd-infinite-list .fixedDataTableCellLayout_wrap3 {
|
|
1447
|
-
width: inherit;
|
|
1448
|
-
}
|
|
1449
|
-
.gd-infinite-list .fixedDataTableCellLayout_wrap2,
|
|
1450
|
-
.gd-infinite-list .fixedDataTableCellLayout_wrap3,
|
|
1451
|
-
.gd-infinite-list .public_fixedDataTableCell_cellContent,
|
|
1452
811
|
.gd-infinite-list .gd-project-list-item {
|
|
1453
812
|
height: inherit;
|
|
1454
813
|
}
|
package/styles/css/list.css.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sourceRoot":"","sources":["
|
|
1
|
+
{"version":3,"sourceRoot":"","sources":["../scss/animations.scss","../scss/mixins.scss","../scss/indigoFont.scss","../scss/list.scss","../scss/variables.scss"],"names":[],"mappings":"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","file":"list.css"}
|