Commit 2f6c710f authored by Juliusz Chroboczek's avatar Juliusz Chroboczek

Fix side menu input elements.

Input elements have no contents.  Thanks to Antonin Décimo.
parent 7d4dabe3
......@@ -850,12 +850,13 @@ h1 {
height: 56px;
}
.sidenav label{
.sidenav-label {
display: block;
margin-top: 15px;
}
.sidenav .label-first {
.sidenav-label-first {
display: block;
margin-top: 0;
}
......
......@@ -161,18 +161,19 @@
<div id="mediaoptions" class="invisible">
<fieldset>
<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">
<option value="">off</option>
</select>
<label for="audioselect">Microphone:</label>
<label for="audioselect" class="sidenav-label">Microphone:</label>
<select id="audioselect" class="select select-inline">
<option value="">off</option>
</select>
<form>
<input id="blackboardbox" type="checkbox">Blackboard mode</input>
<input id="blackboardbox" type="checkbox"/>
<label for="blackboardbox">Blackboard mode</label>
</form>
</fieldset>
......@@ -182,7 +183,7 @@
<legend>Other Settings</legend>
<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">
<option value="lowest">lowest</option>
<option value="low">low</option>
......@@ -192,7 +193,7 @@
</form>
<form id="requestform">
<label for="requestselect">Receive:</label>
<label for="requestselect" class="sidenav-label">Receive:</label>
<select id="requestselect" class="select select-inline">
<option value="">nothing</option>
<option value="audio">audio only</option>
......@@ -202,14 +203,15 @@
</form>
<form>
<input id="activitybox" type="checkbox">Activity detection</input>
<input id="activitybox" type="checkbox"/>
<label for="activitybox">Activity detection</label>
</form>
</fieldset>
<form id="fileform">
<label for="fileinput">Play local file:</label>
<input type="file" id="fileinput" accept="audio/*,video/*" multiple></input>
<label for="fileinput" class=".sidenav-label-first">Play local file:</label>
<input type="file" id="fileinput" accept="audio/*,video/*" multiple/>
</form>
</div>
</div>
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment