no-more-proxy #3

Merged
CenTdemeern1 merged 12 commits from no-more-proxy into main 2025-02-03 00:03:51 +00:00
2 changed files with 11 additions and 1 deletions
Showing only changes of commit c0488d1767 - Show all commits

View file

@ -87,7 +87,7 @@ Unchecking this is not recommended, and this option only exists for exceptional
<label for="instanceSoftware">Instance software</label> <label for="instanceSoftware">Instance software</label>
<br> <br>
<select id="instanceSoftware" type="text" name="instanceSoftware" required> <select id="instanceSoftware" type="text" name="instanceSoftware" required>
<option value="">(Please select)</option> <option value="" disabled>(Please select)</option>
</select> </select>
</div> </div>
<div class="half-width flex-row-reverse"> <div class="half-width flex-row-reverse">
@ -102,6 +102,12 @@ Unchecking this is not recommended, and this option only exists for exceptional
</div> </div>
</div> </div>
<br> <br>
<label for="defaultsList">Default option for:</label><br>
<select id="defaultsList" class="full-width" multiple>
<option value="" disabled>(None, use the "Redirect always" button to set!)</option>
</select>
<button id="removeDefaults" disabled>Remove</button>
<br><br>
<button type="submit">OK</button> <button type="submit">OK</button>
<button type="reset" class="close">Cancel</button> <button type="reset" class="close">Cancel</button>
</form> </form>

View file

@ -126,6 +126,10 @@ abbr[title] {
min-height: 50%; min-height: 50%;
} }
.full-width {
min-width: 100%;
}
.full-height { .full-height {
min-height: 100%; min-height: 100%;
} }