Commit a87ece47 authored by Antoine Cellerier's avatar Antoine Cellerier

index.html : fix « Weird URLs

  (?control=stop&control=seek&control=seek&seek_value=&control=seek) »

style.css : small esthetic fix
parent a771f11c
...@@ -36,21 +36,39 @@ function changeMe(item) ...@@ -36,21 +36,39 @@ function changeMe(item)
<div class="left"> <div class="left">
<div class="sectitle">Playback control</div> <div class="sectitle">Playback control</div>
<div class="section-controls"> <div class="section-controls">
<form method="get" action="">
<p> <p>
<form method="get" action="" style="display: inline">
<input type="submit" name="control" value="stop" /> <input type="submit" name="control" value="stop" />
</form>
<form method="get" action="" style="display: inline">
<input type="submit" name="control" value="pause" /> <input type="submit" name="control" value="pause" />
<br /> </form>
</p>
<p>
<form method="get" action="" style="display: inline">
<input type="submit" name="control" value="previous" /> <input type="submit" name="control" value="previous" />
</form>
<form method="get" action="" style="display: inline">
<input type="submit" name="control" value="next" /> <input type="submit" name="control" value="next" />
</form>
</p> </p>
<p>
<form method="get" action="" style="display: inline">
<input type="submit" name="seek_value" value="-1min"/><input type="hidden" name="control" value="seek"/> <input type="submit" name="seek_value" value="-1min"/><input type="hidden" name="control" value="seek"/>
</form>
<form method="get" action="" style="display: inline">
<input type="submit" name="seek_value" value="+1min"/><input type="hidden" name="control" value="seek"/> <input type="submit" name="seek_value" value="+1min"/><input type="hidden" name="control" value="seek"/>
<br /> </form>
</p>
<p>
<form method="get" action="">
<input type="text" name="seek_value" size="14"/><input type="hidden" name="control" value="seek"/> <input type="text" name="seek_value" size="14"/><input type="hidden" name="control" value="seek"/>
<input type="submit" value="Seek" />
</form> </form>
<br /> </p>
<p>
<span class="small">( Seek Textbox: for example "+12min 42sec", "01:13:43", "-12%" etc... )</span> <span class="small">( Seek Textbox: for example "+12min 42sec", "01:13:43", "-12%" etc... )</span>
</p>
</div> <!-- End section --> </div> <!-- End section -->
<div class="sectitle">Misc controls</div> <div class="sectitle">Misc controls</div>
...@@ -93,11 +111,11 @@ function changeMe(item) ...@@ -93,11 +111,11 @@ function changeMe(item)
<table class="add"> <table class="add">
<tr> <tr>
<td>Add a MRL (Media Resource Locator) to the playlist</td> <td>Add a MRL (Media Resource Locator) to the playlist</td>
<td><input type="text" name="mrl" size="40" /><input type="submit" name="control" value="add" /></td> <td><input type="text" name="mrl" size="40" /> <input type="submit" name="control" value="add" /></td>
</tr> </tr>
<tr> <tr>
<td>Stream Output:</td> <td>Stream Output:</td>
<td><input type="text" name="sout" size="40" value="<vlc id="get" param1="sout" param2="string" />" /><input type="submit" name="control" value="sout" /></td> <td><input type="text" name="sout" size="40" value="<vlc id="get" param1="sout" param2="string" />" /> <input type="submit" name="control" value="sout" /></td>
</tr> </tr>
</table> </table>
</form> </form>
......
...@@ -89,6 +89,10 @@ form { ...@@ -89,6 +89,10 @@ form {
padding: 0pt; padding: 0pt;
} }
input {
border: 1px solid black;
}
ul#playlist, ul#playlist ul{ ul#playlist, ul#playlist ul{
list-style-type: none; list-style-type: none;
} }
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