@jinntec/jinntap 1.16.2 → 1.18.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 +23 -1
- package/dist/jinn-tap.es.js +1984 -1904
- package/package.json +1 -1
package/dist/editor-styles.css
CHANGED
|
@@ -129,6 +129,7 @@ tei-figure > tei-figDesc {
|
|
|
129
129
|
text-align: right;
|
|
130
130
|
font-size: .8rem;
|
|
131
131
|
}
|
|
132
|
+
|
|
132
133
|
tei-persname {
|
|
133
134
|
color: #A83410;
|
|
134
135
|
}
|
|
@@ -205,14 +206,35 @@ tei-note {
|
|
|
205
206
|
}
|
|
206
207
|
|
|
207
208
|
tei-note::before {
|
|
208
|
-
|
|
209
|
+
margin-left: -2rem;
|
|
210
|
+
float: left;
|
|
211
|
+
}
|
|
212
|
+
|
|
213
|
+
tei-note::before {
|
|
214
|
+
content: "?";
|
|
209
215
|
margin-right: 0.5em;
|
|
210
216
|
}
|
|
211
217
|
|
|
218
|
+
tei-note[_reference]::before {
|
|
219
|
+
content: attr(_reference) ".";
|
|
220
|
+
}
|
|
221
|
+
|
|
222
|
+
tei-note:not([_reference]) {
|
|
223
|
+
color: #9E9E9E;
|
|
224
|
+
}
|
|
225
|
+
|
|
212
226
|
tei-anchor {
|
|
213
227
|
font-size: 0.8em;
|
|
214
228
|
vertical-align: super;
|
|
215
229
|
cursor: pointer;
|
|
230
|
+
line-height: 1;
|
|
231
|
+
}
|
|
232
|
+
|
|
233
|
+
tei-anchor::before {
|
|
234
|
+
content: attr(_reference);
|
|
235
|
+
}
|
|
236
|
+
tei-anchor::after {
|
|
237
|
+
content: "\200B";
|
|
216
238
|
}
|
|
217
239
|
|
|
218
240
|
tei-abbr {
|