Merge pull request #12 from ZXY101/jidoujisho-testing

Temporary Jidoujisho compatibility
This commit is contained in:
Shaun Tenner
2024-02-14 23:55:59 +02:00
committed by GitHub
3 changed files with 21 additions and 9 deletions

View File

@@ -76,9 +76,9 @@
}
</script>
{#each textBoxes as { fontSize, height, left, lines, top, width, writingMode }, index (`text-box-${index}`)}
{#each textBoxes as { fontSize, height, left, lines, top, width, writingMode }, index (`textBox-${index}`)}
<div
class="text-box"
class="textBox"
style:width
style:height
style:left
@@ -100,7 +100,7 @@
{/each}
<style>
.text-box {
.textBox {
color: black;
padding: 0;
position: absolute;
@@ -111,13 +111,13 @@
z-index: 11;
}
.text-box:focus,
.text-box:hover {
.textBox:focus,
.textBox:hover {
background: rgb(255, 255, 255);
border: 1px solid rgba(0, 0, 0, 0);
}
.text-box p {
.textBox p {
display: none;
white-space: nowrap;
letter-spacing: 0.1em;
@@ -128,8 +128,8 @@
z-index: 11;
}
.text-box:focus p,
.text-box:hover p {
.textBox:focus p,
.textBox:hover p {
display: table;
}
</style>