This commit is contained in:
SillyLossy
2023-05-16 17:01:43 +03:00
2 changed files with 9 additions and 3 deletions

View File

@@ -139,14 +139,14 @@ async function moduleWorker() {
</label>
<label>
<input type="radio" name="extension_floating_position" value="1" />
In-chat @ Depth <input id="extension_floating_depth" class="text_pole" type="number" min="0" max="99" />
In-chat @ Depth <input id="extension_floating_depth" class="text_pole widthUnset" type="number" min="0" max="99" />
</label>
</div>
<!--<label for="extension_floating_interval">In-Chat Insertion Depth</label>-->
<label for="extension_floating_interval">Insertion Frequency</label>
<input id="extension_floating_interval" class="text_pole" type="number" min="0" max="999" /><small> (0 = Disable)</small>
<input id="extension_floating_interval" class="text_pole widthUnset" type="number" min="0" max="999" /><small> (0 = Disable)</small>
<br>
<span>User inputs until next insertion: <span id="extension_floating_counter">(disabled)</span></span>

View File

@@ -845,10 +845,12 @@ select {
font-family: "Noto Sans", "Noto Color Emoji", sans-serif;
padding: 7px;
/* width: 100%; */
width: 100%;
margin: 5px 0;
}
h3 {
margin: 10px 0;
}
@@ -1207,6 +1209,10 @@ input[type=search]:focus::-webkit-search-cancel-button {
width: calc(100% - 70px);
}
.widthUnset {
width: unset;
}
#avatar_url_div {
display: none;
}