sunrize 1.11.0 → 1.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.
- package/package.json +4 -4
- package/src/Application/Application.js +1 -1
- package/src/Application/Document.js +5 -4
- package/src/Controls/AddPrototypePopover.js +2 -2
- package/src/Controls/AnimationPropertiesPopover.js +12 -1
- package/src/Controls/EditNodePopover.js +1 -1
- package/src/Controls/EditUserDefinedFieldPopover.js +1 -1
- package/src/Editors/AnimationEditor.js +105 -73
- package/src/Editors/AnimationMemberList.js +2 -2
- package/src/Editors/BrowserFrame.js +5 -3
- package/src/Editors/Console.js +1 -0
- package/src/Editors/OutlineEditor.js +2 -2
- package/src/Editors/OutlineView.js +1 -1
- package/src/Editors/SceneProperties.js +188 -49
- package/src/Undo/Editor.js +2 -8
- package/src/assets/themes/default.css +112 -31
- package/src/assets/themes/system-colors.css +61 -59
|
@@ -52,7 +52,7 @@ body {
|
|
|
52
52
|
background-color: transparent;
|
|
53
53
|
}
|
|
54
54
|
|
|
55
|
-
/* Handle */
|
|
55
|
+
/* Scrollbar Handle */
|
|
56
56
|
:hover::-webkit-scrollbar-thumb {
|
|
57
57
|
background-color: var(--scrollbar-thumb-color);
|
|
58
58
|
}
|
|
@@ -72,6 +72,12 @@ body {
|
|
|
72
72
|
background-color: var(--scrollbar-thumb-color);
|
|
73
73
|
}
|
|
74
74
|
|
|
75
|
+
/* inputs */
|
|
76
|
+
|
|
77
|
+
input[type=checkbox] {
|
|
78
|
+
accent-color: var(--system-green);
|
|
79
|
+
}
|
|
80
|
+
|
|
75
81
|
/* common */
|
|
76
82
|
|
|
77
83
|
.green {
|
|
@@ -101,6 +107,11 @@ th, td,
|
|
|
101
107
|
color: var(--text-color);
|
|
102
108
|
}
|
|
103
109
|
|
|
110
|
+
select {
|
|
111
|
+
appearance: none;
|
|
112
|
+
cursor: pointer;
|
|
113
|
+
}
|
|
114
|
+
|
|
104
115
|
select option {
|
|
105
116
|
font-family: var(--sans-serif);
|
|
106
117
|
font-size: var(--font-size);
|
|
@@ -130,20 +141,13 @@ tbody th {
|
|
|
130
141
|
width: auto;
|
|
131
142
|
}
|
|
132
143
|
|
|
133
|
-
tbody td {
|
|
134
|
-
width: 100%;
|
|
135
|
-
}
|
|
136
|
-
|
|
137
144
|
tbody th th {
|
|
138
145
|
min-width: unset;
|
|
139
146
|
width: unset;
|
|
140
147
|
}
|
|
141
148
|
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
}
|
|
145
|
-
|
|
146
|
-
thead tr {
|
|
149
|
+
thead tr,
|
|
150
|
+
tfoot tr {
|
|
147
151
|
background: var(--tint-color2);
|
|
148
152
|
}
|
|
149
153
|
|
|
@@ -433,29 +437,25 @@ tr.disabled ~ tr > td > div {
|
|
|
433
437
|
|
|
434
438
|
.qtip-tipsy.qtip {
|
|
435
439
|
border: var(--qtip-border);
|
|
440
|
+
border-radius: var(--qtip-border-radius);
|
|
436
441
|
background: var(--qtip-background-color);
|
|
437
442
|
box-shadow: var(--qtip-shadow);
|
|
443
|
+
backdrop-filter: none;
|
|
438
444
|
}
|
|
439
445
|
|
|
440
446
|
.qtip-tipsy {
|
|
441
447
|
color: var(--system-gray1);
|
|
448
|
+
text-shadow: none;
|
|
442
449
|
}
|
|
443
450
|
|
|
444
451
|
body.light .qtip-tipsy {
|
|
445
452
|
color: black;
|
|
446
|
-
text-shadow: none;
|
|
447
453
|
}
|
|
448
454
|
|
|
449
455
|
.qtip-tipsy .qtip-tip {
|
|
450
456
|
background: inherit !important;
|
|
451
457
|
}
|
|
452
458
|
|
|
453
|
-
.qtip-preview.qtip {
|
|
454
|
-
border: var(--preview-border);
|
|
455
|
-
background: var(--preview-background-color);
|
|
456
|
-
backdrop-filter: none;
|
|
457
|
-
}
|
|
458
|
-
|
|
459
459
|
.qtip-audio.qtip {
|
|
460
460
|
background: rgb(241, 243, 244);
|
|
461
461
|
}
|
|
@@ -466,46 +466,68 @@ body.light .qtip-tipsy {
|
|
|
466
466
|
|
|
467
467
|
.qtip span {
|
|
468
468
|
display: block;
|
|
469
|
+
margin: 2px 0;
|
|
469
470
|
}
|
|
470
471
|
|
|
471
472
|
.qtip input,
|
|
472
473
|
.qtip select,
|
|
473
474
|
.qtip button {
|
|
475
|
+
box-sizing: border-box;
|
|
474
476
|
display: block;
|
|
475
477
|
width: 100%;
|
|
476
|
-
background: var(--
|
|
478
|
+
background: var(--system-gray5);
|
|
477
479
|
border: 1px solid var(--system-gray7);
|
|
480
|
+
border-radius: 16px;
|
|
481
|
+
color: var(--system-gray0);
|
|
478
482
|
filter: opacity(80%);
|
|
479
483
|
margin: 2px 0;
|
|
484
|
+
padding: 2px 8px;
|
|
485
|
+
height: 24px;
|
|
486
|
+
}
|
|
487
|
+
|
|
488
|
+
.qtip ::placeholder {
|
|
489
|
+
color: var(--system-gray1);
|
|
490
|
+
}
|
|
491
|
+
|
|
492
|
+
.qtip button {
|
|
493
|
+
cursor: pointer;
|
|
480
494
|
}
|
|
481
495
|
|
|
482
496
|
.qtip input[type=checkbox] {
|
|
497
|
+
cursor: pointer;
|
|
483
498
|
display: inline-block;
|
|
499
|
+
position: relative;
|
|
500
|
+
top: 1px;
|
|
501
|
+
margin: 4px 0;
|
|
484
502
|
width: auto;
|
|
485
|
-
margin: 4px 0 0 0;
|
|
486
503
|
}
|
|
487
504
|
|
|
488
505
|
.qtip label {
|
|
506
|
+
user-select: none;
|
|
507
|
+
cursor: pointer;
|
|
489
508
|
display: inline-block;
|
|
490
|
-
width: auto;
|
|
491
509
|
position: relative;
|
|
492
|
-
|
|
493
|
-
|
|
494
|
-
|
|
510
|
+
top: -7px;
|
|
511
|
+
margin-left: 5px;
|
|
512
|
+
width: auto;
|
|
513
|
+
}
|
|
514
|
+
|
|
515
|
+
.qtip p {
|
|
516
|
+
margin: 8px 0;
|
|
495
517
|
}
|
|
496
518
|
|
|
497
|
-
.qtip .qtip-content > div:first-child {
|
|
519
|
+
.qtip .qtip-content > div :first-child {
|
|
498
520
|
margin-top: 0;
|
|
499
521
|
}
|
|
500
522
|
|
|
501
|
-
.qtip .qtip-content > div:last-child {
|
|
523
|
+
.qtip .qtip-content > div :last-child {
|
|
502
524
|
margin-bottom: 0;
|
|
503
525
|
}
|
|
504
526
|
|
|
505
527
|
.qtip select:hover,
|
|
506
528
|
.qtip button:hover {
|
|
507
|
-
background-color: var(--system-
|
|
508
|
-
color: var(--
|
|
529
|
+
background-color: var(--system-gray4);
|
|
530
|
+
color: var(--qtip-highlight-color);
|
|
509
531
|
}
|
|
510
532
|
|
|
511
533
|
.qtip-wide {
|
|
@@ -523,6 +545,7 @@ body.light .qtip-tipsy {
|
|
|
523
545
|
top: 0;
|
|
524
546
|
width: 100%;
|
|
525
547
|
height: var(--toolbar-width);
|
|
548
|
+
white-space: nowrap;
|
|
526
549
|
}
|
|
527
550
|
|
|
528
551
|
.vertical-toolbar {
|
|
@@ -578,12 +601,31 @@ body.light .qtip-tipsy {
|
|
|
578
601
|
|
|
579
602
|
.horizontal-toolbar .input,
|
|
580
603
|
.horizontal-toolbar .select {
|
|
604
|
+
box-sizing: content-box;
|
|
581
605
|
display: inline-block;
|
|
582
606
|
position: relative;
|
|
583
607
|
top: -3px;
|
|
584
608
|
margin: auto 5px;
|
|
609
|
+
font-family: var(--sans-serif);
|
|
585
610
|
font-size: var(--font-size);
|
|
586
611
|
border: 1px solid var(--system-gray3);
|
|
612
|
+
border-radius: 9.5px;
|
|
613
|
+
padding: 0px 6px 0px 6px;
|
|
614
|
+
height: 16px;
|
|
615
|
+
}
|
|
616
|
+
|
|
617
|
+
html[platform=win32] .horizontal-toolbar .input,
|
|
618
|
+
html[platform=win32] .horizontal-toolbar .select {
|
|
619
|
+
padding: 0px 6px 1px 6px;
|
|
620
|
+
}
|
|
621
|
+
|
|
622
|
+
html[platform=darwin] .horizontal-toolbar .input,
|
|
623
|
+
html[platform=darwin] .horizontal-toolbar .select {
|
|
624
|
+
padding: 1px 6px 0 6px;
|
|
625
|
+
}
|
|
626
|
+
|
|
627
|
+
.horizontal-toolbar .select {
|
|
628
|
+
top: -2.5px;
|
|
587
629
|
}
|
|
588
630
|
|
|
589
631
|
.horizontal-toolbar .separator {
|
|
@@ -631,7 +673,8 @@ body.light .qtip-tipsy {
|
|
|
631
673
|
}
|
|
632
674
|
|
|
633
675
|
.horizontal-toolbar .right {
|
|
634
|
-
|
|
676
|
+
position: absolute;
|
|
677
|
+
right: 0;
|
|
635
678
|
}
|
|
636
679
|
|
|
637
680
|
.large-toolbar .material-icons {
|
|
@@ -694,7 +737,7 @@ body.light .qtip-tipsy {
|
|
|
694
737
|
/* Dialog */
|
|
695
738
|
|
|
696
739
|
.dialog ::placeholder {
|
|
697
|
-
color: var(--system-
|
|
740
|
+
color: var(--system-gray2);
|
|
698
741
|
}
|
|
699
742
|
|
|
700
743
|
body.dark .dialog ::placeholder {
|
|
@@ -709,8 +752,11 @@ body.dark .dialog ::placeholder {
|
|
|
709
752
|
z-index: 3000 !important;
|
|
710
753
|
}
|
|
711
754
|
|
|
755
|
+
.dialog.ui-dialog .ui-dialog-content {
|
|
756
|
+
padding: 1rem;
|
|
757
|
+
}
|
|
758
|
+
|
|
712
759
|
.dialog.ui-dialog.ui-widget.ui-widget-content {
|
|
713
|
-
cursor: move;
|
|
714
760
|
backdrop-filter: var(--tool-backdrop-filter);
|
|
715
761
|
background-color: var(--tool-background-color);
|
|
716
762
|
border-radius: var(--tool-border-radius);
|
|
@@ -724,6 +770,23 @@ body.dark .dialog ::placeholder {
|
|
|
724
770
|
overflow-y: auto;
|
|
725
771
|
}
|
|
726
772
|
|
|
773
|
+
.scene-properties .button {
|
|
774
|
+
cursor: pointer;
|
|
775
|
+
}
|
|
776
|
+
|
|
777
|
+
.scene-properties .drag {
|
|
778
|
+
cursor: move;
|
|
779
|
+
}
|
|
780
|
+
|
|
781
|
+
.scene-properties .active {
|
|
782
|
+
color: var(--accent-color);
|
|
783
|
+
}
|
|
784
|
+
|
|
785
|
+
.scene-properties .disabled {
|
|
786
|
+
cursor: inherit;
|
|
787
|
+
color: var(--system-gray2);
|
|
788
|
+
}
|
|
789
|
+
|
|
727
790
|
/* Library */
|
|
728
791
|
|
|
729
792
|
.ui-widget .library-input {
|
|
@@ -762,7 +825,7 @@ body.dark .dialog ::placeholder {
|
|
|
762
825
|
user-select: none;
|
|
763
826
|
position: absolute;
|
|
764
827
|
overflow: scroll;
|
|
765
|
-
margin: 1rem 1rem 0
|
|
828
|
+
margin: 1rem 1rem 0 1rem;
|
|
766
829
|
inset: 75px 0 0 0;
|
|
767
830
|
}
|
|
768
831
|
|
|
@@ -1116,9 +1179,16 @@ body.dark .ui-widget .library-list .component {
|
|
|
1116
1179
|
}
|
|
1117
1180
|
|
|
1118
1181
|
.animation-editor-toolbar {
|
|
1182
|
+
container-type: inline-size;
|
|
1119
1183
|
padding-left: 5px;
|
|
1120
1184
|
}
|
|
1121
1185
|
|
|
1186
|
+
@container (max-width: 630px) {
|
|
1187
|
+
.animation-editor-toolbar .right {
|
|
1188
|
+
display: none;
|
|
1189
|
+
}
|
|
1190
|
+
}
|
|
1191
|
+
|
|
1122
1192
|
.animation-editor-navigation {
|
|
1123
1193
|
top: var(--toolbar-width);
|
|
1124
1194
|
}
|
|
@@ -1643,6 +1713,12 @@ body.dark .ui-widget .library-list .component {
|
|
|
1643
1713
|
|
|
1644
1714
|
.tp-dfwv {
|
|
1645
1715
|
overflow: auto;
|
|
1716
|
+
box-shadow: var(--qtip-shadow);
|
|
1717
|
+
border-radius: var(--tp-base-border-radius);
|
|
1718
|
+
}
|
|
1719
|
+
|
|
1720
|
+
.tp-rotv {
|
|
1721
|
+
border: var(--qtip-border);
|
|
1646
1722
|
}
|
|
1647
1723
|
|
|
1648
1724
|
.tp-lblv_v {
|
|
@@ -1674,6 +1750,11 @@ body.dark .ui-widget .library-list .component {
|
|
|
1674
1750
|
display: none;
|
|
1675
1751
|
}
|
|
1676
1752
|
|
|
1753
|
+
/* check mark */
|
|
1754
|
+
.tp-ckbv_w svg path {
|
|
1755
|
+
stroke: var(--system-green) !important;
|
|
1756
|
+
}
|
|
1757
|
+
|
|
1677
1758
|
/* monaco editor */
|
|
1678
1759
|
|
|
1679
1760
|
.monaco-editor,
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
@charset "utf-8";
|
|
2
2
|
|
|
3
3
|
@media (prefers-color-scheme: light) {
|
|
4
|
-
|
|
4
|
+
:root {
|
|
5
5
|
color-scheme: light;
|
|
6
6
|
|
|
7
7
|
/* Colors */
|
|
@@ -31,24 +31,36 @@
|
|
|
31
31
|
|
|
32
32
|
--selection-color: black;
|
|
33
33
|
--selection-background-color: rgb(246, 196, 197);
|
|
34
|
-
--scrollbar-thumb-color: rgba(0, 0, 0, 0.2);
|
|
35
34
|
--selection-range: rgba(0, 0, 0, 0.05);
|
|
36
|
-
|
|
35
|
+
--scrollbar-thumb-color: rgba(0, 0, 0, 0.2);
|
|
37
36
|
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
--
|
|
41
|
-
--
|
|
42
|
-
--
|
|
37
|
+
/* Filter Colors */
|
|
38
|
+
|
|
39
|
+
--filter-system-red: invert(31%) sepia(82%) saturate(3000%) hue-rotate(344deg) brightness(115%) contrast(105%);
|
|
40
|
+
--filter-system-gray0: invert(36%) sepia(72%) saturate(11%) hue-rotate(222deg) brightness(95%) contrast(90%);
|
|
41
|
+
--filter-system-gray1: invert(63%) sepia(4%) saturate(334%) hue-rotate(201deg) brightness(89%) contrast(86%);
|
|
42
|
+
|
|
43
|
+
/* Special Colors */
|
|
44
|
+
|
|
45
|
+
--sidebar-background-color: rgb(208, 219, 231);
|
|
46
|
+
--tint-color1: rgba(255, 255, 255, 0.5);
|
|
47
|
+
--tint-color2: rgba(255, 255, 255, 1);
|
|
48
|
+
|
|
49
|
+
/* TweakPanel colors */
|
|
50
|
+
|
|
51
|
+
--tp-base-border-radius: 12px;
|
|
52
|
+
--tp-container-background-color: white;
|
|
43
53
|
--tp-container-background-color-active: hsl(230, 7%, 90%);
|
|
44
54
|
--tp-container-background-color-focus: hsl(230, 7%, 90%);
|
|
45
55
|
--tp-container-background-color-hover: hsl(230, 7%, 95%);
|
|
56
|
+
--tp-base-background-color: var(--system-gray7);
|
|
57
|
+
--tp-base-shadow-color: hsla(0, 0%, 0%, 0.2);
|
|
46
58
|
--tp-container-foreground-color: hsl(230, 7%, 17%);
|
|
47
59
|
--tp-groove-foreground-color: hsl(230, 7%, 17%);
|
|
48
60
|
--tp-input-background-color: hsl(230, 7%, 92%);
|
|
49
|
-
--tp-input-background-color-active: hsl(230, 7%,
|
|
50
|
-
--tp-input-background-color-focus: hsl(230, 7%,
|
|
51
|
-
--tp-input-background-color-hover: hsl(230, 7%,
|
|
61
|
+
--tp-input-background-color-active: hsl(230, 7%, 94%);
|
|
62
|
+
--tp-input-background-color-focus: hsl(230, 7%, 94%);
|
|
63
|
+
--tp-input-background-color-hover: hsl(230, 7%, 94%);
|
|
52
64
|
--tp-input-foreground-color: hsl(230, 7%, 17%);
|
|
53
65
|
--tp-button-background-color: var(--tp-input-background-color);
|
|
54
66
|
--tp-button-background-color-active: var(--tp-input-background-color-active);
|
|
@@ -66,7 +78,7 @@
|
|
|
66
78
|
}
|
|
67
79
|
|
|
68
80
|
@media (prefers-color-scheme: dark) {
|
|
69
|
-
|
|
81
|
+
:root {
|
|
70
82
|
color-scheme: dark;
|
|
71
83
|
|
|
72
84
|
/* Colors */
|
|
@@ -96,12 +108,29 @@
|
|
|
96
108
|
|
|
97
109
|
--selection-color: white;
|
|
98
110
|
--selection-background-color: rgb(167, 118, 119);
|
|
99
|
-
--scrollbar-thumb-color: rgba(255, 255, 255, 0.2);
|
|
100
111
|
--selection-range: rgba(255, 255, 255, 0.05);
|
|
101
|
-
|
|
112
|
+
--scrollbar-thumb-color: rgba(255, 255, 255, 0.2);
|
|
102
113
|
|
|
103
|
-
|
|
104
|
-
|
|
114
|
+
/* Filter Colors */
|
|
115
|
+
|
|
116
|
+
--filter-system-red: invert(69%) sepia(59%) saturate(6315%) hue-rotate(336deg) brightness(99%) contrast(108%);
|
|
117
|
+
--filter-system-gray0: invert(97%) sepia(2%) saturate(509%) hue-rotate(200deg) brightness(84%) contrast(94%);
|
|
118
|
+
--filter-system-gray1: invert(72%) sepia(0%) saturate(6315%) hue-rotate(205deg) brightness(81%) contrast(62%);
|
|
119
|
+
|
|
120
|
+
/* Special Colors */
|
|
121
|
+
|
|
122
|
+
--sidebar-background-color: rgb(42, 50, 63);
|
|
123
|
+
--tint-color1: rgba(0, 0, 0, 0.2);
|
|
124
|
+
--tint-color2: rgba(0, 0, 0, 0.4);
|
|
125
|
+
|
|
126
|
+
/* TweakPanel colors */
|
|
127
|
+
|
|
128
|
+
--tp-base-border-radius: 12px;
|
|
129
|
+
--tp-container-background-color: black;
|
|
130
|
+
--tp-container-background-color-hover: black;
|
|
131
|
+
--tp-container-background-color-active: black;
|
|
132
|
+
--tp-container-background-color-focus: black;
|
|
133
|
+
--tp-base-background-color: var(--system-gray7);
|
|
105
134
|
--tp-input-background-color: rgba(187, 188, 196, 0.1);
|
|
106
135
|
--tp-input-background-color-active: rgba(187, 188, 196, 0.25);
|
|
107
136
|
--tp-input-background-color-focus: rgba(187, 188, 196, 0.2);
|
|
@@ -121,36 +150,6 @@
|
|
|
121
150
|
}
|
|
122
151
|
}
|
|
123
152
|
|
|
124
|
-
body {
|
|
125
|
-
/* Filter Colors */
|
|
126
|
-
|
|
127
|
-
--filter-system-red: invert(31%) sepia(82%) saturate(3000%) hue-rotate(344deg) brightness(115%) contrast(105%);
|
|
128
|
-
--filter-system-gray0: invert(36%) sepia(72%) saturate(11%) hue-rotate(222deg) brightness(95%) contrast(90%);
|
|
129
|
-
--filter-system-gray1: invert(63%) sepia(4%) saturate(334%) hue-rotate(201deg) brightness(89%) contrast(86%);
|
|
130
|
-
|
|
131
|
-
/* Special Colors */
|
|
132
|
-
|
|
133
|
-
--sidebar-background-color: rgb(208, 219, 231);
|
|
134
|
-
--tint-color1: rgba(255, 255, 255, 0.5);
|
|
135
|
-
--tint-color2: rgba(255, 255, 255, 1);
|
|
136
|
-
}
|
|
137
|
-
|
|
138
|
-
@media (prefers-color-scheme: dark) {
|
|
139
|
-
body {
|
|
140
|
-
/* Filter Colors */
|
|
141
|
-
|
|
142
|
-
--filter-system-red: invert(69%) sepia(59%) saturate(6315%) hue-rotate(336deg) brightness(99%) contrast(108%);
|
|
143
|
-
--filter-system-gray0: invert(97%) sepia(2%) saturate(509%) hue-rotate(200deg) brightness(84%) contrast(94%);
|
|
144
|
-
--filter-system-gray1: invert(72%) sepia(0%) saturate(6315%) hue-rotate(205deg) brightness(81%) contrast(62%);
|
|
145
|
-
|
|
146
|
-
/* Special Colors */
|
|
147
|
-
|
|
148
|
-
--sidebar-background-color: rgb(42, 50, 63);
|
|
149
|
-
--tint-color1: rgba(0, 0, 0, 0.2);
|
|
150
|
-
--tint-color2: rgba(0, 0, 0, 0.4);
|
|
151
|
-
}
|
|
152
|
-
}
|
|
153
|
-
|
|
154
153
|
body {
|
|
155
154
|
/* Colors */
|
|
156
155
|
|
|
@@ -197,20 +196,26 @@ body {
|
|
|
197
196
|
|
|
198
197
|
--tool-backdrop-filter: blur(25px);
|
|
199
198
|
--tool-background-color: rgba(208, 219, 231, 0.8); /* --sidebar-background-color */
|
|
200
|
-
--tool-border-radius:
|
|
199
|
+
--tool-border-radius: 12px;
|
|
201
200
|
--tool-border: 1px solid var(--system-gray8);
|
|
202
201
|
--tool-shadow: 3px 3px 9px rgba(0, 0, 0, 0.6);
|
|
203
202
|
|
|
204
|
-
--preview-background-color: white;
|
|
205
|
-
--preview-border: 1px solid var(--system-gray6);
|
|
206
|
-
|
|
207
203
|
--background-disabled: repeating-linear-gradient(
|
|
208
204
|
-45deg,
|
|
209
205
|
var(--tint-color1),
|
|
210
206
|
var(--tint-color1) 10px,
|
|
211
207
|
transparent 10px,
|
|
212
208
|
transparent 20px
|
|
213
|
-
)
|
|
209
|
+
);
|
|
210
|
+
|
|
211
|
+
/*Qtip */
|
|
212
|
+
|
|
213
|
+
--qtip-shadow: var(--tool-shadow);
|
|
214
|
+
--qtip-border-radius: 12px;
|
|
215
|
+
|
|
216
|
+
--qtip-background-color: white;
|
|
217
|
+
--qtip-border: 1px solid var(--system-gray1);
|
|
218
|
+
--qtip-highlight-color: black;
|
|
214
219
|
}
|
|
215
220
|
|
|
216
221
|
@media (prefers-color-scheme: dark) {
|
|
@@ -234,13 +239,10 @@ body {
|
|
|
234
239
|
--tool-border: 1px solid var(--system-gray2);
|
|
235
240
|
--tool-shadow: 3px 3px 9px var(--system-gray8);
|
|
236
241
|
|
|
237
|
-
|
|
238
|
-
--preview-border: 1px solid var(--system-gray4);
|
|
239
|
-
}
|
|
240
|
-
}
|
|
242
|
+
/* Qtip */
|
|
241
243
|
|
|
242
|
-
|
|
243
|
-
|
|
244
|
-
|
|
245
|
-
|
|
244
|
+
--qtip-background-color: black;
|
|
245
|
+
--qtip-border: 1px solid var(--system-gray4);
|
|
246
|
+
--qtip-highlight-color: white;
|
|
247
|
+
}
|
|
246
248
|
}
|