@mescius/spread-sheets 19.0.6 → 19.1.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/dist/gc.spread.sheets.all.min.js +2 -2
- package/dist/gc.spread.sheets.d.ts +1566 -158
- package/package.json +1 -1
- package/styles/gc.spread.sheets.css +294 -55
- package/styles/gc.spread.sheets.excel2013darkGray.css +294 -55
- package/styles/gc.spread.sheets.excel2013lightGray.css +294 -55
- package/styles/gc.spread.sheets.excel2013white.css +294 -55
- package/styles/gc.spread.sheets.excel2016black.css +294 -55
- package/styles/gc.spread.sheets.excel2016colorful.css +294 -55
- package/styles/gc.spread.sheets.excel2016darkGray.css +294 -55
|
@@ -1214,6 +1214,37 @@ div.gc-search-outer-div input::-ms-clear {
|
|
|
1214
1214
|
box-shadow: none;
|
|
1215
1215
|
}
|
|
1216
1216
|
|
|
1217
|
+
.gc-hscrollbar-splitter {
|
|
1218
|
+
position: relative;
|
|
1219
|
+
float: left;
|
|
1220
|
+
cursor: col-resize;
|
|
1221
|
+
background-color: transparent;
|
|
1222
|
+
display: none;
|
|
1223
|
+
box-sizing: border-box;
|
|
1224
|
+
-ms-touch-action: none;
|
|
1225
|
+
touch-action: none;
|
|
1226
|
+
}
|
|
1227
|
+
|
|
1228
|
+
.gc-hscrollbar-splitter-indicator {
|
|
1229
|
+
position: absolute;
|
|
1230
|
+
left: 50%;
|
|
1231
|
+
top: 50%;
|
|
1232
|
+
transform: translate(-50%, -50%);
|
|
1233
|
+
width: 2px;
|
|
1234
|
+
height: 12px;
|
|
1235
|
+
--splitter-color: var(--splitter-grip-color, #acacac);
|
|
1236
|
+
background: repeating-linear-gradient(to bottom, var(--splitter-color) 0px, var(--splitter-color) 2px, transparent 2px, transparent 4px);
|
|
1237
|
+
background-position: 0 1px;
|
|
1238
|
+
}
|
|
1239
|
+
|
|
1240
|
+
.gc-hscrollbar-splitter:hover .gc-hscrollbar-splitter-indicator {
|
|
1241
|
+
--splitter-color: var(--splitter-hover-color, var(--splitter-grip-color, #acacac));
|
|
1242
|
+
}
|
|
1243
|
+
|
|
1244
|
+
.gc-hscrollbar-splitter-indicator-active {
|
|
1245
|
+
--splitter-color: var(--splitter-active-color, var(--splitter-hover-color, var(--splitter-grip-color, #acacac)));
|
|
1246
|
+
}
|
|
1247
|
+
|
|
1217
1248
|
.gc-scroll-mobile-container {
|
|
1218
1249
|
padding: 2px;
|
|
1219
1250
|
opacity: 1;
|
|
@@ -3129,6 +3160,7 @@ div[gcUIElement=gcSpread] .gc-list-control .gc-list-control-container .gc-list-c
|
|
|
3129
3160
|
display: block;
|
|
3130
3161
|
justify-self: flex-end;
|
|
3131
3162
|
margin-left: auto;
|
|
3163
|
+
transform: rotate(0);
|
|
3132
3164
|
}
|
|
3133
3165
|
div[gcUIElement=gcSpread] .gc-list-control .gc-list-control-container .gc-list-control-item .gc-list-control-item-text {
|
|
3134
3166
|
letter-spacing: 0;
|
|
@@ -3180,7 +3212,7 @@ div[gcUIElement=gcSpread] .gc-list-control .gc-list-control-container .gc-list-c
|
|
|
3180
3212
|
font-weight: bold;
|
|
3181
3213
|
color: #444;
|
|
3182
3214
|
padding: 3px 4px;
|
|
3183
|
-
cursor:
|
|
3215
|
+
cursor: default;
|
|
3184
3216
|
}
|
|
3185
3217
|
div[gcUIElement=gcSpread] .gc-list-control .gc-list-control-container .gc-list-control-tree .gc-list-control-tree-content {
|
|
3186
3218
|
margin-left: 0.4em;
|
|
@@ -3213,7 +3245,7 @@ div[gcUIElement=gcSpread] .gc-list-control .gc-list-control-container .gc-list-c
|
|
|
3213
3245
|
text-overflow: ellipsis;
|
|
3214
3246
|
}
|
|
3215
3247
|
|
|
3216
|
-
.gc-slider {
|
|
3248
|
+
div[gcUIElement=gcSpread] .gc-slider {
|
|
3217
3249
|
font-family: "Segoe UI", Calibri, Thonburi, Arial, Verdana, sans-serif, "Mongolian Baiti", "Microsoft Yi Baiti", "Javanese Text";
|
|
3218
3250
|
-webkit-box-sizing: border-box;
|
|
3219
3251
|
box-sizing: border-box;
|
|
@@ -3232,59 +3264,59 @@ div[gcUIElement=gcSpread] .gc-list-control .gc-list-control-container .gc-list-c
|
|
|
3232
3264
|
-ms-touch-action: none;
|
|
3233
3265
|
touch-action: none;
|
|
3234
3266
|
}
|
|
3235
|
-
.gc-slider.gc-slider-vertical {
|
|
3267
|
+
div[gcUIElement=gcSpread] .gc-slider.gc-slider-vertical {
|
|
3236
3268
|
width: 12px;
|
|
3237
3269
|
height: 100%;
|
|
3238
3270
|
padding: 0 4px;
|
|
3239
3271
|
}
|
|
3240
|
-
.gc-slider.gc-slider-vertical .gc-slider-rail {
|
|
3272
|
+
div[gcUIElement=gcSpread] .gc-slider.gc-slider-vertical .gc-slider-rail {
|
|
3241
3273
|
width: 4px;
|
|
3242
3274
|
height: 100%;
|
|
3243
3275
|
}
|
|
3244
|
-
.gc-slider.gc-slider-vertical .gc-slider-track {
|
|
3276
|
+
div[gcUIElement=gcSpread] .gc-slider.gc-slider-vertical .gc-slider-track {
|
|
3245
3277
|
width: 4px;
|
|
3246
3278
|
}
|
|
3247
|
-
.gc-slider.gc-slider-vertical .gc-slider-step {
|
|
3279
|
+
div[gcUIElement=gcSpread] .gc-slider.gc-slider-vertical .gc-slider-step {
|
|
3248
3280
|
width: 4px;
|
|
3249
3281
|
height: 100%;
|
|
3250
3282
|
}
|
|
3251
|
-
.gc-slider.gc-slider-vertical .gc-slider-step .gc-slider-dot {
|
|
3283
|
+
div[gcUIElement=gcSpread] .gc-slider.gc-slider-vertical .gc-slider-step .gc-slider-dot {
|
|
3252
3284
|
top: auto;
|
|
3253
3285
|
left: 0px;
|
|
3254
3286
|
margin-bottom: -4px;
|
|
3255
3287
|
box-sizing: content-box;
|
|
3256
3288
|
}
|
|
3257
|
-
.gc-slider.gc-slider-vertical .gc-slider-handle {
|
|
3289
|
+
div[gcUIElement=gcSpread] .gc-slider.gc-slider-vertical .gc-slider-handle {
|
|
3258
3290
|
margin-bottom: -7px;
|
|
3259
3291
|
margin-left: -7px;
|
|
3260
3292
|
}
|
|
3261
|
-
.gc-slider.gc-slider-vertical .gc-slider-mark {
|
|
3293
|
+
div[gcUIElement=gcSpread] .gc-slider.gc-slider-vertical .gc-slider-mark {
|
|
3262
3294
|
top: 0;
|
|
3263
3295
|
left: 12px;
|
|
3264
3296
|
width: 18px;
|
|
3265
3297
|
height: 100%;
|
|
3266
3298
|
}
|
|
3267
|
-
.gc-slider.gc-slider-vertical .gc-slider-mark .gc-slider-mark-text {
|
|
3299
|
+
div[gcUIElement=gcSpread] .gc-slider.gc-slider-vertical .gc-slider-mark .gc-slider-mark-text {
|
|
3268
3300
|
left: 4px;
|
|
3269
3301
|
white-space: nowrap;
|
|
3270
3302
|
}
|
|
3271
|
-
.gc-slider.gc-slider-with-marks {
|
|
3303
|
+
div[gcUIElement=gcSpread] .gc-slider.gc-slider-with-marks {
|
|
3272
3304
|
padding-bottom: 32px;
|
|
3273
3305
|
}
|
|
3274
|
-
.gc-slider.gc-slider-disabled {
|
|
3306
|
+
div[gcUIElement=gcSpread] .gc-slider.gc-slider-disabled {
|
|
3275
3307
|
cursor: not-allowed;
|
|
3276
3308
|
}
|
|
3277
|
-
.gc-slider.gc-slider-disabled .gc-slider-track {
|
|
3309
|
+
div[gcUIElement=gcSpread] .gc-slider.gc-slider-disabled .gc-slider-track {
|
|
3278
3310
|
background-color: rgba(0, 0, 0, 0.25);
|
|
3279
3311
|
}
|
|
3280
|
-
.gc-slider.gc-slider-disabled .gc-slider-handle {
|
|
3312
|
+
div[gcUIElement=gcSpread] .gc-slider.gc-slider-disabled .gc-slider-handle {
|
|
3281
3313
|
background-color: #fff;
|
|
3282
3314
|
border-color: rgba(0, 0, 0, 0.25);
|
|
3283
3315
|
-webkit-box-shadow: none;
|
|
3284
3316
|
box-shadow: none;
|
|
3285
3317
|
cursor: not-allowed;
|
|
3286
3318
|
}
|
|
3287
|
-
.gc-slider.gc-slider-disabled .gc-slider-step .gc-slider-dot {
|
|
3319
|
+
div[gcUIElement=gcSpread] .gc-slider.gc-slider-disabled .gc-slider-step .gc-slider-dot {
|
|
3288
3320
|
background-color: #fff;
|
|
3289
3321
|
border-color: rgba(0, 0, 0, 0.25);
|
|
3290
3322
|
-webkit-box-shadow: none;
|
|
@@ -3292,10 +3324,10 @@ div[gcUIElement=gcSpread] .gc-list-control .gc-list-control-container .gc-list-c
|
|
|
3292
3324
|
cursor: not-allowed;
|
|
3293
3325
|
cursor: not-allowed;
|
|
3294
3326
|
}
|
|
3295
|
-
.gc-slider.gc-slider-disabled .gc-slider-mark .gc-slider-mark-text {
|
|
3327
|
+
div[gcUIElement=gcSpread] .gc-slider.gc-slider-disabled .gc-slider-mark .gc-slider-mark-text {
|
|
3296
3328
|
cursor: not-allowed;
|
|
3297
3329
|
}
|
|
3298
|
-
.gc-slider .gc-slider-rail {
|
|
3330
|
+
div[gcUIElement=gcSpread] .gc-slider .gc-slider-rail {
|
|
3299
3331
|
position: absolute;
|
|
3300
3332
|
width: 100%;
|
|
3301
3333
|
height: 4px;
|
|
@@ -3304,7 +3336,7 @@ div[gcUIElement=gcSpread] .gc-list-control .gc-list-control-container .gc-list-c
|
|
|
3304
3336
|
-webkit-transition: background-color 0.3s;
|
|
3305
3337
|
transition: background-color 0.3s;
|
|
3306
3338
|
}
|
|
3307
|
-
.gc-slider .gc-slider-track {
|
|
3339
|
+
div[gcUIElement=gcSpread] .gc-slider .gc-slider-track {
|
|
3308
3340
|
position: absolute;
|
|
3309
3341
|
height: 4px;
|
|
3310
3342
|
background-color: #91d5ff;
|
|
@@ -3312,13 +3344,13 @@ div[gcUIElement=gcSpread] .gc-list-control .gc-list-control-container .gc-list-c
|
|
|
3312
3344
|
-webkit-transition: background-color 0.3s ease;
|
|
3313
3345
|
transition: background-color 0.3s ease;
|
|
3314
3346
|
}
|
|
3315
|
-
.gc-slider .gc-slider-step {
|
|
3347
|
+
div[gcUIElement=gcSpread] .gc-slider .gc-slider-step {
|
|
3316
3348
|
position: absolute;
|
|
3317
3349
|
width: 100%;
|
|
3318
3350
|
height: 4px;
|
|
3319
3351
|
background: transparent;
|
|
3320
3352
|
}
|
|
3321
|
-
.gc-slider .gc-slider-step .gc-slider-dot {
|
|
3353
|
+
div[gcUIElement=gcSpread] .gc-slider .gc-slider-step .gc-slider-dot {
|
|
3322
3354
|
position: absolute;
|
|
3323
3355
|
top: -4px;
|
|
3324
3356
|
width: 8px;
|
|
@@ -3329,13 +3361,13 @@ div[gcUIElement=gcSpread] .gc-list-control .gc-list-control-container .gc-list-c
|
|
|
3329
3361
|
border-radius: 50%;
|
|
3330
3362
|
cursor: pointer;
|
|
3331
3363
|
}
|
|
3332
|
-
.gc-slider .gc-slider-step .gc-slider-dot:first-child {
|
|
3364
|
+
div[gcUIElement=gcSpread] .gc-slider .gc-slider-step .gc-slider-dot:first-child {
|
|
3333
3365
|
margin-left: -4px;
|
|
3334
3366
|
}
|
|
3335
|
-
.gc-slider .gc-slider-step .gc-slider-dot-active {
|
|
3367
|
+
div[gcUIElement=gcSpread] .gc-slider .gc-slider-step .gc-slider-dot-active {
|
|
3336
3368
|
border-color: #91d5ff;
|
|
3337
3369
|
}
|
|
3338
|
-
.gc-slider .gc-slider-handle {
|
|
3370
|
+
div[gcUIElement=gcSpread] .gc-slider .gc-slider-handle {
|
|
3339
3371
|
position: absolute;
|
|
3340
3372
|
width: 14px;
|
|
3341
3373
|
height: 14px;
|
|
@@ -3354,30 +3386,30 @@ div[gcUIElement=gcSpread] .gc-list-control .gc-list-control-container .gc-list-c
|
|
|
3354
3386
|
transition: border-color 0.3s, box-shadow 0.6s, transform 0.3s cubic-bezier(0.18, 0.89, 0.32, 1.28);
|
|
3355
3387
|
transition: border-color 0.3s, box-shadow 0.6s, transform 0.3s cubic-bezier(0.18, 0.89, 0.32, 1.28), -webkit-box-shadow 0.6s, -webkit-transform 0.3s cubic-bezier(0.18, 0.89, 0.32, 1.28);
|
|
3356
3388
|
}
|
|
3357
|
-
.gc-slider .gc-slider-handle:focus {
|
|
3389
|
+
div[gcUIElement=gcSpread] .gc-slider .gc-slider-handle:focus {
|
|
3358
3390
|
border-color: #3498db;
|
|
3359
3391
|
outline: none;
|
|
3360
3392
|
-webkit-box-shadow: 0 0 0 5px rgba(24, 144, 255, 0.2);
|
|
3361
3393
|
box-shadow: 0 0 0 5px rgba(24, 144, 255, 0.2);
|
|
3362
3394
|
}
|
|
3363
|
-
.gc-slider .gc-slider-mark {
|
|
3395
|
+
div[gcUIElement=gcSpread] .gc-slider .gc-slider-mark {
|
|
3364
3396
|
position: absolute;
|
|
3365
3397
|
top: 30px;
|
|
3366
3398
|
left: 0;
|
|
3367
3399
|
width: 100%;
|
|
3368
3400
|
font-size: 14px;
|
|
3369
3401
|
}
|
|
3370
|
-
.gc-slider .gc-slider-mark .gc-slider-mark-text {
|
|
3402
|
+
div[gcUIElement=gcSpread] .gc-slider .gc-slider-mark .gc-slider-mark-text {
|
|
3371
3403
|
position: absolute;
|
|
3372
3404
|
display: inline-block;
|
|
3373
3405
|
color: rgba(0, 0, 0, 0.45);
|
|
3374
3406
|
text-align: center;
|
|
3375
3407
|
cursor: pointer;
|
|
3376
3408
|
}
|
|
3377
|
-
.gc-slider .gc-slider-mark .gc-slider-mark-text-active {
|
|
3409
|
+
div[gcUIElement=gcSpread] .gc-slider .gc-slider-mark .gc-slider-mark-text-active {
|
|
3378
3410
|
color: rgba(0, 0, 0, 0.65);
|
|
3379
3411
|
}
|
|
3380
|
-
.gc-slider .gc-slider-tooltip {
|
|
3412
|
+
div[gcUIElement=gcSpread] .gc-slider .gc-slider-tooltip {
|
|
3381
3413
|
-webkit-box-sizing: border-box;
|
|
3382
3414
|
box-sizing: border-box;
|
|
3383
3415
|
margin: 0;
|
|
@@ -3395,10 +3427,10 @@ div[gcUIElement=gcSpread] .gc-list-control .gc-list-control-container .gc-list-c
|
|
|
3395
3427
|
max-width: 250px;
|
|
3396
3428
|
visibility: visible;
|
|
3397
3429
|
}
|
|
3398
|
-
.gc-slider .gc-slider-tooltip.gc-slider-tooltip-placement-top {
|
|
3430
|
+
div[gcUIElement=gcSpread] .gc-slider .gc-slider-tooltip.gc-slider-tooltip-placement-top {
|
|
3399
3431
|
padding-bottom: 8px;
|
|
3400
3432
|
}
|
|
3401
|
-
.gc-slider .gc-slider-tooltip .gc-slider-tooltip-arrow {
|
|
3433
|
+
div[gcUIElement=gcSpread] .gc-slider .gc-slider-tooltip .gc-slider-tooltip-arrow {
|
|
3402
3434
|
left: 50%;
|
|
3403
3435
|
margin-left: -5px;
|
|
3404
3436
|
position: absolute;
|
|
@@ -3410,7 +3442,7 @@ div[gcUIElement=gcSpread] .gc-list-control .gc-list-control-container .gc-list-c
|
|
|
3410
3442
|
border-width: 5px 5px 0;
|
|
3411
3443
|
border-top-color: rgba(0, 0, 0, 0.75);
|
|
3412
3444
|
}
|
|
3413
|
-
.gc-slider .gc-slider-tooltip .gc-slider-tooltip-inner {
|
|
3445
|
+
div[gcUIElement=gcSpread] .gc-slider .gc-slider-tooltip .gc-slider-tooltip-inner {
|
|
3414
3446
|
min-width: 10px;
|
|
3415
3447
|
min-height: 12px;
|
|
3416
3448
|
padding: 6px 8px;
|
|
@@ -3423,12 +3455,11 @@ div[gcUIElement=gcSpread] .gc-list-control .gc-list-control-container .gc-list-c
|
|
|
3423
3455
|
-webkit-box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
|
|
3424
3456
|
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
|
|
3425
3457
|
}
|
|
3426
|
-
|
|
3427
|
-
.gc-slider-container {
|
|
3458
|
+
div[gcUIElement=gcSpread] .gc-slider-container {
|
|
3428
3459
|
background-color: white;
|
|
3429
3460
|
box-sizing: content-box;
|
|
3430
3461
|
}
|
|
3431
|
-
.gc-slider-container.gc-slider-vertical {
|
|
3462
|
+
div[gcUIElement=gcSpread] .gc-slider-container.gc-slider-vertical {
|
|
3432
3463
|
padding: 20px 0;
|
|
3433
3464
|
padding-right: 10px;
|
|
3434
3465
|
}
|
|
@@ -3560,6 +3591,11 @@ div[gcUIElement=gcSpread] .gc-base-spread-div {
|
|
|
3560
3591
|
overflow: auto;
|
|
3561
3592
|
}
|
|
3562
3593
|
|
|
3594
|
+
/* Base Style */
|
|
3595
|
+
/* Tools */
|
|
3596
|
+
/* Component */
|
|
3597
|
+
/* Layout */
|
|
3598
|
+
/* SVG Checkbox */
|
|
3563
3599
|
.gc-panel-all {
|
|
3564
3600
|
width: 100%;
|
|
3565
3601
|
height: 100%;
|
|
@@ -3648,17 +3684,30 @@ div[gcUIElement=gcSpread] .gc-base-spread-div {
|
|
|
3648
3684
|
}
|
|
3649
3685
|
|
|
3650
3686
|
.gc-panel-checkbox {
|
|
3687
|
+
margin: 0px;
|
|
3651
3688
|
appearance: none;
|
|
3689
|
+
-webkit-appearance: none;
|
|
3690
|
+
-moz-appearance: none;
|
|
3652
3691
|
outline: none;
|
|
3653
3692
|
display: inline-block;
|
|
3654
|
-
|
|
3655
|
-
|
|
3656
|
-
|
|
3657
|
-
background-
|
|
3693
|
+
width: 13px;
|
|
3694
|
+
height: 13px;
|
|
3695
|
+
background-color: transparent;
|
|
3696
|
+
background-size: contain;
|
|
3697
|
+
background-repeat: no-repeat;
|
|
3658
3698
|
cursor: default;
|
|
3699
|
+
vertical-align: middle;
|
|
3700
|
+
background-image: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTIiIGhlaWdodD0iMTIiIHZpZXdCb3g9IjEgMSAxNCAxNCIgdmVyc2lvbj0iMS4xIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIj48dGl0bGU+Q2hlY2tib3gtVW5jaGVja2VkPC90aXRsZT48ZyBpZD0iQ2hlY2tib3gtVW5jaGVja2VkIiBzdHJva2U9Im5vbmUiIHN0cm9rZS13aWR0aD0iMSIgZmlsbD0ibm9uZSIgZmlsbC1ydWxlPSJldmVub2RkIj48cGF0aCBkPSJNMTMsMSBDMTQuMTA0NTY5NSwxIDE1LDEuODk1NDMwNSAxNSwzIEwxNSwxMyBDMTUsMTQuMTA0NTY5NSAxNC4xMDQ1Njk1LDE1IDEzLDE1IEwzLDE1IEMxLjg5NTQzMDUsMTUgMSwxNC4xMDQ1Njk1IDEsMTMgTDEsMyBDMSwxLjg5NTQzMDUgMS44OTU0MzA1LDEgMywxIEwxMywxIFogTTEzLDIuNSBMMywyLjUgQzIuNzIzODU3NjMsMi41IDIuNSwyLjcyMzg1NzYzIDIuNSwzIEwyLjUsMTMgQzIuNSwxMy4yNzYxNDI0IDIuNzIzODU3NjMsMTMuNSAzLDEzLjUgTDEzLDEzLjUgQzEzLjI3NjE0MjQsMTMuNSAxMy41LDEzLjI3NjE0MjQgMTMuNSwxMyBMMTMuNSwzIEMxMy41LDIuNzIzODU3NjMgMTMuMjc2MTQyNCwyLjUgMTMsMi41IFoiIGlkPSJjYiIgZmlsbD0iYmxhY2siPjwvcGF0aD48L2c+PC9zdmc+);
|
|
3701
|
+
line-height: 22px;
|
|
3702
|
+
width: 12px;
|
|
3703
|
+
height: 12px;
|
|
3704
|
+
position: relative;
|
|
3705
|
+
top: -1px;
|
|
3706
|
+
margin-left: 13px;
|
|
3707
|
+
margin-right: 1px;
|
|
3659
3708
|
}
|
|
3660
3709
|
.gc-panel-checkbox:checked {
|
|
3661
|
-
background-image: url(data:image/svg+xml;base64,
|
|
3710
|
+
background-image: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTIiIGhlaWdodD0iMTIiIHZpZXdCb3g9IjEgMSAxNCAxNCIgdmVyc2lvbj0iMS4xIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIj48dGl0bGU+Q2hlY2tib3gtQ2hlY2tlZDwvdGl0bGU+PGcgaWQ9IkNoZWNrYm94LUNoZWNrZWQiIHN0cm9rZT0ibm9uZSIgc3Ryb2tlLXdpZHRoPSIxIiBmaWxsPSJub25lIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiPjxwYXRoIGQ9Ik0xMywxIEMxNC4xMDQ1Njk1LDEgMTUsMS44OTU0MzA1IDE1LDMgTDE1LDEzIEMxNSwxNC4xMDQ1Njk1IDE0LjEwNDU2OTUsMTUgMTMsMTUgTDMsMTUgQzEuODk1NDMwNSwxNSAxLDE0LjEwNDU2OTUgMSwxMyBMMSwzIEMxLDEuODk1NDMwNSAxLjg5NTQzMDUsMSAzLDEgTDEzLDEgWiBNMTIuNTU0MzcwNiw0LjcxOTY2OTkxIEMxMi4yNjE0Nzc0LDQuNDI2Nzc2NyAxMS43ODY2MDM3LDQuNDI2Nzc2NyAxMS40OTM3MTA1LDQuNzE5NjY5OTEgTDYuNjg3NjYxMzcsOS41MjUgTDQuNDQwOTkxNDUsNy4yNzgzNDQ3OSBDNC4xNDgwOTgyMyw2Ljk4NTQ1MTU4IDMuNjczMjI0NSw2Ljk4NTQ1MTU4IDMuMzgwMzMxMjgsNy4yNzgzNDQ3OSBDMy4wODc0MzgwNiw3LjU3MTIzODAxIDMuMDg3NDM4MDYsOC4wNDYxMTE3NSAzLjM4MDMzMTI4LDguMzM5MDA0OTcgTDYuMTU3NjgzNDMsMTEuMTE2MzU3MSBDNi4yOTA4MTY3MSwxMS4yNDk0OTA0IDYuNDYxNTQ5MjcsMTEuMzIyMTA4NSA2LjYzNTY5OTk1LDExLjMzNDIxMTYgTDYuNzQwMzI3MDgsMTEuMzM0MjExNiBMNi44NDQxMzM4NiwxMS4zMTk2ODc5IEM2Ljk4MTI2NjgxLDExLjI5MDY0MDcgNy4xMTE4MzY5OCwxMS4yMjI4NjM3IDcuMjE4MzQzNiwxMS4xMTYzNTcxIEwxMi41NTQzNzA2LDUuNzgwMzMwMDkgQzEyLjg0NzI2MzgsNS40ODc0MzY4NyAxMi44NDcyNjM4LDUuMDEyNTYzMTMgMTIuNTU0MzcwNiw0LjcxOTY2OTkxIFoiIGlkPSJjYiIgZmlsbD0iYmxhY2siPjwvcGF0aD48L2c+PC9zdmc+);
|
|
3662
3711
|
}
|
|
3663
3712
|
|
|
3664
3713
|
.gc-panel-collapse {
|
|
@@ -3757,6 +3806,7 @@ div[gcUIElement=gcSpread] .gc-base-spread-div {
|
|
|
3757
3806
|
width: 100%;
|
|
3758
3807
|
height: calc(52% - 60px);
|
|
3759
3808
|
color: white;
|
|
3809
|
+
overflow: hidden;
|
|
3760
3810
|
}
|
|
3761
3811
|
.gc-panel-stack .gc-panel-fields-section[containArea=false] {
|
|
3762
3812
|
height: calc(100% - 30px);
|
|
@@ -3844,15 +3894,22 @@ div[gcUIElement=gcSpread] .gc-base-spread-div {
|
|
|
3844
3894
|
height: calc(100% - 50px);
|
|
3845
3895
|
color: white;
|
|
3846
3896
|
float: left;
|
|
3847
|
-
overflow-
|
|
3897
|
+
overflow-x: hidden;
|
|
3898
|
+
overflow-y: auto;
|
|
3899
|
+
}
|
|
3900
|
+
.gc-panel-flow .gc-panel-fields-section > span {
|
|
3901
|
+
display: block;
|
|
3902
|
+
width: 100%;
|
|
3903
|
+
overflow: hidden;
|
|
3904
|
+
text-overflow: ellipsis;
|
|
3905
|
+
white-space: nowrap;
|
|
3848
3906
|
}
|
|
3849
3907
|
.gc-panel-flow .gc-panel-fields-section[containArea=false] {
|
|
3850
3908
|
width: 100%;
|
|
3851
3909
|
height: calc(100% - 30px);
|
|
3852
3910
|
}
|
|
3853
|
-
.gc-panel-flow .gc-panel-
|
|
3854
|
-
|
|
3855
|
-
text-overflow: ellipsis;
|
|
3911
|
+
.gc-panel-flow .gc-panel-all-field {
|
|
3912
|
+
height: calc(100% - 52px);
|
|
3856
3913
|
}
|
|
3857
3914
|
.gc-panel-flow > span {
|
|
3858
3915
|
color: white;
|
|
@@ -3861,15 +3918,26 @@ div[gcUIElement=gcSpread] .gc-base-spread-div {
|
|
|
3861
3918
|
width: 49%;
|
|
3862
3919
|
height: calc(100% - 50px);
|
|
3863
3920
|
float: right;
|
|
3864
|
-
overflow-
|
|
3921
|
+
overflow-x: hidden;
|
|
3922
|
+
overflow-y: auto;
|
|
3865
3923
|
color: white;
|
|
3866
3924
|
}
|
|
3925
|
+
.gc-panel-flow .gc-panel-areas-section > span:first-child {
|
|
3926
|
+
display: block;
|
|
3927
|
+
height: 20px;
|
|
3928
|
+
line-height: 20px;
|
|
3929
|
+
margin-bottom: 5px;
|
|
3930
|
+
width: 100%;
|
|
3931
|
+
overflow: hidden;
|
|
3932
|
+
text-overflow: ellipsis;
|
|
3933
|
+
white-space: nowrap;
|
|
3934
|
+
}
|
|
3867
3935
|
.gc-panel-flow .gc-panel-areas-section[containFields=false] {
|
|
3868
3936
|
width: 100%;
|
|
3869
3937
|
height: calc(100% - 40px);
|
|
3870
3938
|
}
|
|
3871
3939
|
.gc-panel-flow .gc-panel-field-area {
|
|
3872
|
-
height: calc(100% -
|
|
3940
|
+
height: calc(100% - 55px);
|
|
3873
3941
|
}
|
|
3874
3942
|
.gc-panel-flow .gc-panel-area-section {
|
|
3875
3943
|
width: 100%;
|
|
@@ -3885,11 +3953,15 @@ div[gcUIElement=gcSpread] .gc-base-spread-div {
|
|
|
3885
3953
|
.gc-panel-flow .gc-panel-area-section-Rows {
|
|
3886
3954
|
border-right-color: transparent;
|
|
3887
3955
|
}
|
|
3956
|
+
.gc-panel-flow .gc-panel-area-item-title,
|
|
3957
|
+
.gc-panel-flow .gc-panel-area-item-content {
|
|
3958
|
+
width: 100%;
|
|
3959
|
+
}
|
|
3888
3960
|
.gc-panel-flow .gc-panel-defer-layout-update {
|
|
3889
3961
|
width: 100%;
|
|
3890
3962
|
height: 20px;
|
|
3891
3963
|
line-height: 20px;
|
|
3892
|
-
display:
|
|
3964
|
+
display: block;
|
|
3893
3965
|
margin: 5px 0;
|
|
3894
3966
|
}
|
|
3895
3967
|
.gc-panel-flow .gc-panel-field-area-text {
|
|
@@ -3900,8 +3972,9 @@ div[gcUIElement=gcSpread] .gc-base-spread-div {
|
|
|
3900
3972
|
}
|
|
3901
3973
|
|
|
3902
3974
|
.gc-panel-all-field {
|
|
3975
|
+
position: relative;
|
|
3903
3976
|
background-color: #d4d4d4;
|
|
3904
|
-
height: calc(100% -
|
|
3977
|
+
height: calc(100% - 66px);
|
|
3905
3978
|
overflow-y: auto;
|
|
3906
3979
|
border-bottom: 1px solid transparent;
|
|
3907
3980
|
border-top: 1px solid transparent;
|
|
@@ -3938,13 +4011,13 @@ div[gcUIElement=gcSpread] .gc-base-spread-div {
|
|
|
3938
4011
|
.gc-panel-all-field-checked {
|
|
3939
4012
|
vertical-align: top;
|
|
3940
4013
|
display: inline-block;
|
|
3941
|
-
width: calc(100% -
|
|
4014
|
+
width: calc(100% - 59px);
|
|
3942
4015
|
overflow: hidden;
|
|
3943
4016
|
}
|
|
3944
4017
|
|
|
3945
4018
|
.gc-panel-all-field-item-filtered .gc-panel-all-field-unchecked,
|
|
3946
4019
|
.gc-panel-all-field-item-filtered .gc-panel-all-field-checked {
|
|
3947
|
-
width: calc(100% -
|
|
4020
|
+
width: calc(100% - 78px);
|
|
3948
4021
|
}
|
|
3949
4022
|
|
|
3950
4023
|
.gc-panel-area-item-title {
|
|
@@ -4030,11 +4103,11 @@ div[gcUIElement=gcSpread] .gc-base-spread-div {
|
|
|
4030
4103
|
}
|
|
4031
4104
|
|
|
4032
4105
|
.gc-panel-bottomBorderStyle {
|
|
4033
|
-
|
|
4106
|
+
box-shadow: inset 0 -2px 0 #2f9e44;
|
|
4034
4107
|
}
|
|
4035
4108
|
|
|
4036
4109
|
.gc-panel-topBorderStyle {
|
|
4037
|
-
|
|
4110
|
+
box-shadow: inset 0 2px 0 #2f9e44;
|
|
4038
4111
|
}
|
|
4039
4112
|
|
|
4040
4113
|
.gc-panel-all-field-filter {
|
|
@@ -4087,6 +4160,100 @@ div[gcUIElement=gcSpread] .gc-base-spread-div {
|
|
|
4087
4160
|
background-color: #d4d4d4;
|
|
4088
4161
|
}
|
|
4089
4162
|
|
|
4163
|
+
.gc-panel-search-box {
|
|
4164
|
+
position: relative;
|
|
4165
|
+
margin: 6px 0;
|
|
4166
|
+
width: 100%;
|
|
4167
|
+
}
|
|
4168
|
+
|
|
4169
|
+
.gc-panel-search-input {
|
|
4170
|
+
width: 100%;
|
|
4171
|
+
height: 24px;
|
|
4172
|
+
padding: 4px 24px 4px 8px;
|
|
4173
|
+
box-sizing: border-box;
|
|
4174
|
+
border: 1px solid transparent;
|
|
4175
|
+
border-radius: 2px;
|
|
4176
|
+
font-size: 12px;
|
|
4177
|
+
font-family: inherit;
|
|
4178
|
+
outline: none;
|
|
4179
|
+
background-color: #d4d4d4;
|
|
4180
|
+
color: white;
|
|
4181
|
+
}
|
|
4182
|
+
.gc-panel-search-input:focus {
|
|
4183
|
+
border-color: white;
|
|
4184
|
+
}
|
|
4185
|
+
.gc-panel-search-input::placeholder {
|
|
4186
|
+
color: white;
|
|
4187
|
+
opacity: 0.6;
|
|
4188
|
+
}
|
|
4189
|
+
|
|
4190
|
+
.gc-panel-search-icon,
|
|
4191
|
+
.gc-panel-search-clear {
|
|
4192
|
+
position: absolute;
|
|
4193
|
+
right: 2px;
|
|
4194
|
+
top: 50%;
|
|
4195
|
+
transform: translateY(-50%);
|
|
4196
|
+
display: flex;
|
|
4197
|
+
align-items: center;
|
|
4198
|
+
justify-content: center;
|
|
4199
|
+
}
|
|
4200
|
+
|
|
4201
|
+
.gc-panel-search-icon {
|
|
4202
|
+
width: 20px;
|
|
4203
|
+
height: 20px;
|
|
4204
|
+
cursor: default;
|
|
4205
|
+
pointer-events: auto;
|
|
4206
|
+
z-index: 1;
|
|
4207
|
+
background-image: url("data:image/svg+xml,%3Csvg xmlns=%27http://www.w3.org/2000/svg%27 viewBox=%270 0 16 16%27%3E%3Cpath fill=%27%23666%27 d=%27M11.742 10.344a6.5 6.5 0 1 0-1.397 1.398h-.001c.03.04.062.078.098.115l3.85 3.85a1 1 0 0 0 1.415-1.414l-3.85-3.85a1.007 1.007 0 0 0-.115-.1zM12 6.5a5.5 5.5 0 1 1-11 0 5.5 5.5 0 0 1 11 0z%27/%3E%3C/svg%3E");
|
|
4208
|
+
background-repeat: no-repeat;
|
|
4209
|
+
background-position: center;
|
|
4210
|
+
background-size: 14px 14px;
|
|
4211
|
+
}
|
|
4212
|
+
.gc-panel-search-icon.gc-panel-search-icon-hidden {
|
|
4213
|
+
display: none;
|
|
4214
|
+
}
|
|
4215
|
+
|
|
4216
|
+
.gc-panel-search-clear {
|
|
4217
|
+
width: 20px;
|
|
4218
|
+
height: 20px;
|
|
4219
|
+
cursor: pointer;
|
|
4220
|
+
pointer-events: auto;
|
|
4221
|
+
z-index: 1;
|
|
4222
|
+
border-radius: 2px;
|
|
4223
|
+
display: none;
|
|
4224
|
+
background-image: url("data:image/svg+xml,%3Csvg xmlns=%27http://www.w3.org/2000/svg%27 viewBox=%270 0 16 16%27%3E%3Cpath fill=%27%23666%27 d=%27M4.646 4.646a.5.5 0 0 1 .708 0L8 7.293l2.646-2.647a.5.5 0 0 1 .708.708L8.707 8l2.647 2.646a.5.5 0 0 1-.708.708L8 8.707l-2.646 2.647a.5.5 0 0 1-.708-.708L7.293 8 4.646 5.354a.5.5 0 0 1 0-.708z%27/%3E%3C/svg%3E");
|
|
4225
|
+
background-repeat: no-repeat;
|
|
4226
|
+
background-position: center;
|
|
4227
|
+
background-size: 16px 16px;
|
|
4228
|
+
transition: background-color 0.2s;
|
|
4229
|
+
}
|
|
4230
|
+
.gc-panel-search-clear.gc-panel-search-clear-visible {
|
|
4231
|
+
display: flex;
|
|
4232
|
+
}
|
|
4233
|
+
.gc-panel-search-clear:hover {
|
|
4234
|
+
background-color: #d4ded9;
|
|
4235
|
+
background-image: url("data:image/svg+xml,%3Csvg xmlns=%27http://www.w3.org/2000/svg%27 viewBox=%270 0 16 16%27%3E%3Cpath fill=%27%23fff%27 d=%27M4.646 4.646a.5.5 0 0 1 .708 0L8 7.293l2.646-2.647a.5.5 0 0 1 .708.708L8.707 8l2.647 2.646a.5.5 0 0 1-.708.708L8 8.707l-2.646 2.647a.5.5 0 0 1-.708-.708L7.293 8 4.646 5.354a.5.5 0 0 1 0-.708z%27/%3E%3C/svg%3E");
|
|
4236
|
+
}
|
|
4237
|
+
|
|
4238
|
+
.gc-panel-all-field-item-hidden {
|
|
4239
|
+
display: none !important;
|
|
4240
|
+
}
|
|
4241
|
+
|
|
4242
|
+
.gc-panel-all-field-no-matches {
|
|
4243
|
+
position: absolute;
|
|
4244
|
+
top: 50%;
|
|
4245
|
+
left: 50%;
|
|
4246
|
+
transform: translate(-50%, -50%);
|
|
4247
|
+
color: white;
|
|
4248
|
+
opacity: 0.7;
|
|
4249
|
+
font-size: 12px;
|
|
4250
|
+
white-space: nowrap;
|
|
4251
|
+
display: none;
|
|
4252
|
+
}
|
|
4253
|
+
.gc-panel-all-field-no-matches.gc-panel-all-field-no-matches-visible {
|
|
4254
|
+
display: block;
|
|
4255
|
+
}
|
|
4256
|
+
|
|
4090
4257
|
.gc-ai-icon {
|
|
4091
4258
|
width: 16px;
|
|
4092
4259
|
height: 16px;
|
|
@@ -4720,6 +4887,7 @@ div[gcUIElement=gcSpread] .gc-base-spread-div {
|
|
|
4720
4887
|
/* Tools */
|
|
4721
4888
|
/* Component */
|
|
4722
4889
|
/* Layout */
|
|
4890
|
+
/* SVG Checkbox */
|
|
4723
4891
|
.gc-drop-down-list {
|
|
4724
4892
|
box-shadow: rgba(0, 0, 0, 0.4) 1px 2px 5px;
|
|
4725
4893
|
background: #f0f0f0;
|
|
@@ -5276,6 +5444,8 @@ div[gcUIElement=gcSpread] .gc-base-spread-div {
|
|
|
5276
5444
|
display: inline-block;
|
|
5277
5445
|
padding-top: 10px;
|
|
5278
5446
|
height: 100%;
|
|
5447
|
+
width: calc(100% - 50px);
|
|
5448
|
+
cursor: move;
|
|
5279
5449
|
}
|
|
5280
5450
|
|
|
5281
5451
|
.date-group-dialog-content-header,
|
|
@@ -5433,6 +5603,7 @@ div[gcUIElement=gcSpread] .gc-base-spread-div {
|
|
|
5433
5603
|
padding-top: 10px;
|
|
5434
5604
|
height: 100%;
|
|
5435
5605
|
width: calc(100% - 50px);
|
|
5606
|
+
cursor: move;
|
|
5436
5607
|
}
|
|
5437
5608
|
|
|
5438
5609
|
.sjs-cancel-icon {
|
|
@@ -5578,6 +5749,8 @@ div[gcUIElement=gcSpread] .gc-base-spread-div {
|
|
|
5578
5749
|
display: inline-block;
|
|
5579
5750
|
padding-top: 10px;
|
|
5580
5751
|
height: 100%;
|
|
5752
|
+
width: calc(100% - 50px);
|
|
5753
|
+
cursor: move;
|
|
5581
5754
|
}
|
|
5582
5755
|
|
|
5583
5756
|
.value-filter-body {
|
|
@@ -5654,6 +5827,8 @@ div[gcUIElement=gcSpread] .gc-base-spread-div {
|
|
|
5654
5827
|
display: inline-block;
|
|
5655
5828
|
padding-top: 10px;
|
|
5656
5829
|
height: 100%;
|
|
5830
|
+
width: calc(100% - 50px);
|
|
5831
|
+
cursor: move;
|
|
5657
5832
|
}
|
|
5658
5833
|
|
|
5659
5834
|
.top-ten-filter-body {
|
|
@@ -6121,15 +6296,53 @@ div[gcUIElement=gcSpread] .gc-base-spread-div {
|
|
|
6121
6296
|
.gc-sjs-field-settings-layout-showNoData-container .gc-sjs-field-settings-layout-showNoData, .gc-sjs-field-settings-layout-showNoData-container .gc-sjs-field-settings-layout-showSubtotalTop {
|
|
6122
6297
|
margin: 0px;
|
|
6123
6298
|
appearance: none;
|
|
6299
|
+
-webkit-appearance: none;
|
|
6300
|
+
-moz-appearance: none;
|
|
6124
6301
|
outline: none;
|
|
6125
6302
|
display: inline-block;
|
|
6126
6303
|
width: 13px;
|
|
6127
6304
|
height: 13px;
|
|
6128
|
-
background-color:
|
|
6129
|
-
background-
|
|
6305
|
+
background-color: transparent;
|
|
6306
|
+
background-size: contain;
|
|
6307
|
+
background-repeat: no-repeat;
|
|
6308
|
+
cursor: default;
|
|
6309
|
+
vertical-align: middle;
|
|
6310
|
+
background-image: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTIiIGhlaWdodD0iMTIiIHZpZXdCb3g9IjEgMSAxNCAxNCIgdmVyc2lvbj0iMS4xIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIj48dGl0bGU+Q2hlY2tib3gtVW5jaGVja2VkPC90aXRsZT48ZyBpZD0iQ2hlY2tib3gtVW5jaGVja2VkIiBzdHJva2U9Im5vbmUiIHN0cm9rZS13aWR0aD0iMSIgZmlsbD0ibm9uZSIgZmlsbC1ydWxlPSJldmVub2RkIj48cGF0aCBkPSJNMTMsMSBDMTQuMTA0NTY5NSwxIDE1LDEuODk1NDMwNSAxNSwzIEwxNSwxMyBDMTUsMTQuMTA0NTY5NSAxNC4xMDQ1Njk1LDE1IDEzLDE1IEwzLDE1IEMxLjg5NTQzMDUsMTUgMSwxNC4xMDQ1Njk1IDEsMTMgTDEsMyBDMSwxLjg5NTQzMDUgMS44OTU0MzA1LDEgMywxIEwxMywxIFogTTEzLDIuNSBMMywyLjUgQzIuNzIzODU3NjMsMi41IDIuNSwyLjcyMzg1NzYzIDIuNSwzIEwyLjUsMTMgQzIuNSwxMy4yNzYxNDI0IDIuNzIzODU3NjMsMTMuNSAzLDEzLjUgTDEzLDEzLjUgQzEzLjI3NjE0MjQsMTMuNSAxMy41LDEzLjI3NjE0MjQgMTMuNSwxMyBMMTMuNSwzIEMxMy41LDIuNzIzODU3NjMgMTMuMjc2MTQyNCwyLjUgMTMsMi41IFoiIGlkPSJjYiIgZmlsbD0iYmxhY2siPjwvcGF0aD48L2c+PC9zdmc+);
|
|
6311
|
+
vertical-align: text-bottom;
|
|
6130
6312
|
}
|
|
6131
6313
|
.gc-sjs-field-settings-layout-showNoData-container .gc-sjs-field-settings-layout-showNoData:checked, .gc-sjs-field-settings-layout-showNoData-container .gc-sjs-field-settings-layout-showSubtotalTop:checked {
|
|
6132
|
-
background-image: url(data:image/svg+xml;base64,
|
|
6314
|
+
background-image: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTIiIGhlaWdodD0iMTIiIHZpZXdCb3g9IjEgMSAxNCAxNCIgdmVyc2lvbj0iMS4xIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIj48dGl0bGU+Q2hlY2tib3gtQ2hlY2tlZDwvdGl0bGU+PGcgaWQ9IkNoZWNrYm94LUNoZWNrZWQiIHN0cm9rZT0ibm9uZSIgc3Ryb2tlLXdpZHRoPSIxIiBmaWxsPSJub25lIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiPjxwYXRoIGQ9Ik0xMywxIEMxNC4xMDQ1Njk1LDEgMTUsMS44OTU0MzA1IDE1LDMgTDE1LDEzIEMxNSwxNC4xMDQ1Njk1IDE0LjEwNDU2OTUsMTUgMTMsMTUgTDMsMTUgQzEuODk1NDMwNSwxNSAxLDE0LjEwNDU2OTUgMSwxMyBMMSwzIEMxLDEuODk1NDMwNSAxLjg5NTQzMDUsMSAzLDEgTDEzLDEgWiBNMTIuNTU0MzcwNiw0LjcxOTY2OTkxIEMxMi4yNjE0Nzc0LDQuNDI2Nzc2NyAxMS43ODY2MDM3LDQuNDI2Nzc2NyAxMS40OTM3MTA1LDQuNzE5NjY5OTEgTDYuNjg3NjYxMzcsOS41MjUgTDQuNDQwOTkxNDUsNy4yNzgzNDQ3OSBDNC4xNDgwOTgyMyw2Ljk4NTQ1MTU4IDMuNjczMjI0NSw2Ljk4NTQ1MTU4IDMuMzgwMzMxMjgsNy4yNzgzNDQ3OSBDMy4wODc0MzgwNiw3LjU3MTIzODAxIDMuMDg3NDM4MDYsOC4wNDYxMTE3NSAzLjM4MDMzMTI4LDguMzM5MDA0OTcgTDYuMTU3NjgzNDMsMTEuMTE2MzU3MSBDNi4yOTA4MTY3MSwxMS4yNDk0OTA0IDYuNDYxNTQ5MjcsMTEuMzIyMTA4NSA2LjYzNTY5OTk1LDExLjMzNDIxMTYgTDYuNzQwMzI3MDgsMTEuMzM0MjExNiBMNi44NDQxMzM4NiwxMS4zMTk2ODc5IEM2Ljk4MTI2NjgxLDExLjI5MDY0MDcgNy4xMTE4MzY5OCwxMS4yMjI4NjM3IDcuMjE4MzQzNiwxMS4xMTYzNTcxIEwxMi41NTQzNzA2LDUuNzgwMzMwMDkgQzEyLjg0NzI2MzgsNS40ODc0MzY4NyAxMi44NDcyNjM4LDUuMDEyNTYzMTMgMTIuNTU0MzcwNiw0LjcxOTY2OTkxIFoiIGlkPSJjYiIgZmlsbD0iYmxhY2siPjwvcGF0aD48L2c+PC9zdmc+);
|
|
6315
|
+
}
|
|
6316
|
+
.gc-sjs-field-settings-layout-showNoData-container .gc-sjs-field-settings-layout-showNoData-label {
|
|
6317
|
+
vertical-align: middle;
|
|
6318
|
+
}
|
|
6319
|
+
|
|
6320
|
+
.filter-dialog-container input[type=checkbox],
|
|
6321
|
+
.date-group-dialog-container input[type=checkbox],
|
|
6322
|
+
.number-group-dialog-container input[type=checkbox],
|
|
6323
|
+
.gc-pivot-sort-dialog-container input[type=checkbox],
|
|
6324
|
+
.gc-pivot-sort-value-dialog-container input[type=checkbox] {
|
|
6325
|
+
margin: 0px;
|
|
6326
|
+
appearance: none;
|
|
6327
|
+
-webkit-appearance: none;
|
|
6328
|
+
-moz-appearance: none;
|
|
6329
|
+
outline: none;
|
|
6330
|
+
display: inline-block;
|
|
6331
|
+
width: 13px;
|
|
6332
|
+
height: 13px;
|
|
6333
|
+
background-color: transparent;
|
|
6334
|
+
background-size: contain;
|
|
6335
|
+
background-repeat: no-repeat;
|
|
6336
|
+
cursor: default;
|
|
6337
|
+
vertical-align: middle;
|
|
6338
|
+
background-image: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTIiIGhlaWdodD0iMTIiIHZpZXdCb3g9IjEgMSAxNCAxNCIgdmVyc2lvbj0iMS4xIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIj48dGl0bGU+Q2hlY2tib3gtVW5jaGVja2VkPC90aXRsZT48ZyBpZD0iQ2hlY2tib3gtVW5jaGVja2VkIiBzdHJva2U9Im5vbmUiIHN0cm9rZS13aWR0aD0iMSIgZmlsbD0ibm9uZSIgZmlsbC1ydWxlPSJldmVub2RkIj48cGF0aCBkPSJNMTMsMSBDMTQuMTA0NTY5NSwxIDE1LDEuODk1NDMwNSAxNSwzIEwxNSwxMyBDMTUsMTQuMTA0NTY5NSAxNC4xMDQ1Njk1LDE1IDEzLDE1IEwzLDE1IEMxLjg5NTQzMDUsMTUgMSwxNC4xMDQ1Njk1IDEsMTMgTDEsMyBDMSwxLjg5NTQzMDUgMS44OTU0MzA1LDEgMywxIEwxMywxIFogTTEzLDIuNSBMMywyLjUgQzIuNzIzODU3NjMsMi41IDIuNSwyLjcyMzg1NzYzIDIuNSwzIEwyLjUsMTMgQzIuNSwxMy4yNzYxNDI0IDIuNzIzODU3NjMsMTMuNSAzLDEzLjUgTDEzLDEzLjUgQzEzLjI3NjE0MjQsMTMuNSAxMy41LDEzLjI3NjE0MjQgMTMuNSwxMyBMMTMuNSwzIEMxMy41LDIuNzIzODU3NjMgMTMuMjc2MTQyNCwyLjUgMTMsMi41IFoiIGlkPSJjYiIgZmlsbD0iYmxhY2siPjwvcGF0aD48L2c+PC9zdmc+);
|
|
6339
|
+
}
|
|
6340
|
+
.filter-dialog-container input[type=checkbox]:checked,
|
|
6341
|
+
.date-group-dialog-container input[type=checkbox]:checked,
|
|
6342
|
+
.number-group-dialog-container input[type=checkbox]:checked,
|
|
6343
|
+
.gc-pivot-sort-dialog-container input[type=checkbox]:checked,
|
|
6344
|
+
.gc-pivot-sort-value-dialog-container input[type=checkbox]:checked {
|
|
6345
|
+
background-image: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTIiIGhlaWdodD0iMTIiIHZpZXdCb3g9IjEgMSAxNCAxNCIgdmVyc2lvbj0iMS4xIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIj48dGl0bGU+Q2hlY2tib3gtQ2hlY2tlZDwvdGl0bGU+PGcgaWQ9IkNoZWNrYm94LUNoZWNrZWQiIHN0cm9rZT0ibm9uZSIgc3Ryb2tlLXdpZHRoPSIxIiBmaWxsPSJub25lIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiPjxwYXRoIGQ9Ik0xMywxIEMxNC4xMDQ1Njk1LDEgMTUsMS44OTU0MzA1IDE1LDMgTDE1LDEzIEMxNSwxNC4xMDQ1Njk1IDE0LjEwNDU2OTUsMTUgMTMsMTUgTDMsMTUgQzEuODk1NDMwNSwxNSAxLDE0LjEwNDU2OTUgMSwxMyBMMSwzIEMxLDEuODk1NDMwNSAxLjg5NTQzMDUsMSAzLDEgTDEzLDEgWiBNMTIuNTU0MzcwNiw0LjcxOTY2OTkxIEMxMi4yNjE0Nzc0LDQuNDI2Nzc2NyAxMS43ODY2MDM3LDQuNDI2Nzc2NyAxMS40OTM3MTA1LDQuNzE5NjY5OTEgTDYuNjg3NjYxMzcsOS41MjUgTDQuNDQwOTkxNDUsNy4yNzgzNDQ3OSBDNC4xNDgwOTgyMyw2Ljk4NTQ1MTU4IDMuNjczMjI0NSw2Ljk4NTQ1MTU4IDMuMzgwMzMxMjgsNy4yNzgzNDQ3OSBDMy4wODc0MzgwNiw3LjU3MTIzODAxIDMuMDg3NDM4MDYsOC4wNDYxMTE3NSAzLjM4MDMzMTI4LDguMzM5MDA0OTcgTDYuMTU3NjgzNDMsMTEuMTE2MzU3MSBDNi4yOTA4MTY3MSwxMS4yNDk0OTA0IDYuNDYxNTQ5MjcsMTEuMzIyMTA4NSA2LjYzNTY5OTk1LDExLjMzNDIxMTYgTDYuNzQwMzI3MDgsMTEuMzM0MjExNiBMNi44NDQxMzM4NiwxMS4zMTk2ODc5IEM2Ljk4MTI2NjgxLDExLjI5MDY0MDcgNy4xMTE4MzY5OCwxMS4yMjI4NjM3IDcuMjE4MzQzNiwxMS4xMTYzNTcxIEwxMi41NTQzNzA2LDUuNzgwMzMwMDkgQzEyLjg0NzI2MzgsNS40ODc0MzY4NyAxMi44NDcyNjM4LDUuMDEyNTYzMTMgMTIuNTU0MzcwNiw0LjcxOTY2OTkxIFoiIGlkPSJjYiIgZmlsbD0iYmxhY2siPjwvcGF0aD48L2c+PC9zdmc+);
|
|
6133
6346
|
}
|
|
6134
6347
|
|
|
6135
6348
|
.pivot-field-summarize-header {
|
|
@@ -6399,6 +6612,11 @@ div[gcUIElement=gcSpread] .gc-base-spread-div {
|
|
|
6399
6612
|
text-align: center;
|
|
6400
6613
|
}
|
|
6401
6614
|
|
|
6615
|
+
.gc-pivot-field-setting-title {
|
|
6616
|
+
width: calc(100% - 54px);
|
|
6617
|
+
cursor: move;
|
|
6618
|
+
}
|
|
6619
|
+
|
|
6402
6620
|
.gcSpread.shape-editor-container {
|
|
6403
6621
|
font: 14.6667px Calibri, Helvetica Neue, Arial, sans-serif;
|
|
6404
6622
|
outline: none;
|
|
@@ -7349,7 +7567,7 @@ div[gcUIElement=gcSpread] .gc-base-spread-div {
|
|
|
7349
7567
|
border: solid 1px var(--sjs-theme-border-color);
|
|
7350
7568
|
}
|
|
7351
7569
|
.gc-table-sheet-panel .gc-table-sheet-field-panel .gcsj-func-ac-popup, .gc-table-sheet-panel .gc-table-sheet-cross-column-field .gcsj-func-ac-popup, .gc-table-sheet-cross-column .gc-table-sheet-field-panel .gcsj-func-ac-popup, .gc-table-sheet-cross-column .gc-table-sheet-cross-column-field .gcsj-func-ac-popup {
|
|
7352
|
-
width:
|
|
7570
|
+
width: auto;
|
|
7353
7571
|
}
|
|
7354
7572
|
.gc-table-sheet-panel .gc-table-sheet-field-panel .gcsj-func-help-popup, .gc-table-sheet-panel .gc-table-sheet-cross-column-field .gcsj-func-help-popup, .gc-table-sheet-cross-column .gc-table-sheet-field-panel .gcsj-func-help-popup, .gc-table-sheet-cross-column .gc-table-sheet-cross-column-field .gcsj-func-help-popup {
|
|
7355
7573
|
white-space: normal;
|
|
@@ -7859,6 +8077,27 @@ div[gcUIElement=gcSpread] .gc-base-spread-div {
|
|
|
7859
8077
|
display: none;
|
|
7860
8078
|
}
|
|
7861
8079
|
|
|
8080
|
+
.gc-table-sheet-sorts-btn-add,
|
|
8081
|
+
.gc-table-sheet-sorts-btn-remove {
|
|
8082
|
+
display: inline-block;
|
|
8083
|
+
cursor: pointer;
|
|
8084
|
+
width: 16px;
|
|
8085
|
+
height: 16px;
|
|
8086
|
+
margin: 2px 2px 2px 0;
|
|
8087
|
+
user-select: none;
|
|
8088
|
+
box-sizing: border-box;
|
|
8089
|
+
position: relative;
|
|
8090
|
+
right: 4px;
|
|
8091
|
+
}
|
|
8092
|
+
|
|
8093
|
+
.gc-table-sheet-sorts-btn-add {
|
|
8094
|
+
background: url("data:image/svg+xml,%3Csvg width=%2716px%27 height=%2716px%27 viewBox=%270 0 16 16%27 version=%271.1%27 xmlns=%27http://www.w3.org/2000/svg%27 xmlns:xlink=%27http://www.w3.org/1999/xlink%27%3E%3Cg stroke=%27none%27 stroke-width=%271%27 fill=%27%23666666%27 fill-rule=%27evenodd%27%3E%3Cpath d=%27M13,1 C14.6568542,1 16,2.34314575 16,4 L16,13 C16,14.6568542 14.6568542,16 13,16 L4,16 C2.34314575,16 1,14.6568542 1,13 L1,4 C1,2.34314575 2.34314575,1 4,1 L13,1 Z M13,2 L4,2 C2.8954305,2 2,2.8954305 2,4 L2,13 C2,14.1045695 2.8954305,15 4,15 L13,15 C14.1045695,15 15,14.1045695 15,13 L15,4 C15,2.8954305 14.1045695,2 13,2 Z M9,4 L9,8 L13,8 L13,9 L9,9 L9,13 L8,13 L8,9 L4,9 L4,8 L8,8 L8,4 L9,4 Z%27%3E%3C/path%3E%3C/g%3E%3C/svg%3E") no-repeat center/contain;
|
|
8095
|
+
}
|
|
8096
|
+
|
|
8097
|
+
.gc-table-sheet-sorts-btn-remove {
|
|
8098
|
+
background: url("data:image/svg+xml,%3Csvg width=%2716px%27 height=%2716px%27 viewBox=%270 0 16 16%27 version=%271.1%27 xmlns=%27http://www.w3.org/2000/svg%27 xmlns:xlink=%27http://www.w3.org/1999/xlink%27%3E%3Cg stroke=%27none%27 stroke-width=%271%27 fill=%27%23666666%27 fill-rule=%27evenodd%27%3E%3Cpath d=%27M13,1 C14.6568542,1 16,2.34314575 16,4 L16,13 C16,14.6568542 14.6568542,16 13,16 L4,16 C2.34314575,16 1,14.6568542 1,13 L1,4 C1,2.34314575 2.34314575,1 4,1 L13,1 Z M13,2 L4,2 C2.8954305,2 2,2.8954305 2,4 L2,13 C2,14.1045695 2.8954305,15 4,15 L13,15 C14.1045695,15 15,14.1045695 15,13 L15,4 C15,2.8954305 14.1045695,2 13,2 Z M13,8 L13,9 L4,9 L4,8 L13,8 Z%27%3E%3C/path%3E%3C/g%3E%3C/svg%3E") no-repeat center/contain;
|
|
8099
|
+
}
|
|
8100
|
+
|
|
7862
8101
|
.gc-name-box-container {
|
|
7863
8102
|
background-color: #6a6a6a;
|
|
7864
8103
|
color: #ffffff;
|