@jinntec/jinntap 1.9.3 → 1.10.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/dist/editor-styles.css +11 -22
- package/dist/jinn-tap.es.js +1223 -1146
- package/dist/jinn-tap.umd.js +23 -23
- package/package.json +1 -1
package/dist/editor-styles.css
CHANGED
|
@@ -31,27 +31,29 @@ tei-title[level="m"] {
|
|
|
31
31
|
font-style: italic;
|
|
32
32
|
}
|
|
33
33
|
|
|
34
|
-
|
|
34
|
+
tei-div {
|
|
35
35
|
border-right: 2px solid var(--tei-div-color-0);
|
|
36
|
+
margin-right: 2px;
|
|
37
|
+
padding-right: 2px;
|
|
36
38
|
}
|
|
37
39
|
|
|
38
|
-
|
|
40
|
+
tei-div > tei-div {
|
|
39
41
|
border-right: 2px solid var(--tei-div-color-1);
|
|
40
42
|
}
|
|
41
43
|
|
|
42
|
-
|
|
44
|
+
tei-div > tei-div > tei-div {
|
|
43
45
|
border-right: 2px solid var(--tei-div-color-2);
|
|
44
46
|
}
|
|
45
47
|
|
|
46
|
-
|
|
48
|
+
tei-div > tei-div {
|
|
47
49
|
border-right: 2px solid var(--tei-div-color-3);
|
|
48
50
|
}
|
|
49
51
|
|
|
50
|
-
|
|
52
|
+
tei-div > tei-div > tei-div {
|
|
51
53
|
border-right: 2px solid var(--tei-div-color-4);
|
|
52
54
|
}
|
|
53
55
|
|
|
54
|
-
|
|
56
|
+
tei-div > tei-div > tei-div > tei-div {
|
|
55
57
|
border-right: 2px solid var(--tei-div-color-5);
|
|
56
58
|
}
|
|
57
59
|
|
|
@@ -61,10 +63,6 @@ tei-p {
|
|
|
61
63
|
position: relative;
|
|
62
64
|
}
|
|
63
65
|
|
|
64
|
-
.debug tei-p {
|
|
65
|
-
border-right: 2px solid var(--tei-p-color);
|
|
66
|
-
}
|
|
67
|
-
|
|
68
66
|
tei-p[rend="center"] {
|
|
69
67
|
text-align: center;
|
|
70
68
|
}
|
|
@@ -128,7 +126,7 @@ tei-term {
|
|
|
128
126
|
color: #9236A4;
|
|
129
127
|
}
|
|
130
128
|
|
|
131
|
-
tei-list, tei-
|
|
129
|
+
tei-list, tei-listAnnotation {
|
|
132
130
|
display: block;
|
|
133
131
|
list-style-type: disc;
|
|
134
132
|
margin: 1em 0;
|
|
@@ -149,16 +147,12 @@ tei-item, tei-note {
|
|
|
149
147
|
margin: 0.5em 0;
|
|
150
148
|
}
|
|
151
149
|
|
|
152
|
-
|
|
153
|
-
border-right: 1px solid var(--tei-item-color);
|
|
154
|
-
}
|
|
155
|
-
|
|
156
|
-
tei-noteGrp {
|
|
150
|
+
tei-listAnnotation {
|
|
157
151
|
list-style-type: none;
|
|
158
152
|
padding-left: 0;
|
|
159
153
|
}
|
|
160
154
|
|
|
161
|
-
tei-
|
|
155
|
+
tei-listAnnotation::before {
|
|
162
156
|
padding: 1rem 0 0;
|
|
163
157
|
margin-top: 2rem;
|
|
164
158
|
border-top: 1px solid #ccc;
|
|
@@ -242,11 +236,6 @@ tei-ref {
|
|
|
242
236
|
outline: 2px solid var(--pico-primary);
|
|
243
237
|
}
|
|
244
238
|
|
|
245
|
-
.debug tei-div, .debug tei-p, .debug tei-item {
|
|
246
|
-
margin-right: 2px;
|
|
247
|
-
padding-right: 2px;
|
|
248
|
-
}
|
|
249
|
-
|
|
250
239
|
.debug *::after {
|
|
251
240
|
display: inline-block;
|
|
252
241
|
max-width: 7ch;
|