@siliconoid/xssml-editor 1.0.2 → 1.0.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.css +16 -9
- package/dist/index.esm.js +2 -2
- package/dist/index.umd.js +2 -2
- package/package.json +1 -1
package/dist/index.css
CHANGED
|
@@ -1,3 +1,10 @@
|
|
|
1
|
+
.ssml-editor-popover {
|
|
2
|
+
z-index: 10000;
|
|
3
|
+
background: var(--tts-mark-editor-popover__fill-color, #fff);
|
|
4
|
+
border-radius: 6px;
|
|
5
|
+
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
|
|
6
|
+
}
|
|
7
|
+
|
|
1
8
|
.ssml-editor-phoneme__list {
|
|
2
9
|
display: flex;
|
|
3
10
|
flex-flow: row nowrap;
|
|
@@ -9,7 +16,7 @@
|
|
|
9
16
|
.ssml-editor-phoneme__item {
|
|
10
17
|
padding: 0.3em 4px;
|
|
11
18
|
cursor: pointer;
|
|
12
|
-
color: var(--tts-mark-
|
|
19
|
+
color: var(--tts-mark-phoneme-popover__stroke);
|
|
13
20
|
}
|
|
14
21
|
.ssml-editor-phoneme__item:hover {
|
|
15
22
|
background-color: rgba(0, 0, 0, 0.1);
|
|
@@ -22,8 +29,8 @@
|
|
|
22
29
|
z-index: 10000;
|
|
23
30
|
background: var(--tts-mark-editor-popover__fill-color, #fff);
|
|
24
31
|
border-radius: 6px;
|
|
32
|
+
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
|
|
25
33
|
padding: 0.1em 0.3em;
|
|
26
|
-
box-shadow: 0px 0px 2px rgba(0, 0, 0, 0.3);
|
|
27
34
|
}
|
|
28
35
|
|
|
29
36
|
.ssml-editor-number-tip__char {
|
|
@@ -38,14 +45,14 @@
|
|
|
38
45
|
|
|
39
46
|
.ssml-editor-number-tip__popover {
|
|
40
47
|
z-index: 10000;
|
|
48
|
+
background: var(--tts-mark-editor-popover__fill-color, #fff);
|
|
49
|
+
border-radius: 6px;
|
|
50
|
+
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
|
|
41
51
|
}
|
|
42
52
|
.ssml-editor-number-tip__popover .ssml-editor-number-tip__list {
|
|
43
53
|
display: flex;
|
|
44
54
|
flex-direction: column;
|
|
45
55
|
padding: 4px;
|
|
46
|
-
background: #fff;
|
|
47
|
-
border-radius: 4px;
|
|
48
|
-
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
|
|
49
56
|
min-width: 100px;
|
|
50
57
|
}
|
|
51
58
|
.ssml-editor-number-tip__popover .ssml-editor-number-tip__item {
|
|
@@ -70,10 +77,6 @@
|
|
|
70
77
|
background-color: #fff1f0;
|
|
71
78
|
}
|
|
72
79
|
|
|
73
|
-
:root {
|
|
74
|
-
--tts-mark-ssml-editor-phoneme__popover-item__stroke-color: #333;
|
|
75
|
-
}
|
|
76
|
-
|
|
77
80
|
.ssml-editor {
|
|
78
81
|
-webkit-overflow-scrolling: touch;
|
|
79
82
|
min-height: 100%;
|
|
@@ -94,6 +97,10 @@
|
|
|
94
97
|
caret-color: transparent;
|
|
95
98
|
}
|
|
96
99
|
.ssml-editor {
|
|
100
|
+
--tts-mark-phoneme-popover__stroke: var(
|
|
101
|
+
--tts-mark-ssml-editor-phoneme__popover-item__stroke-color,
|
|
102
|
+
#333
|
|
103
|
+
);
|
|
97
104
|
--tts-mark-editor-popover__fill-color: #fff;
|
|
98
105
|
--tts-mark-word__fill-color: rgb(13 226 162 / 100%);
|
|
99
106
|
--tts-mark-breath__fill-color: rgb(16 185 237 / 100%);
|