@jinntec/jinntap 1.9.2 → 1.10.0
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 -20
- package/dist/jinn-tap.es.js +1412 -1330
- package/dist/jinn-tap.umd.js +23 -23
- package/package.json +1 -1
package/dist/editor-styles.css
CHANGED
|
@@ -4,7 +4,7 @@ tei-div, tei-p, tei-item {
|
|
|
4
4
|
|
|
5
5
|
tei-head {
|
|
6
6
|
font-size: 2rem;
|
|
7
|
-
font-weight:
|
|
7
|
+
font-weight: 700;
|
|
8
8
|
line-height: 1.125;
|
|
9
9
|
margin-top: 3rem;
|
|
10
10
|
}
|
|
@@ -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
|
}
|
|
@@ -104,6 +102,7 @@ tei-figure {
|
|
|
104
102
|
tei-figure > img {
|
|
105
103
|
display: block;
|
|
106
104
|
margin: 0 auto;
|
|
105
|
+
cursor: pointer;
|
|
107
106
|
}
|
|
108
107
|
|
|
109
108
|
tei-figure > tei-figDesc {
|
|
@@ -148,10 +147,6 @@ tei-item, tei-note {
|
|
|
148
147
|
margin: 0.5em 0;
|
|
149
148
|
}
|
|
150
149
|
|
|
151
|
-
.debug tei-item {
|
|
152
|
-
border-right: 1px solid var(--tei-item-color);
|
|
153
|
-
}
|
|
154
|
-
|
|
155
150
|
tei-noteGrp {
|
|
156
151
|
list-style-type: none;
|
|
157
152
|
padding-left: 0;
|
|
@@ -211,6 +206,7 @@ tei-pb, tei-lb {
|
|
|
211
206
|
font-weight: normal;
|
|
212
207
|
border-radius: 4px;
|
|
213
208
|
padding: 2px 6px;
|
|
209
|
+
cursor: pointer;
|
|
214
210
|
}
|
|
215
211
|
|
|
216
212
|
tei-lb {
|
|
@@ -240,11 +236,6 @@ tei-ref {
|
|
|
240
236
|
outline: 2px solid var(--pico-primary);
|
|
241
237
|
}
|
|
242
238
|
|
|
243
|
-
.debug tei-div, .debug tei-p, .debug tei-item {
|
|
244
|
-
margin-right: 2px;
|
|
245
|
-
padding-right: 2px;
|
|
246
|
-
}
|
|
247
|
-
|
|
248
239
|
.debug *::after {
|
|
249
240
|
display: inline-block;
|
|
250
241
|
max-width: 7ch;
|