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>
<label> <label>
<input type="radio" name="extension_floating_position" value="1" /> <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> </label>
</div> </div>
<!--<label for="extension_floating_interval">In-Chat Insertion Depth</label>--> <!--<label for="extension_floating_interval">In-Chat Insertion Depth</label>-->
<label for="extension_floating_interval">Insertion Frequency</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> <br>
<span>User inputs until next insertion: <span id="extension_floating_counter">(disabled)</span></span> <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; font-family: "Noto Sans", "Noto Color Emoji", sans-serif;
padding: 7px; padding: 7px;
/* width: 100%; */ width: 100%;
margin: 5px 0; margin: 5px 0;
} }
h3 { h3 {
margin: 10px 0; margin: 10px 0;
} }
@@ -1207,6 +1209,10 @@ input[type=search]:focus::-webkit-search-cancel-button {
width: calc(100% - 70px); width: calc(100% - 70px);
} }
.widthUnset {
width: unset;
}
#avatar_url_div { #avatar_url_div {
display: none; display: none;
} }