@jinntec/jinntap 1.6.0 → 1.7.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 +208 -0
- package/dist/jinn-tap.es.js +1218 -1185
- package/dist/jinn-tap.umd.js +22 -22
- package/dist/jinntap-logo-128.png +0 -0
- package/dist/jinntap-logo.png +0 -0
- package/package.json +6 -2
|
@@ -0,0 +1,208 @@
|
|
|
1
|
+
tei-div, tei-p, tei-item {
|
|
2
|
+
display: block;
|
|
3
|
+
}
|
|
4
|
+
|
|
5
|
+
tei-head {
|
|
6
|
+
font-size: 2rem;
|
|
7
|
+
font-weight: bold;
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
tei-div > tei-div > tei-head {
|
|
11
|
+
font-size: 1.75rem;
|
|
12
|
+
}
|
|
13
|
+
|
|
14
|
+
tei-div > tei-div > tei-div > tei-head {
|
|
15
|
+
font-size: 1.5rem;
|
|
16
|
+
}
|
|
17
|
+
|
|
18
|
+
tei-div > tei-div > tei-div > tei-div > tei-head {
|
|
19
|
+
font-size: 1.25rem;
|
|
20
|
+
}
|
|
21
|
+
|
|
22
|
+
tei-title[level="m"] {
|
|
23
|
+
font-style: italic;
|
|
24
|
+
}
|
|
25
|
+
|
|
26
|
+
.debug tei-div {
|
|
27
|
+
border-right: 2px solid var(--tei-div-color-0);
|
|
28
|
+
}
|
|
29
|
+
|
|
30
|
+
.debug tei-div > tei-div {
|
|
31
|
+
border-right: 2px solid var(--tei-div-color-1);
|
|
32
|
+
}
|
|
33
|
+
|
|
34
|
+
.debug tei-div > tei-div > tei-div {
|
|
35
|
+
border-right: 2px solid var(--tei-div-color-2);
|
|
36
|
+
}
|
|
37
|
+
|
|
38
|
+
.debug tei-div > tei-div {
|
|
39
|
+
border-right: 2px solid var(--tei-div-color-3);
|
|
40
|
+
}
|
|
41
|
+
|
|
42
|
+
.debug tei-div > tei-div > tei-div {
|
|
43
|
+
border-right: 2px solid var(--tei-div-color-4);
|
|
44
|
+
}
|
|
45
|
+
|
|
46
|
+
.debug tei-div > tei-div > tei-div > tei-div {
|
|
47
|
+
border-right: 2px solid var(--tei-div-color-5);
|
|
48
|
+
}
|
|
49
|
+
|
|
50
|
+
tei-p {
|
|
51
|
+
display: block;
|
|
52
|
+
margin: 0.5em 0;
|
|
53
|
+
position: relative;
|
|
54
|
+
}
|
|
55
|
+
|
|
56
|
+
.debug tei-p {
|
|
57
|
+
border-right: 2px solid var(--tei-p-color);
|
|
58
|
+
}
|
|
59
|
+
|
|
60
|
+
tei-p[rend="center"] {
|
|
61
|
+
text-align: center;
|
|
62
|
+
}
|
|
63
|
+
|
|
64
|
+
tei-p[rend="right"] {
|
|
65
|
+
text-align: right;
|
|
66
|
+
}
|
|
67
|
+
|
|
68
|
+
tei-p[rend="justify"] {
|
|
69
|
+
text-align: justify;
|
|
70
|
+
}
|
|
71
|
+
|
|
72
|
+
tei-hi[rend="b"] {
|
|
73
|
+
font-weight: bold;
|
|
74
|
+
}
|
|
75
|
+
|
|
76
|
+
tei-hi[rend="i"] {
|
|
77
|
+
font-style: italic;
|
|
78
|
+
}
|
|
79
|
+
|
|
80
|
+
tei-hi[rend="u"] {
|
|
81
|
+
text-decoration: underline;
|
|
82
|
+
}
|
|
83
|
+
|
|
84
|
+
tei-hi[rend="code"] {
|
|
85
|
+
font-family: monospace;
|
|
86
|
+
}
|
|
87
|
+
|
|
88
|
+
tei-persname {
|
|
89
|
+
color: #A83410;
|
|
90
|
+
}
|
|
91
|
+
|
|
92
|
+
tei-placeName {
|
|
93
|
+
color: #E48500;
|
|
94
|
+
}
|
|
95
|
+
|
|
96
|
+
tei-orgName {
|
|
97
|
+
color: #F45D2C;
|
|
98
|
+
}
|
|
99
|
+
|
|
100
|
+
tei-term {
|
|
101
|
+
color: #9236A4;
|
|
102
|
+
}
|
|
103
|
+
|
|
104
|
+
tei-list, tei-noteGrp {
|
|
105
|
+
display: block;
|
|
106
|
+
list-style-type: disc;
|
|
107
|
+
margin: 1em 0;
|
|
108
|
+
padding-left: 2em;
|
|
109
|
+
}
|
|
110
|
+
|
|
111
|
+
tei-list[rend="ordered"] {
|
|
112
|
+
list-style-type: decimal;
|
|
113
|
+
}
|
|
114
|
+
|
|
115
|
+
tei-list > tei-head {
|
|
116
|
+
font-size: 1.25rem;
|
|
117
|
+
}
|
|
118
|
+
|
|
119
|
+
tei-item, tei-note {
|
|
120
|
+
display: list-item;
|
|
121
|
+
list-style-position: outside;
|
|
122
|
+
margin: 0.5em 0;
|
|
123
|
+
}
|
|
124
|
+
|
|
125
|
+
.debug tei-item {
|
|
126
|
+
border-right: 1px solid var(--tei-item-color);
|
|
127
|
+
}
|
|
128
|
+
|
|
129
|
+
tei-noteGrp {
|
|
130
|
+
list-style-type: none;
|
|
131
|
+
padding-left: 0;
|
|
132
|
+
}
|
|
133
|
+
|
|
134
|
+
tei-noteGrp::before {
|
|
135
|
+
padding: 1rem 0 0;
|
|
136
|
+
margin-top: 2rem;
|
|
137
|
+
border-top: 1px solid #ccc;
|
|
138
|
+
content: "";
|
|
139
|
+
display: block;
|
|
140
|
+
width: 220px;
|
|
141
|
+
}
|
|
142
|
+
|
|
143
|
+
tei-note {
|
|
144
|
+
padding-left: 2rem;
|
|
145
|
+
}
|
|
146
|
+
|
|
147
|
+
tei-note::before {
|
|
148
|
+
content: attr(_reference) ".";
|
|
149
|
+
margin-right: 0.5em;
|
|
150
|
+
}
|
|
151
|
+
|
|
152
|
+
tei-anchor {
|
|
153
|
+
font-size: 0.8em;
|
|
154
|
+
vertical-align: super;
|
|
155
|
+
cursor: pointer;
|
|
156
|
+
}
|
|
157
|
+
|
|
158
|
+
tei-pb, tei-lb {
|
|
159
|
+
display: inline-block;
|
|
160
|
+
background-color: #ffa500;
|
|
161
|
+
font-size: 1rem;
|
|
162
|
+
font-weight: normal;
|
|
163
|
+
border-radius: 4px;
|
|
164
|
+
padding: 2px 6px;
|
|
165
|
+
}
|
|
166
|
+
|
|
167
|
+
tei-lb {
|
|
168
|
+
display: inline;
|
|
169
|
+
}
|
|
170
|
+
|
|
171
|
+
tei-lb::after {
|
|
172
|
+
content: "\A";
|
|
173
|
+
white-space: pre;
|
|
174
|
+
}
|
|
175
|
+
|
|
176
|
+
tei-p.is-empty::before {
|
|
177
|
+
color: #adb5bd;
|
|
178
|
+
content: attr(data-placeholder);
|
|
179
|
+
position: absolute;
|
|
180
|
+
height: 0;
|
|
181
|
+
pointer-events: none;
|
|
182
|
+
}
|
|
183
|
+
|
|
184
|
+
tei-ref {
|
|
185
|
+
color: var(--pico-primary);
|
|
186
|
+
text-decoration: underline;
|
|
187
|
+
cursor: pointer;
|
|
188
|
+
}
|
|
189
|
+
|
|
190
|
+
.debug tei-div, .debug tei-p, .debug tei-item {
|
|
191
|
+
margin-right: 2px;
|
|
192
|
+
padding-right: 2px;
|
|
193
|
+
}
|
|
194
|
+
|
|
195
|
+
.debug *::after {
|
|
196
|
+
display: inline-block;
|
|
197
|
+
max-width: 7ch;
|
|
198
|
+
text-overflow: ellipsis;
|
|
199
|
+
white-space: nowrap;
|
|
200
|
+
overflow: hidden;
|
|
201
|
+
border-radius: 4px;
|
|
202
|
+
margin-left: 2px;
|
|
203
|
+
padding: 2px 6px;
|
|
204
|
+
font-size: .65rem;
|
|
205
|
+
font-weight: normal;
|
|
206
|
+
color: white;
|
|
207
|
+
vertical-align: middle;
|
|
208
|
+
}
|