@jinntec/jinntap 1.8.1 → 1.9.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 +22 -0
- package/dist/jinn-tap.es.js +521 -441
- package/dist/jinn-tap.umd.js +25 -20
- package/package.json +2 -1
package/dist/editor-styles.css
CHANGED
|
@@ -93,6 +93,24 @@ tei-hi[rend="code"] {
|
|
|
93
93
|
font-family: monospace;
|
|
94
94
|
}
|
|
95
95
|
|
|
96
|
+
tei-figure {
|
|
97
|
+
display: block;
|
|
98
|
+
margin: 1rem 0;
|
|
99
|
+
padding: .5rem;
|
|
100
|
+
border: 1px solid #ccc;
|
|
101
|
+
border-radius: 4px;
|
|
102
|
+
}
|
|
103
|
+
|
|
104
|
+
tei-figure > img {
|
|
105
|
+
display: block;
|
|
106
|
+
margin: 0 auto;
|
|
107
|
+
}
|
|
108
|
+
|
|
109
|
+
tei-figure > tei-figDesc {
|
|
110
|
+
display: block;
|
|
111
|
+
text-align: right;
|
|
112
|
+
font-size: .8rem;
|
|
113
|
+
}
|
|
96
114
|
tei-persname {
|
|
97
115
|
color: #A83410;
|
|
98
116
|
}
|
|
@@ -218,6 +236,10 @@ tei-ref {
|
|
|
218
236
|
cursor: pointer;
|
|
219
237
|
}
|
|
220
238
|
|
|
239
|
+
.ProseMirror-selectednode {
|
|
240
|
+
outline: 2px solid var(--pico-primary);
|
|
241
|
+
}
|
|
242
|
+
|
|
221
243
|
.debug tei-div, .debug tei-p, .debug tei-item {
|
|
222
244
|
margin-right: 2px;
|
|
223
245
|
padding-right: 2px;
|