no-more-proxy #3

Merge aplicado
CenTdemeern1 mesclou 12 commits from no-more-proxy into main 2025-02-03 00:03:51 +00:00
2 arquivos alterados com 11 adições e 1 exclusões
Mostrando apenas as alterações do commit c0488d1767 - Mostrar todos os commits

Add defaults list for use later

CenTdemeern1 2025-01-28 23:52:17 +01:00

Ver arquivo

@ -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>

Ver arquivo

@ -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%;
} }