gridjs-spreadsheet 22.11.1

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.
@@ -0,0 +1,1373 @@
1
+ body {
2
+ margin: 0;
3
+ }
4
+ .x-spreadsheet {
5
+ font-size: 13px;
6
+ line-height: normal;
7
+ user-select: none;
8
+ -moz-user-select: none;
9
+ font-family: 'Lato', 'Source Sans Pro', Roboto, Helvetica, Arial, sans-serif;
10
+ box-sizing: content-box;
11
+ background: #fff;
12
+ -webkit-font-smoothing: antialiased;
13
+ }
14
+ .x-spreadsheet textarea {
15
+ font: 400 13px Arial, 'Lato', 'Source Sans Pro', Roboto, Helvetica, sans-serif;
16
+ }
17
+ .x-spreadsheet-sheet {
18
+ position: relative;
19
+ overflow: hidden;
20
+ }
21
+ .x-spreadsheet-table {
22
+ vertical-align: bottom;
23
+ }
24
+ .x-spreadsheet-tooltip {
25
+ font-family: inherit;
26
+ position: absolute;
27
+ padding: 5px 10px;
28
+ color: #fff;
29
+ border-radius: 1px;
30
+ background: #000000;
31
+ font-size: 12px;
32
+ z-index: 201;
33
+ }
34
+ .x-spreadsheet-tooltip:before {
35
+ pointer-events: none;
36
+ position: absolute;
37
+ left: calc(50% - 4px);
38
+ top: -4px;
39
+ content: "";
40
+ width: 8px;
41
+ height: 8px;
42
+ background: inherit;
43
+ -webkit-transform: rotate(45deg);
44
+ transform: rotate(45deg);
45
+ z-index: 1;
46
+ box-shadow: 1px 1px 3px -1px rgba(0, 0, 0, 0.3);
47
+ }
48
+ .x-spreadsheet-comment-tip {
49
+ font-family: inherit;
50
+ position: absolute;
51
+ padding: 5px 10px;
52
+ color: #fff;
53
+ border-radius: 1px;
54
+ background: #ffffe1;
55
+ font-size: 12px;
56
+ z-index: 201;
57
+ }
58
+ .x-spreadsheet-comment-tip:before {
59
+ pointer-events: none;
60
+ position: absolute;
61
+ left: -4px;
62
+ top: calc(50% - 4px);
63
+ content: "";
64
+ width: 8px;
65
+ height: 8px;
66
+ background: inherit;
67
+ -webkit-transform: rotate(45deg);
68
+ transform: rotate(45deg);
69
+ z-index: 1;
70
+ box-shadow: 1px 1px 3px -1px rgba(255, 255, 0, 0.3);
71
+ }
72
+ .x-spreadsheet-color-palette {
73
+ padding: 5px;
74
+ }
75
+ .x-spreadsheet-color-palette table {
76
+ margin: 0;
77
+ padding: 0;
78
+ border-collapse: separate;
79
+ border-spacing: 2px;
80
+ background: #fff;
81
+ }
82
+ .x-spreadsheet-color-palette table td {
83
+ margin: 0;
84
+ cursor: pointer;
85
+ border: 1px solid transparent;
86
+ }
87
+ .x-spreadsheet-color-palette table td:hover {
88
+ border-color: #ddd;
89
+ }
90
+ .x-spreadsheet-color-palette table td .x-spreadsheet-color-palette-cell {
91
+ width: 16px;
92
+ height: 16px;
93
+ }
94
+ .x-spreadsheet-banner {
95
+ display: flex;
96
+ width: 100%;
97
+ background: #f5f6f7;
98
+ }
99
+ .x-spreadsheet-banner-info {
100
+ display: flex;
101
+ height: 80px;
102
+ text-align: left;
103
+ width: 90%;
104
+ flex-direction: column;
105
+ }
106
+ .x-spreadsheet-banner-icon {
107
+ width: 60px;
108
+ height: 60px;
109
+ margin: 10px;
110
+ background-repeat: no-repeat;
111
+ background-image: url(555f60323063f2b68b6eac7ce9c45b19.svg);
112
+ }
113
+ .x-spreadsheet-banner-filename {
114
+ width: max-content;
115
+ max-width: 90%;
116
+ height: 40px;
117
+ padding: 0 5px;
118
+ font-size: xx-large;
119
+ display: flex;
120
+ flex-direction: row;
121
+ align-items: center;
122
+ justify-content: flex-start;
123
+ }
124
+ .x-spreadsheet-banner-filename-name {
125
+ white-space: nowrap;
126
+ overflow-x: scroll;
127
+ display: flex;
128
+ align-items: center;
129
+ }
130
+ .x-spreadsheet-banner-filename-name::-webkit-scrollbar {
131
+ display: none;
132
+ }
133
+ .x-spreadsheet-border-palette {
134
+ padding: 6px;
135
+ }
136
+ .x-spreadsheet-border-palette table {
137
+ margin: 0;
138
+ padding: 0;
139
+ border-collapse: separate;
140
+ border-spacing: 0;
141
+ background: #fff;
142
+ table-layout: fixed;
143
+ }
144
+ .x-spreadsheet-border-palette table td {
145
+ margin: 0;
146
+ }
147
+ .x-spreadsheet-border-palette .x-spreadsheet-border-palette-left {
148
+ border-right: 1px solid #eee;
149
+ padding-right: 6px;
150
+ }
151
+ .x-spreadsheet-border-palette .x-spreadsheet-border-palette-left .x-spreadsheet-border-palette-cell {
152
+ width: 30px;
153
+ height: 30px;
154
+ cursor: pointer;
155
+ text-align: center;
156
+ }
157
+ .x-spreadsheet-border-palette .x-spreadsheet-border-palette-left .x-spreadsheet-border-palette-cell .x-spreadsheet-icon-img {
158
+ opacity: 0.8;
159
+ }
160
+ .x-spreadsheet-border-palette .x-spreadsheet-border-palette-left .x-spreadsheet-border-palette-cell:hover {
161
+ background-color: #eee;
162
+ }
163
+ .x-spreadsheet-border-palette .x-spreadsheet-border-palette-right {
164
+ padding-left: 6px;
165
+ }
166
+ .x-spreadsheet-border-palette .x-spreadsheet-border-palette-right .x-spreadsheet-toolbar-btn {
167
+ margin-top: 0;
168
+ margin-bottom: 3px;
169
+ }
170
+ .x-spreadsheet-border-palette .x-spreadsheet-border-palette-right .x-spreadsheet-line-type {
171
+ position: relative;
172
+ left: 0;
173
+ top: -3px;
174
+ }
175
+ .x-spreadsheet-dropdown {
176
+ position: relative;
177
+ }
178
+ .x-spreadsheet-dropdown .x-spreadsheet-dropdown-content {
179
+ position: absolute;
180
+ z-index: 200;
181
+ background: #fff;
182
+ box-shadow: 1px 2px 5px 2px rgba(51, 51, 51, 0.15);
183
+ }
184
+ .x-spreadsheet-dropdown.bottom-left .x-spreadsheet-dropdown-content {
185
+ top: calc(100% + 5px);
186
+ left: 0;
187
+ }
188
+ .x-spreadsheet-dropdown.bottom-left .x-spreadsheet-menubar-dropdown-content {
189
+ top: -5px;
190
+ left: calc(100% + 15px);
191
+ }
192
+ .x-spreadsheet-dropdown.bottom-right .x-spreadsheet-dropdown-content {
193
+ top: calc(100% + 5px);
194
+ right: 0;
195
+ left: auto;
196
+ }
197
+ .x-spreadsheet-dropdown.bottom-right .x-spreadsheet-menubar-dropdown-content {
198
+ top: -5px;
199
+ right: calc(100% + 15px);
200
+ left: auto;
201
+ }
202
+ .x-spreadsheet-dropdown.bottom-center .x-spreadsheet-dropdown-content {
203
+ top: calc(100% + 5px);
204
+ right: calc(-75% + 5px);
205
+ left: auto;
206
+ }
207
+ .x-spreadsheet-dropdown.bottom-center .x-spreadsheet-menubar-dropdown-content {
208
+ top: calc(100% + 5px);
209
+ right: calc(-75% + 5px);
210
+ left: auto;
211
+ }
212
+ .x-spreadsheet-dropdown.top-left .x-spreadsheet-dropdown-content {
213
+ bottom: calc(100% + 5px);
214
+ left: 0;
215
+ }
216
+ .x-spreadsheet-dropdown.top-left .x-spreadsheet-menubar-dropdown-content {
217
+ top: -5px;
218
+ left: calc(100% + 15px);
219
+ }
220
+ .x-spreadsheet-dropdown.top-right .x-spreadsheet-dropdown-content {
221
+ bottom: calc(100% + 5px);
222
+ right: 0;
223
+ }
224
+ .x-spreadsheet-dropdown.top-right .x-spreadsheet-menubar-dropdown-content {
225
+ top: -5px;
226
+ left: calc(100% + 15px);
227
+ }
228
+ .x-spreadsheet-dropdown .x-spreadsheet-dropdown-title {
229
+ padding: 0 5px;
230
+ display: inline-block;
231
+ }
232
+ .x-spreadsheet-dropdown .x-spreadsheet-dropdown-header .x-spreadsheet-icon.arrow-left {
233
+ margin-left: 4px;
234
+ }
235
+ .x-spreadsheet-dropdown .x-spreadsheet-dropdown-header .x-spreadsheet-icon.arrow-right {
236
+ width: 10px;
237
+ margin-right: 4px;
238
+ }
239
+ .x-spreadsheet-dropdown .x-spreadsheet-dropdown-header .x-spreadsheet-icon.arrow-right .arrow-down {
240
+ left: -130px;
241
+ }
242
+ /* resizer **/
243
+ .x-spreadsheet-resizer {
244
+ position: absolute;
245
+ z-index: 11;
246
+ }
247
+ .x-spreadsheet-resizer .x-spreadsheet-resizer-hover {
248
+ background-color: rgba(75, 137, 255, 0.25);
249
+ }
250
+ .x-spreadsheet-resizer .x-spreadsheet-resizer-line {
251
+ position: absolute;
252
+ }
253
+ .x-spreadsheet-resizer.horizontal {
254
+ cursor: row-resize;
255
+ }
256
+ .x-spreadsheet-resizer.horizontal .x-spreadsheet-resizer-line {
257
+ border-bottom: 2px dashed #4b89ff;
258
+ left: 0;
259
+ bottom: 0;
260
+ }
261
+ .x-spreadsheet-resizer.vertical {
262
+ cursor: col-resize;
263
+ }
264
+ .x-spreadsheet-resizer.vertical .x-spreadsheet-resizer-line {
265
+ border-right: 2px dashed #4b89ff;
266
+ top: 0;
267
+ right: 0;
268
+ }
269
+ /* scrollbar */
270
+ .x-spreadsheet-scrollbar {
271
+ position: absolute;
272
+ bottom: 0;
273
+ right: 0;
274
+ background-color: #f4f5f8;
275
+ opacity: 0.9;
276
+ z-index: 12;
277
+ }
278
+ .x-spreadsheet-scrollbar.horizontal {
279
+ right: 15px;
280
+ overflow-x: scroll;
281
+ overflow-y: hidden;
282
+ }
283
+ .x-spreadsheet-scrollbar.horizontal > div {
284
+ height: 1px;
285
+ background: #ddd;
286
+ }
287
+ .x-spreadsheet-scrollbar.vertical {
288
+ bottom: 15px;
289
+ overflow-x: hidden;
290
+ overflow-y: scroll;
291
+ }
292
+ .x-spreadsheet-scrollbar.vertical > div {
293
+ width: 1px;
294
+ background: #ddd;
295
+ }
296
+ /* @{css-prefix}-overlayer */
297
+ .x-spreadsheet-overlayer {
298
+ position: absolute;
299
+ left: 0;
300
+ top: 0;
301
+ z-index: 10;
302
+ }
303
+ .x-spreadsheet-overlayer .x-spreadsheet-overlayer-content {
304
+ position: absolute;
305
+ overflow: hidden;
306
+ pointer-events: none;
307
+ width: 100%;
308
+ height: 100%;
309
+ }
310
+ .x-spreadsheet-editor,
311
+ .x-spreadsheet-selector {
312
+ box-sizing: content-box;
313
+ position: absolute;
314
+ overflow: hidden;
315
+ pointer-events: none;
316
+ top: 0;
317
+ left: 0;
318
+ width: 100%;
319
+ height: 100%;
320
+ }
321
+ /* @{css-prefix}-selector */
322
+ .x-spreadsheet-selector .hide-input {
323
+ position: absolute;
324
+ z-index: 0;
325
+ }
326
+ .x-spreadsheet-selector .hide-input input {
327
+ padding: 0;
328
+ width: 0;
329
+ border: none !important;
330
+ }
331
+ .x-spreadsheet-selector .x-spreadsheet-selector-area {
332
+ position: absolute;
333
+ border: 2px solid #4b89ff;
334
+ background: rgba(75, 137, 255, 0.1);
335
+ z-index: 5;
336
+ box-sizing: content-box;
337
+ -webkit-box-sizing: content-box;
338
+ -moz-box-sizing: content-box;
339
+ }
340
+ .x-spreadsheet-selector .x-spreadsheet-selector-clipboard,
341
+ .x-spreadsheet-selector .x-spreadsheet-selector-autofill {
342
+ position: absolute;
343
+ background: transparent;
344
+ z-index: 100;
345
+ }
346
+ .x-spreadsheet-selector .x-spreadsheet-selector-clipboard {
347
+ border: 2px dashed #4b89ff;
348
+ }
349
+ .x-spreadsheet-selector .x-spreadsheet-selector-autofill {
350
+ border: 1px dashed rgba(0, 0, 0, 0.45);
351
+ }
352
+ .x-spreadsheet-selector .x-spreadsheet-selector-corner {
353
+ pointer-events: auto;
354
+ position: absolute;
355
+ cursor: crosshair;
356
+ font-size: 0;
357
+ height: 9px;
358
+ width: 9px;
359
+ right: -5px;
360
+ bottom: -5px;
361
+ border: 2px solid #ffffff;
362
+ background: #4b89ff;
363
+ }
364
+ .x-spreadsheet-editor {
365
+ z-index: 20;
366
+ }
367
+ .x-spreadsheet-editor .x-spreadsheet-editor-area {
368
+ position: absolute;
369
+ text-align: left;
370
+ z-index: 100;
371
+ pointer-events: auto;
372
+ }
373
+ .x-spreadsheet-editor .x-spreadsheet-editor-area textarea {
374
+ box-sizing: content-box;
375
+ border: none;
376
+ padding: 0 3px;
377
+ outline: none;
378
+ resize: none;
379
+ text-align: start;
380
+ overflow-y: hidden;
381
+ font: 400 13px Arial, 'Lato', 'Source Sans Pro', Roboto, Helvetica, sans-serif;
382
+ color: inherit;
383
+ white-space: normal;
384
+ word-wrap: break-word;
385
+ line-height: 22px;
386
+ margin: 0;
387
+ }
388
+ .x-spreadsheet-editor .x-spreadsheet-editor-area .htmlline {
389
+ outline: 1px solid #f3e0e0c9;
390
+ background: white;
391
+ margin: 2px;
392
+ }
393
+ .x-spreadsheet-editor .x-spreadsheet-editor-area .textline {
394
+ overflow: hidden;
395
+ visibility: hidden;
396
+ position: fixed;
397
+ top: 0;
398
+ left: 0;
399
+ }
400
+ .x-spreadsheet-item {
401
+ user-select: none;
402
+ background: 0;
403
+ border: 1px solid transparent;
404
+ outline: none;
405
+ height: 26px;
406
+ color: rgba(0, 0, 0, 0.9);
407
+ line-height: 26px;
408
+ list-style: none;
409
+ padding: 2px 10px;
410
+ cursor: default;
411
+ text-align: left;
412
+ overflow: hidden;
413
+ }
414
+ .x-spreadsheet-item.disabled {
415
+ pointer-events: none;
416
+ opacity: 0.5;
417
+ }
418
+ .x-spreadsheet-item:hover,
419
+ .x-spreadsheet-item.active {
420
+ background: rgba(0, 0, 0, 0.05);
421
+ }
422
+ .x-spreadsheet-item.divider {
423
+ height: 0;
424
+ padding: 0;
425
+ margin: 5px 0;
426
+ border: none;
427
+ border-bottom: 1px solid rgba(0, 0, 0, 0.1);
428
+ }
429
+ .x-spreadsheet-item .label {
430
+ float: right;
431
+ opacity: 0.65;
432
+ font-size: 1em;
433
+ }
434
+ .x-spreadsheet-item.state,
435
+ .x-spreadsheet-header.state {
436
+ padding-left: 35px !important;
437
+ position: relative;
438
+ }
439
+ .x-spreadsheet-item.state:before,
440
+ .x-spreadsheet-header.state:before {
441
+ content: '';
442
+ position: absolute;
443
+ width: 10px;
444
+ height: 10px;
445
+ left: 12px;
446
+ top: calc(50% - 5px);
447
+ background: rgba(0, 0, 0, 0.08);
448
+ border-radius: 2px;
449
+ }
450
+ .x-spreadsheet-item.state.checked:before,
451
+ .x-spreadsheet-header.state.checked:before {
452
+ background: #4b89ff;
453
+ }
454
+ .x-spreadsheet-checkbox {
455
+ position: relative;
456
+ display: inline-block;
457
+ backface-visibility: hidden;
458
+ outline: 0;
459
+ vertical-align: baseline;
460
+ font-style: normal;
461
+ font-size: 1rem;
462
+ line-height: 1em;
463
+ }
464
+ .x-spreadsheet-checkbox > input {
465
+ position: absolute;
466
+ top: 0;
467
+ left: 0;
468
+ opacity: 0 !important;
469
+ outline: 0;
470
+ z-index: -1;
471
+ }
472
+ .x-spreadsheet-suggest,
473
+ .x-spreadsheet-contextmenu,
474
+ .x-spreadsheet-sort-filter {
475
+ position: absolute;
476
+ box-shadow: 1px 2px 5px 2px rgba(51, 51, 51, 0.15);
477
+ background: #fff;
478
+ z-index: 100;
479
+ width: 260px;
480
+ pointer-events: auto;
481
+ overflow: auto;
482
+ }
483
+ .x-spreadsheet-suggest {
484
+ width: 200px;
485
+ }
486
+ .x-spreadsheet-filter {
487
+ border: 1px solid #e9e9e9;
488
+ font-size: 12px;
489
+ margin: 10px;
490
+ }
491
+ .x-spreadsheet-filter .x-spreadsheet-header {
492
+ padding: 0.5em 0.75em;
493
+ background: #f8f8f9;
494
+ border-bottom: 1px solid #e9e9e9;
495
+ border-left: 1px solid transparent;
496
+ }
497
+ .x-spreadsheet-filter .x-spreadsheet-body {
498
+ height: 200px;
499
+ overflow-y: auto;
500
+ }
501
+ .x-spreadsheet-filter .x-spreadsheet-body .x-spreadsheet-item {
502
+ height: 20px;
503
+ line-height: 20px;
504
+ }
505
+ .x-spreadsheet-sort-filter .x-spreadsheet-buttons {
506
+ margin: 10px;
507
+ }
508
+ .x-spreadsheet-toolbar,
509
+ .x-spreadsheet-bottombar {
510
+ height: 40px;
511
+ padding: 0 30px;
512
+ text-align: left;
513
+ background: #f5f6f7;
514
+ display: flex;
515
+ }
516
+ .x-spreadsheet-bottombar {
517
+ position: relative;
518
+ border-top: 1px solid #e0e2e4;
519
+ }
520
+ .x-spreadsheet-bottombar .x-spreadsheet-menu > li {
521
+ line-height: 40px;
522
+ height: 40px;
523
+ padding-top: 0;
524
+ padding-bottom: 0;
525
+ vertical-align: middle;
526
+ border-right: 1px solid #e8eaed;
527
+ }
528
+ .x-spreadsheet-menu {
529
+ list-style: none;
530
+ margin: 0;
531
+ padding: 0;
532
+ user-select: none;
533
+ }
534
+ .x-spreadsheet-menu > li {
535
+ float: left;
536
+ line-height: 1.25em;
537
+ padding: 0.785em 1em;
538
+ margin: 0;
539
+ vertical-align: middle;
540
+ text-align: left;
541
+ color: #80868b;
542
+ white-space: nowrap;
543
+ cursor: pointer;
544
+ transition: all 0.3s;
545
+ font-weight: bold;
546
+ }
547
+ .x-spreadsheet-menu > li.active {
548
+ background-color: #fff;
549
+ color: rgba(0, 0, 0, 0.65);
550
+ }
551
+ .x-spreadsheet-menu > li .x-spreadsheet-icon {
552
+ margin: 0 6px;
553
+ }
554
+ .x-spreadsheet-menu > li .x-spreadsheet-icon .x-spreadsheet-icon-img:hover {
555
+ opacity: 0.85;
556
+ }
557
+ .x-spreadsheet-menu > li .x-spreadsheet-dropdown {
558
+ display: inline-block;
559
+ }
560
+ .x-spreadsheet-toolbar.x-spreadsheet-menubar {
561
+ padding: 0;
562
+ justify-content: flex-start;
563
+ }
564
+ .x-spreadsheet-toolbar {
565
+ border-bottom: 1px solid #e0e2e4;
566
+ justify-content: space-between;
567
+ }
568
+ .x-spreadsheet-toolbar .x-spreadsheet-toolbar-btns {
569
+ display: inline-flex;
570
+ }
571
+ .x-spreadsheet-toolbar .x-spreadsheet-toolbar-more {
572
+ padding: 0 6px 6px;
573
+ text-align: left;
574
+ }
575
+ .x-spreadsheet-toolbar .x-spreadsheet-toolbar-more .x-spreadsheet-toolbar-divider {
576
+ margin-top: 0;
577
+ }
578
+ .x-spreadsheet-toolbar .x-spreadsheet-toolbar-btn {
579
+ flex: 0 0 auto;
580
+ display: inline-block;
581
+ border: 1px solid transparent;
582
+ height: 26px;
583
+ line-height: 26px;
584
+ min-width: 26px;
585
+ margin: 6px 1px 0;
586
+ padding: 0;
587
+ text-align: center;
588
+ border-radius: 2px;
589
+ }
590
+ .x-spreadsheet-toolbar .x-spreadsheet-toolbar-btn.disabled {
591
+ pointer-events: none;
592
+ opacity: 0.5;
593
+ }
594
+ .x-spreadsheet-toolbar .x-spreadsheet-toolbar-btn:hover,
595
+ .x-spreadsheet-toolbar .x-spreadsheet-toolbar-btn.active {
596
+ background: rgba(0, 0, 0, 0.08);
597
+ }
598
+ .x-spreadsheet-toolbar .x-spreadsheet-menubar-btn {
599
+ flex: 0 0 auto;
600
+ border: 1px solid transparent;
601
+ height: 26px;
602
+ line-height: 26px;
603
+ list-style: none;
604
+ padding: 2px 10px;
605
+ cursor: default;
606
+ min-width: 26px;
607
+ margin: 6px 1px 0;
608
+ text-align: left;
609
+ border-radius: 2px;
610
+ }
611
+ .x-spreadsheet-toolbar .x-spreadsheet-menubar-btn.disabled {
612
+ pointer-events: none;
613
+ opacity: 0.5;
614
+ }
615
+ .x-spreadsheet-toolbar .x-spreadsheet-menubar-btn:hover,
616
+ .x-spreadsheet-toolbar .x-spreadsheet-menubar-btn.active {
617
+ background: rgba(0, 0, 0, 0.08);
618
+ }
619
+ .x-spreadsheet-toolbar-divider {
620
+ display: inline-block;
621
+ border-right: 1px solid #e0e2e4;
622
+ width: 0;
623
+ vertical-align: middle;
624
+ height: 18px;
625
+ margin: 12px 3px 0;
626
+ }
627
+ .x-spreadsheet-print {
628
+ position: absolute;
629
+ left: 0;
630
+ top: 0;
631
+ z-index: 100;
632
+ width: 100%;
633
+ height: 100%;
634
+ display: flex;
635
+ flex-direction: column;
636
+ }
637
+ .x-spreadsheet-print-bar {
638
+ background: #424242;
639
+ height: 60px;
640
+ line-height: 60px;
641
+ padding: 0 30px;
642
+ }
643
+ .x-spreadsheet-print-bar .-title {
644
+ color: #fff;
645
+ font-weight: bold;
646
+ font-size: 1.2em;
647
+ float: left;
648
+ }
649
+ .x-spreadsheet-print-bar .-right {
650
+ float: right;
651
+ margin-top: 12px;
652
+ }
653
+ .x-spreadsheet-print-content {
654
+ display: flex;
655
+ flex: auto;
656
+ flex-direction: row;
657
+ background: #d0d0d0;
658
+ height: calc(100% - 60px);
659
+ }
660
+ .x-spreadsheet-print-content .-sider {
661
+ flex: 0 0 300px;
662
+ width: 300px;
663
+ border-left: 2px solid #ccc;
664
+ background: #fff;
665
+ }
666
+ .x-spreadsheet-print-content .-content {
667
+ flex: auto;
668
+ overflow-x: auto;
669
+ overflow-y: scroll;
670
+ height: 100%;
671
+ }
672
+ .x-spreadsheet-canvas-card-wraper {
673
+ margin: 40px 20px;
674
+ }
675
+ .x-spreadsheet-canvas-card {
676
+ background: #fff;
677
+ margin: auto;
678
+ page-break-before: auto;
679
+ page-break-after: always;
680
+ box-shadow: 0 8px 10px 1px rgba(0, 0, 0, 0.14), 0 3px 14px 3px rgba(0, 0, 0, 0.12), 0 4px 5px 0 rgba(0, 0, 0, 0.2);
681
+ }
682
+ .x-spreadsheet-calendar {
683
+ color: rgba(0, 0, 0, 0.65);
684
+ background: #ffffff;
685
+ user-select: none;
686
+ }
687
+ .x-spreadsheet-calendar .calendar-header {
688
+ font-weight: 700;
689
+ line-height: 30px;
690
+ text-align: center;
691
+ width: 100%;
692
+ float: left;
693
+ background: #f9fafb;
694
+ }
695
+ .x-spreadsheet-calendar .calendar-header .calendar-header-left {
696
+ padding-left: 5px;
697
+ float: left;
698
+ }
699
+ .x-spreadsheet-calendar .calendar-header .calendar-header-right {
700
+ float: right;
701
+ }
702
+ .x-spreadsheet-calendar .calendar-header .calendar-header-right a {
703
+ padding: 3px 0;
704
+ margin-right: 2px;
705
+ border-radius: 2px;
706
+ }
707
+ .x-spreadsheet-calendar .calendar-header .calendar-header-right a:hover {
708
+ background: rgba(0, 0, 0, 0.08);
709
+ }
710
+ .x-spreadsheet-calendar .calendar-body {
711
+ border-collapse: collapse;
712
+ border-spacing: 0;
713
+ }
714
+ .x-spreadsheet-calendar .calendar-body th,
715
+ .x-spreadsheet-calendar .calendar-body td {
716
+ width: 14.28571429%;
717
+ min-width: 32px;
718
+ text-align: center;
719
+ font-weight: 700;
720
+ line-height: 30px;
721
+ padding: 0;
722
+ }
723
+ .x-spreadsheet-calendar .calendar-body td > .cell:hover {
724
+ background: #ecf6fd;
725
+ }
726
+ .x-spreadsheet-calendar .calendar-body td > .cell.active,
727
+ .x-spreadsheet-calendar .calendar-body td > .cell.active:hover {
728
+ background: #ecf6fd;
729
+ color: #2185D0;
730
+ }
731
+ .x-spreadsheet-calendar .calendar-body td > .cell.disabled {
732
+ pointer-events: none;
733
+ opacity: 0.5;
734
+ }
735
+ .x-spreadsheet-datepicker {
736
+ box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.2);
737
+ position: absolute;
738
+ left: 0;
739
+ top: calc(100% + 5px);
740
+ z-index: 10;
741
+ width: auto;
742
+ }
743
+ .x-spreadsheet-buttons {
744
+ display: flex;
745
+ justify-content: flex-end;
746
+ }
747
+ .x-spreadsheet-buttons .x-spreadsheet-button {
748
+ margin-left: 8px;
749
+ }
750
+ .x-spreadsheet-button {
751
+ display: inline-block;
752
+ border-radius: 3px;
753
+ line-height: 1em;
754
+ min-height: 1em;
755
+ white-space: nowrap;
756
+ text-align: center;
757
+ cursor: pointer;
758
+ font-size: 1em;
759
+ font-weight: 700;
760
+ padding: 0.75em 1em;
761
+ color: rgba(0, 0, 0, 0.6);
762
+ background: #E0E1E2;
763
+ text-decoration: none;
764
+ font-family: "Lato", "proxima-nova", "Helvetica Neue", Arial, sans-serif;
765
+ outline: none;
766
+ vertical-align: baseline;
767
+ zoom: 1;
768
+ user-select: none;
769
+ transition: all 0.1s linear;
770
+ }
771
+ .x-spreadsheet-button.active,
772
+ .x-spreadsheet-button:hover {
773
+ background-color: #C0C1C2;
774
+ color: rgba(0, 0, 0, 0.8);
775
+ }
776
+ .x-spreadsheet-button.primary {
777
+ color: #fff;
778
+ background-color: #2185D0;
779
+ }
780
+ .x-spreadsheet-button.primary:hover,
781
+ .x-spreadsheet-button.primary.active {
782
+ color: #fff;
783
+ background-color: #1678c2;
784
+ }
785
+ .x-spreadsheet-button.formbt {
786
+ display: flex;
787
+ align-items: center;
788
+ margin-bottom: 10px;
789
+ margin-left: 5px;
790
+ background-color: #d9dc22;
791
+ font-size: 8px;
792
+ }
793
+ .x-spreadsheet-form-input {
794
+ font-size: 1em;
795
+ position: relative;
796
+ font-weight: 400;
797
+ display: inline-flex;
798
+ color: rgba(0, 0, 0, 0.87);
799
+ }
800
+ .x-spreadsheet-form-input input {
801
+ z-index: 1;
802
+ margin: 0;
803
+ max-width: 100%;
804
+ flex: 1 0 auto;
805
+ outline: 0;
806
+ -webkit-tap-highlight-color: rgba(255, 255, 255, 0);
807
+ text-align: left;
808
+ line-height: 30px;
809
+ height: 30px;
810
+ padding: 0 8px;
811
+ background: #fff;
812
+ border: 1px solid #e9e9e9;
813
+ border-radius: 3px;
814
+ transition: box-shadow 0.1s ease, border-color 0.1s ease;
815
+ box-shadow: inset 0 1px 2px hsla(0, 0%, 4%, 0.06);
816
+ }
817
+ .x-spreadsheet-form-input input:focus {
818
+ border-color: #4b89ff;
819
+ box-shadow: inset 0 1px 2px rgba(75, 137, 255, 0.2);
820
+ }
821
+ .x-spreadsheet-form-checkbox {
822
+ margin-left: 5px;
823
+ cursor: pointer;
824
+ }
825
+ .x-spreadsheet-form-select {
826
+ position: relative;
827
+ display: inline-block;
828
+ background: #fff;
829
+ border: 1px solid #e9e9e9;
830
+ border-radius: 2px;
831
+ cursor: pointer;
832
+ color: rgba(0, 0, 0, 0.87);
833
+ user-select: none;
834
+ box-shadow: inset 0 1px 2px hsla(0, 0%, 4%, 0.06);
835
+ }
836
+ .x-spreadsheet-form-select .input-text {
837
+ text-overflow: ellipsis;
838
+ white-space: nowrap;
839
+ min-width: 60px;
840
+ width: auto;
841
+ height: 30px;
842
+ line-height: 30px;
843
+ padding: 0 8px;
844
+ }
845
+ .x-spreadsheet-form-fields {
846
+ display: flex;
847
+ flex-direction: row;
848
+ flex-wrap: wrap;
849
+ }
850
+ .x-spreadsheet-form-fields .x-spreadsheet-form-field {
851
+ flex: 0 1 auto;
852
+ }
853
+ .x-spreadsheet-form-fields .x-spreadsheet-form-field .label {
854
+ display: inline-block;
855
+ margin: 0 10px 0 0;
856
+ color: rgba(0, 0, 0, 0.87);
857
+ }
858
+ .x-spreadsheet-form-field {
859
+ display: block;
860
+ vertical-align: middle;
861
+ margin-left: 10px;
862
+ margin-bottom: 10px;
863
+ }
864
+ .x-spreadsheet-form-field:first-child {
865
+ margin-left: 0;
866
+ }
867
+ .x-spreadsheet-form-field.error .x-spreadsheet-form-select,
868
+ .x-spreadsheet-form-field.error input {
869
+ border-color: #f04134;
870
+ }
871
+ .x-spreadsheet-form-field .tip {
872
+ color: #f04134;
873
+ font-size: 0.9em;
874
+ }
875
+ .x-spreadsheet-dimmer {
876
+ display: none;
877
+ position: absolute;
878
+ top: 0 !important;
879
+ left: 0 !important;
880
+ width: 100%;
881
+ height: 100%;
882
+ text-align: center;
883
+ vertical-align: middle;
884
+ background-color: rgba(0, 0, 0, 0.6);
885
+ opacity: 0;
886
+ -webkit-animation-fill-mode: both;
887
+ animation-fill-mode: both;
888
+ -webkit-animation-duration: 0.5s;
889
+ animation-duration: 0.5s;
890
+ transition: background-color 0.5s linear;
891
+ user-select: none;
892
+ z-index: 1000;
893
+ }
894
+ .x-spreadsheet-dimmer.active {
895
+ display: block;
896
+ opacity: 1;
897
+ }
898
+ form fieldset {
899
+ border: none;
900
+ }
901
+ form fieldset label {
902
+ display: block;
903
+ margin-bottom: 0.5em;
904
+ font-size: 1em;
905
+ color: #666;
906
+ }
907
+ form fieldset select {
908
+ font-size: 1.1em;
909
+ width: 100%;
910
+ background-color: #fff;
911
+ border: none;
912
+ border-bottom: 2px solid #ddd;
913
+ padding: 0.5em 0.85em;
914
+ border-radius: 2px;
915
+ }
916
+ .x-spreadsheet-modal,
917
+ .x-spreadsheet-toast {
918
+ font-size: 13px;
919
+ position: fixed;
920
+ z-index: 1001;
921
+ text-align: left;
922
+ line-height: 1.25em;
923
+ min-width: 360px;
924
+ color: rgba(0, 0, 0, 0.87);
925
+ font-family: 'Lato', 'Source Sans Pro', Roboto, Helvetica, Arial, sans-serif;
926
+ border-radius: 4px;
927
+ border: 1px solid rgba(0, 0, 0, 0.1);
928
+ background-color: #fff;
929
+ background-clip: padding-box;
930
+ box-shadow: rgba(0, 0, 0, 0.2) 0 2px 8px;
931
+ }
932
+ .x-spreadsheet-toast {
933
+ background-color: rgba(255, 255, 255, 0.85);
934
+ }
935
+ .x-spreadsheet-modal-header,
936
+ .x-spreadsheet-toast-header {
937
+ font-weight: 600;
938
+ background-clip: padding-box;
939
+ background-color: rgba(255, 255, 255, 0.85);
940
+ border-bottom: 1px solid rgba(0, 0, 0, 0.05);
941
+ border-radius: 4px 4px 0 0;
942
+ }
943
+ .x-spreadsheet-modal-header .x-spreadsheet-icon,
944
+ .x-spreadsheet-toast-header .x-spreadsheet-icon {
945
+ position: absolute;
946
+ right: 0.8em;
947
+ top: 0.65em;
948
+ border-radius: 18px;
949
+ }
950
+ .x-spreadsheet-modal-header .x-spreadsheet-icon:hover,
951
+ .x-spreadsheet-toast-header .x-spreadsheet-icon:hover {
952
+ opacity: 1;
953
+ background: rgba(0, 0, 0, 0.08);
954
+ }
955
+ .x-spreadsheet-toast-header {
956
+ color: #F2711C;
957
+ }
958
+ .x-spreadsheet-modal-header {
959
+ border-bottom: 1px solid #e0e2e4;
960
+ background: rgba(0, 0, 0, 0.08);
961
+ font-size: 1.0785em;
962
+ }
963
+ .x-spreadsheet-modal-header,
964
+ .x-spreadsheet-modal-content,
965
+ .x-spreadsheet-toast-header,
966
+ .x-spreadsheet-toast-content {
967
+ padding: 0.75em 1em;
968
+ }
969
+ @media screen and (min-width: 320px) and (max-width: 480px) {
970
+ html,
971
+ body {
972
+ overscroll-behavior-y: contain;
973
+ }
974
+ .x-spreadsheet-contextmenu {
975
+ width: 70px !important;
976
+ }
977
+ .x-spreadsheet-selector-corner-shape {
978
+ position: absolute;
979
+ right: 0;
980
+ left: 0;
981
+ bottom: 0;
982
+ top: 0;
983
+ margin: auto;
984
+ height: 10px;
985
+ width: 10px;
986
+ border-radius: 50%;
987
+ background: #4b89ff;
988
+ }
989
+ .x-spreadsheet-selector-corner {
990
+ right: -26px !important;
991
+ bottom: -26px !important;
992
+ height: 50px !important;
993
+ width: 50px !important;
994
+ background: unset !important;
995
+ border: unset !important;
996
+ }
997
+ .x-spreadsheet-selector-corner-tl {
998
+ left: -26px;
999
+ top: -26px;
1000
+ pointer-events: auto;
1001
+ position: absolute;
1002
+ cursor: crosshair;
1003
+ font-size: 0;
1004
+ height: 50px;
1005
+ width: 50px;
1006
+ border: unset;
1007
+ background: unset;
1008
+ }
1009
+ .x-spreadsheet-toolbar {
1010
+ height: 40px;
1011
+ padding: 0 12px;
1012
+ text-align: left;
1013
+ background: #f5f6f7;
1014
+ display: flex;
1015
+ justify-content: space-between;
1016
+ }
1017
+ .x-spreadsheet-toolbar,
1018
+ .x-spreadsheet-bottombar {
1019
+ padding: 0 ;
1020
+ }
1021
+ .x-spreadsheet {
1022
+ height: 100%;
1023
+ width: 100%;
1024
+ display: flex;
1025
+ flex-direction: column;
1026
+ }
1027
+ .x-spreadsheet-bottombar {
1028
+ position: fixed;
1029
+ width: 100%;
1030
+ bottom: 0;
1031
+ z-index: 99999;
1032
+ }
1033
+ .x-spreadsheet-bottombar .x-spreadsheet-menu {
1034
+ display: flex;
1035
+ overflow-x: scroll;
1036
+ overflow-y: hidden;
1037
+ }
1038
+ .x-spreadsheet-form-checkbox {
1039
+ margin-left: -25px;
1040
+ cursor: pointer;
1041
+ }
1042
+ }
1043
+ .x-spreadsheet-icon {
1044
+ width: 18px;
1045
+ height: 18px;
1046
+ margin: 1px 1px 2px 1px;
1047
+ text-align: center;
1048
+ vertical-align: middle;
1049
+ user-select: none;
1050
+ overflow: hidden;
1051
+ position: relative;
1052
+ display: inline-block;
1053
+ }
1054
+ .x-spreadsheet-icon .x-spreadsheet-icon-img {
1055
+ background-image: url(05f087c9088a0b2278c09809fc7b57c7.svg);
1056
+ position: absolute;
1057
+ width: 262px;
1058
+ height: 444px;
1059
+ opacity: 0.56;
1060
+ }
1061
+ .x-spreadsheet-icon .x-spreadsheet-icon-img.undo {
1062
+ left: 0;
1063
+ top: 0;
1064
+ }
1065
+ .x-spreadsheet-icon .x-spreadsheet-icon-img.redo {
1066
+ left: -18px;
1067
+ top: 0;
1068
+ }
1069
+ .x-spreadsheet-icon .x-spreadsheet-icon-img.print {
1070
+ left: -36px;
1071
+ top: 0;
1072
+ }
1073
+ .x-spreadsheet-icon .x-spreadsheet-icon-img.paintformat {
1074
+ left: -54px;
1075
+ top: 0;
1076
+ }
1077
+ .x-spreadsheet-icon .x-spreadsheet-icon-img.clearformat {
1078
+ left: -72px;
1079
+ top: 0;
1080
+ }
1081
+ .x-spreadsheet-icon .x-spreadsheet-icon-img.font-bold {
1082
+ left: -90px;
1083
+ top: 0;
1084
+ }
1085
+ .x-spreadsheet-icon .x-spreadsheet-icon-img.font-italic {
1086
+ left: -108px;
1087
+ top: 0;
1088
+ }
1089
+ .x-spreadsheet-icon .x-spreadsheet-icon-img.underline {
1090
+ left: -126px;
1091
+ top: 0;
1092
+ }
1093
+ .x-spreadsheet-icon .x-spreadsheet-icon-img.strike {
1094
+ left: -144px;
1095
+ top: 0;
1096
+ }
1097
+ .x-spreadsheet-icon .x-spreadsheet-icon-img.color {
1098
+ left: -162px;
1099
+ top: 0;
1100
+ }
1101
+ .x-spreadsheet-icon .x-spreadsheet-icon-img.bgcolor {
1102
+ left: -180px;
1103
+ top: 0;
1104
+ }
1105
+ .x-spreadsheet-icon .x-spreadsheet-icon-img.merge {
1106
+ left: -198px;
1107
+ top: 0;
1108
+ }
1109
+ .x-spreadsheet-icon .x-spreadsheet-icon-img.align-left {
1110
+ left: -216px;
1111
+ top: 0;
1112
+ }
1113
+ .x-spreadsheet-icon .x-spreadsheet-icon-img.align-center {
1114
+ left: -234px;
1115
+ top: 0;
1116
+ }
1117
+ .x-spreadsheet-icon .x-spreadsheet-icon-img.align-right {
1118
+ left: 0;
1119
+ top: -18px;
1120
+ }
1121
+ .x-spreadsheet-icon .x-spreadsheet-icon-img.align-top {
1122
+ left: -18px;
1123
+ top: -18px;
1124
+ }
1125
+ .x-spreadsheet-icon .x-spreadsheet-icon-img.align-middle {
1126
+ left: -36px;
1127
+ top: -18px;
1128
+ }
1129
+ .x-spreadsheet-icon .x-spreadsheet-icon-img.align-bottom {
1130
+ left: -54px;
1131
+ top: -18px;
1132
+ }
1133
+ .x-spreadsheet-icon .x-spreadsheet-icon-img.textwrap {
1134
+ left: -72px;
1135
+ top: -18px;
1136
+ }
1137
+ .x-spreadsheet-icon .x-spreadsheet-icon-img.autofilter {
1138
+ left: -90px;
1139
+ top: -18px;
1140
+ }
1141
+ .x-spreadsheet-icon .x-spreadsheet-icon-img.formula {
1142
+ left: -108px;
1143
+ top: -18px;
1144
+ }
1145
+ .x-spreadsheet-icon .x-spreadsheet-icon-img.arrow-down {
1146
+ left: -126px;
1147
+ top: -18px;
1148
+ }
1149
+ .x-spreadsheet-icon .x-spreadsheet-icon-img.arrow-right {
1150
+ left: -144px;
1151
+ top: -18px;
1152
+ }
1153
+ .x-spreadsheet-icon .x-spreadsheet-icon-img.link {
1154
+ left: -162px;
1155
+ top: -18px;
1156
+ }
1157
+ .x-spreadsheet-icon .x-spreadsheet-icon-img.chart {
1158
+ left: -180px;
1159
+ top: -18px;
1160
+ }
1161
+ .x-spreadsheet-icon .x-spreadsheet-icon-img.freeze {
1162
+ left: -198px;
1163
+ top: -18px;
1164
+ }
1165
+ .x-spreadsheet-icon .x-spreadsheet-icon-img.ellipsis {
1166
+ left: -216px;
1167
+ top: -18px;
1168
+ }
1169
+ .x-spreadsheet-icon .x-spreadsheet-icon-img.add {
1170
+ left: -234px;
1171
+ top: -18px;
1172
+ }
1173
+ .x-spreadsheet-icon .x-spreadsheet-icon-img.border-all {
1174
+ left: 0;
1175
+ top: -36px;
1176
+ }
1177
+ .x-spreadsheet-icon .x-spreadsheet-icon-img.border-inside {
1178
+ left: -18px;
1179
+ top: -36px;
1180
+ }
1181
+ .x-spreadsheet-icon .x-spreadsheet-icon-img.border-horizontal {
1182
+ left: -36px;
1183
+ top: -36px;
1184
+ }
1185
+ .x-spreadsheet-icon .x-spreadsheet-icon-img.border-vertical {
1186
+ left: -54px;
1187
+ top: -36px;
1188
+ }
1189
+ .x-spreadsheet-icon .x-spreadsheet-icon-img.border-outside {
1190
+ left: -72px;
1191
+ top: -36px;
1192
+ }
1193
+ .x-spreadsheet-icon .x-spreadsheet-icon-img.border-left {
1194
+ left: -90px;
1195
+ top: -36px;
1196
+ }
1197
+ .x-spreadsheet-icon .x-spreadsheet-icon-img.border-top {
1198
+ left: -108px;
1199
+ top: -36px;
1200
+ }
1201
+ .x-spreadsheet-icon .x-spreadsheet-icon-img.border-right {
1202
+ left: -126px;
1203
+ top: -36px;
1204
+ }
1205
+ .x-spreadsheet-icon .x-spreadsheet-icon-img.border-bottom {
1206
+ left: -144px;
1207
+ top: -36px;
1208
+ }
1209
+ .x-spreadsheet-icon .x-spreadsheet-icon-img.border-none {
1210
+ left: -162px;
1211
+ top: -36px;
1212
+ }
1213
+ .x-spreadsheet-icon .x-spreadsheet-icon-img.line-color {
1214
+ left: -180px;
1215
+ top: -36px;
1216
+ }
1217
+ .x-spreadsheet-icon .x-spreadsheet-icon-img.line-type {
1218
+ left: -198px;
1219
+ top: -36px;
1220
+ }
1221
+ .x-spreadsheet-icon .x-spreadsheet-icon-img.close {
1222
+ left: -234px;
1223
+ top: -36px;
1224
+ }
1225
+ .x-spreadsheet-icon .x-spreadsheet-icon-img.chevron-down {
1226
+ left: 0;
1227
+ top: -54px;
1228
+ }
1229
+ .x-spreadsheet-icon .x-spreadsheet-icon-img.menu-display-show {
1230
+ left: 0;
1231
+ top: -54px;
1232
+ }
1233
+ .x-spreadsheet-icon .x-spreadsheet-icon-img.chevron-up {
1234
+ left: -18px;
1235
+ top: -54px;
1236
+ }
1237
+ .x-spreadsheet-icon .x-spreadsheet-icon-img.menu-display-hide {
1238
+ left: -18px;
1239
+ top: -54px;
1240
+ }
1241
+ .x-spreadsheet-icon .x-spreadsheet-icon-img.chevron-left {
1242
+ left: -36px;
1243
+ top: -54px;
1244
+ }
1245
+ .x-spreadsheet-icon .x-spreadsheet-icon-img.chevron-right {
1246
+ left: -54px;
1247
+ top: -54px;
1248
+ }
1249
+ .x-spreadsheet-icon .x-spreadsheet-icon-img.sort {
1250
+ left: -126px;
1251
+ top: -54px;
1252
+ }
1253
+ .x-spreadsheet-icon .x-spreadsheet-icon-img.pagination {
1254
+ left: -108px;
1255
+ top: -54px;
1256
+ }
1257
+ .x-spreadsheet-icon .x-spreadsheet-icon-img.insertSheet {
1258
+ left: -108px;
1259
+ top: -54px;
1260
+ }
1261
+ .x-spreadsheet-icon .x-spreadsheet-icon-img.search {
1262
+ left: -144px;
1263
+ top: -54px;
1264
+ }
1265
+ .x-spreadsheet-icon .x-spreadsheet-icon-img.commentEdit {
1266
+ left: -162px;
1267
+ top: -54px;
1268
+ }
1269
+ .x-spreadsheet-icon .x-spreadsheet-icon-img.commentRemove {
1270
+ left: -180px;
1271
+ top: -54px;
1272
+ }
1273
+ .x-spreadsheet-icon .x-spreadsheet-icon-img.commentPrevious {
1274
+ left: -198px;
1275
+ top: -54px;
1276
+ }
1277
+ .x-spreadsheet-icon .x-spreadsheet-icon-img.commentNext {
1278
+ left: -216px;
1279
+ top: -54px;
1280
+ }
1281
+ .x-spreadsheet-icon .x-spreadsheet-icon-img.insert-image {
1282
+ left: 0px;
1283
+ top: -72px;
1284
+ }
1285
+ .x-spreadsheet-icon .x-spreadsheet-icon-img.insert-image-local {
1286
+ left: -18px;
1287
+ top: -72px;
1288
+ }
1289
+ .x-spreadsheet-icon .x-spreadsheet-icon-img.insert-image-url {
1290
+ left: -36px;
1291
+ top: -72px;
1292
+ }
1293
+ .x-spreadsheet-icon .x-spreadsheet-icon-img.download {
1294
+ left: -54px;
1295
+ top: -72px;
1296
+ }
1297
+ .x-spreadsheet-icon .x-spreadsheet-icon-img.insertComment {
1298
+ left: -72px;
1299
+ top: -72px;
1300
+ }
1301
+ .x-spreadsheet-icon .x-spreadsheet-icon-img.insertColumn {
1302
+ left: -90px;
1303
+ top: -72px;
1304
+ }
1305
+ .x-spreadsheet-icon .x-spreadsheet-icon-img.insertRow {
1306
+ left: -108px;
1307
+ top: -72px;
1308
+ }
1309
+ .x-spreadsheet-icon .x-spreadsheet-icon-img.savetocloud {
1310
+ left: -144px;
1311
+ top: -72px;
1312
+ }
1313
+ .x-spreadsheet-formula-bar {
1314
+ height: 25px;
1315
+ line-height: 25px;
1316
+ font-size: 12px;
1317
+ background: #f5f6f7;
1318
+ border-bottom: 1px solid #e0e2e4;
1319
+ resize: vertical;
1320
+ overflow: hidden;
1321
+ }
1322
+ .x-spreadsheet-bar-label {
1323
+ flex: 0 0 auto;
1324
+ display: inline-block;
1325
+ width: 60px;
1326
+ height: 100%;
1327
+ box-sizing: border-box;
1328
+ border-right: 1px solid #e0e2e4;
1329
+ text-align: center;
1330
+ line-height: inherit;
1331
+ background-color: #fff;
1332
+ color: #777;
1333
+ -webkit-touch-callout: none;
1334
+ -webkit-user-select: none;
1335
+ -moz-user-select: none;
1336
+ -ms-user-select: none;
1337
+ user-select: none;
1338
+ overflow: hidden;
1339
+ white-space: nowrap;
1340
+ text-overflow: ellipsis;
1341
+ padding: 0 4px;
1342
+ position: relative;
1343
+ float: left;
1344
+ }
1345
+ .x-spreadsheet-formula-input {
1346
+ flex: auto;
1347
+ padding: 4px 8px;
1348
+ line-height: 17px;
1349
+ font-size: 12px;
1350
+ overflow-y: auto;
1351
+ background: #fff;
1352
+ border: none;
1353
+ outline: none;
1354
+ height: 100%;
1355
+ }
1356
+ [contenteditable=true]:empty:before {
1357
+ content: attr(placeholder);
1358
+ position: initial;
1359
+ color: darkgray;
1360
+ }
1361
+ dialog {
1362
+ left: 190px;
1363
+ width: 300px;
1364
+ border: 1px solid darkgray;
1365
+ border-radius: 4px;
1366
+ padding: 0;
1367
+ margin: 0;
1368
+ background-color: #f9f9f9;
1369
+ }
1370
+ dialog p {
1371
+ margin: 0 0 0 5px;
1372
+ }
1373
+