@blocklet/editor 2.4.90 → 2.4.92

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.
@@ -1,531 +1,3 @@
1
- /**
2
- * Copyright (c) Meta Platforms, Inc. and affiliates.
3
- *
4
- * This source code is licensed under the MIT license found in the
5
- * LICENSE file in the root directory of this source tree.
6
- *
7
- */
8
- .editor-dev-button {
9
- position: relative;
10
- display: block;
11
- width: 40px;
12
- height: 40px;
13
- font-size: 12px;
14
- border-radius: 20px;
15
- border: none;
16
- cursor: pointer;
17
- outline: none;
18
- box-shadow: 0px 1px 10px rgba(0, 0, 0, 0.3);
19
- background-color: #444;
20
- }
21
-
22
- .editor-dev-button::after {
23
- content: '';
24
- position: absolute;
25
- top: 10px;
26
- right: 10px;
27
- bottom: 10px;
28
- left: 10px;
29
- display: block;
30
- background-size: contain;
31
- filter: invert(1);
32
- }
33
-
34
- .editor-dev-button:hover {
35
- background-color: #555;
36
- }
37
-
38
- .editor-dev-button.active {
39
- background-color: rgb(233, 35, 35);
40
- }
41
-
42
- .test-recorder-toolbar {
43
- display: flex;
44
- }
45
-
46
- .test-recorder-button {
47
- position: relative;
48
- display: block;
49
- width: 32px;
50
- height: 32px;
51
- font-size: 10px;
52
- padding: 6px 6px;
53
- border-radius: 4px;
54
- border: none;
55
- cursor: pointer;
56
- outline: none;
57
- box-shadow: 1px 2px 2px rgba(0, 0, 0, 0.4);
58
- background-color: #222;
59
- transition: box-shadow 50ms ease-out;
60
- }
61
-
62
- .test-recorder-button:active {
63
- box-shadow: 1px 2px 4px rgba(0, 0, 0, 0.4);
64
- }
65
-
66
- .test-recorder-button + .test-recorder-button {
67
- margin-left: 4px;
68
- }
69
-
70
- .test-recorder-button::after {
71
- content: '';
72
- position: absolute;
73
- top: 8px;
74
- right: 8px;
75
- bottom: 8px;
76
- left: 8px;
77
- display: block;
78
- background-size: contain;
79
- filter: invert(1);
80
- }
81
-
82
- #options-button {
83
- position: fixed;
84
- left: 20px;
85
- bottom: 20px;
86
- }
87
-
88
- #test-recorder-button {
89
- position: fixed;
90
- left: 70px;
91
- bottom: 20px;
92
- }
93
-
94
- #paste-log-button {
95
- position: fixed;
96
- left: 120px;
97
- bottom: 20px;
98
- }
99
-
100
- #options-button::after {
101
- background-image: url(images/icons/gear.svg);
102
- }
103
-
104
- #test-recorder-button::after {
105
- background-image: url(images/icons/journal-code.svg);
106
- }
107
-
108
- #paste-log-button::after {
109
- background-image: url(images/icons/clipboard.svg);
110
- }
111
-
112
- #test-recorder-button-snapshot {
113
- margin-right: auto;
114
- }
115
-
116
- #test-recorder-button-snapshot::after {
117
- background-image: url(images/icons/camera.svg);
118
- }
119
-
120
- #test-recorder-button-copy::after {
121
- background-image: url(images/icons/clipboard.svg);
122
- }
123
-
124
- #test-recorder-button-download::after {
125
- background-image: url(images/icons/download.svg);
126
- }
127
-
128
- .typeahead-popover {
129
- box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.3);
130
- border-radius: 8px;
131
- z-index: 1;
132
- }
133
-
134
- .typeahead-popover ul {
135
- padding: 0;
136
- list-style: none;
137
- margin: 0;
138
- border-radius: 8px;
139
- max-height: 280px;
140
- overflow-y: scroll;
141
- }
142
-
143
- .typeahead-popover ul::-webkit-scrollbar {
144
- display: none;
145
- }
146
-
147
- .typeahead-popover ul {
148
- -ms-overflow-style: none;
149
- scrollbar-width: none;
150
- padding: 8px 0;
151
- }
152
-
153
- .typeahead-popover ul li {
154
- margin: 0;
155
- min-width: 180px;
156
- font-size: 14px;
157
- outline: none;
158
- cursor: pointer;
159
- }
160
-
161
- .typeahead-popover li {
162
- margin: 0 8px 0 8px;
163
- padding: 8px;
164
- cursor: pointer;
165
- line-height: 16px;
166
- font-size: 15px;
167
- display: flex;
168
- align-content: center;
169
- flex-direction: row;
170
- flex-shrink: 0;
171
- border: 0;
172
- }
173
-
174
- .typeahead-popover li.active {
175
- display: flex;
176
- width: 20px;
177
- height: 20px;
178
- background-size: contain;
179
- }
180
-
181
- .typeahead-popover li .text {
182
- display: flex;
183
- line-height: 20px;
184
- flex-grow: 1;
185
- min-width: 150px;
186
- }
187
-
188
- .typeahead-popover li .icon {
189
- display: flex;
190
- width: 20px;
191
- height: 20px;
192
- user-select: none;
193
- margin-right: 8px;
194
- line-height: 16px;
195
- background-size: contain;
196
- }
197
-
198
- .component-picker-menu {
199
- width: 200px;
200
- }
201
-
202
- .mentions-menu {
203
- width: 250px;
204
- }
205
-
206
- .auto-embed-menu {
207
- width: 200px;
208
- }
209
-
210
- .emoji-menu {
211
- width: 200px;
212
- }
213
-
214
- i.markdown {
215
- background-image: url(images/icons/markdown.svg);
216
- }
217
-
218
- i.import {
219
- background-image: url(images/icons/upload.svg);
220
- }
221
-
222
- i.export {
223
- background-image: url(images/icons/download.svg);
224
- }
225
-
226
- i.diagram-2 {
227
- background-image: url(images/icons/diagram-2.svg);
228
- }
229
-
230
- i.user {
231
- background-image: url(images/icons/user.svg);
232
- }
233
-
234
- i.equation {
235
- background-image: url(images/icons/plus-slash-minus.svg);
236
- }
237
-
238
- i.gif {
239
- background-image: url(images/icons/filetype-gif.svg);
240
- }
241
-
242
- i.copy {
243
- background-image: url(images/icons/copy.svg);
244
- }
245
-
246
- i.success {
247
- background-image: url(images/icons/success.svg);
248
- }
249
-
250
- i.prettier {
251
- background-image: url(images/icons/prettier.svg);
252
- }
253
-
254
- i.prettier-error {
255
- background-image: url(images/icons/prettier-error.svg);
256
- }
257
-
258
- .link-editor .button.active,
259
- .toolbar .button.active {
260
- background-color: rgb(223, 232, 250);
261
- }
262
-
263
- .link-editor .link-input {
264
- display: block;
265
- width: calc(100% - 24px);
266
- box-sizing: border-box;
267
- margin: 8px 12px;
268
- padding: 8px 12px;
269
- border-radius: 15px;
270
- font-size: 15px;
271
- border: 0;
272
- outline: 0;
273
- position: relative;
274
- font-family: inherit;
275
- }
276
-
277
- .link-editor div.link-edit {
278
- width: 35px;
279
- vertical-align: -0.25em;
280
- position: absolute;
281
- right: 0;
282
- top: 0;
283
- bottom: 0;
284
- cursor: pointer;
285
- font-size: 20px;
286
- display: flex;
287
- align-items: center;
288
- justify-content: center;
289
- }
290
-
291
- .link-editor .link-input a {
292
- text-decoration: none;
293
- display: block;
294
- white-space: nowrap;
295
- overflow: hidden;
296
- margin-right: 30px;
297
- text-overflow: ellipsis;
298
- }
299
-
300
- .link-editor .link-input a:hover {
301
- text-decoration: underline;
302
- }
303
-
304
- .link-editor .font-size-wrapper,
305
- .link-editor .font-family-wrapper {
306
- display: flex;
307
- margin: 0 4px;
308
- }
309
-
310
- .link-editor select {
311
- padding: 6px;
312
- border: none;
313
- background-color: rgba(0, 0, 0, 0.075);
314
- border-radius: 4px;
315
- }
316
-
317
- .mention {
318
- color: #666;
319
- }
320
-
321
- .mention:hover {
322
- text-decoration: underline;
323
- }
324
-
325
- .mention:before {
326
- display: inline-block;
327
- content: '@';
328
- }
329
-
330
- .mention-typeahead-item-avatar {
331
- width: 24px;
332
- height: 24px;
333
- border-radius: 15px;
334
- background-size: cover;
335
- }
336
-
337
- /* .mention-popover {
338
- position: absolute;
339
- left: 0;
340
- top: 20px;
341
- display: flex;
342
- flex-direction: column;
343
- justify-content: center;
344
- align-items: center;
345
- padding: 8px 16px;
346
- max-width: 120px;
347
- background-color: #fff;
348
- box-shadow: rgba(0, 0, 0, 0.2) 0 0 5px;
349
- border-radius: 5px;
350
- animation: mention-popover-anime ease 0.2s;
351
- }
352
-
353
- @keyframes mention-popover-anime {
354
- 0% {
355
- opacity: 0;
356
- }
357
- 100% {
358
- opacity: 1;
359
- }
360
- }
361
-
362
- .mention-popover-avatar {
363
- width: 30px;
364
- height: 30px;
365
- border-radius: 15px;
366
- background-size: cover;
367
- }
368
-
369
- .mention-popover-name {
370
- margin-top: 4px;
371
- font-size: 14px;
372
- color: rgb(50, 50, 50);
373
- } */
374
-
375
- @media screen and (min-width: 1100px) {
376
- .block-controls {
377
- width: 160px;
378
- }
379
- }
380
-
381
- #block-controls {
382
- display: block;
383
- position: absolute;
384
- right: 10px;
385
- width: 32px;
386
- height: 32px;
387
- box-sizing: border-box;
388
- box-shadow: rgba(0, 0, 0, 0.1) 0px 1px 2px 0px;
389
- top: 16px;
390
- z-index: 10;
391
- border-radius: 8px;
392
- border: 1px solid rgb(206, 208, 212);
393
- overflow: hidden;
394
- }
395
-
396
- #block-controls button {
397
- border: 1px solid white;
398
- background-color: #fff;
399
- display: block;
400
- transition: background-color 0.1s ease;
401
- cursor: pointer;
402
- outline: none;
403
- border-radius: 8px;
404
- padding: 3px;
405
- }
406
-
407
- #block-controls button:hover {
408
- background-color: #efefef;
409
- }
410
-
411
- #block-controls button:focus-visible {
412
- border-color: blue;
413
- }
414
-
415
- #block-controls span.block-type {
416
- background-size: contain;
417
- display: block;
418
- width: 18px;
419
- height: 18px;
420
- margin: 2px;
421
- }
422
-
423
- .characters-limit {
424
- color: #888;
425
- font-size: 12px;
426
- text-align: right;
427
- display: block;
428
- position: absolute;
429
- left: 12px;
430
- bottom: 5px;
431
- }
432
-
433
- .characters-limit.characters-limit-exceeded {
434
- color: red;
435
- }
436
-
437
- .dropdown {
438
- z-index: 10001;
439
- display: block;
440
- position: fixed;
441
- border-radius: 8px;
442
- min-height: 40px;
443
- }
444
-
445
- .dropdown .item {
446
- padding: 8px;
447
- cursor: pointer;
448
- line-height: 16px;
449
- font-size: 15px;
450
- display: flex;
451
- align-content: center;
452
- flex-direction: row;
453
- flex-shrink: 0;
454
- justify-content: space-between;
455
- border: 0;
456
- max-width: 250px;
457
- min-width: 100px;
458
- }
459
-
460
- .dropdown .item.fontsize-item,
461
- .dropdown .item.fontsize-item .text {
462
- min-width: unset;
463
- }
464
-
465
- .dropdown .item .active {
466
- display: flex;
467
- width: 20px;
468
- height: 20px;
469
- background-size: contain;
470
- }
471
-
472
- .dropdown .item:first-child {
473
- margin-top: 8px;
474
- }
475
-
476
- .dropdown .item:last-child {
477
- margin-bottom: 8px;
478
- }
479
-
480
- .dropdown .item .text {
481
- display: flex;
482
- line-height: 20px;
483
- flex-grow: 1;
484
- min-width: 150px;
485
- }
486
-
487
- .dropdown .item .icon {
488
- display: flex;
489
- width: 20px;
490
- height: 20px;
491
- user-select: none;
492
- margin-right: 12px;
493
- line-height: 16px;
494
- background-size: contain;
495
- background-position: center;
496
- background-repeat: no-repeat;
497
- }
498
-
499
- .dropdown .divider {
500
- width: auto;
501
- margin: 4px 8px;
502
- height: 1px;
503
- }
504
-
505
- .dropdown-button-text {
506
- margin-left: 8px;
507
- }
508
-
509
- @media screen and (max-width: 1100px) {
510
- .dropdown-button-text {
511
- display: none !important;
512
- }
513
- .font-size .dropdown-button-text {
514
- display: flex !important;
515
- }
516
- .code-language .dropdown-button-text {
517
- display: flex !important;
518
- }
519
- }
520
-
521
- .switches {
522
- z-index: 6;
523
- position: fixed;
524
- left: 10px;
525
- bottom: 70px;
526
- animation: slide-in 0.4s ease;
527
- }
528
-
529
1
  @keyframes slide-in {
530
2
  0% {
531
3
  opacity: 0;
@@ -537,198 +9,6 @@ i.prettier-error {
537
9
  }
538
10
  }
539
11
 
540
- .switch {
541
- display: block;
542
- color: #444;
543
- margin: 5px 0;
544
- background-color: rgba(238, 238, 238, 0.7);
545
- padding: 5px 10px;
546
- border-radius: 10px;
547
- }
548
-
549
- #rich-text-switch {
550
- right: 0;
551
- }
552
-
553
- #character-count-switch {
554
- right: 130px;
555
- }
556
-
557
- .switch label {
558
- margin-right: 5px;
559
- line-height: 24px;
560
- width: 100px;
561
- font-size: 14px;
562
- display: inline-block;
563
- vertical-align: middle;
564
- }
565
-
566
- .switch button {
567
- background-color: rgb(206, 208, 212);
568
- height: 24px;
569
- box-sizing: border-box;
570
- border-radius: 12px;
571
- width: 44px;
572
- display: inline-block;
573
- vertical-align: middle;
574
- position: relative;
575
- outline: none;
576
- cursor: pointer;
577
- transition: background-color 0.1s;
578
- border: 2px solid transparent;
579
- }
580
-
581
- .switch button:focus-visible {
582
- border-color: blue;
583
- }
584
-
585
- .switch button span {
586
- top: 0px;
587
- left: 0px;
588
- display: block;
589
- position: absolute;
590
- width: 20px;
591
- height: 20px;
592
- border-radius: 12px;
593
- background-color: white;
594
- transition: transform 0.2s;
595
- }
596
-
597
- .switch button[aria-checked='true'] {
598
- background-color: rgb(24, 119, 242);
599
- }
600
-
601
- .switch button[aria-checked='true'] span {
602
- transform: translateX(20px);
603
- }
604
-
605
- .emoji {
606
- color: transparent;
607
- caret-color: rgb(5, 5, 5);
608
- background-size: 16px 16px;
609
- background-position: center;
610
- background-repeat: no-repeat;
611
- vertical-align: middle;
612
- margin: 0 -1px;
613
- }
614
-
615
- .emoji-inner {
616
- padding: 0 0.15em;
617
- }
618
-
619
- .emoji-inner::selection {
620
- color: transparent;
621
- background-color: rgba(150, 150, 150, 0.4);
622
- }
623
-
624
- .emoji-inner::moz-selection {
625
- color: transparent;
626
- background-color: rgba(150, 150, 150, 0.4);
627
- }
628
-
629
- .emoji.happysmile {
630
- background-image: url(images/emoji/1F642.png);
631
- }
632
-
633
- .emoji.veryhappysmile {
634
- background-image: url(images/emoji/1F600.png);
635
- }
636
-
637
- .emoji.unhappysmile {
638
- background-image: url(images/emoji/1F641.png);
639
- }
640
-
641
- .emoji.heart {
642
- background-image: url(images/emoji/2764.png);
643
- }
644
-
645
- .keyword {
646
- color: rgb(241, 118, 94);
647
- font-weight: bold;
648
- }
649
-
650
- .actions {
651
- position: absolute;
652
- text-align: right;
653
- padding: 10px;
654
- bottom: 0;
655
- right: 0;
656
- }
657
-
658
- .actions.tree-view {
659
- border-bottom-left-radius: 0;
660
- border-bottom-right-radius: 0;
661
- }
662
-
663
- .actions i {
664
- background-size: contain;
665
- display: inline-block;
666
- height: 15px;
667
- width: 15px;
668
- vertical-align: -0.25em;
669
- }
670
-
671
- .action-button {
672
- background-color: #eee;
673
- border: 0;
674
- padding: 8px 12px;
675
- position: relative;
676
- margin-left: 5px;
677
- border-radius: 15px;
678
- color: #222;
679
- cursor: pointer;
680
- display: flex;
681
- }
682
-
683
- .action-button .MuiLoadingButton-loadingIndicator {
684
- position: relative;
685
- left: 0;
686
- margin-right: 8px;
687
- }
688
-
689
- .action-button:hover {
690
- background-color: #ddd;
691
- color: #000;
692
- }
693
-
694
- .action-button-mic.active {
695
- animation: mic-pulsate-color 3s infinite;
696
- }
697
- button.action-button:disabled {
698
- cursor: not-allowed;
699
- }
700
-
701
- .table-cell-action-button-container {
702
- position: absolute;
703
- z-index: 3;
704
- top: 0;
705
- left: 0;
706
- will-change: transform;
707
- }
708
- .table-cell-action-button-container.table-cell-action-button-container--active {
709
- pointer-events: auto;
710
- opacity: 1;
711
- }
712
- .table-cell-action-button-container.table-cell-action-button-container--inactive {
713
- pointer-events: none;
714
- opacity: 0;
715
- }
716
-
717
- .table-cell-action-button {
718
- display: flex;
719
- justify-content: center;
720
- align-items: center;
721
- border: 0;
722
- position: absolute;
723
- top: 10px;
724
- right: 10px;
725
- border-radius: 15px;
726
- color: #222;
727
- display: inline-block;
728
- cursor: pointer;
729
- opacity: 0.75;
730
- }
731
-
732
12
  @keyframes mic-pulsate-color {
733
13
  0% {
734
14
  background-color: #ffdcdc;
@@ -741,60 +21,6 @@ button.action-button:disabled {
741
21
  }
742
22
  }
743
23
 
744
- .debug-timetravel-panel {
745
- overflow: hidden;
746
- padding: 0 0 10px 0;
747
- margin: auto;
748
- display: flex;
749
- }
750
-
751
- .debug-timetravel-panel-slider {
752
- padding: 0;
753
- flex: 8;
754
- }
755
-
756
- .debug-timetravel-panel-button {
757
- padding: 0;
758
- border: 0;
759
- background: none;
760
- flex: 1;
761
- color: #fff;
762
- font-size: 12px;
763
- }
764
-
765
- .debug-timetravel-panel-button:hover {
766
- text-decoration: underline;
767
- }
768
-
769
- .debug-timetravel-button {
770
- border: 0;
771
- padding: 0;
772
- font-size: 12px;
773
- top: 10px;
774
- right: 15px;
775
- position: absolute;
776
- background: none;
777
- color: #fff;
778
- }
779
-
780
- .debug-timetravel-button:hover {
781
- text-decoration: underline;
782
- }
783
-
784
- .connecting {
785
- font-size: 15px;
786
- color: #999;
787
- overflow: hidden;
788
- position: absolute;
789
- text-overflow: ellipsis;
790
- top: 10px;
791
- left: 10px;
792
- user-select: none;
793
- white-space: nowrap;
794
- display: inline-block;
795
- pointer-events: none;
796
- }
797
-
798
24
  .ltr {
799
25
  text-align: left;
800
26
  }
@@ -803,131 +29,6 @@ button.action-button:disabled {
803
29
  text-align: right;
804
30
  }
805
31
 
806
- @container toolbar (max-width: 700px) {
807
- .toolbar-item.font-size,
808
- .toolbar-item.code,
809
- .toolbar-item.alignment,
810
- .toolbar-item.link,
811
- .toolbar-item.aide,
812
- .toolbar-item.color-picker,
813
- .toolbar-item.text-format-additional {
814
- display: none !important;
815
- }
816
- }
817
-
818
- .toolbar {
819
- display: flex;
820
- margin-bottom: 1px;
821
- padding: 4px;
822
- border-top-left-radius: 4px;
823
- border-top-right-radius: 4px;
824
- vertical-align: middle;
825
- overflow: auto;
826
- container: toolbar / inline-size;
827
- }
828
-
829
- .toolbar button.toolbar-item {
830
- border: 0;
831
- display: flex;
832
- background: none;
833
- border-radius: 8px;
834
- padding: 8px;
835
- cursor: pointer;
836
- vertical-align: middle;
837
- flex-shrink: 0;
838
- align-items: center;
839
- }
840
-
841
- .toolbar button.toolbar-item:disabled {
842
- cursor: not-allowed;
843
- }
844
-
845
- .toolbar button.toolbar-item.spaced {
846
- margin-right: 4px;
847
- }
848
-
849
- .toolbar button.toolbar-item i.format {
850
- background-size: contain;
851
- display: inline-block;
852
- height: 18px;
853
- width: 18px;
854
- vertical-align: -0.25em;
855
- display: flex;
856
- opacity: 0.6;
857
- }
858
-
859
- .toolbar button.toolbar-item:disabled .icon,
860
- .toolbar button.toolbar-item:disabled .text,
861
- .toolbar button.toolbar-item:disabled i.format,
862
- .toolbar button.toolbar-item:disabled .chevron-down {
863
- opacity: 0.2;
864
- }
865
-
866
- .toolbar button.toolbar-item.active i {
867
- opacity: 1;
868
- }
869
-
870
- .toolbar .toolbar-item.font-family .text {
871
- display: block;
872
- max-width: 40px;
873
- }
874
-
875
- .toolbar .code-language {
876
- width: 150px;
877
- }
878
-
879
- .toolbar .toolbar-item .text {
880
- display: flex;
881
- line-height: 20px;
882
- vertical-align: middle;
883
- font-size: 14px;
884
- color: #777;
885
- text-overflow: ellipsis;
886
- overflow: hidden;
887
- height: 20px;
888
- text-align: left;
889
- }
890
-
891
- .toolbar .toolbar-item .icon {
892
- display: flex;
893
- width: 20px;
894
- height: 20px;
895
- user-select: none;
896
- line-height: 16px;
897
- background-size: contain;
898
- }
899
-
900
- .toolbar .toolbar-item .iconify {
901
- display: flex;
902
- width: 20px;
903
- height: 20px;
904
- }
905
-
906
- .toolbar i.chevron-down {
907
- margin-top: 3px;
908
- margin-left: auto;
909
- width: 16px;
910
- height: 16px;
911
- display: flex;
912
- user-select: none;
913
- }
914
-
915
- .toolbar i.chevron-down.inside {
916
- width: 16px;
917
- height: 16px;
918
- display: flex;
919
- margin-left: -25px;
920
- margin-top: 11px;
921
- margin-right: 10px;
922
- pointer-events: none;
923
- }
924
-
925
- .toolbar .divider {
926
- width: 1px;
927
- background-color: #eee;
928
- margin: 0 4px;
929
- }
930
-
931
32
  .excalidraw-button {
932
33
  border: 0;
933
34
  padding: 0;
@@ -942,15 +43,6 @@ button.action-button:disabled {
942
43
  user-select: none;
943
44
  }
944
45
 
945
- #typeahead-menu {
946
- pointer-events: none;
947
- z-index: 10001;
948
- }
949
-
950
- #typeahead-menu > * {
951
- pointer-events: auto;
952
- }
953
-
954
46
  .tree-view-output {
955
47
  display: block;
956
48
  background: #222;
@@ -965,46 +57,6 @@ button.action-button:disabled {
965
57
  margin: 20px;
966
58
  }
967
59
 
968
- .debug-timetravel-panel {
969
- overflow: hidden;
970
- padding: 0 0 10px 0;
971
- margin: auto;
972
- display: flex;
973
- }
974
-
975
- .debug-timetravel-panel-slider {
976
- padding: 0;
977
- flex: 8;
978
- }
979
-
980
- .debug-timetravel-panel-button {
981
- padding: 0;
982
- border: 0;
983
- background: none;
984
- flex: 1;
985
- color: #fff;
986
- font-size: 12px;
987
- }
988
-
989
- .debug-timetravel-panel-button:hover {
990
- text-decoration: underline;
991
- }
992
-
993
- .debug-timetravel-button {
994
- border: 0;
995
- padding: 0;
996
- font-size: 12px;
997
- top: 10px;
998
- right: 15px;
999
- position: absolute;
1000
- background: none;
1001
- color: #fff;
1002
- }
1003
-
1004
- .debug-timetravel-button:hover {
1005
- text-decoration: underline;
1006
- }
1007
-
1008
60
  .github-node-container,
1009
61
  .inline-embed-container {
1010
62
  display: inline-block;
@@ -1128,12 +180,6 @@ table td .github-container .github-text {
1128
180
  clip-path: polygon(50% 50%, 0 0, 100% 0, 100% 100%, 0 100%, 0 0);
1129
181
  }
1130
182
  }
1131
-
1132
- /* blocklet embed option - disabled 样式 */
1133
- .typeahead-popover ul li.embed-option-disabled {
1134
- color: #999;
1135
- cursor: default;
1136
- }
1137
183
  li.embed-option-disabled > span:after {
1138
184
  overflow: hidden;
1139
185
  display: inline-block;