Skip to content

Commit

Permalink
feat(annotator): text viewer shows specific labels for sections (e.g.…
Browse files Browse the repository at this point in the history
… 1485). gh-76.
  • Loading branch information
geoffroy-noel-ddh committed Sep 27, 2024
1 parent d05129c commit a72e0a1
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions app/assets/main.css
Original file line number Diff line number Diff line change
Expand Up @@ -261,14 +261,20 @@ The name of the element is inserted into the class attribute:
.textpart-number:before {
content: 'Part ';
}
/* 613 */
div[data-tei-subtype='fragment-physical'] .textpart-number:before {
content: 'Fragment ';
}
/* 1485 */
div[data-tei-subtype='section'] .textpart-number:before {
content: 'Section ';
}
.textpart-number, .column-number {
font-size: 1.5em;
border-top: 1px solid gray;
width: 90%;
}
/* 613 */
.column-number:before {
content: 'Column ';
}
Expand Down

0 comments on commit a72e0a1

Please sign in to comment.