@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/main.css
CHANGED
|
@@ -1869,6 +1869,34 @@
|
|
|
1869
1869
|
display: var(--ag-icon-image-display-asc, var(--ag-icon-image-display));
|
|
1870
1870
|
opacity: var(--ag-icon-image-opacity-asc, var(--ag-icon-image-opacity, 0.9));
|
|
1871
1871
|
}
|
|
1872
|
+
.gd-repeater .ag-icon-aasc {
|
|
1873
|
+
font-family: var(--ag-icon-font-family-aasc, var(--ag-icon-font-family));
|
|
1874
|
+
font-weight: var(--ag-icon-font-weight-aasc, var(--ag-icon-font-weight));
|
|
1875
|
+
color: var(--ag-icon-font-color-aasc, var(--ag-icon-font-color));
|
|
1876
|
+
}
|
|
1877
|
+
.gd-repeater .ag-icon-aasc::before {
|
|
1878
|
+
content: var(--ag-icon-font-code-aasc, "\f13c");
|
|
1879
|
+
display: var(--ag-icon-font-display-aasc, var(--ag-icon-font-display));
|
|
1880
|
+
}
|
|
1881
|
+
.gd-repeater .ag-icon-aasc::after {
|
|
1882
|
+
background-image: var(--ag-icon-image-aasc, var(--ag-icon-image));
|
|
1883
|
+
display: var(--ag-icon-image-display-aasc, var(--ag-icon-image-display));
|
|
1884
|
+
opacity: var(--ag-icon-image-opacity-aasc, var(--ag-icon-image-opacity, 0.9));
|
|
1885
|
+
}
|
|
1886
|
+
.gd-repeater .ag-icon-adesc {
|
|
1887
|
+
font-family: var(--ag-icon-font-family-adesc, var(--ag-icon-font-family));
|
|
1888
|
+
font-weight: var(--ag-icon-font-weight-adesc, var(--ag-icon-font-weight));
|
|
1889
|
+
color: var(--ag-icon-font-color-adesc, var(--ag-icon-font-color));
|
|
1890
|
+
}
|
|
1891
|
+
.gd-repeater .ag-icon-adesc::before {
|
|
1892
|
+
content: var(--ag-icon-font-code-adesc, "\f13d");
|
|
1893
|
+
display: var(--ag-icon-font-display-adesc, var(--ag-icon-font-display));
|
|
1894
|
+
}
|
|
1895
|
+
.gd-repeater .ag-icon-adesc::after {
|
|
1896
|
+
background-image: var(--ag-icon-image-adesc, var(--ag-icon-image));
|
|
1897
|
+
display: var(--ag-icon-image-display-adesc, var(--ag-icon-image-display));
|
|
1898
|
+
opacity: var(--ag-icon-image-opacity-adesc, var(--ag-icon-image-opacity, 0.9));
|
|
1899
|
+
}
|
|
1872
1900
|
.gd-repeater .ag-icon-cancel {
|
|
1873
1901
|
font-family: var(--ag-icon-font-family-cancel, var(--ag-icon-font-family));
|
|
1874
1902
|
font-weight: var(--ag-icon-font-weight-cancel, var(--ag-icon-font-weight));
|
|
@@ -2795,7 +2823,8 @@
|
|
|
2795
2823
|
--ag-control-panel-background-color: transparent;
|
|
2796
2824
|
--ag-side-button-selected-background-color: var(--ag-control-panel-background-color);
|
|
2797
2825
|
--ag-selected-row-background-color: #bbb;
|
|
2798
|
-
--ag-
|
|
2826
|
+
--ag-data-background-color: var(--ag-background-color);
|
|
2827
|
+
--ag-odd-row-background-color: var(--ag-data-background-color);
|
|
2799
2828
|
--ag-modal-overlay-background-color: rgba(255, 255, 255, 0.66);
|
|
2800
2829
|
--ag-menu-background-color: var(--ag-background-color);
|
|
2801
2830
|
--ag-menu-border-color: var(--ag-border-color);
|
|
@@ -2804,6 +2833,10 @@
|
|
|
2804
2833
|
--ag-row-hover-color: transparent;
|
|
2805
2834
|
--ag-column-hover-color: transparent;
|
|
2806
2835
|
--ag-range-selection-border-color: var(--ag-foreground-color);
|
|
2836
|
+
--ag-row-drag-indicator-color: var(--ag-range-selection-border-color);
|
|
2837
|
+
--ag-row-drag-indicator-width: 2px;
|
|
2838
|
+
--ag-column-drag-indicator-color: var(--ag-range-selection-border-color);
|
|
2839
|
+
--ag-column-drag-indicator-width: 2px;
|
|
2807
2840
|
--ag-range-selection-border-style: solid;
|
|
2808
2841
|
--ag-range-selection-background-color: rgba(0, 0, 0, 0.2);
|
|
2809
2842
|
--ag-range-selection-background-color-2: var(--ag-range-selection-background-color);
|
|
@@ -2926,14 +2959,39 @@
|
|
|
2926
2959
|
--ag-filter-panel-apply-button-background-color: var(--ag-background-color);
|
|
2927
2960
|
--ag-filter-panel-card-subtle-color: var(--ag-foreground-color);
|
|
2928
2961
|
--ag-filter-panel-card-subtle-hover-color: var(--ag-foreground-color);
|
|
2962
|
+
--ag-formula-token-1-color: #3269c6;
|
|
2963
|
+
--ag-formula-token-1-background-color: rgb(50 105 198 / 16%);
|
|
2964
|
+
--ag-formula-token-1-border-color: var(--ag-formula-token-1-color);
|
|
2965
|
+
--ag-formula-token-2-color: #c0343f;
|
|
2966
|
+
--ag-formula-token-2-background-color: rgb(192 52 63 / 16%);
|
|
2967
|
+
--ag-formula-token-2-border-color: var(--ag-formula-token-2-color);
|
|
2968
|
+
--ag-formula-token-3-color: #8156b8;
|
|
2969
|
+
--ag-formula-token-3-background-color: rgb(129 86 184 / 16%);
|
|
2970
|
+
--ag-formula-token-3-border-color: var(--ag-formula-token-3-color);
|
|
2971
|
+
--ag-formula-token-4-color: #007c1f;
|
|
2972
|
+
--ag-formula-token-4-background-color: rgb(0 124 31 / 16%);
|
|
2973
|
+
--ag-formula-token-4-border-color: var(--ag-formula-token-4-color);
|
|
2974
|
+
--ag-formula-token-5-color: #b03e85;
|
|
2975
|
+
--ag-formula-token-5-background-color: rgb(176 62 133 / 16%);
|
|
2976
|
+
--ag-formula-token-5-border-color: var(--ag-formula-token-5-color);
|
|
2977
|
+
--ag-formula-token-6-color: #b74900;
|
|
2978
|
+
--ag-formula-token-6-background-color: rgb(183 73 0 / 16%);
|
|
2979
|
+
--ag-formula-token-6-border-color: var(--ag-formula-token-6-color);
|
|
2980
|
+
--ag-formula-token-7-color: #247492;
|
|
2981
|
+
--ag-formula-token-7-background-color: rgb(36 116 146 / 16%);
|
|
2982
|
+
--ag-formula-token-7-border-color: var(--ag-formula-token-7-color);
|
|
2929
2983
|
}
|
|
2930
2984
|
.gd-repeater .ag-root-wrapper,
|
|
2931
|
-
.gd-repeater .ag-sticky-top,
|
|
2932
|
-
.gd-repeater .ag-sticky-bottom,
|
|
2933
2985
|
.gd-repeater .ag-dnd-ghost {
|
|
2934
2986
|
background-color: var(--ag-background-color);
|
|
2935
2987
|
}
|
|
2988
|
+
.gd-repeater .ag-sticky-top,
|
|
2936
2989
|
.gd-repeater .ag-sticky-bottom {
|
|
2990
|
+
background-color: var(--ag-data-background-color);
|
|
2991
|
+
}
|
|
2992
|
+
.gd-repeater .ag-sticky-bottom .ag-pinned-left-sticky-bottom,
|
|
2993
|
+
.gd-repeater .ag-sticky-bottom .ag-sticky-bottom-container,
|
|
2994
|
+
.gd-repeater .ag-sticky-bottom .ag-pinned-right-sticky-bottom {
|
|
2937
2995
|
border-top: var(--ag-row-border-style) var(--ag-row-border-color) var(--ag-row-border-width);
|
|
2938
2996
|
}
|
|
2939
2997
|
.gd-repeater .ag-root-wrapper,
|
|
@@ -3184,7 +3242,9 @@
|
|
|
3184
3242
|
.gd-repeater .ag-floating-bottom-full-width-container,
|
|
3185
3243
|
.gd-repeater .ag-virtual-list-container,
|
|
3186
3244
|
.gd-repeater .ag-sticky-top-container,
|
|
3187
|
-
.gd-repeater .ag-sticky-bottom-container
|
|
3245
|
+
.gd-repeater .ag-sticky-bottom-container,
|
|
3246
|
+
.gd-repeater .ag-pinned-left-sticky-bottom,
|
|
3247
|
+
.gd-repeater .ag-pinned-right-sticky-bottom {
|
|
3188
3248
|
position: relative;
|
|
3189
3249
|
}
|
|
3190
3250
|
.gd-repeater .ag-header-container,
|
|
@@ -3318,7 +3378,8 @@
|
|
|
3318
3378
|
overflow: hidden;
|
|
3319
3379
|
position: relative;
|
|
3320
3380
|
}
|
|
3321
|
-
.gd-repeater .ag-header-cell-sortable .ag-header-cell-label
|
|
3381
|
+
.gd-repeater .ag-header-cell-sortable .ag-header-cell-label,
|
|
3382
|
+
.gd-repeater .ag-header-group-cell-selectable .ag-header-cell-comp-wrapper {
|
|
3322
3383
|
cursor: pointer;
|
|
3323
3384
|
}
|
|
3324
3385
|
.gd-repeater .ag-header {
|
|
@@ -3444,6 +3505,21 @@
|
|
|
3444
3505
|
.gd-repeater .ag-column-moving .ag-header-group-cell {
|
|
3445
3506
|
transition: left 0.2s, width 0.2s;
|
|
3446
3507
|
}
|
|
3508
|
+
.gd-repeater .ag-delay-render .ag-cell {
|
|
3509
|
+
visibility: hidden;
|
|
3510
|
+
}
|
|
3511
|
+
.gd-repeater .ag-delay-render .ag-row {
|
|
3512
|
+
visibility: hidden;
|
|
3513
|
+
}
|
|
3514
|
+
.gd-repeater .ag-delay-render .ag-spanned-cell-wrapper {
|
|
3515
|
+
visibility: hidden;
|
|
3516
|
+
}
|
|
3517
|
+
.gd-repeater .ag-delay-render .ag-header-cell {
|
|
3518
|
+
visibility: hidden;
|
|
3519
|
+
}
|
|
3520
|
+
.gd-repeater .ag-delay-render .ag-header-group-cell {
|
|
3521
|
+
visibility: hidden;
|
|
3522
|
+
}
|
|
3447
3523
|
.gd-repeater .ag-column-panel {
|
|
3448
3524
|
display: flex;
|
|
3449
3525
|
flex-direction: column;
|
|
@@ -3604,7 +3680,7 @@
|
|
|
3604
3680
|
.gd-repeater .ag-cell-value {
|
|
3605
3681
|
flex: 1 1 auto;
|
|
3606
3682
|
}
|
|
3607
|
-
.gd-repeater .ag-cell-value,
|
|
3683
|
+
.gd-repeater .ag-cell-value:not(.ag-allow-overflow),
|
|
3608
3684
|
.gd-repeater .ag-group-value {
|
|
3609
3685
|
overflow: hidden;
|
|
3610
3686
|
text-overflow: ellipsis;
|
|
@@ -3749,7 +3825,9 @@
|
|
|
3749
3825
|
justify-content: center;
|
|
3750
3826
|
text-align: center;
|
|
3751
3827
|
}
|
|
3752
|
-
.gd-repeater .ag-overlay-loading-wrapper
|
|
3828
|
+
.gd-repeater .ag-overlay-loading-wrapper,
|
|
3829
|
+
.gd-repeater .ag-overlay-exporting-wrapper,
|
|
3830
|
+
.gd-repeater .ag-overlay-modal-wrapper {
|
|
3753
3831
|
pointer-events: all;
|
|
3754
3832
|
}
|
|
3755
3833
|
.gd-repeater .ag-popup-child {
|
|
@@ -3797,6 +3875,11 @@
|
|
|
3797
3875
|
.gd-repeater .ag-sticky-bottom {
|
|
3798
3876
|
box-sizing: content-box !important;
|
|
3799
3877
|
}
|
|
3878
|
+
.gd-repeater .ag-sticky-bottom .ag-pinned-left-sticky-bottom,
|
|
3879
|
+
.gd-repeater .ag-sticky-bottom .ag-sticky-bottom-container,
|
|
3880
|
+
.gd-repeater .ag-sticky-bottom .ag-pinned-right-sticky-bottom {
|
|
3881
|
+
box-sizing: border-box;
|
|
3882
|
+
}
|
|
3800
3883
|
.gd-repeater .ag-pinned-left-sticky-top,
|
|
3801
3884
|
.gd-repeater .ag-pinned-right-sticky-top {
|
|
3802
3885
|
position: relative;
|
|
@@ -4016,7 +4099,8 @@
|
|
|
4016
4099
|
.gd-repeater .ag-rich-select-list {
|
|
4017
4100
|
position: relative;
|
|
4018
4101
|
}
|
|
4019
|
-
.gd-repeater .ag-rich-select-list .ag-loading
|
|
4102
|
+
.gd-repeater .ag-rich-select-list .ag-rich-select-loading {
|
|
4103
|
+
display: flex;
|
|
4020
4104
|
min-height: 2rem;
|
|
4021
4105
|
}
|
|
4022
4106
|
.gd-repeater .ag-rich-select-row {
|
|
@@ -4447,6 +4531,25 @@
|
|
|
4447
4531
|
.gd-repeater .ag-pill-select .ag-column-drop {
|
|
4448
4532
|
flex: unset;
|
|
4449
4533
|
}
|
|
4534
|
+
.gd-repeater .ag-content-editable-field {
|
|
4535
|
+
display: flex;
|
|
4536
|
+
align-items: center;
|
|
4537
|
+
}
|
|
4538
|
+
.gd-repeater .ag-content-editable-field-input {
|
|
4539
|
+
cursor: text;
|
|
4540
|
+
display: block;
|
|
4541
|
+
flex: 1 1 auto;
|
|
4542
|
+
outline: none;
|
|
4543
|
+
white-space: nowrap;
|
|
4544
|
+
line-height: normal;
|
|
4545
|
+
overflow: auto;
|
|
4546
|
+
overflow-y: hidden;
|
|
4547
|
+
-ms-overflow-style: none !important;
|
|
4548
|
+
scrollbar-width: none !important;
|
|
4549
|
+
}
|
|
4550
|
+
.gd-repeater .ag-content-editable-field-input::-webkit-scrollbar {
|
|
4551
|
+
display: none !important;
|
|
4552
|
+
}
|
|
4450
4553
|
.gd-repeater .ag-ltr {
|
|
4451
4554
|
direction: ltr;
|
|
4452
4555
|
}
|
|
@@ -4509,6 +4612,7 @@
|
|
|
4509
4612
|
@media print {
|
|
4510
4613
|
.gd-repeater .ag-root-wrapper.ag-layout-print {
|
|
4511
4614
|
display: table;
|
|
4615
|
+
container-type: normal;
|
|
4512
4616
|
}
|
|
4513
4617
|
.gd-repeater .ag-root-wrapper.ag-layout-print .ag-root-wrapper-body,
|
|
4514
4618
|
.gd-repeater .ag-root-wrapper.ag-layout-print .ag-root,
|
|
@@ -4724,6 +4828,10 @@
|
|
|
4724
4828
|
.gd-repeater .ag-rtl .ag-group-contracted {
|
|
4725
4829
|
margin-left: var(--ag-cell-widget-spacing);
|
|
4726
4830
|
}
|
|
4831
|
+
.gd-repeater .ag-drag-handle-disabled {
|
|
4832
|
+
opacity: 0.35;
|
|
4833
|
+
pointer-events: none;
|
|
4834
|
+
}
|
|
4727
4835
|
.gd-repeater .ag-cell-wrapper > *:not(.ag-cell-value):not(.ag-group-value) {
|
|
4728
4836
|
--ag-internal-calculated-line-height: var(
|
|
4729
4837
|
--ag-line-height,
|
|
@@ -5009,7 +5117,7 @@
|
|
|
5009
5117
|
border-radius: var(--ag-border-radius);
|
|
5010
5118
|
border: var(--ag-borders) var(--ag-border-color);
|
|
5011
5119
|
}
|
|
5012
|
-
.gd-repeater .ag-rich-select-list .ag-loading
|
|
5120
|
+
.gd-repeater .ag-rich-select-list .ag-rich-select-loading {
|
|
5013
5121
|
padding: var(--ag-widget-vertical-spacing) var(--ag-widget-horizontal-spacing);
|
|
5014
5122
|
}
|
|
5015
5123
|
.gd-repeater .ag-rich-select-value {
|
|
@@ -5103,6 +5211,115 @@
|
|
|
5103
5211
|
.gd-repeater .ag-pill .ag-pill-button:hover {
|
|
5104
5212
|
cursor: pointer;
|
|
5105
5213
|
}
|
|
5214
|
+
.gd-repeater .ag-content-editable-field-input {
|
|
5215
|
+
background-color: var(--ag-background-color);
|
|
5216
|
+
border: var(--ag-borders-input) var(--ag-input-border-color);
|
|
5217
|
+
border-radius: var(--ag-border-radius);
|
|
5218
|
+
color: var(--ag-foreground-color);
|
|
5219
|
+
}
|
|
5220
|
+
.gd-repeater .ag-ltr .ag-content-editable-field-input {
|
|
5221
|
+
padding-left: var(--ag-grid-size);
|
|
5222
|
+
}
|
|
5223
|
+
.gd-repeater .ag-rtl .ag-content-editable-field-input {
|
|
5224
|
+
padding-right: var(--ag-grid-size);
|
|
5225
|
+
}
|
|
5226
|
+
.gd-repeater .ag-cell-editor .ag-wrapper.ag-content-editable-field-input {
|
|
5227
|
+
--ag-internal-calculated-line-height: var(
|
|
5228
|
+
--ag-line-height,
|
|
5229
|
+
calc(var(--ag-row-height) - var(--ag-row-border-width))
|
|
5230
|
+
);
|
|
5231
|
+
--ag-internal-padded-row-height: calc(var(--ag-row-height) - var(--ag-row-border-width) - 2px);
|
|
5232
|
+
line-height: min(var(--ag-internal-calculated-line-height), var(--ag-internal-padded-row-height));
|
|
5233
|
+
}
|
|
5234
|
+
.gd-repeater .ag-content-editable-field-input:focus,
|
|
5235
|
+
.gd-repeater .ag-content-editable-field-input:focus-within {
|
|
5236
|
+
box-shadow: var(--ag-input-focus-box-shadow);
|
|
5237
|
+
border-color: var(--ag-input-focus-border-color);
|
|
5238
|
+
}
|
|
5239
|
+
.gd-repeater :where(.ag-content-editable-field.ag-disabled .ag-content-editable-field-input) {
|
|
5240
|
+
background-color: var(--ag-input-disabled-background-color);
|
|
5241
|
+
border-color: var(--ag-input-disabled-border-color);
|
|
5242
|
+
color: var(--ag-disabled-foreground-color);
|
|
5243
|
+
}
|
|
5244
|
+
.gd-repeater .ag-content-editable-field-input.invalid {
|
|
5245
|
+
border-color: var(--ag-invalid-color);
|
|
5246
|
+
}
|
|
5247
|
+
.gd-repeater .ag-formula-token {
|
|
5248
|
+
line-height: var(--ag-line-height, 1.6);
|
|
5249
|
+
}
|
|
5250
|
+
.gd-repeater .ag-formula-token-color-1 {
|
|
5251
|
+
color: var(--ag-formula-token-1-color);
|
|
5252
|
+
}
|
|
5253
|
+
.gd-repeater .ag-formula-token-color-2 {
|
|
5254
|
+
color: var(--ag-formula-token-2-color);
|
|
5255
|
+
}
|
|
5256
|
+
.gd-repeater .ag-formula-token-color-3 {
|
|
5257
|
+
color: var(--ag-formula-token-3-color);
|
|
5258
|
+
}
|
|
5259
|
+
.gd-repeater .ag-formula-token-color-4 {
|
|
5260
|
+
color: var(--ag-formula-token-4-color);
|
|
5261
|
+
}
|
|
5262
|
+
.gd-repeater .ag-formula-token-color-5 {
|
|
5263
|
+
color: var(--ag-formula-token-5-color);
|
|
5264
|
+
}
|
|
5265
|
+
.gd-repeater .ag-formula-token-color-6 {
|
|
5266
|
+
color: var(--ag-formula-token-6-color);
|
|
5267
|
+
}
|
|
5268
|
+
.gd-repeater .ag-formula-token-color-7 {
|
|
5269
|
+
color: var(--ag-formula-token-7-color);
|
|
5270
|
+
}
|
|
5271
|
+
.gd-repeater .ag-formula-range-color-1 {
|
|
5272
|
+
--ag-range-selection-border-color: var(--ag-formula-token-1-color);
|
|
5273
|
+
--ag-range-selection-background-color: var(--ag-formula-token-1-background-color);
|
|
5274
|
+
}
|
|
5275
|
+
.gd-repeater .ag-formula-range-color-2 {
|
|
5276
|
+
--ag-range-selection-border-color: var(--ag-formula-token-2-color);
|
|
5277
|
+
--ag-range-selection-background-color: var(--ag-formula-token-2-background-color);
|
|
5278
|
+
}
|
|
5279
|
+
.gd-repeater .ag-formula-range-color-3 {
|
|
5280
|
+
--ag-range-selection-border-color: var(--ag-formula-token-3-color);
|
|
5281
|
+
--ag-range-selection-background-color: var(--ag-formula-token-3-background-color);
|
|
5282
|
+
}
|
|
5283
|
+
.gd-repeater .ag-formula-range-color-4 {
|
|
5284
|
+
--ag-range-selection-border-color: var(--ag-formula-token-4-color);
|
|
5285
|
+
--ag-range-selection-background-color: var(--ag-formula-token-4-background-color);
|
|
5286
|
+
}
|
|
5287
|
+
.gd-repeater .ag-formula-range-color-5 {
|
|
5288
|
+
--ag-range-selection-border-color: var(--ag-formula-token-5-color);
|
|
5289
|
+
--ag-range-selection-background-color: var(--ag-formula-token-5-background-color);
|
|
5290
|
+
}
|
|
5291
|
+
.gd-repeater .ag-formula-range-color-6 {
|
|
5292
|
+
--ag-range-selection-border-color: var(--ag-formula-token-6-color);
|
|
5293
|
+
--ag-range-selection-background-color: var(--ag-formula-token-6-background-color);
|
|
5294
|
+
}
|
|
5295
|
+
.gd-repeater .ag-formula-range-color-7 {
|
|
5296
|
+
--ag-range-selection-border-color: var(--ag-formula-token-7-color);
|
|
5297
|
+
--ag-range-selection-background-color: var(--ag-formula-token-7-background-color);
|
|
5298
|
+
}
|
|
5299
|
+
.gd-repeater .ag-range-handle.ag-formula-range-color-1,
|
|
5300
|
+
.gd-repeater .ag-fill-handle.ag-formula-range-color-1 {
|
|
5301
|
+
background-color: var(--ag-formula-token-1-color);
|
|
5302
|
+
}
|
|
5303
|
+
.gd-repeater .ag-range-handle.ag-formula-range-color-2,
|
|
5304
|
+
.gd-repeater .ag-fill-handle.ag-formula-range-color-2 {
|
|
5305
|
+
background-color: var(--ag-formula-token-2-color);
|
|
5306
|
+
}
|
|
5307
|
+
.gd-repeater .ag-range-handle.ag-formula-range-color-3,
|
|
5308
|
+
.gd-repeater .ag-fill-handle.ag-formula-range-color-3 {
|
|
5309
|
+
background-color: var(--ag-formula-token-3-color);
|
|
5310
|
+
}
|
|
5311
|
+
.gd-repeater .ag-range-handle.ag-formula-range-color-4,
|
|
5312
|
+
.gd-repeater .ag-fill-handle.ag-formula-range-color-4 {
|
|
5313
|
+
background-color: var(--ag-formula-token-4-color);
|
|
5314
|
+
}
|
|
5315
|
+
.gd-repeater .ag-range-handle.ag-formula-range-color-5,
|
|
5316
|
+
.gd-repeater .ag-fill-handle.ag-formula-range-color-5 {
|
|
5317
|
+
background-color: var(--ag-formula-token-5-color);
|
|
5318
|
+
}
|
|
5319
|
+
.gd-repeater .ag-range-handle.ag-formula-range-color-6,
|
|
5320
|
+
.gd-repeater .ag-fill-handle.ag-formula-range-color-6 {
|
|
5321
|
+
background-color: var(--ag-formula-token-6-color);
|
|
5322
|
+
}
|
|
5106
5323
|
.gd-repeater .ag-dragging-range-handle .ag-dialog,
|
|
5107
5324
|
.gd-repeater .ag-dragging-fill-handle .ag-dialog {
|
|
5108
5325
|
opacity: 0.7;
|
|
@@ -5137,7 +5354,7 @@
|
|
|
5137
5354
|
border-radius: var(--ag-card-radius);
|
|
5138
5355
|
white-space: normal;
|
|
5139
5356
|
}
|
|
5140
|
-
.gd-repeater .ag-tooltip.ag-cell-editor-tooltip {
|
|
5357
|
+
.gd-repeater .ag-tooltip.ag-cell-editor-tooltip, .gd-repeater .ag-tooltip.ag-cell-formula-tooltip {
|
|
5141
5358
|
background-color: var(--ag-tooltip-error-background-color);
|
|
5142
5359
|
color: var(--ag-tooltip-error-text-color);
|
|
5143
5360
|
border: var(--ag-borders) var(--ag-tooltip-error-border-color);
|
|
@@ -5319,14 +5536,14 @@
|
|
|
5319
5536
|
}
|
|
5320
5537
|
.gd-repeater .ag-row {
|
|
5321
5538
|
height: var(--ag-row-height);
|
|
5322
|
-
background-color: var(--ag-background-color);
|
|
5539
|
+
background-color: var(--ag-data-background-color);
|
|
5323
5540
|
border-bottom: var(--ag-row-border-style) var(--ag-row-border-color) var(--ag-row-border-width);
|
|
5324
5541
|
}
|
|
5325
5542
|
.gd-repeater .ag-row.ag-row-editing-invalid {
|
|
5326
5543
|
background-color: var(--ag-full-row-invalid-background-color);
|
|
5327
5544
|
}
|
|
5328
5545
|
.gd-repeater .ag-spanned-cell-wrapper {
|
|
5329
|
-
background-color: var(--ag-background-color);
|
|
5546
|
+
background-color: var(--ag-data-background-color);
|
|
5330
5547
|
position: absolute;
|
|
5331
5548
|
}
|
|
5332
5549
|
.gd-repeater .ag-spanned-cell-wrapper > .ag-spanned-cell {
|
|
@@ -5339,8 +5556,9 @@
|
|
|
5339
5556
|
content: "";
|
|
5340
5557
|
position: absolute;
|
|
5341
5558
|
width: calc(100% - 1px);
|
|
5342
|
-
height:
|
|
5343
|
-
background-color: var(--ag-
|
|
5559
|
+
height: var(--ag-row-drag-indicator-width);
|
|
5560
|
+
background-color: var(--ag-row-drag-indicator-color);
|
|
5561
|
+
border-radius: calc(var(--ag-row-drag-indicator-width) / 2);
|
|
5344
5562
|
left: 1px;
|
|
5345
5563
|
pointer-events: none;
|
|
5346
5564
|
}
|
|
@@ -5364,6 +5582,11 @@
|
|
|
5364
5582
|
background-color: var(--ag-selected-row-background-color);
|
|
5365
5583
|
border: 1px solid var(--ag-range-selection-border-color);
|
|
5366
5584
|
}
|
|
5585
|
+
.gd-repeater .ag-body,
|
|
5586
|
+
.gd-repeater .ag-floating-top,
|
|
5587
|
+
.gd-repeater .ag-floating-bottom {
|
|
5588
|
+
background-color: var(--ag-data-background-color);
|
|
5589
|
+
}
|
|
5367
5590
|
.gd-repeater .ag-row-odd {
|
|
5368
5591
|
background-color: var(--ag-odd-row-background-color);
|
|
5369
5592
|
}
|
|
@@ -5475,7 +5698,7 @@
|
|
|
5475
5698
|
}
|
|
5476
5699
|
.gd-repeater .ag-details-row {
|
|
5477
5700
|
padding: calc(var(--ag-grid-size) * 5);
|
|
5478
|
-
background-color: var(--ag-background-color);
|
|
5701
|
+
background-color: var(--ag-data-background-color);
|
|
5479
5702
|
}
|
|
5480
5703
|
.gd-repeater .ag-layout-auto-height .ag-center-cols-viewport,
|
|
5481
5704
|
.gd-repeater .ag-layout-auto-height .ag-center-cols-container,
|
|
@@ -5483,15 +5706,19 @@
|
|
|
5483
5706
|
.gd-repeater .ag-layout-print .ag-center-cols-container {
|
|
5484
5707
|
min-height: 50px;
|
|
5485
5708
|
}
|
|
5486
|
-
.gd-repeater .ag-overlay-loading-wrapper
|
|
5709
|
+
.gd-repeater .ag-overlay-loading-wrapper,
|
|
5710
|
+
.gd-repeater .ag-overlay-exporting-wrapper,
|
|
5711
|
+
.gd-repeater .ag-overlay-modal-wrapper {
|
|
5487
5712
|
background-color: var(--ag-modal-overlay-background-color);
|
|
5488
5713
|
}
|
|
5489
|
-
.gd-repeater .ag-overlay-loading-center
|
|
5714
|
+
.gd-repeater .ag-overlay-loading-center,
|
|
5715
|
+
.gd-repeater .ag-overlay-exporting-center {
|
|
5490
5716
|
border: var(--ag-borders) var(--ag-border-color);
|
|
5491
5717
|
background: var(--ag-background-color);
|
|
5492
5718
|
border-radius: var(--ag-card-radius);
|
|
5493
5719
|
box-shadow: var(--ag-card-shadow);
|
|
5494
5720
|
padding: var(--ag-grid-size);
|
|
5721
|
+
display: flex;
|
|
5495
5722
|
}
|
|
5496
5723
|
.gd-repeater .ag-skeleton-container {
|
|
5497
5724
|
width: 100%;
|
|
@@ -5601,21 +5828,25 @@
|
|
|
5601
5828
|
}
|
|
5602
5829
|
.gd-repeater .ag-cell-range-selected-1:not(.ag-cell-focus),
|
|
5603
5830
|
.gd-repeater .ag-cell-range-selected-1.ag-cell-range-chart,
|
|
5831
|
+
.gd-repeater .ag-cell-range-selected-1.ag-formula-range,
|
|
5604
5832
|
.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) {
|
|
5605
5833
|
background-color: var(--ag-range-selection-background-color);
|
|
5606
5834
|
}
|
|
5607
5835
|
.gd-repeater .ag-cell-range-selected-2:not(.ag-cell-focus),
|
|
5608
5836
|
.gd-repeater .ag-cell-range-selected-2.ag-cell-range-chart,
|
|
5837
|
+
.gd-repeater .ag-cell-range-selected-2.ag-formula-range,
|
|
5609
5838
|
.gd-repeater .ag-body-viewport:not(.ag-has-focus) .ag-cell-range-selected-2 {
|
|
5610
5839
|
background-color: var(--ag-range-selection-background-color-2);
|
|
5611
5840
|
}
|
|
5612
5841
|
.gd-repeater .ag-cell-range-selected-3:not(.ag-cell-focus),
|
|
5613
5842
|
.gd-repeater .ag-cell-range-selected-3.ag-cell-range-chart,
|
|
5843
|
+
.gd-repeater .ag-cell-range-selected-3.ag-formula-range,
|
|
5614
5844
|
.gd-repeater .ag-body-viewport:not(.ag-has-focus) .ag-cell-range-selected-3 {
|
|
5615
5845
|
background-color: var(--ag-range-selection-background-color-3);
|
|
5616
5846
|
}
|
|
5617
5847
|
.gd-repeater .ag-cell-range-selected-4:not(.ag-cell-focus),
|
|
5618
5848
|
.gd-repeater .ag-cell-range-selected-4.ag-cell-range-chart,
|
|
5849
|
+
.gd-repeater .ag-cell-range-selected-4.ag-formula-range,
|
|
5619
5850
|
.gd-repeater .ag-body-viewport:not(.ag-has-focus) .ag-cell-range-selected-4 {
|
|
5620
5851
|
background-color: var(--ag-range-selection-background-color-4);
|
|
5621
5852
|
}
|
|
@@ -5935,14 +6166,14 @@
|
|
|
5935
6166
|
margin-right: calc(var(--ag-grid-size) * 2);
|
|
5936
6167
|
}
|
|
5937
6168
|
.gd-repeater .ag-simple-filter-body-wrapper {
|
|
6169
|
+
display: flex;
|
|
6170
|
+
flex-direction: column;
|
|
6171
|
+
gap: var(--ag-widget-vertical-spacing);
|
|
5938
6172
|
padding: var(--ag-widget-container-vertical-padding) var(--ag-widget-container-horizontal-padding);
|
|
5939
|
-
padding-bottom:
|
|
6173
|
+
padding-bottom: var(--ag-widget-container-vertical-padding);
|
|
5940
6174
|
overflow-y: auto;
|
|
5941
6175
|
min-height: calc(var(--ag-list-item-height) + var(--ag-widget-container-vertical-padding) + var(--ag-widget-vertical-spacing));
|
|
5942
6176
|
}
|
|
5943
|
-
.gd-repeater .ag-simple-filter-body-wrapper > * {
|
|
5944
|
-
margin-bottom: var(--ag-widget-vertical-spacing);
|
|
5945
|
-
}
|
|
5946
6177
|
.gd-repeater .ag-simple-filter-body-wrapper .ag-resizer-wrapper {
|
|
5947
6178
|
margin: 0;
|
|
5948
6179
|
}
|
|
@@ -6394,6 +6625,10 @@
|
|
|
6394
6625
|
.gd-repeater .ag-pinned-left-header {
|
|
6395
6626
|
border-right: var(--ag-borders-critical) var(--ag-border-color);
|
|
6396
6627
|
}
|
|
6628
|
+
.gd-repeater .ag-header-cell:not(.ag-right-aligned-header) .ag-header-col-ref {
|
|
6629
|
+
margin-right: var(--ag-grid-size);
|
|
6630
|
+
color: var(--ag-subtle-text-color);
|
|
6631
|
+
}
|
|
6397
6632
|
.gd-repeater .ag-ltr .ag-header-cell:not(.ag-right-aligned-header) .ag-header-label-icon,
|
|
6398
6633
|
.gd-repeater .ag-ltr .ag-header-cell:not(.ag-right-aligned-header) .ag-header-menu-icon {
|
|
6399
6634
|
margin-left: var(--ag-grid-size);
|
|
@@ -6402,6 +6637,10 @@
|
|
|
6402
6637
|
.gd-repeater .ag-rtl .ag-header-cell:not(.ag-right-aligned-header) .ag-header-menu-icon {
|
|
6403
6638
|
margin-right: var(--ag-grid-size);
|
|
6404
6639
|
}
|
|
6640
|
+
.gd-repeater .ag-header-cell.ag-right-aligned-header .ag-header-col-ref {
|
|
6641
|
+
margin-left: var(--ag-grid-size);
|
|
6642
|
+
color: var(--ag-subtle-text-color);
|
|
6643
|
+
}
|
|
6405
6644
|
.gd-repeater .ag-ltr .ag-header-cell.ag-right-aligned-header .ag-header-label-icon,
|
|
6406
6645
|
.gd-repeater .ag-ltr .ag-header-cell.ag-right-aligned-header .ag-header-menu-icon {
|
|
6407
6646
|
margin-right: var(--ag-grid-size);
|
|
@@ -6522,7 +6761,9 @@
|
|
|
6522
6761
|
content: "";
|
|
6523
6762
|
position: absolute;
|
|
6524
6763
|
height: 100%;
|
|
6525
|
-
width:
|
|
6764
|
+
width: var(--ag-column-drag-indicator-width);
|
|
6765
|
+
border-radius: calc(var(--ag-column-drag-indicator-width) / 2);
|
|
6766
|
+
background-color: var(--ag-column-drag-indicator-color);
|
|
6526
6767
|
}
|
|
6527
6768
|
.gd-repeater .ag-header-highlight-before::after {
|
|
6528
6769
|
left: 0px;
|
|
@@ -6635,6 +6876,7 @@
|
|
|
6635
6876
|
.gd-repeater .ag-paging-button,
|
|
6636
6877
|
.gd-repeater .ag-paging-description {
|
|
6637
6878
|
margin: 0 var(--ag-grid-size);
|
|
6879
|
+
line-height: 0;
|
|
6638
6880
|
}
|
|
6639
6881
|
.gd-repeater .ag-status-bar {
|
|
6640
6882
|
border-top: var(--ag-borders) var(--ag-border-color);
|
|
@@ -7751,14 +7993,14 @@
|
|
|
7751
7993
|
display: var(--ag-icon-image-display-radio-button-on, var(--ag-icon-image-display));
|
|
7752
7994
|
opacity: var(--ag-icon-image-opacity-radio-button-on, var(--ag-icon-image-opacity, 0.9));
|
|
7753
7995
|
}
|
|
7754
|
-
.gd-repeater
|
|
7996
|
+
.gd-repeater .ag-range-field-input {
|
|
7755
7997
|
-webkit-appearance: none;
|
|
7756
7998
|
width: 100%;
|
|
7757
7999
|
height: 100%;
|
|
7758
8000
|
background: none;
|
|
7759
8001
|
overflow: visible;
|
|
7760
8002
|
}
|
|
7761
|
-
.gd-repeater
|
|
8003
|
+
.gd-repeater .ag-range-field-input::-webkit-slider-runnable-track {
|
|
7762
8004
|
margin: 0;
|
|
7763
8005
|
padding: 0;
|
|
7764
8006
|
width: 100%;
|
|
@@ -7767,7 +8009,7 @@
|
|
|
7767
8009
|
border-radius: var(--ag-border-radius);
|
|
7768
8010
|
border-radius: var(--ag-checkbox-border-radius);
|
|
7769
8011
|
}
|
|
7770
|
-
.gd-repeater
|
|
8012
|
+
.gd-repeater .ag-range-field-input::-moz-range-track {
|
|
7771
8013
|
margin: 0;
|
|
7772
8014
|
padding: 0;
|
|
7773
8015
|
width: 100%;
|
|
@@ -7776,7 +8018,7 @@
|
|
|
7776
8018
|
border-radius: var(--ag-border-radius);
|
|
7777
8019
|
border-radius: var(--ag-checkbox-border-radius);
|
|
7778
8020
|
}
|
|
7779
|
-
.gd-repeater
|
|
8021
|
+
.gd-repeater .ag-range-field-input::-ms-track {
|
|
7780
8022
|
margin: 0;
|
|
7781
8023
|
padding: 0;
|
|
7782
8024
|
width: 100%;
|
|
@@ -7787,7 +8029,7 @@
|
|
|
7787
8029
|
color: transparent;
|
|
7788
8030
|
width: calc(100% - 2px);
|
|
7789
8031
|
}
|
|
7790
|
-
.gd-repeater
|
|
8032
|
+
.gd-repeater .ag-range-field-input::-webkit-slider-thumb {
|
|
7791
8033
|
margin: 0;
|
|
7792
8034
|
padding: 0;
|
|
7793
8035
|
-webkit-appearance: none;
|
|
@@ -7799,7 +8041,7 @@
|
|
|
7799
8041
|
border-radius: var(--ag-icon-size);
|
|
7800
8042
|
transform: translateY(calc(var(--ag-icon-size) * -0.5 + 1.5px));
|
|
7801
8043
|
}
|
|
7802
|
-
.gd-repeater
|
|
8044
|
+
.gd-repeater .ag-range-field-input::-ms-thumb {
|
|
7803
8045
|
margin: 0;
|
|
7804
8046
|
padding: 0;
|
|
7805
8047
|
-webkit-appearance: none;
|
|
@@ -7810,7 +8052,7 @@
|
|
|
7810
8052
|
border-color: var(--ag-checkbox-unchecked-color);
|
|
7811
8053
|
border-radius: var(--ag-icon-size);
|
|
7812
8054
|
}
|
|
7813
|
-
.gd-repeater
|
|
8055
|
+
.gd-repeater .ag-range-field-input::-moz-ag-range-thumb {
|
|
7814
8056
|
margin: 0;
|
|
7815
8057
|
padding: 0;
|
|
7816
8058
|
-webkit-appearance: none;
|
|
@@ -7821,31 +8063,31 @@
|
|
|
7821
8063
|
border-color: var(--ag-checkbox-unchecked-color);
|
|
7822
8064
|
border-radius: var(--ag-icon-size);
|
|
7823
8065
|
}
|
|
7824
|
-
.gd-repeater
|
|
8066
|
+
.gd-repeater .ag-range-field-input:focus {
|
|
7825
8067
|
outline: none;
|
|
7826
8068
|
}
|
|
7827
|
-
.gd-repeater
|
|
8069
|
+
.gd-repeater .ag-range-field-input:focus::-webkit-slider-thumb {
|
|
7828
8070
|
box-shadow: var(--ag-input-focus-box-shadow);
|
|
7829
8071
|
border-color: var(--ag-checkbox-checked-color);
|
|
7830
8072
|
}
|
|
7831
|
-
.gd-repeater
|
|
8073
|
+
.gd-repeater .ag-range-field-input:focus::-ms-thumb {
|
|
7832
8074
|
box-shadow: var(--ag-input-focus-box-shadow);
|
|
7833
8075
|
border-color: var(--ag-checkbox-checked-color);
|
|
7834
8076
|
}
|
|
7835
|
-
.gd-repeater
|
|
8077
|
+
.gd-repeater .ag-range-field-input:focus::-moz-ag-range-thumb {
|
|
7836
8078
|
box-shadow: var(--ag-input-focus-box-shadow);
|
|
7837
8079
|
border-color: var(--ag-checkbox-checked-color);
|
|
7838
8080
|
}
|
|
7839
|
-
.gd-repeater
|
|
8081
|
+
.gd-repeater .ag-range-field-input:active::-webkit-slider-runnable-track {
|
|
7840
8082
|
background-color: var(--ag-input-focus-border-color);
|
|
7841
8083
|
}
|
|
7842
|
-
.gd-repeater
|
|
8084
|
+
.gd-repeater .ag-range-field-input:active::-moz-ag-range-track {
|
|
7843
8085
|
background-color: var(--ag-input-focus-border-color);
|
|
7844
8086
|
}
|
|
7845
|
-
.gd-repeater
|
|
8087
|
+
.gd-repeater .ag-range-field-input:active::-ms-track {
|
|
7846
8088
|
background-color: var(--ag-input-focus-border-color);
|
|
7847
8089
|
}
|
|
7848
|
-
.gd-repeater
|
|
8090
|
+
.gd-repeater .ag-range-field-input:disabled {
|
|
7849
8091
|
opacity: 0.5;
|
|
7850
8092
|
}
|
|
7851
8093
|
.gd-repeater .ag-theme-balham,
|
|
@@ -7883,6 +8125,7 @@
|
|
|
7883
8125
|
--ag-panel-background-color: var(--ag-header-background-color);
|
|
7884
8126
|
--ag-filter-panel-apply-button-color: var(--ag-background-color);
|
|
7885
8127
|
--ag-filter-panel-apply-button-background-color: var(--ag-balham-active-color);
|
|
8128
|
+
--ag-column-drag-indicator-color: var(--ag-balham-active-color);
|
|
7886
8129
|
--ag-secondary-foreground-color: rgba(0, 0, 0, 0.54);
|
|
7887
8130
|
--ag-disabled-foreground-color: rgba(0, 0, 0, 0.38);
|
|
7888
8131
|
--ag-subheader-toolbar-background-color: rgba(226, 233, 235, 0.5);
|
|
@@ -7960,6 +8203,20 @@
|
|
|
7960
8203
|
color-mix(in srgb, var(--ag-background-color), var(--ag-invalid-color) 0.5%);
|
|
7961
8204
|
--ag-row-loading-skeleton-effect-color: rgba(202, 203, 204, 0.4);
|
|
7962
8205
|
--ag-cell-batch-edit-text-color: #f3d0b3;
|
|
8206
|
+
--ag-formula-token-1-color: #4da3e5;
|
|
8207
|
+
--ag-formula-token-1-background-color: rgb(77 163 229 / 16%);
|
|
8208
|
+
--ag-formula-token-2-color: #f55864;
|
|
8209
|
+
--ag-formula-token-2-background-color: rgb(245 88 100 / 16%);
|
|
8210
|
+
--ag-formula-token-3-color: #b688f2;
|
|
8211
|
+
--ag-formula-token-3-background-color: rgb(182 136 242 / 16%);
|
|
8212
|
+
--ag-formula-token-4-color: #24bb4a;
|
|
8213
|
+
--ag-formula-token-4-background-color: rgb(36 187 74 / 16%);
|
|
8214
|
+
--ag-formula-token-5-color: #e772ba;
|
|
8215
|
+
--ag-formula-token-5-background-color: rgb(231 114 186 / 16%);
|
|
8216
|
+
--ag-formula-token-6-color: #f69b5f;
|
|
8217
|
+
--ag-formula-token-6-background-color: rgb(246 155 95 / 16%);
|
|
8218
|
+
--ag-formula-token-7-color: #a3e6ff;
|
|
8219
|
+
--ag-formula-token-7-background-color: rgb(163 230 255 / 16%);
|
|
7963
8220
|
color-scheme: dark;
|
|
7964
8221
|
}
|
|
7965
8222
|
@media (prefers-color-scheme: dark) {
|
|
@@ -8008,6 +8265,20 @@
|
|
|
8008
8265
|
color-mix(in srgb, var(--ag-background-color), var(--ag-invalid-color) 0.5%);
|
|
8009
8266
|
--ag-row-loading-skeleton-effect-color: rgba(202, 203, 204, 0.4);
|
|
8010
8267
|
--ag-cell-batch-edit-text-color: #f3d0b3;
|
|
8268
|
+
--ag-formula-token-1-color: #4da3e5;
|
|
8269
|
+
--ag-formula-token-1-background-color: rgb(77 163 229 / 16%);
|
|
8270
|
+
--ag-formula-token-2-color: #f55864;
|
|
8271
|
+
--ag-formula-token-2-background-color: rgb(245 88 100 / 16%);
|
|
8272
|
+
--ag-formula-token-3-color: #b688f2;
|
|
8273
|
+
--ag-formula-token-3-background-color: rgb(182 136 242 / 16%);
|
|
8274
|
+
--ag-formula-token-4-color: #24bb4a;
|
|
8275
|
+
--ag-formula-token-4-background-color: rgb(36 187 74 / 16%);
|
|
8276
|
+
--ag-formula-token-5-color: #e772ba;
|
|
8277
|
+
--ag-formula-token-5-background-color: rgb(231 114 186 / 16%);
|
|
8278
|
+
--ag-formula-token-6-color: #f69b5f;
|
|
8279
|
+
--ag-formula-token-6-background-color: rgb(246 155 95 / 16%);
|
|
8280
|
+
--ag-formula-token-7-color: #a3e6ff;
|
|
8281
|
+
--ag-formula-token-7-background-color: rgb(163 230 255 / 16%);
|
|
8011
8282
|
color-scheme: dark;
|
|
8012
8283
|
}
|
|
8013
8284
|
}
|
|
@@ -8141,8 +8412,11 @@
|
|
|
8141
8412
|
background-color: var(--ag-header-background-color);
|
|
8142
8413
|
}
|
|
8143
8414
|
.gd-repeater .ag-theme-balham .ag-overlay-loading-center,
|
|
8415
|
+
.gd-repeater .ag-theme-balham .ag-overlay-exporting-center,
|
|
8144
8416
|
.gd-repeater .ag-theme-balham-dark .ag-overlay-loading-center,
|
|
8145
|
-
.gd-repeater .ag-theme-balham-
|
|
8417
|
+
.gd-repeater .ag-theme-balham-dark .ag-overlay-exporting-center,
|
|
8418
|
+
.gd-repeater .ag-theme-balham-auto-dark .ag-overlay-loading-center,
|
|
8419
|
+
.gd-repeater .ag-theme-balham-auto-dark .ag-overlay-exporting-center {
|
|
8146
8420
|
background-color: var(--ag-background-color);
|
|
8147
8421
|
border: 1px solid var(--ag-border-color);
|
|
8148
8422
|
color: var(--ag-foreground-color);
|
|
@@ -8209,14 +8483,6 @@
|
|
|
8209
8483
|
.gd-repeater .ag-theme-balham-auto-dark .ag-pill .ag-pill-button:hover {
|
|
8210
8484
|
color: var(--ag-balham-active-color);
|
|
8211
8485
|
}
|
|
8212
|
-
.gd-repeater .ag-theme-balham .ag-header-highlight-before::after,
|
|
8213
|
-
.gd-repeater .ag-theme-balham .ag-header-highlight-after::after,
|
|
8214
|
-
.gd-repeater .ag-theme-balham-dark .ag-header-highlight-before::after,
|
|
8215
|
-
.gd-repeater .ag-theme-balham-dark .ag-header-highlight-after::after,
|
|
8216
|
-
.gd-repeater .ag-theme-balham-auto-dark .ag-header-highlight-before::after,
|
|
8217
|
-
.gd-repeater .ag-theme-balham-auto-dark .ag-header-highlight-after::after {
|
|
8218
|
-
background-color: var(--ag-balham-active-color);
|
|
8219
|
-
}
|
|
8220
8486
|
.gd-repeater .ag-theme-balham .ag-advanced-filter-builder-item-button-disabled .ag-icon,
|
|
8221
8487
|
.gd-repeater .ag-theme-balham .ag-disabled .ag-icon,
|
|
8222
8488
|
.gd-repeater .ag-theme-balham .ag-column-select-column-group-readonly .ag-icon,
|
|
@@ -8244,7 +8510,7 @@
|
|
|
8244
8510
|
}
|
|
8245
8511
|
@font-face {
|
|
8246
8512
|
font-family: "agGridBalham";
|
|
8247
|
-
src: url(data:font/woff2;charset=utf-8;base64,
|
|
8513
|
+
src: url(data:font/woff2;charset=utf-8;base64,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);
|
|
8248
8514
|
font-weight: normal;
|
|
8249
8515
|
font-style: normal;
|
|
8250
8516
|
}
|