@gooddata/sdk-ui-charts 11.27.0-alpha.4 → 11.27.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/NOTICE +16 -16
- package/esm/charts/repeater/internal/RepeaterChart.d.ts.map +1 -1
- package/esm/charts/repeater/internal/RepeaterChart.js +1 -1
- package/esm/charts/repeater/internal/RepeaterChart.js.map +1 -1
- package/esm/charts/repeater/internal/repeaterAgGridDataSource.d.ts +1 -1
- package/esm/charts/repeater/internal/repeaterAgGridDataSource.d.ts.map +1 -1
- package/package.json +15 -15
- package/styles/css/main.css +313 -47
- package/styles/css/main.css.map +1 -1
- package/styles/css/repeater.css +313 -47
- package/styles/css/repeater.css.map +1 -1
package/styles/css/repeater.css
CHANGED
|
@@ -178,6 +178,34 @@
|
|
|
178
178
|
display: var(--ag-icon-image-display-asc, var(--ag-icon-image-display));
|
|
179
179
|
opacity: var(--ag-icon-image-opacity-asc, var(--ag-icon-image-opacity, 0.9));
|
|
180
180
|
}
|
|
181
|
+
.gd-repeater .ag-icon-aasc {
|
|
182
|
+
font-family: var(--ag-icon-font-family-aasc, var(--ag-icon-font-family));
|
|
183
|
+
font-weight: var(--ag-icon-font-weight-aasc, var(--ag-icon-font-weight));
|
|
184
|
+
color: var(--ag-icon-font-color-aasc, var(--ag-icon-font-color));
|
|
185
|
+
}
|
|
186
|
+
.gd-repeater .ag-icon-aasc::before {
|
|
187
|
+
content: var(--ag-icon-font-code-aasc, "\f13c");
|
|
188
|
+
display: var(--ag-icon-font-display-aasc, var(--ag-icon-font-display));
|
|
189
|
+
}
|
|
190
|
+
.gd-repeater .ag-icon-aasc::after {
|
|
191
|
+
background-image: var(--ag-icon-image-aasc, var(--ag-icon-image));
|
|
192
|
+
display: var(--ag-icon-image-display-aasc, var(--ag-icon-image-display));
|
|
193
|
+
opacity: var(--ag-icon-image-opacity-aasc, var(--ag-icon-image-opacity, 0.9));
|
|
194
|
+
}
|
|
195
|
+
.gd-repeater .ag-icon-adesc {
|
|
196
|
+
font-family: var(--ag-icon-font-family-adesc, var(--ag-icon-font-family));
|
|
197
|
+
font-weight: var(--ag-icon-font-weight-adesc, var(--ag-icon-font-weight));
|
|
198
|
+
color: var(--ag-icon-font-color-adesc, var(--ag-icon-font-color));
|
|
199
|
+
}
|
|
200
|
+
.gd-repeater .ag-icon-adesc::before {
|
|
201
|
+
content: var(--ag-icon-font-code-adesc, "\f13d");
|
|
202
|
+
display: var(--ag-icon-font-display-adesc, var(--ag-icon-font-display));
|
|
203
|
+
}
|
|
204
|
+
.gd-repeater .ag-icon-adesc::after {
|
|
205
|
+
background-image: var(--ag-icon-image-adesc, var(--ag-icon-image));
|
|
206
|
+
display: var(--ag-icon-image-display-adesc, var(--ag-icon-image-display));
|
|
207
|
+
opacity: var(--ag-icon-image-opacity-adesc, var(--ag-icon-image-opacity, 0.9));
|
|
208
|
+
}
|
|
181
209
|
.gd-repeater .ag-icon-cancel {
|
|
182
210
|
font-family: var(--ag-icon-font-family-cancel, var(--ag-icon-font-family));
|
|
183
211
|
font-weight: var(--ag-icon-font-weight-cancel, var(--ag-icon-font-weight));
|
|
@@ -1104,7 +1132,8 @@
|
|
|
1104
1132
|
--ag-control-panel-background-color: transparent;
|
|
1105
1133
|
--ag-side-button-selected-background-color: var(--ag-control-panel-background-color);
|
|
1106
1134
|
--ag-selected-row-background-color: #bbb;
|
|
1107
|
-
--ag-
|
|
1135
|
+
--ag-data-background-color: var(--ag-background-color);
|
|
1136
|
+
--ag-odd-row-background-color: var(--ag-data-background-color);
|
|
1108
1137
|
--ag-modal-overlay-background-color: rgba(255, 255, 255, 0.66);
|
|
1109
1138
|
--ag-menu-background-color: var(--ag-background-color);
|
|
1110
1139
|
--ag-menu-border-color: var(--ag-border-color);
|
|
@@ -1113,6 +1142,10 @@
|
|
|
1113
1142
|
--ag-row-hover-color: transparent;
|
|
1114
1143
|
--ag-column-hover-color: transparent;
|
|
1115
1144
|
--ag-range-selection-border-color: var(--ag-foreground-color);
|
|
1145
|
+
--ag-row-drag-indicator-color: var(--ag-range-selection-border-color);
|
|
1146
|
+
--ag-row-drag-indicator-width: 2px;
|
|
1147
|
+
--ag-column-drag-indicator-color: var(--ag-range-selection-border-color);
|
|
1148
|
+
--ag-column-drag-indicator-width: 2px;
|
|
1116
1149
|
--ag-range-selection-border-style: solid;
|
|
1117
1150
|
--ag-range-selection-background-color: rgba(0, 0, 0, 0.2);
|
|
1118
1151
|
--ag-range-selection-background-color-2: var(--ag-range-selection-background-color);
|
|
@@ -1235,14 +1268,39 @@
|
|
|
1235
1268
|
--ag-filter-panel-apply-button-background-color: var(--ag-background-color);
|
|
1236
1269
|
--ag-filter-panel-card-subtle-color: var(--ag-foreground-color);
|
|
1237
1270
|
--ag-filter-panel-card-subtle-hover-color: var(--ag-foreground-color);
|
|
1271
|
+
--ag-formula-token-1-color: #3269c6;
|
|
1272
|
+
--ag-formula-token-1-background-color: rgb(50 105 198 / 16%);
|
|
1273
|
+
--ag-formula-token-1-border-color: var(--ag-formula-token-1-color);
|
|
1274
|
+
--ag-formula-token-2-color: #c0343f;
|
|
1275
|
+
--ag-formula-token-2-background-color: rgb(192 52 63 / 16%);
|
|
1276
|
+
--ag-formula-token-2-border-color: var(--ag-formula-token-2-color);
|
|
1277
|
+
--ag-formula-token-3-color: #8156b8;
|
|
1278
|
+
--ag-formula-token-3-background-color: rgb(129 86 184 / 16%);
|
|
1279
|
+
--ag-formula-token-3-border-color: var(--ag-formula-token-3-color);
|
|
1280
|
+
--ag-formula-token-4-color: #007c1f;
|
|
1281
|
+
--ag-formula-token-4-background-color: rgb(0 124 31 / 16%);
|
|
1282
|
+
--ag-formula-token-4-border-color: var(--ag-formula-token-4-color);
|
|
1283
|
+
--ag-formula-token-5-color: #b03e85;
|
|
1284
|
+
--ag-formula-token-5-background-color: rgb(176 62 133 / 16%);
|
|
1285
|
+
--ag-formula-token-5-border-color: var(--ag-formula-token-5-color);
|
|
1286
|
+
--ag-formula-token-6-color: #b74900;
|
|
1287
|
+
--ag-formula-token-6-background-color: rgb(183 73 0 / 16%);
|
|
1288
|
+
--ag-formula-token-6-border-color: var(--ag-formula-token-6-color);
|
|
1289
|
+
--ag-formula-token-7-color: #247492;
|
|
1290
|
+
--ag-formula-token-7-background-color: rgb(36 116 146 / 16%);
|
|
1291
|
+
--ag-formula-token-7-border-color: var(--ag-formula-token-7-color);
|
|
1238
1292
|
}
|
|
1239
1293
|
.gd-repeater .ag-root-wrapper,
|
|
1240
|
-
.gd-repeater .ag-sticky-top,
|
|
1241
|
-
.gd-repeater .ag-sticky-bottom,
|
|
1242
1294
|
.gd-repeater .ag-dnd-ghost {
|
|
1243
1295
|
background-color: var(--ag-background-color);
|
|
1244
1296
|
}
|
|
1297
|
+
.gd-repeater .ag-sticky-top,
|
|
1245
1298
|
.gd-repeater .ag-sticky-bottom {
|
|
1299
|
+
background-color: var(--ag-data-background-color);
|
|
1300
|
+
}
|
|
1301
|
+
.gd-repeater .ag-sticky-bottom .ag-pinned-left-sticky-bottom,
|
|
1302
|
+
.gd-repeater .ag-sticky-bottom .ag-sticky-bottom-container,
|
|
1303
|
+
.gd-repeater .ag-sticky-bottom .ag-pinned-right-sticky-bottom {
|
|
1246
1304
|
border-top: var(--ag-row-border-style) var(--ag-row-border-color) var(--ag-row-border-width);
|
|
1247
1305
|
}
|
|
1248
1306
|
.gd-repeater .ag-root-wrapper,
|
|
@@ -1493,7 +1551,9 @@
|
|
|
1493
1551
|
.gd-repeater .ag-floating-bottom-full-width-container,
|
|
1494
1552
|
.gd-repeater .ag-virtual-list-container,
|
|
1495
1553
|
.gd-repeater .ag-sticky-top-container,
|
|
1496
|
-
.gd-repeater .ag-sticky-bottom-container
|
|
1554
|
+
.gd-repeater .ag-sticky-bottom-container,
|
|
1555
|
+
.gd-repeater .ag-pinned-left-sticky-bottom,
|
|
1556
|
+
.gd-repeater .ag-pinned-right-sticky-bottom {
|
|
1497
1557
|
position: relative;
|
|
1498
1558
|
}
|
|
1499
1559
|
.gd-repeater .ag-header-container,
|
|
@@ -1627,7 +1687,8 @@
|
|
|
1627
1687
|
overflow: hidden;
|
|
1628
1688
|
position: relative;
|
|
1629
1689
|
}
|
|
1630
|
-
.gd-repeater .ag-header-cell-sortable .ag-header-cell-label
|
|
1690
|
+
.gd-repeater .ag-header-cell-sortable .ag-header-cell-label,
|
|
1691
|
+
.gd-repeater .ag-header-group-cell-selectable .ag-header-cell-comp-wrapper {
|
|
1631
1692
|
cursor: pointer;
|
|
1632
1693
|
}
|
|
1633
1694
|
.gd-repeater .ag-header {
|
|
@@ -1753,6 +1814,21 @@
|
|
|
1753
1814
|
.gd-repeater .ag-column-moving .ag-header-group-cell {
|
|
1754
1815
|
transition: left 0.2s, width 0.2s;
|
|
1755
1816
|
}
|
|
1817
|
+
.gd-repeater .ag-delay-render .ag-cell {
|
|
1818
|
+
visibility: hidden;
|
|
1819
|
+
}
|
|
1820
|
+
.gd-repeater .ag-delay-render .ag-row {
|
|
1821
|
+
visibility: hidden;
|
|
1822
|
+
}
|
|
1823
|
+
.gd-repeater .ag-delay-render .ag-spanned-cell-wrapper {
|
|
1824
|
+
visibility: hidden;
|
|
1825
|
+
}
|
|
1826
|
+
.gd-repeater .ag-delay-render .ag-header-cell {
|
|
1827
|
+
visibility: hidden;
|
|
1828
|
+
}
|
|
1829
|
+
.gd-repeater .ag-delay-render .ag-header-group-cell {
|
|
1830
|
+
visibility: hidden;
|
|
1831
|
+
}
|
|
1756
1832
|
.gd-repeater .ag-column-panel {
|
|
1757
1833
|
display: flex;
|
|
1758
1834
|
flex-direction: column;
|
|
@@ -1913,7 +1989,7 @@
|
|
|
1913
1989
|
.gd-repeater .ag-cell-value {
|
|
1914
1990
|
flex: 1 1 auto;
|
|
1915
1991
|
}
|
|
1916
|
-
.gd-repeater .ag-cell-value,
|
|
1992
|
+
.gd-repeater .ag-cell-value:not(.ag-allow-overflow),
|
|
1917
1993
|
.gd-repeater .ag-group-value {
|
|
1918
1994
|
overflow: hidden;
|
|
1919
1995
|
text-overflow: ellipsis;
|
|
@@ -2058,7 +2134,9 @@
|
|
|
2058
2134
|
justify-content: center;
|
|
2059
2135
|
text-align: center;
|
|
2060
2136
|
}
|
|
2061
|
-
.gd-repeater .ag-overlay-loading-wrapper
|
|
2137
|
+
.gd-repeater .ag-overlay-loading-wrapper,
|
|
2138
|
+
.gd-repeater .ag-overlay-exporting-wrapper,
|
|
2139
|
+
.gd-repeater .ag-overlay-modal-wrapper {
|
|
2062
2140
|
pointer-events: all;
|
|
2063
2141
|
}
|
|
2064
2142
|
.gd-repeater .ag-popup-child {
|
|
@@ -2106,6 +2184,11 @@
|
|
|
2106
2184
|
.gd-repeater .ag-sticky-bottom {
|
|
2107
2185
|
box-sizing: content-box !important;
|
|
2108
2186
|
}
|
|
2187
|
+
.gd-repeater .ag-sticky-bottom .ag-pinned-left-sticky-bottom,
|
|
2188
|
+
.gd-repeater .ag-sticky-bottom .ag-sticky-bottom-container,
|
|
2189
|
+
.gd-repeater .ag-sticky-bottom .ag-pinned-right-sticky-bottom {
|
|
2190
|
+
box-sizing: border-box;
|
|
2191
|
+
}
|
|
2109
2192
|
.gd-repeater .ag-pinned-left-sticky-top,
|
|
2110
2193
|
.gd-repeater .ag-pinned-right-sticky-top {
|
|
2111
2194
|
position: relative;
|
|
@@ -2325,7 +2408,8 @@
|
|
|
2325
2408
|
.gd-repeater .ag-rich-select-list {
|
|
2326
2409
|
position: relative;
|
|
2327
2410
|
}
|
|
2328
|
-
.gd-repeater .ag-rich-select-list .ag-loading
|
|
2411
|
+
.gd-repeater .ag-rich-select-list .ag-rich-select-loading {
|
|
2412
|
+
display: flex;
|
|
2329
2413
|
min-height: 2rem;
|
|
2330
2414
|
}
|
|
2331
2415
|
.gd-repeater .ag-rich-select-row {
|
|
@@ -2756,6 +2840,25 @@
|
|
|
2756
2840
|
.gd-repeater .ag-pill-select .ag-column-drop {
|
|
2757
2841
|
flex: unset;
|
|
2758
2842
|
}
|
|
2843
|
+
.gd-repeater .ag-content-editable-field {
|
|
2844
|
+
display: flex;
|
|
2845
|
+
align-items: center;
|
|
2846
|
+
}
|
|
2847
|
+
.gd-repeater .ag-content-editable-field-input {
|
|
2848
|
+
cursor: text;
|
|
2849
|
+
display: block;
|
|
2850
|
+
flex: 1 1 auto;
|
|
2851
|
+
outline: none;
|
|
2852
|
+
white-space: nowrap;
|
|
2853
|
+
line-height: normal;
|
|
2854
|
+
overflow: auto;
|
|
2855
|
+
overflow-y: hidden;
|
|
2856
|
+
-ms-overflow-style: none !important;
|
|
2857
|
+
scrollbar-width: none !important;
|
|
2858
|
+
}
|
|
2859
|
+
.gd-repeater .ag-content-editable-field-input::-webkit-scrollbar {
|
|
2860
|
+
display: none !important;
|
|
2861
|
+
}
|
|
2759
2862
|
.gd-repeater .ag-ltr {
|
|
2760
2863
|
direction: ltr;
|
|
2761
2864
|
}
|
|
@@ -2818,6 +2921,7 @@
|
|
|
2818
2921
|
@media print {
|
|
2819
2922
|
.gd-repeater .ag-root-wrapper.ag-layout-print {
|
|
2820
2923
|
display: table;
|
|
2924
|
+
container-type: normal;
|
|
2821
2925
|
}
|
|
2822
2926
|
.gd-repeater .ag-root-wrapper.ag-layout-print .ag-root-wrapper-body,
|
|
2823
2927
|
.gd-repeater .ag-root-wrapper.ag-layout-print .ag-root,
|
|
@@ -3033,6 +3137,10 @@
|
|
|
3033
3137
|
.gd-repeater .ag-rtl .ag-group-contracted {
|
|
3034
3138
|
margin-left: var(--ag-cell-widget-spacing);
|
|
3035
3139
|
}
|
|
3140
|
+
.gd-repeater .ag-drag-handle-disabled {
|
|
3141
|
+
opacity: 0.35;
|
|
3142
|
+
pointer-events: none;
|
|
3143
|
+
}
|
|
3036
3144
|
.gd-repeater .ag-cell-wrapper > *:not(.ag-cell-value):not(.ag-group-value) {
|
|
3037
3145
|
--ag-internal-calculated-line-height: var(
|
|
3038
3146
|
--ag-line-height,
|
|
@@ -3318,7 +3426,7 @@
|
|
|
3318
3426
|
border-radius: var(--ag-border-radius);
|
|
3319
3427
|
border: var(--ag-borders) var(--ag-border-color);
|
|
3320
3428
|
}
|
|
3321
|
-
.gd-repeater .ag-rich-select-list .ag-loading
|
|
3429
|
+
.gd-repeater .ag-rich-select-list .ag-rich-select-loading {
|
|
3322
3430
|
padding: var(--ag-widget-vertical-spacing) var(--ag-widget-horizontal-spacing);
|
|
3323
3431
|
}
|
|
3324
3432
|
.gd-repeater .ag-rich-select-value {
|
|
@@ -3412,6 +3520,115 @@
|
|
|
3412
3520
|
.gd-repeater .ag-pill .ag-pill-button:hover {
|
|
3413
3521
|
cursor: pointer;
|
|
3414
3522
|
}
|
|
3523
|
+
.gd-repeater .ag-content-editable-field-input {
|
|
3524
|
+
background-color: var(--ag-background-color);
|
|
3525
|
+
border: var(--ag-borders-input) var(--ag-input-border-color);
|
|
3526
|
+
border-radius: var(--ag-border-radius);
|
|
3527
|
+
color: var(--ag-foreground-color);
|
|
3528
|
+
}
|
|
3529
|
+
.gd-repeater .ag-ltr .ag-content-editable-field-input {
|
|
3530
|
+
padding-left: var(--ag-grid-size);
|
|
3531
|
+
}
|
|
3532
|
+
.gd-repeater .ag-rtl .ag-content-editable-field-input {
|
|
3533
|
+
padding-right: var(--ag-grid-size);
|
|
3534
|
+
}
|
|
3535
|
+
.gd-repeater .ag-cell-editor .ag-wrapper.ag-content-editable-field-input {
|
|
3536
|
+
--ag-internal-calculated-line-height: var(
|
|
3537
|
+
--ag-line-height,
|
|
3538
|
+
calc(var(--ag-row-height) - var(--ag-row-border-width))
|
|
3539
|
+
);
|
|
3540
|
+
--ag-internal-padded-row-height: calc(var(--ag-row-height) - var(--ag-row-border-width) - 2px);
|
|
3541
|
+
line-height: min(var(--ag-internal-calculated-line-height), var(--ag-internal-padded-row-height));
|
|
3542
|
+
}
|
|
3543
|
+
.gd-repeater .ag-content-editable-field-input:focus,
|
|
3544
|
+
.gd-repeater .ag-content-editable-field-input:focus-within {
|
|
3545
|
+
box-shadow: var(--ag-input-focus-box-shadow);
|
|
3546
|
+
border-color: var(--ag-input-focus-border-color);
|
|
3547
|
+
}
|
|
3548
|
+
.gd-repeater :where(.ag-content-editable-field.ag-disabled .ag-content-editable-field-input) {
|
|
3549
|
+
background-color: var(--ag-input-disabled-background-color);
|
|
3550
|
+
border-color: var(--ag-input-disabled-border-color);
|
|
3551
|
+
color: var(--ag-disabled-foreground-color);
|
|
3552
|
+
}
|
|
3553
|
+
.gd-repeater .ag-content-editable-field-input.invalid {
|
|
3554
|
+
border-color: var(--ag-invalid-color);
|
|
3555
|
+
}
|
|
3556
|
+
.gd-repeater .ag-formula-token {
|
|
3557
|
+
line-height: var(--ag-line-height, 1.6);
|
|
3558
|
+
}
|
|
3559
|
+
.gd-repeater .ag-formula-token-color-1 {
|
|
3560
|
+
color: var(--ag-formula-token-1-color);
|
|
3561
|
+
}
|
|
3562
|
+
.gd-repeater .ag-formula-token-color-2 {
|
|
3563
|
+
color: var(--ag-formula-token-2-color);
|
|
3564
|
+
}
|
|
3565
|
+
.gd-repeater .ag-formula-token-color-3 {
|
|
3566
|
+
color: var(--ag-formula-token-3-color);
|
|
3567
|
+
}
|
|
3568
|
+
.gd-repeater .ag-formula-token-color-4 {
|
|
3569
|
+
color: var(--ag-formula-token-4-color);
|
|
3570
|
+
}
|
|
3571
|
+
.gd-repeater .ag-formula-token-color-5 {
|
|
3572
|
+
color: var(--ag-formula-token-5-color);
|
|
3573
|
+
}
|
|
3574
|
+
.gd-repeater .ag-formula-token-color-6 {
|
|
3575
|
+
color: var(--ag-formula-token-6-color);
|
|
3576
|
+
}
|
|
3577
|
+
.gd-repeater .ag-formula-token-color-7 {
|
|
3578
|
+
color: var(--ag-formula-token-7-color);
|
|
3579
|
+
}
|
|
3580
|
+
.gd-repeater .ag-formula-range-color-1 {
|
|
3581
|
+
--ag-range-selection-border-color: var(--ag-formula-token-1-color);
|
|
3582
|
+
--ag-range-selection-background-color: var(--ag-formula-token-1-background-color);
|
|
3583
|
+
}
|
|
3584
|
+
.gd-repeater .ag-formula-range-color-2 {
|
|
3585
|
+
--ag-range-selection-border-color: var(--ag-formula-token-2-color);
|
|
3586
|
+
--ag-range-selection-background-color: var(--ag-formula-token-2-background-color);
|
|
3587
|
+
}
|
|
3588
|
+
.gd-repeater .ag-formula-range-color-3 {
|
|
3589
|
+
--ag-range-selection-border-color: var(--ag-formula-token-3-color);
|
|
3590
|
+
--ag-range-selection-background-color: var(--ag-formula-token-3-background-color);
|
|
3591
|
+
}
|
|
3592
|
+
.gd-repeater .ag-formula-range-color-4 {
|
|
3593
|
+
--ag-range-selection-border-color: var(--ag-formula-token-4-color);
|
|
3594
|
+
--ag-range-selection-background-color: var(--ag-formula-token-4-background-color);
|
|
3595
|
+
}
|
|
3596
|
+
.gd-repeater .ag-formula-range-color-5 {
|
|
3597
|
+
--ag-range-selection-border-color: var(--ag-formula-token-5-color);
|
|
3598
|
+
--ag-range-selection-background-color: var(--ag-formula-token-5-background-color);
|
|
3599
|
+
}
|
|
3600
|
+
.gd-repeater .ag-formula-range-color-6 {
|
|
3601
|
+
--ag-range-selection-border-color: var(--ag-formula-token-6-color);
|
|
3602
|
+
--ag-range-selection-background-color: var(--ag-formula-token-6-background-color);
|
|
3603
|
+
}
|
|
3604
|
+
.gd-repeater .ag-formula-range-color-7 {
|
|
3605
|
+
--ag-range-selection-border-color: var(--ag-formula-token-7-color);
|
|
3606
|
+
--ag-range-selection-background-color: var(--ag-formula-token-7-background-color);
|
|
3607
|
+
}
|
|
3608
|
+
.gd-repeater .ag-range-handle.ag-formula-range-color-1,
|
|
3609
|
+
.gd-repeater .ag-fill-handle.ag-formula-range-color-1 {
|
|
3610
|
+
background-color: var(--ag-formula-token-1-color);
|
|
3611
|
+
}
|
|
3612
|
+
.gd-repeater .ag-range-handle.ag-formula-range-color-2,
|
|
3613
|
+
.gd-repeater .ag-fill-handle.ag-formula-range-color-2 {
|
|
3614
|
+
background-color: var(--ag-formula-token-2-color);
|
|
3615
|
+
}
|
|
3616
|
+
.gd-repeater .ag-range-handle.ag-formula-range-color-3,
|
|
3617
|
+
.gd-repeater .ag-fill-handle.ag-formula-range-color-3 {
|
|
3618
|
+
background-color: var(--ag-formula-token-3-color);
|
|
3619
|
+
}
|
|
3620
|
+
.gd-repeater .ag-range-handle.ag-formula-range-color-4,
|
|
3621
|
+
.gd-repeater .ag-fill-handle.ag-formula-range-color-4 {
|
|
3622
|
+
background-color: var(--ag-formula-token-4-color);
|
|
3623
|
+
}
|
|
3624
|
+
.gd-repeater .ag-range-handle.ag-formula-range-color-5,
|
|
3625
|
+
.gd-repeater .ag-fill-handle.ag-formula-range-color-5 {
|
|
3626
|
+
background-color: var(--ag-formula-token-5-color);
|
|
3627
|
+
}
|
|
3628
|
+
.gd-repeater .ag-range-handle.ag-formula-range-color-6,
|
|
3629
|
+
.gd-repeater .ag-fill-handle.ag-formula-range-color-6 {
|
|
3630
|
+
background-color: var(--ag-formula-token-6-color);
|
|
3631
|
+
}
|
|
3415
3632
|
.gd-repeater .ag-dragging-range-handle .ag-dialog,
|
|
3416
3633
|
.gd-repeater .ag-dragging-fill-handle .ag-dialog {
|
|
3417
3634
|
opacity: 0.7;
|
|
@@ -3446,7 +3663,7 @@
|
|
|
3446
3663
|
border-radius: var(--ag-card-radius);
|
|
3447
3664
|
white-space: normal;
|
|
3448
3665
|
}
|
|
3449
|
-
.gd-repeater .ag-tooltip.ag-cell-editor-tooltip {
|
|
3666
|
+
.gd-repeater .ag-tooltip.ag-cell-editor-tooltip, .gd-repeater .ag-tooltip.ag-cell-formula-tooltip {
|
|
3450
3667
|
background-color: var(--ag-tooltip-error-background-color);
|
|
3451
3668
|
color: var(--ag-tooltip-error-text-color);
|
|
3452
3669
|
border: var(--ag-borders) var(--ag-tooltip-error-border-color);
|
|
@@ -3628,14 +3845,14 @@
|
|
|
3628
3845
|
}
|
|
3629
3846
|
.gd-repeater .ag-row {
|
|
3630
3847
|
height: var(--ag-row-height);
|
|
3631
|
-
background-color: var(--ag-background-color);
|
|
3848
|
+
background-color: var(--ag-data-background-color);
|
|
3632
3849
|
border-bottom: var(--ag-row-border-style) var(--ag-row-border-color) var(--ag-row-border-width);
|
|
3633
3850
|
}
|
|
3634
3851
|
.gd-repeater .ag-row.ag-row-editing-invalid {
|
|
3635
3852
|
background-color: var(--ag-full-row-invalid-background-color);
|
|
3636
3853
|
}
|
|
3637
3854
|
.gd-repeater .ag-spanned-cell-wrapper {
|
|
3638
|
-
background-color: var(--ag-background-color);
|
|
3855
|
+
background-color: var(--ag-data-background-color);
|
|
3639
3856
|
position: absolute;
|
|
3640
3857
|
}
|
|
3641
3858
|
.gd-repeater .ag-spanned-cell-wrapper > .ag-spanned-cell {
|
|
@@ -3648,8 +3865,9 @@
|
|
|
3648
3865
|
content: "";
|
|
3649
3866
|
position: absolute;
|
|
3650
3867
|
width: calc(100% - 1px);
|
|
3651
|
-
height:
|
|
3652
|
-
background-color: var(--ag-
|
|
3868
|
+
height: var(--ag-row-drag-indicator-width);
|
|
3869
|
+
background-color: var(--ag-row-drag-indicator-color);
|
|
3870
|
+
border-radius: calc(var(--ag-row-drag-indicator-width) / 2);
|
|
3653
3871
|
left: 1px;
|
|
3654
3872
|
pointer-events: none;
|
|
3655
3873
|
}
|
|
@@ -3673,6 +3891,11 @@
|
|
|
3673
3891
|
background-color: var(--ag-selected-row-background-color);
|
|
3674
3892
|
border: 1px solid var(--ag-range-selection-border-color);
|
|
3675
3893
|
}
|
|
3894
|
+
.gd-repeater .ag-body,
|
|
3895
|
+
.gd-repeater .ag-floating-top,
|
|
3896
|
+
.gd-repeater .ag-floating-bottom {
|
|
3897
|
+
background-color: var(--ag-data-background-color);
|
|
3898
|
+
}
|
|
3676
3899
|
.gd-repeater .ag-row-odd {
|
|
3677
3900
|
background-color: var(--ag-odd-row-background-color);
|
|
3678
3901
|
}
|
|
@@ -3784,7 +4007,7 @@
|
|
|
3784
4007
|
}
|
|
3785
4008
|
.gd-repeater .ag-details-row {
|
|
3786
4009
|
padding: calc(var(--ag-grid-size) * 5);
|
|
3787
|
-
background-color: var(--ag-background-color);
|
|
4010
|
+
background-color: var(--ag-data-background-color);
|
|
3788
4011
|
}
|
|
3789
4012
|
.gd-repeater .ag-layout-auto-height .ag-center-cols-viewport,
|
|
3790
4013
|
.gd-repeater .ag-layout-auto-height .ag-center-cols-container,
|
|
@@ -3792,15 +4015,19 @@
|
|
|
3792
4015
|
.gd-repeater .ag-layout-print .ag-center-cols-container {
|
|
3793
4016
|
min-height: 50px;
|
|
3794
4017
|
}
|
|
3795
|
-
.gd-repeater .ag-overlay-loading-wrapper
|
|
4018
|
+
.gd-repeater .ag-overlay-loading-wrapper,
|
|
4019
|
+
.gd-repeater .ag-overlay-exporting-wrapper,
|
|
4020
|
+
.gd-repeater .ag-overlay-modal-wrapper {
|
|
3796
4021
|
background-color: var(--ag-modal-overlay-background-color);
|
|
3797
4022
|
}
|
|
3798
|
-
.gd-repeater .ag-overlay-loading-center
|
|
4023
|
+
.gd-repeater .ag-overlay-loading-center,
|
|
4024
|
+
.gd-repeater .ag-overlay-exporting-center {
|
|
3799
4025
|
border: var(--ag-borders) var(--ag-border-color);
|
|
3800
4026
|
background: var(--ag-background-color);
|
|
3801
4027
|
border-radius: var(--ag-card-radius);
|
|
3802
4028
|
box-shadow: var(--ag-card-shadow);
|
|
3803
4029
|
padding: var(--ag-grid-size);
|
|
4030
|
+
display: flex;
|
|
3804
4031
|
}
|
|
3805
4032
|
.gd-repeater .ag-skeleton-container {
|
|
3806
4033
|
width: 100%;
|
|
@@ -3910,21 +4137,25 @@
|
|
|
3910
4137
|
}
|
|
3911
4138
|
.gd-repeater .ag-cell-range-selected-1:not(.ag-cell-focus),
|
|
3912
4139
|
.gd-repeater .ag-cell-range-selected-1.ag-cell-range-chart,
|
|
4140
|
+
.gd-repeater .ag-cell-range-selected-1.ag-formula-range,
|
|
3913
4141
|
.gd-repeater .ag-root:not(.ag-context-menu-open) .ag-body-viewport:not(.ag-has-focus) .ag-cell-range-selected-1:not(.ag-cell-inline-editing) {
|
|
3914
4142
|
background-color: var(--ag-range-selection-background-color);
|
|
3915
4143
|
}
|
|
3916
4144
|
.gd-repeater .ag-cell-range-selected-2:not(.ag-cell-focus),
|
|
3917
4145
|
.gd-repeater .ag-cell-range-selected-2.ag-cell-range-chart,
|
|
4146
|
+
.gd-repeater .ag-cell-range-selected-2.ag-formula-range,
|
|
3918
4147
|
.gd-repeater .ag-body-viewport:not(.ag-has-focus) .ag-cell-range-selected-2 {
|
|
3919
4148
|
background-color: var(--ag-range-selection-background-color-2);
|
|
3920
4149
|
}
|
|
3921
4150
|
.gd-repeater .ag-cell-range-selected-3:not(.ag-cell-focus),
|
|
3922
4151
|
.gd-repeater .ag-cell-range-selected-3.ag-cell-range-chart,
|
|
4152
|
+
.gd-repeater .ag-cell-range-selected-3.ag-formula-range,
|
|
3923
4153
|
.gd-repeater .ag-body-viewport:not(.ag-has-focus) .ag-cell-range-selected-3 {
|
|
3924
4154
|
background-color: var(--ag-range-selection-background-color-3);
|
|
3925
4155
|
}
|
|
3926
4156
|
.gd-repeater .ag-cell-range-selected-4:not(.ag-cell-focus),
|
|
3927
4157
|
.gd-repeater .ag-cell-range-selected-4.ag-cell-range-chart,
|
|
4158
|
+
.gd-repeater .ag-cell-range-selected-4.ag-formula-range,
|
|
3928
4159
|
.gd-repeater .ag-body-viewport:not(.ag-has-focus) .ag-cell-range-selected-4 {
|
|
3929
4160
|
background-color: var(--ag-range-selection-background-color-4);
|
|
3930
4161
|
}
|
|
@@ -4244,14 +4475,14 @@
|
|
|
4244
4475
|
margin-right: calc(var(--ag-grid-size) * 2);
|
|
4245
4476
|
}
|
|
4246
4477
|
.gd-repeater .ag-simple-filter-body-wrapper {
|
|
4478
|
+
display: flex;
|
|
4479
|
+
flex-direction: column;
|
|
4480
|
+
gap: var(--ag-widget-vertical-spacing);
|
|
4247
4481
|
padding: var(--ag-widget-container-vertical-padding) var(--ag-widget-container-horizontal-padding);
|
|
4248
|
-
padding-bottom:
|
|
4482
|
+
padding-bottom: var(--ag-widget-container-vertical-padding);
|
|
4249
4483
|
overflow-y: auto;
|
|
4250
4484
|
min-height: calc(var(--ag-list-item-height) + var(--ag-widget-container-vertical-padding) + var(--ag-widget-vertical-spacing));
|
|
4251
4485
|
}
|
|
4252
|
-
.gd-repeater .ag-simple-filter-body-wrapper > * {
|
|
4253
|
-
margin-bottom: var(--ag-widget-vertical-spacing);
|
|
4254
|
-
}
|
|
4255
4486
|
.gd-repeater .ag-simple-filter-body-wrapper .ag-resizer-wrapper {
|
|
4256
4487
|
margin: 0;
|
|
4257
4488
|
}
|
|
@@ -4703,6 +4934,10 @@
|
|
|
4703
4934
|
.gd-repeater .ag-pinned-left-header {
|
|
4704
4935
|
border-right: var(--ag-borders-critical) var(--ag-border-color);
|
|
4705
4936
|
}
|
|
4937
|
+
.gd-repeater .ag-header-cell:not(.ag-right-aligned-header) .ag-header-col-ref {
|
|
4938
|
+
margin-right: var(--ag-grid-size);
|
|
4939
|
+
color: var(--ag-subtle-text-color);
|
|
4940
|
+
}
|
|
4706
4941
|
.gd-repeater .ag-ltr .ag-header-cell:not(.ag-right-aligned-header) .ag-header-label-icon,
|
|
4707
4942
|
.gd-repeater .ag-ltr .ag-header-cell:not(.ag-right-aligned-header) .ag-header-menu-icon {
|
|
4708
4943
|
margin-left: var(--ag-grid-size);
|
|
@@ -4711,6 +4946,10 @@
|
|
|
4711
4946
|
.gd-repeater .ag-rtl .ag-header-cell:not(.ag-right-aligned-header) .ag-header-menu-icon {
|
|
4712
4947
|
margin-right: var(--ag-grid-size);
|
|
4713
4948
|
}
|
|
4949
|
+
.gd-repeater .ag-header-cell.ag-right-aligned-header .ag-header-col-ref {
|
|
4950
|
+
margin-left: var(--ag-grid-size);
|
|
4951
|
+
color: var(--ag-subtle-text-color);
|
|
4952
|
+
}
|
|
4714
4953
|
.gd-repeater .ag-ltr .ag-header-cell.ag-right-aligned-header .ag-header-label-icon,
|
|
4715
4954
|
.gd-repeater .ag-ltr .ag-header-cell.ag-right-aligned-header .ag-header-menu-icon {
|
|
4716
4955
|
margin-right: var(--ag-grid-size);
|
|
@@ -4831,7 +5070,9 @@
|
|
|
4831
5070
|
content: "";
|
|
4832
5071
|
position: absolute;
|
|
4833
5072
|
height: 100%;
|
|
4834
|
-
width:
|
|
5073
|
+
width: var(--ag-column-drag-indicator-width);
|
|
5074
|
+
border-radius: calc(var(--ag-column-drag-indicator-width) / 2);
|
|
5075
|
+
background-color: var(--ag-column-drag-indicator-color);
|
|
4835
5076
|
}
|
|
4836
5077
|
.gd-repeater .ag-header-highlight-before::after {
|
|
4837
5078
|
left: 0px;
|
|
@@ -4944,6 +5185,7 @@
|
|
|
4944
5185
|
.gd-repeater .ag-paging-button,
|
|
4945
5186
|
.gd-repeater .ag-paging-description {
|
|
4946
5187
|
margin: 0 var(--ag-grid-size);
|
|
5188
|
+
line-height: 0;
|
|
4947
5189
|
}
|
|
4948
5190
|
.gd-repeater .ag-status-bar {
|
|
4949
5191
|
border-top: var(--ag-borders) var(--ag-border-color);
|
|
@@ -6060,14 +6302,14 @@
|
|
|
6060
6302
|
display: var(--ag-icon-image-display-radio-button-on, var(--ag-icon-image-display));
|
|
6061
6303
|
opacity: var(--ag-icon-image-opacity-radio-button-on, var(--ag-icon-image-opacity, 0.9));
|
|
6062
6304
|
}
|
|
6063
|
-
.gd-repeater
|
|
6305
|
+
.gd-repeater .ag-range-field-input {
|
|
6064
6306
|
-webkit-appearance: none;
|
|
6065
6307
|
width: 100%;
|
|
6066
6308
|
height: 100%;
|
|
6067
6309
|
background: none;
|
|
6068
6310
|
overflow: visible;
|
|
6069
6311
|
}
|
|
6070
|
-
.gd-repeater
|
|
6312
|
+
.gd-repeater .ag-range-field-input::-webkit-slider-runnable-track {
|
|
6071
6313
|
margin: 0;
|
|
6072
6314
|
padding: 0;
|
|
6073
6315
|
width: 100%;
|
|
@@ -6076,7 +6318,7 @@
|
|
|
6076
6318
|
border-radius: var(--ag-border-radius);
|
|
6077
6319
|
border-radius: var(--ag-checkbox-border-radius);
|
|
6078
6320
|
}
|
|
6079
|
-
.gd-repeater
|
|
6321
|
+
.gd-repeater .ag-range-field-input::-moz-range-track {
|
|
6080
6322
|
margin: 0;
|
|
6081
6323
|
padding: 0;
|
|
6082
6324
|
width: 100%;
|
|
@@ -6085,7 +6327,7 @@
|
|
|
6085
6327
|
border-radius: var(--ag-border-radius);
|
|
6086
6328
|
border-radius: var(--ag-checkbox-border-radius);
|
|
6087
6329
|
}
|
|
6088
|
-
.gd-repeater
|
|
6330
|
+
.gd-repeater .ag-range-field-input::-ms-track {
|
|
6089
6331
|
margin: 0;
|
|
6090
6332
|
padding: 0;
|
|
6091
6333
|
width: 100%;
|
|
@@ -6096,7 +6338,7 @@
|
|
|
6096
6338
|
color: transparent;
|
|
6097
6339
|
width: calc(100% - 2px);
|
|
6098
6340
|
}
|
|
6099
|
-
.gd-repeater
|
|
6341
|
+
.gd-repeater .ag-range-field-input::-webkit-slider-thumb {
|
|
6100
6342
|
margin: 0;
|
|
6101
6343
|
padding: 0;
|
|
6102
6344
|
-webkit-appearance: none;
|
|
@@ -6108,7 +6350,7 @@
|
|
|
6108
6350
|
border-radius: var(--ag-icon-size);
|
|
6109
6351
|
transform: translateY(calc(var(--ag-icon-size) * -0.5 + 1.5px));
|
|
6110
6352
|
}
|
|
6111
|
-
.gd-repeater
|
|
6353
|
+
.gd-repeater .ag-range-field-input::-ms-thumb {
|
|
6112
6354
|
margin: 0;
|
|
6113
6355
|
padding: 0;
|
|
6114
6356
|
-webkit-appearance: none;
|
|
@@ -6119,7 +6361,7 @@
|
|
|
6119
6361
|
border-color: var(--ag-checkbox-unchecked-color);
|
|
6120
6362
|
border-radius: var(--ag-icon-size);
|
|
6121
6363
|
}
|
|
6122
|
-
.gd-repeater
|
|
6364
|
+
.gd-repeater .ag-range-field-input::-moz-ag-range-thumb {
|
|
6123
6365
|
margin: 0;
|
|
6124
6366
|
padding: 0;
|
|
6125
6367
|
-webkit-appearance: none;
|
|
@@ -6130,31 +6372,31 @@
|
|
|
6130
6372
|
border-color: var(--ag-checkbox-unchecked-color);
|
|
6131
6373
|
border-radius: var(--ag-icon-size);
|
|
6132
6374
|
}
|
|
6133
|
-
.gd-repeater
|
|
6375
|
+
.gd-repeater .ag-range-field-input:focus {
|
|
6134
6376
|
outline: none;
|
|
6135
6377
|
}
|
|
6136
|
-
.gd-repeater
|
|
6378
|
+
.gd-repeater .ag-range-field-input:focus::-webkit-slider-thumb {
|
|
6137
6379
|
box-shadow: var(--ag-input-focus-box-shadow);
|
|
6138
6380
|
border-color: var(--ag-checkbox-checked-color);
|
|
6139
6381
|
}
|
|
6140
|
-
.gd-repeater
|
|
6382
|
+
.gd-repeater .ag-range-field-input:focus::-ms-thumb {
|
|
6141
6383
|
box-shadow: var(--ag-input-focus-box-shadow);
|
|
6142
6384
|
border-color: var(--ag-checkbox-checked-color);
|
|
6143
6385
|
}
|
|
6144
|
-
.gd-repeater
|
|
6386
|
+
.gd-repeater .ag-range-field-input:focus::-moz-ag-range-thumb {
|
|
6145
6387
|
box-shadow: var(--ag-input-focus-box-shadow);
|
|
6146
6388
|
border-color: var(--ag-checkbox-checked-color);
|
|
6147
6389
|
}
|
|
6148
|
-
.gd-repeater
|
|
6390
|
+
.gd-repeater .ag-range-field-input:active::-webkit-slider-runnable-track {
|
|
6149
6391
|
background-color: var(--ag-input-focus-border-color);
|
|
6150
6392
|
}
|
|
6151
|
-
.gd-repeater
|
|
6393
|
+
.gd-repeater .ag-range-field-input:active::-moz-ag-range-track {
|
|
6152
6394
|
background-color: var(--ag-input-focus-border-color);
|
|
6153
6395
|
}
|
|
6154
|
-
.gd-repeater
|
|
6396
|
+
.gd-repeater .ag-range-field-input:active::-ms-track {
|
|
6155
6397
|
background-color: var(--ag-input-focus-border-color);
|
|
6156
6398
|
}
|
|
6157
|
-
.gd-repeater
|
|
6399
|
+
.gd-repeater .ag-range-field-input:disabled {
|
|
6158
6400
|
opacity: 0.5;
|
|
6159
6401
|
}
|
|
6160
6402
|
.gd-repeater .ag-theme-balham,
|
|
@@ -6192,6 +6434,7 @@
|
|
|
6192
6434
|
--ag-panel-background-color: var(--ag-header-background-color);
|
|
6193
6435
|
--ag-filter-panel-apply-button-color: var(--ag-background-color);
|
|
6194
6436
|
--ag-filter-panel-apply-button-background-color: var(--ag-balham-active-color);
|
|
6437
|
+
--ag-column-drag-indicator-color: var(--ag-balham-active-color);
|
|
6195
6438
|
--ag-secondary-foreground-color: rgba(0, 0, 0, 0.54);
|
|
6196
6439
|
--ag-disabled-foreground-color: rgba(0, 0, 0, 0.38);
|
|
6197
6440
|
--ag-subheader-toolbar-background-color: rgba(226, 233, 235, 0.5);
|
|
@@ -6269,6 +6512,20 @@
|
|
|
6269
6512
|
color-mix(in srgb, var(--ag-background-color), var(--ag-invalid-color) 0.5%);
|
|
6270
6513
|
--ag-row-loading-skeleton-effect-color: rgba(202, 203, 204, 0.4);
|
|
6271
6514
|
--ag-cell-batch-edit-text-color: #f3d0b3;
|
|
6515
|
+
--ag-formula-token-1-color: #4da3e5;
|
|
6516
|
+
--ag-formula-token-1-background-color: rgb(77 163 229 / 16%);
|
|
6517
|
+
--ag-formula-token-2-color: #f55864;
|
|
6518
|
+
--ag-formula-token-2-background-color: rgb(245 88 100 / 16%);
|
|
6519
|
+
--ag-formula-token-3-color: #b688f2;
|
|
6520
|
+
--ag-formula-token-3-background-color: rgb(182 136 242 / 16%);
|
|
6521
|
+
--ag-formula-token-4-color: #24bb4a;
|
|
6522
|
+
--ag-formula-token-4-background-color: rgb(36 187 74 / 16%);
|
|
6523
|
+
--ag-formula-token-5-color: #e772ba;
|
|
6524
|
+
--ag-formula-token-5-background-color: rgb(231 114 186 / 16%);
|
|
6525
|
+
--ag-formula-token-6-color: #f69b5f;
|
|
6526
|
+
--ag-formula-token-6-background-color: rgb(246 155 95 / 16%);
|
|
6527
|
+
--ag-formula-token-7-color: #a3e6ff;
|
|
6528
|
+
--ag-formula-token-7-background-color: rgb(163 230 255 / 16%);
|
|
6272
6529
|
color-scheme: dark;
|
|
6273
6530
|
}
|
|
6274
6531
|
@media (prefers-color-scheme: dark) {
|
|
@@ -6317,6 +6574,20 @@
|
|
|
6317
6574
|
color-mix(in srgb, var(--ag-background-color), var(--ag-invalid-color) 0.5%);
|
|
6318
6575
|
--ag-row-loading-skeleton-effect-color: rgba(202, 203, 204, 0.4);
|
|
6319
6576
|
--ag-cell-batch-edit-text-color: #f3d0b3;
|
|
6577
|
+
--ag-formula-token-1-color: #4da3e5;
|
|
6578
|
+
--ag-formula-token-1-background-color: rgb(77 163 229 / 16%);
|
|
6579
|
+
--ag-formula-token-2-color: #f55864;
|
|
6580
|
+
--ag-formula-token-2-background-color: rgb(245 88 100 / 16%);
|
|
6581
|
+
--ag-formula-token-3-color: #b688f2;
|
|
6582
|
+
--ag-formula-token-3-background-color: rgb(182 136 242 / 16%);
|
|
6583
|
+
--ag-formula-token-4-color: #24bb4a;
|
|
6584
|
+
--ag-formula-token-4-background-color: rgb(36 187 74 / 16%);
|
|
6585
|
+
--ag-formula-token-5-color: #e772ba;
|
|
6586
|
+
--ag-formula-token-5-background-color: rgb(231 114 186 / 16%);
|
|
6587
|
+
--ag-formula-token-6-color: #f69b5f;
|
|
6588
|
+
--ag-formula-token-6-background-color: rgb(246 155 95 / 16%);
|
|
6589
|
+
--ag-formula-token-7-color: #a3e6ff;
|
|
6590
|
+
--ag-formula-token-7-background-color: rgb(163 230 255 / 16%);
|
|
6320
6591
|
color-scheme: dark;
|
|
6321
6592
|
}
|
|
6322
6593
|
}
|
|
@@ -6450,8 +6721,11 @@
|
|
|
6450
6721
|
background-color: var(--ag-header-background-color);
|
|
6451
6722
|
}
|
|
6452
6723
|
.gd-repeater .ag-theme-balham .ag-overlay-loading-center,
|
|
6724
|
+
.gd-repeater .ag-theme-balham .ag-overlay-exporting-center,
|
|
6453
6725
|
.gd-repeater .ag-theme-balham-dark .ag-overlay-loading-center,
|
|
6454
|
-
.gd-repeater .ag-theme-balham-
|
|
6726
|
+
.gd-repeater .ag-theme-balham-dark .ag-overlay-exporting-center,
|
|
6727
|
+
.gd-repeater .ag-theme-balham-auto-dark .ag-overlay-loading-center,
|
|
6728
|
+
.gd-repeater .ag-theme-balham-auto-dark .ag-overlay-exporting-center {
|
|
6455
6729
|
background-color: var(--ag-background-color);
|
|
6456
6730
|
border: 1px solid var(--ag-border-color);
|
|
6457
6731
|
color: var(--ag-foreground-color);
|
|
@@ -6518,14 +6792,6 @@
|
|
|
6518
6792
|
.gd-repeater .ag-theme-balham-auto-dark .ag-pill .ag-pill-button:hover {
|
|
6519
6793
|
color: var(--ag-balham-active-color);
|
|
6520
6794
|
}
|
|
6521
|
-
.gd-repeater .ag-theme-balham .ag-header-highlight-before::after,
|
|
6522
|
-
.gd-repeater .ag-theme-balham .ag-header-highlight-after::after,
|
|
6523
|
-
.gd-repeater .ag-theme-balham-dark .ag-header-highlight-before::after,
|
|
6524
|
-
.gd-repeater .ag-theme-balham-dark .ag-header-highlight-after::after,
|
|
6525
|
-
.gd-repeater .ag-theme-balham-auto-dark .ag-header-highlight-before::after,
|
|
6526
|
-
.gd-repeater .ag-theme-balham-auto-dark .ag-header-highlight-after::after {
|
|
6527
|
-
background-color: var(--ag-balham-active-color);
|
|
6528
|
-
}
|
|
6529
6795
|
.gd-repeater .ag-theme-balham .ag-advanced-filter-builder-item-button-disabled .ag-icon,
|
|
6530
6796
|
.gd-repeater .ag-theme-balham .ag-disabled .ag-icon,
|
|
6531
6797
|
.gd-repeater .ag-theme-balham .ag-column-select-column-group-readonly .ag-icon,
|
|
@@ -6553,7 +6819,7 @@
|
|
|
6553
6819
|
}
|
|
6554
6820
|
@font-face {
|
|
6555
6821
|
font-family: "agGridBalham";
|
|
6556
|
-
src: url(data:font/woff2;charset=utf-8;base64,
|
|
6822
|
+
src: url(data:font/woff2;charset=utf-8;base64,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);
|
|
6557
6823
|
font-weight: normal;
|
|
6558
6824
|
font-style: normal;
|
|
6559
6825
|
}
|