@syncfusion/ej2-vue-spreadsheet 19.3.59 → 19.4.42
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/CHANGELOG.md +74 -23
- package/README.md +1 -1
- package/dist/ej2-vue-spreadsheet.umd.min.js +1 -1
- package/dist/es6/ej2-vue-spreadsheet.es2015.js +1 -1
- package/dist/es6/ej2-vue-spreadsheet.es2015.js.map +1 -1
- package/dist/es6/ej2-vue-spreadsheet.es5.js +1 -1
- package/dist/es6/ej2-vue-spreadsheet.es5.js.map +1 -1
- package/dist/global/ej2-vue-spreadsheet.min.js +2 -2
- package/package.json +8 -8
- package/src/spreadsheet/spreadsheet.component.d.ts +1 -1
- package/src/spreadsheet/spreadsheet.component.js +1 -1
- package/styles/bootstrap-dark.css +18 -6
- package/styles/bootstrap.css +18 -6
- package/styles/bootstrap4.css +23 -6
- package/styles/bootstrap5-dark.css +20 -7
- package/styles/bootstrap5.css +20 -7
- package/styles/fabric-dark.css +18 -6
- package/styles/fabric.css +18 -6
- package/styles/highcontrast-light.css +18 -6
- package/styles/highcontrast.css +18 -6
- package/styles/material-dark.css +20 -6
- package/styles/material.css +20 -6
- package/styles/spreadsheet/bootstrap-dark.css +18 -6
- package/styles/spreadsheet/bootstrap.css +18 -6
- package/styles/spreadsheet/bootstrap4.css +23 -6
- package/styles/spreadsheet/bootstrap5-dark.css +20 -7
- package/styles/spreadsheet/bootstrap5.css +20 -7
- package/styles/spreadsheet/fabric-dark.css +18 -6
- package/styles/spreadsheet/fabric.css +18 -6
- package/styles/spreadsheet/highcontrast-light.css +18 -6
- package/styles/spreadsheet/highcontrast.css +18 -6
- package/styles/spreadsheet/material-dark.css +20 -6
- package/styles/spreadsheet/material.css +20 -6
- package/styles/spreadsheet/tailwind-dark.css +18 -6
- package/styles/spreadsheet/tailwind.css +18 -6
- package/styles/tailwind-dark.css +18 -6
- package/styles/tailwind.css +18 -6
|
@@ -1186,6 +1186,7 @@
|
|
|
1186
1186
|
padding-left: 2px;
|
|
1187
1187
|
padding-right: 2px;
|
|
1188
1188
|
position: absolute;
|
|
1189
|
+
text-decoration: inherit;
|
|
1189
1190
|
width: 100%;
|
|
1190
1191
|
}
|
|
1191
1192
|
|
|
@@ -1289,8 +1290,8 @@
|
|
|
1289
1290
|
.e-spreadsheet .e-sheet .e-ss-overlay-active .e-ss-overlay-t {
|
|
1290
1291
|
background-color: #0078d6;
|
|
1291
1292
|
cursor: ns-resize;
|
|
1293
|
+
left: 50%;
|
|
1292
1294
|
position: absolute;
|
|
1293
|
-
right: 50%;
|
|
1294
1295
|
top: 0;
|
|
1295
1296
|
transform: translate(-50%, -50%);
|
|
1296
1297
|
}
|
|
@@ -1307,8 +1308,8 @@
|
|
|
1307
1308
|
.e-spreadsheet .e-sheet .e-ss-overlay-active .e-ss-overlay-b {
|
|
1308
1309
|
background-color: #0078d6;
|
|
1309
1310
|
cursor: ns-resize;
|
|
1311
|
+
left: 50%;
|
|
1310
1312
|
position: absolute;
|
|
1311
|
-
right: 50%;
|
|
1312
1313
|
top: 100%;
|
|
1313
1314
|
transform: translate(-50%, -50%);
|
|
1314
1315
|
}
|
|
@@ -2327,18 +2328,30 @@
|
|
|
2327
2328
|
margin: 4px 0;
|
|
2328
2329
|
}
|
|
2329
2330
|
|
|
2331
|
+
.e-spreadsheet .e-open-dlg {
|
|
2332
|
+
width: 340px;
|
|
2333
|
+
}
|
|
2334
|
+
|
|
2335
|
+
.e-spreadsheet .e-open-dlg .e-dlg-content .e-file-alert-span {
|
|
2336
|
+
color: #dd2c2c;
|
|
2337
|
+
font-size: 12px;
|
|
2338
|
+
padding-top: 7px;
|
|
2339
|
+
}
|
|
2340
|
+
|
|
2330
2341
|
.e-spreadsheet .e-find-dlg {
|
|
2331
2342
|
height: auto;
|
|
2332
2343
|
width: 521px;
|
|
2333
2344
|
}
|
|
2334
2345
|
|
|
2335
2346
|
.e-spreadsheet .e-find-dlg .e-dlg-content .e-find-alert-span {
|
|
2336
|
-
|
|
2347
|
+
color: #dd2c2c;
|
|
2348
|
+
font-size: 12px;
|
|
2337
2349
|
padding-top: 7px;
|
|
2338
2350
|
}
|
|
2339
2351
|
|
|
2340
2352
|
.e-spreadsheet .e-find-dlg .e-dlg-content .e-replace-alert-span {
|
|
2341
|
-
|
|
2353
|
+
color: #dd2c2c;
|
|
2354
|
+
font-size: 12px;
|
|
2342
2355
|
padding-top: 7px;
|
|
2343
2356
|
}
|
|
2344
2357
|
|
|
@@ -2438,9 +2451,8 @@
|
|
|
2438
2451
|
bottom: 0;
|
|
2439
2452
|
float: right;
|
|
2440
2453
|
height: 18px;
|
|
2441
|
-
margin-right: -1px;
|
|
2442
2454
|
padding: 0;
|
|
2443
|
-
position:
|
|
2455
|
+
position: absolute;
|
|
2444
2456
|
right: 0;
|
|
2445
2457
|
width: 20px;
|
|
2446
2458
|
z-index: 2;
|
|
@@ -509,6 +509,7 @@
|
|
|
509
509
|
padding-left: 2px;
|
|
510
510
|
padding-right: 2px;
|
|
511
511
|
position: absolute;
|
|
512
|
+
text-decoration: inherit;
|
|
512
513
|
width: 100%;
|
|
513
514
|
}
|
|
514
515
|
|
|
@@ -612,8 +613,8 @@
|
|
|
612
613
|
.e-spreadsheet .e-sheet .e-ss-overlay-active .e-ss-overlay-t {
|
|
613
614
|
background-color: #400074;
|
|
614
615
|
cursor: ns-resize;
|
|
616
|
+
left: 50%;
|
|
615
617
|
position: absolute;
|
|
616
|
-
right: 50%;
|
|
617
618
|
top: 0;
|
|
618
619
|
transform: translate(-50%, -50%);
|
|
619
620
|
}
|
|
@@ -630,8 +631,8 @@
|
|
|
630
631
|
.e-spreadsheet .e-sheet .e-ss-overlay-active .e-ss-overlay-b {
|
|
631
632
|
background-color: #400074;
|
|
632
633
|
cursor: ns-resize;
|
|
634
|
+
left: 50%;
|
|
633
635
|
position: absolute;
|
|
634
|
-
right: 50%;
|
|
635
636
|
top: 100%;
|
|
636
637
|
transform: translate(-50%, -50%);
|
|
637
638
|
}
|
|
@@ -1639,18 +1640,30 @@
|
|
|
1639
1640
|
margin: 4px 0;
|
|
1640
1641
|
}
|
|
1641
1642
|
|
|
1643
|
+
.e-spreadsheet .e-open-dlg {
|
|
1644
|
+
width: 340px;
|
|
1645
|
+
}
|
|
1646
|
+
|
|
1647
|
+
.e-spreadsheet .e-open-dlg .e-dlg-content .e-file-alert-span {
|
|
1648
|
+
color: #dd2c2c;
|
|
1649
|
+
font-size: 12px;
|
|
1650
|
+
padding-top: 7px;
|
|
1651
|
+
}
|
|
1652
|
+
|
|
1642
1653
|
.e-spreadsheet .e-find-dlg {
|
|
1643
1654
|
height: auto;
|
|
1644
1655
|
width: 518px;
|
|
1645
1656
|
}
|
|
1646
1657
|
|
|
1647
1658
|
.e-spreadsheet .e-find-dlg .e-dlg-content .e-find-alert-span {
|
|
1648
|
-
|
|
1659
|
+
color: #dd2c2c;
|
|
1660
|
+
font-size: 12px;
|
|
1649
1661
|
padding-top: 7px;
|
|
1650
1662
|
}
|
|
1651
1663
|
|
|
1652
1664
|
.e-spreadsheet .e-find-dlg .e-dlg-content .e-replace-alert-span {
|
|
1653
|
-
|
|
1665
|
+
color: #dd2c2c;
|
|
1666
|
+
font-size: 12px;
|
|
1654
1667
|
padding-top: 7px;
|
|
1655
1668
|
}
|
|
1656
1669
|
|
|
@@ -1750,9 +1763,8 @@
|
|
|
1750
1763
|
bottom: 0;
|
|
1751
1764
|
float: right;
|
|
1752
1765
|
height: 18px;
|
|
1753
|
-
margin-right: -1px;
|
|
1754
1766
|
padding: 0;
|
|
1755
|
-
position:
|
|
1767
|
+
position: absolute;
|
|
1756
1768
|
right: 0;
|
|
1757
1769
|
width: 20px;
|
|
1758
1770
|
z-index: 2;
|
|
@@ -1199,6 +1199,7 @@
|
|
|
1199
1199
|
padding-left: 2px;
|
|
1200
1200
|
padding-right: 2px;
|
|
1201
1201
|
position: absolute;
|
|
1202
|
+
text-decoration: inherit;
|
|
1202
1203
|
width: 100%;
|
|
1203
1204
|
}
|
|
1204
1205
|
|
|
@@ -1302,8 +1303,8 @@
|
|
|
1302
1303
|
.e-spreadsheet .e-sheet .e-ss-overlay-active .e-ss-overlay-t {
|
|
1303
1304
|
background-color: #685708;
|
|
1304
1305
|
cursor: ns-resize;
|
|
1306
|
+
left: 50%;
|
|
1305
1307
|
position: absolute;
|
|
1306
|
-
right: 50%;
|
|
1307
1308
|
top: 0;
|
|
1308
1309
|
transform: translate(-50%, -50%);
|
|
1309
1310
|
}
|
|
@@ -1320,8 +1321,8 @@
|
|
|
1320
1321
|
.e-spreadsheet .e-sheet .e-ss-overlay-active .e-ss-overlay-b {
|
|
1321
1322
|
background-color: #685708;
|
|
1322
1323
|
cursor: ns-resize;
|
|
1324
|
+
left: 50%;
|
|
1323
1325
|
position: absolute;
|
|
1324
|
-
right: 50%;
|
|
1325
1326
|
top: 100%;
|
|
1326
1327
|
transform: translate(-50%, -50%);
|
|
1327
1328
|
}
|
|
@@ -2341,18 +2342,30 @@
|
|
|
2341
2342
|
margin: 4px 0;
|
|
2342
2343
|
}
|
|
2343
2344
|
|
|
2345
|
+
.e-spreadsheet .e-open-dlg {
|
|
2346
|
+
width: 340px;
|
|
2347
|
+
}
|
|
2348
|
+
|
|
2349
|
+
.e-spreadsheet .e-open-dlg .e-dlg-content .e-file-alert-span {
|
|
2350
|
+
color: #dd2c2c;
|
|
2351
|
+
font-size: 12px;
|
|
2352
|
+
padding-top: 7px;
|
|
2353
|
+
}
|
|
2354
|
+
|
|
2344
2355
|
.e-spreadsheet .e-find-dlg {
|
|
2345
2356
|
height: auto;
|
|
2346
2357
|
width: 518px;
|
|
2347
2358
|
}
|
|
2348
2359
|
|
|
2349
2360
|
.e-spreadsheet .e-find-dlg .e-dlg-content .e-find-alert-span {
|
|
2350
|
-
|
|
2361
|
+
color: #dd2c2c;
|
|
2362
|
+
font-size: 12px;
|
|
2351
2363
|
padding-top: 7px;
|
|
2352
2364
|
}
|
|
2353
2365
|
|
|
2354
2366
|
.e-spreadsheet .e-find-dlg .e-dlg-content .e-replace-alert-span {
|
|
2355
|
-
|
|
2367
|
+
color: #dd2c2c;
|
|
2368
|
+
font-size: 12px;
|
|
2356
2369
|
padding-top: 7px;
|
|
2357
2370
|
}
|
|
2358
2371
|
|
|
@@ -2452,9 +2465,8 @@
|
|
|
2452
2465
|
bottom: 0;
|
|
2453
2466
|
float: right;
|
|
2454
2467
|
height: 18px;
|
|
2455
|
-
margin-right: -1px;
|
|
2456
2468
|
padding: 0;
|
|
2457
|
-
position:
|
|
2469
|
+
position: absolute;
|
|
2458
2470
|
right: 0;
|
|
2459
2471
|
width: 20px;
|
|
2460
2472
|
z-index: 2;
|
|
@@ -1235,6 +1235,7 @@
|
|
|
1235
1235
|
padding-left: 2px;
|
|
1236
1236
|
padding-right: 2px;
|
|
1237
1237
|
position: absolute;
|
|
1238
|
+
text-decoration: inherit;
|
|
1238
1239
|
width: 100%;
|
|
1239
1240
|
}
|
|
1240
1241
|
|
|
@@ -1338,8 +1339,8 @@
|
|
|
1338
1339
|
.e-spreadsheet .e-sheet .e-ss-overlay-active .e-ss-overlay-t {
|
|
1339
1340
|
background-color: #00b0ff;
|
|
1340
1341
|
cursor: ns-resize;
|
|
1342
|
+
left: 50%;
|
|
1341
1343
|
position: absolute;
|
|
1342
|
-
right: 50%;
|
|
1343
1344
|
top: 0;
|
|
1344
1345
|
transform: translate(-50%, -50%);
|
|
1345
1346
|
}
|
|
@@ -1356,8 +1357,8 @@
|
|
|
1356
1357
|
.e-spreadsheet .e-sheet .e-ss-overlay-active .e-ss-overlay-b {
|
|
1357
1358
|
background-color: #00b0ff;
|
|
1358
1359
|
cursor: ns-resize;
|
|
1360
|
+
left: 50%;
|
|
1359
1361
|
position: absolute;
|
|
1360
|
-
right: 50%;
|
|
1361
1362
|
top: 100%;
|
|
1362
1363
|
transform: translate(-50%, -50%);
|
|
1363
1364
|
}
|
|
@@ -2364,18 +2365,30 @@
|
|
|
2364
2365
|
margin: 4px 0;
|
|
2365
2366
|
}
|
|
2366
2367
|
|
|
2368
|
+
.e-spreadsheet .e-open-dlg {
|
|
2369
|
+
width: 340px;
|
|
2370
|
+
}
|
|
2371
|
+
|
|
2372
|
+
.e-spreadsheet .e-open-dlg .e-dlg-content .e-file-alert-span {
|
|
2373
|
+
color: #dd2c2c;
|
|
2374
|
+
font-size: 12px;
|
|
2375
|
+
padding-top: 7px;
|
|
2376
|
+
}
|
|
2377
|
+
|
|
2367
2378
|
.e-spreadsheet .e-find-dlg {
|
|
2368
2379
|
height: auto;
|
|
2369
2380
|
width: 470px;
|
|
2370
2381
|
}
|
|
2371
2382
|
|
|
2372
2383
|
.e-spreadsheet .e-find-dlg .e-dlg-content .e-find-alert-span {
|
|
2373
|
-
|
|
2384
|
+
color: #dd2c2c;
|
|
2385
|
+
font-size: 12px;
|
|
2374
2386
|
padding-top: 7px;
|
|
2375
2387
|
}
|
|
2376
2388
|
|
|
2377
2389
|
.e-spreadsheet .e-find-dlg .e-dlg-content .e-replace-alert-span {
|
|
2378
|
-
|
|
2390
|
+
color: #dd2c2c;
|
|
2391
|
+
font-size: 12px;
|
|
2379
2392
|
padding-top: 7px;
|
|
2380
2393
|
}
|
|
2381
2394
|
|
|
@@ -2475,12 +2488,13 @@
|
|
|
2475
2488
|
bottom: 0;
|
|
2476
2489
|
float: right;
|
|
2477
2490
|
height: 18px;
|
|
2478
|
-
margin-right: -1px;
|
|
2479
2491
|
padding: 0;
|
|
2480
|
-
position:
|
|
2492
|
+
position: absolute;
|
|
2481
2493
|
right: 0;
|
|
2482
2494
|
width: 20px;
|
|
2483
2495
|
z-index: 2;
|
|
2496
|
+
bottom: .5px;
|
|
2497
|
+
right: .5px;
|
|
2484
2498
|
}
|
|
2485
2499
|
|
|
2486
2500
|
.e-colorpicker-wrapper.e-border-colorpicker {
|
|
@@ -1262,6 +1262,7 @@
|
|
|
1262
1262
|
padding-left: 2px;
|
|
1263
1263
|
padding-right: 2px;
|
|
1264
1264
|
position: absolute;
|
|
1265
|
+
text-decoration: inherit;
|
|
1265
1266
|
width: 100%;
|
|
1266
1267
|
}
|
|
1267
1268
|
|
|
@@ -1365,8 +1366,8 @@
|
|
|
1365
1366
|
.e-spreadsheet .e-sheet .e-ss-overlay-active .e-ss-overlay-t {
|
|
1366
1367
|
background-color: #e3165b;
|
|
1367
1368
|
cursor: ns-resize;
|
|
1369
|
+
left: 50%;
|
|
1368
1370
|
position: absolute;
|
|
1369
|
-
right: 50%;
|
|
1370
1371
|
top: 0;
|
|
1371
1372
|
transform: translate(-50%, -50%);
|
|
1372
1373
|
}
|
|
@@ -1383,8 +1384,8 @@
|
|
|
1383
1384
|
.e-spreadsheet .e-sheet .e-ss-overlay-active .e-ss-overlay-b {
|
|
1384
1385
|
background-color: #e3165b;
|
|
1385
1386
|
cursor: ns-resize;
|
|
1387
|
+
left: 50%;
|
|
1386
1388
|
position: absolute;
|
|
1387
|
-
right: 50%;
|
|
1388
1389
|
top: 100%;
|
|
1389
1390
|
transform: translate(-50%, -50%);
|
|
1390
1391
|
}
|
|
@@ -2405,18 +2406,30 @@
|
|
|
2405
2406
|
margin: 4px 0;
|
|
2406
2407
|
}
|
|
2407
2408
|
|
|
2409
|
+
.e-spreadsheet .e-open-dlg {
|
|
2410
|
+
width: 340px;
|
|
2411
|
+
}
|
|
2412
|
+
|
|
2413
|
+
.e-spreadsheet .e-open-dlg .e-dlg-content .e-file-alert-span {
|
|
2414
|
+
color: #dd2c2c;
|
|
2415
|
+
font-size: 12px;
|
|
2416
|
+
padding-top: 7px;
|
|
2417
|
+
}
|
|
2418
|
+
|
|
2408
2419
|
.e-spreadsheet .e-find-dlg {
|
|
2409
2420
|
height: auto;
|
|
2410
2421
|
width: 468px;
|
|
2411
2422
|
}
|
|
2412
2423
|
|
|
2413
2424
|
.e-spreadsheet .e-find-dlg .e-dlg-content .e-find-alert-span {
|
|
2414
|
-
|
|
2425
|
+
color: #dd2c2c;
|
|
2426
|
+
font-size: 12px;
|
|
2415
2427
|
padding-top: 7px;
|
|
2416
2428
|
}
|
|
2417
2429
|
|
|
2418
2430
|
.e-spreadsheet .e-find-dlg .e-dlg-content .e-replace-alert-span {
|
|
2419
|
-
|
|
2431
|
+
color: #dd2c2c;
|
|
2432
|
+
font-size: 12px;
|
|
2420
2433
|
padding-top: 7px;
|
|
2421
2434
|
}
|
|
2422
2435
|
|
|
@@ -2516,12 +2529,13 @@
|
|
|
2516
2529
|
bottom: 0;
|
|
2517
2530
|
float: right;
|
|
2518
2531
|
height: 18px;
|
|
2519
|
-
margin-right: -1px;
|
|
2520
2532
|
padding: 0;
|
|
2521
|
-
position:
|
|
2533
|
+
position: absolute;
|
|
2522
2534
|
right: 0;
|
|
2523
2535
|
width: 20px;
|
|
2524
2536
|
z-index: 2;
|
|
2537
|
+
bottom: .5px;
|
|
2538
|
+
right: .5px;
|
|
2525
2539
|
}
|
|
2526
2540
|
|
|
2527
2541
|
.e-colorpicker-wrapper.e-border-colorpicker {
|
|
@@ -1285,6 +1285,7 @@
|
|
|
1285
1285
|
padding-left: 2px;
|
|
1286
1286
|
padding-right: 2px;
|
|
1287
1287
|
position: absolute;
|
|
1288
|
+
text-decoration: inherit;
|
|
1288
1289
|
width: 100%;
|
|
1289
1290
|
}
|
|
1290
1291
|
|
|
@@ -1388,8 +1389,8 @@
|
|
|
1388
1389
|
.e-spreadsheet .e-sheet .e-ss-overlay-active .e-ss-overlay-t {
|
|
1389
1390
|
background-color: #22d3ee;
|
|
1390
1391
|
cursor: ns-resize;
|
|
1392
|
+
left: 50%;
|
|
1391
1393
|
position: absolute;
|
|
1392
|
-
right: 50%;
|
|
1393
1394
|
top: 0;
|
|
1394
1395
|
transform: translate(-50%, -50%);
|
|
1395
1396
|
}
|
|
@@ -1406,8 +1407,8 @@
|
|
|
1406
1407
|
.e-spreadsheet .e-sheet .e-ss-overlay-active .e-ss-overlay-b {
|
|
1407
1408
|
background-color: #22d3ee;
|
|
1408
1409
|
cursor: ns-resize;
|
|
1410
|
+
left: 50%;
|
|
1409
1411
|
position: absolute;
|
|
1410
|
-
right: 50%;
|
|
1411
1412
|
top: 100%;
|
|
1412
1413
|
transform: translate(-50%, -50%);
|
|
1413
1414
|
}
|
|
@@ -2436,18 +2437,30 @@
|
|
|
2436
2437
|
margin: 4px 0;
|
|
2437
2438
|
}
|
|
2438
2439
|
|
|
2440
|
+
.e-spreadsheet .e-open-dlg {
|
|
2441
|
+
width: 360px;
|
|
2442
|
+
}
|
|
2443
|
+
|
|
2444
|
+
.e-spreadsheet .e-open-dlg .e-dlg-content .e-file-alert-span {
|
|
2445
|
+
color: #f87171;
|
|
2446
|
+
font-size: 12px;
|
|
2447
|
+
padding-top: 7px;
|
|
2448
|
+
}
|
|
2449
|
+
|
|
2439
2450
|
.e-spreadsheet .e-find-dlg {
|
|
2440
2451
|
height: auto;
|
|
2441
2452
|
width: 468px;
|
|
2442
2453
|
}
|
|
2443
2454
|
|
|
2444
2455
|
.e-spreadsheet .e-find-dlg .e-dlg-content .e-find-alert-span {
|
|
2445
|
-
|
|
2456
|
+
color: #f87171;
|
|
2457
|
+
font-size: 12px;
|
|
2446
2458
|
padding-top: 7px;
|
|
2447
2459
|
}
|
|
2448
2460
|
|
|
2449
2461
|
.e-spreadsheet .e-find-dlg .e-dlg-content .e-replace-alert-span {
|
|
2450
|
-
|
|
2462
|
+
color: #f87171;
|
|
2463
|
+
font-size: 12px;
|
|
2451
2464
|
padding-top: 7px;
|
|
2452
2465
|
}
|
|
2453
2466
|
|
|
@@ -2548,9 +2561,8 @@
|
|
|
2548
2561
|
bottom: 0;
|
|
2549
2562
|
float: right;
|
|
2550
2563
|
height: 18px;
|
|
2551
|
-
margin-right: -1px;
|
|
2552
2564
|
padding: 0;
|
|
2553
|
-
position:
|
|
2565
|
+
position: absolute;
|
|
2554
2566
|
right: 0;
|
|
2555
2567
|
width: 20px;
|
|
2556
2568
|
z-index: 2;
|
|
@@ -1285,6 +1285,7 @@
|
|
|
1285
1285
|
padding-left: 2px;
|
|
1286
1286
|
padding-right: 2px;
|
|
1287
1287
|
position: absolute;
|
|
1288
|
+
text-decoration: inherit;
|
|
1288
1289
|
width: 100%;
|
|
1289
1290
|
}
|
|
1290
1291
|
|
|
@@ -1388,8 +1389,8 @@
|
|
|
1388
1389
|
.e-spreadsheet .e-sheet .e-ss-overlay-active .e-ss-overlay-t {
|
|
1389
1390
|
background-color: #4f46e5;
|
|
1390
1391
|
cursor: ns-resize;
|
|
1392
|
+
left: 50%;
|
|
1391
1393
|
position: absolute;
|
|
1392
|
-
right: 50%;
|
|
1393
1394
|
top: 0;
|
|
1394
1395
|
transform: translate(-50%, -50%);
|
|
1395
1396
|
}
|
|
@@ -1406,8 +1407,8 @@
|
|
|
1406
1407
|
.e-spreadsheet .e-sheet .e-ss-overlay-active .e-ss-overlay-b {
|
|
1407
1408
|
background-color: #4f46e5;
|
|
1408
1409
|
cursor: ns-resize;
|
|
1410
|
+
left: 50%;
|
|
1409
1411
|
position: absolute;
|
|
1410
|
-
right: 50%;
|
|
1411
1412
|
top: 100%;
|
|
1412
1413
|
transform: translate(-50%, -50%);
|
|
1413
1414
|
}
|
|
@@ -2436,18 +2437,30 @@
|
|
|
2436
2437
|
margin: 4px 0;
|
|
2437
2438
|
}
|
|
2438
2439
|
|
|
2440
|
+
.e-spreadsheet .e-open-dlg {
|
|
2441
|
+
width: 360px;
|
|
2442
|
+
}
|
|
2443
|
+
|
|
2444
|
+
.e-spreadsheet .e-open-dlg .e-dlg-content .e-file-alert-span {
|
|
2445
|
+
color: #dc2626;
|
|
2446
|
+
font-size: 12px;
|
|
2447
|
+
padding-top: 7px;
|
|
2448
|
+
}
|
|
2449
|
+
|
|
2439
2450
|
.e-spreadsheet .e-find-dlg {
|
|
2440
2451
|
height: auto;
|
|
2441
2452
|
width: 468px;
|
|
2442
2453
|
}
|
|
2443
2454
|
|
|
2444
2455
|
.e-spreadsheet .e-find-dlg .e-dlg-content .e-find-alert-span {
|
|
2445
|
-
|
|
2456
|
+
color: #dc2626;
|
|
2457
|
+
font-size: 12px;
|
|
2446
2458
|
padding-top: 7px;
|
|
2447
2459
|
}
|
|
2448
2460
|
|
|
2449
2461
|
.e-spreadsheet .e-find-dlg .e-dlg-content .e-replace-alert-span {
|
|
2450
|
-
|
|
2462
|
+
color: #dc2626;
|
|
2463
|
+
font-size: 12px;
|
|
2451
2464
|
padding-top: 7px;
|
|
2452
2465
|
}
|
|
2453
2466
|
|
|
@@ -2548,9 +2561,8 @@
|
|
|
2548
2561
|
bottom: 0;
|
|
2549
2562
|
float: right;
|
|
2550
2563
|
height: 18px;
|
|
2551
|
-
margin-right: -1px;
|
|
2552
2564
|
padding: 0;
|
|
2553
|
-
position:
|
|
2565
|
+
position: absolute;
|
|
2554
2566
|
right: 0;
|
|
2555
2567
|
width: 20px;
|
|
2556
2568
|
z-index: 2;
|
package/styles/tailwind-dark.css
CHANGED
|
@@ -1286,6 +1286,7 @@
|
|
|
1286
1286
|
padding-left: 2px;
|
|
1287
1287
|
padding-right: 2px;
|
|
1288
1288
|
position: absolute;
|
|
1289
|
+
text-decoration: inherit;
|
|
1289
1290
|
width: 100%;
|
|
1290
1291
|
}
|
|
1291
1292
|
|
|
@@ -1389,8 +1390,8 @@
|
|
|
1389
1390
|
.e-spreadsheet .e-sheet .e-ss-overlay-active .e-ss-overlay-t {
|
|
1390
1391
|
background-color: #22d3ee;
|
|
1391
1392
|
cursor: ns-resize;
|
|
1393
|
+
left: 50%;
|
|
1392
1394
|
position: absolute;
|
|
1393
|
-
right: 50%;
|
|
1394
1395
|
top: 0;
|
|
1395
1396
|
transform: translate(-50%, -50%);
|
|
1396
1397
|
}
|
|
@@ -1407,8 +1408,8 @@
|
|
|
1407
1408
|
.e-spreadsheet .e-sheet .e-ss-overlay-active .e-ss-overlay-b {
|
|
1408
1409
|
background-color: #22d3ee;
|
|
1409
1410
|
cursor: ns-resize;
|
|
1411
|
+
left: 50%;
|
|
1410
1412
|
position: absolute;
|
|
1411
|
-
right: 50%;
|
|
1412
1413
|
top: 100%;
|
|
1413
1414
|
transform: translate(-50%, -50%);
|
|
1414
1415
|
}
|
|
@@ -2437,18 +2438,30 @@
|
|
|
2437
2438
|
margin: 4px 0;
|
|
2438
2439
|
}
|
|
2439
2440
|
|
|
2441
|
+
.e-spreadsheet .e-open-dlg {
|
|
2442
|
+
width: 360px;
|
|
2443
|
+
}
|
|
2444
|
+
|
|
2445
|
+
.e-spreadsheet .e-open-dlg .e-dlg-content .e-file-alert-span {
|
|
2446
|
+
color: #f87171;
|
|
2447
|
+
font-size: 12px;
|
|
2448
|
+
padding-top: 7px;
|
|
2449
|
+
}
|
|
2450
|
+
|
|
2440
2451
|
.e-spreadsheet .e-find-dlg {
|
|
2441
2452
|
height: auto;
|
|
2442
2453
|
width: 468px;
|
|
2443
2454
|
}
|
|
2444
2455
|
|
|
2445
2456
|
.e-spreadsheet .e-find-dlg .e-dlg-content .e-find-alert-span {
|
|
2446
|
-
|
|
2457
|
+
color: #f87171;
|
|
2458
|
+
font-size: 12px;
|
|
2447
2459
|
padding-top: 7px;
|
|
2448
2460
|
}
|
|
2449
2461
|
|
|
2450
2462
|
.e-spreadsheet .e-find-dlg .e-dlg-content .e-replace-alert-span {
|
|
2451
|
-
|
|
2463
|
+
color: #f87171;
|
|
2464
|
+
font-size: 12px;
|
|
2452
2465
|
padding-top: 7px;
|
|
2453
2466
|
}
|
|
2454
2467
|
|
|
@@ -2549,9 +2562,8 @@
|
|
|
2549
2562
|
bottom: 0;
|
|
2550
2563
|
float: right;
|
|
2551
2564
|
height: 18px;
|
|
2552
|
-
margin-right: -1px;
|
|
2553
2565
|
padding: 0;
|
|
2554
|
-
position:
|
|
2566
|
+
position: absolute;
|
|
2555
2567
|
right: 0;
|
|
2556
2568
|
width: 20px;
|
|
2557
2569
|
z-index: 2;
|
package/styles/tailwind.css
CHANGED
|
@@ -1286,6 +1286,7 @@
|
|
|
1286
1286
|
padding-left: 2px;
|
|
1287
1287
|
padding-right: 2px;
|
|
1288
1288
|
position: absolute;
|
|
1289
|
+
text-decoration: inherit;
|
|
1289
1290
|
width: 100%;
|
|
1290
1291
|
}
|
|
1291
1292
|
|
|
@@ -1389,8 +1390,8 @@
|
|
|
1389
1390
|
.e-spreadsheet .e-sheet .e-ss-overlay-active .e-ss-overlay-t {
|
|
1390
1391
|
background-color: #4f46e5;
|
|
1391
1392
|
cursor: ns-resize;
|
|
1393
|
+
left: 50%;
|
|
1392
1394
|
position: absolute;
|
|
1393
|
-
right: 50%;
|
|
1394
1395
|
top: 0;
|
|
1395
1396
|
transform: translate(-50%, -50%);
|
|
1396
1397
|
}
|
|
@@ -1407,8 +1408,8 @@
|
|
|
1407
1408
|
.e-spreadsheet .e-sheet .e-ss-overlay-active .e-ss-overlay-b {
|
|
1408
1409
|
background-color: #4f46e5;
|
|
1409
1410
|
cursor: ns-resize;
|
|
1411
|
+
left: 50%;
|
|
1410
1412
|
position: absolute;
|
|
1411
|
-
right: 50%;
|
|
1412
1413
|
top: 100%;
|
|
1413
1414
|
transform: translate(-50%, -50%);
|
|
1414
1415
|
}
|
|
@@ -2437,18 +2438,30 @@
|
|
|
2437
2438
|
margin: 4px 0;
|
|
2438
2439
|
}
|
|
2439
2440
|
|
|
2441
|
+
.e-spreadsheet .e-open-dlg {
|
|
2442
|
+
width: 360px;
|
|
2443
|
+
}
|
|
2444
|
+
|
|
2445
|
+
.e-spreadsheet .e-open-dlg .e-dlg-content .e-file-alert-span {
|
|
2446
|
+
color: #dc2626;
|
|
2447
|
+
font-size: 12px;
|
|
2448
|
+
padding-top: 7px;
|
|
2449
|
+
}
|
|
2450
|
+
|
|
2440
2451
|
.e-spreadsheet .e-find-dlg {
|
|
2441
2452
|
height: auto;
|
|
2442
2453
|
width: 468px;
|
|
2443
2454
|
}
|
|
2444
2455
|
|
|
2445
2456
|
.e-spreadsheet .e-find-dlg .e-dlg-content .e-find-alert-span {
|
|
2446
|
-
|
|
2457
|
+
color: #dc2626;
|
|
2458
|
+
font-size: 12px;
|
|
2447
2459
|
padding-top: 7px;
|
|
2448
2460
|
}
|
|
2449
2461
|
|
|
2450
2462
|
.e-spreadsheet .e-find-dlg .e-dlg-content .e-replace-alert-span {
|
|
2451
|
-
|
|
2463
|
+
color: #dc2626;
|
|
2464
|
+
font-size: 12px;
|
|
2452
2465
|
padding-top: 7px;
|
|
2453
2466
|
}
|
|
2454
2467
|
|
|
@@ -2549,9 +2562,8 @@
|
|
|
2549
2562
|
bottom: 0;
|
|
2550
2563
|
float: right;
|
|
2551
2564
|
height: 18px;
|
|
2552
|
-
margin-right: -1px;
|
|
2553
2565
|
padding: 0;
|
|
2554
|
-
position:
|
|
2566
|
+
position: absolute;
|
|
2555
2567
|
right: 0;
|
|
2556
2568
|
width: 20px;
|
|
2557
2569
|
z-index: 2;
|