Skip to content
Snippets Groups Projects
Commit 1c672f18 authored by Tillmann Dönicke's avatar Tillmann Dönicke
Browse files

feat(tei:choice): superscript exclamation mark, remove whitespace

parent 74252c4e
No related branches found
No related tags found
2 merge requests!42Master,!40Resolve "Darstellung des Elements tei:choice"
......@@ -412,7 +412,7 @@ hr.metamark-line.doubleLine {
}
[data-cert="low"]::after {
content: "?";
content: "?";
font-size: small;
vertical-align: super;
}
......@@ -423,12 +423,24 @@ hr.metamark-line.doubleLine {
/* corr::before { content: "<"; }
corr::after { content: ">"; } */
.tei.sic::before { content: "!(Text:"; }
/*.tei.sic::before { content: "!(Text:"; }*/
:has(+ .sic)::after {
content: "!";
font-size: small;
vertical-align: super;
}
.tei.sic::before { content: "(Text:"; }
.tei.sic::after { content: ")"; }
/* choice > sic:not(:last-child) {
display: none;
} */
/* Remove unwanted whitespace in tei:choice
using this hack: https://stackoverflow.com/a/16498754
*/
.choice {
font-size: 0.1%;
}
.choice > * {
font-size: 100000%;
}
.damage::before { content: "["; }
.damage::after { content: "]"; }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment