1
Fork 0

Fix side menu input elements.

Input elements have no contents.  Thanks to Antonin Décimo.
This commit is contained in:
Juliusz Chroboczek 2020-12-01 21:17:10 +01:00
parent 7d4dabe30f
commit 2f6c710f29
2 changed files with 13 additions and 10 deletions

View File

@ -850,12 +850,13 @@ h1 {
height: 56px; height: 56px;
} }
.sidenav label{ .sidenav-label {
display: block; display: block;
margin-top: 15px; margin-top: 15px;
} }
.sidenav .label-first { .sidenav-label-first {
display: block;
margin-top: 0; margin-top: 0;
} }

View File

@ -161,18 +161,19 @@
<div id="mediaoptions" class="invisible"> <div id="mediaoptions" class="invisible">
<fieldset> <fieldset>
<legend>Media Options</legend> <legend>Media Options</legend>
<label for="videoselect" class="label-first">Camera:</label> <label for="videoselect" class="sidenav-label-first">Camera:</label>
<select id="videoselect" class="select select-inline"> <select id="videoselect" class="select select-inline">
<option value="">off</option> <option value="">off</option>
</select> </select>
<label for="audioselect">Microphone:</label> <label for="audioselect" class="sidenav-label">Microphone:</label>
<select id="audioselect" class="select select-inline"> <select id="audioselect" class="select select-inline">
<option value="">off</option> <option value="">off</option>
</select> </select>
<form> <form>
<input id="blackboardbox" type="checkbox">Blackboard mode</input> <input id="blackboardbox" type="checkbox"/>
<label for="blackboardbox">Blackboard mode</label>
</form> </form>
</fieldset> </fieldset>
@ -182,7 +183,7 @@
<legend>Other Settings</legend> <legend>Other Settings</legend>
<form id="sendform"> <form id="sendform">
<label for="sendselect" class="label-first">Send:</label> <label for="sendselect" class="sidenav-label-first">Send:</label>
<select id="sendselect" class="select select-inline"> <select id="sendselect" class="select select-inline">
<option value="lowest">lowest</option> <option value="lowest">lowest</option>
<option value="low">low</option> <option value="low">low</option>
@ -192,7 +193,7 @@
</form> </form>
<form id="requestform"> <form id="requestform">
<label for="requestselect">Receive:</label> <label for="requestselect" class="sidenav-label">Receive:</label>
<select id="requestselect" class="select select-inline"> <select id="requestselect" class="select select-inline">
<option value="">nothing</option> <option value="">nothing</option>
<option value="audio">audio only</option> <option value="audio">audio only</option>
@ -202,14 +203,15 @@
</form> </form>
<form> <form>
<input id="activitybox" type="checkbox">Activity detection</input> <input id="activitybox" type="checkbox"/>
<label for="activitybox">Activity detection</label>
</form> </form>
</fieldset> </fieldset>
<form id="fileform"> <form id="fileform">
<label for="fileinput">Play local file:</label> <label for="fileinput" class=".sidenav-label-first">Play local file:</label>
<input type="file" id="fileinput" accept="audio/*,video/*" multiple></input> <input type="file" id="fileinput" accept="audio/*,video/*" multiple/>
</form> </form>
</div> </div>
</div> </div>