]> git.sesse.net Git - vlc/commitdiff
index.html : fix « Weird URLs
authorAntoine Cellerier <dionoea@videolan.org>
Mon, 9 May 2005 09:46:31 +0000 (09:46 +0000)
committerAntoine Cellerier <dionoea@videolan.org>
Mon, 9 May 2005 09:46:31 +0000 (09:46 +0000)
  (?control=stop&control=seek&control=seek&seek_value=&control=seek) »

style.css : small esthetic fix

share/http/index.html
share/http/style.css

index 192d8842cdf1a4328c7b4c051e9adc6cf7e760cb..4857d7fcab79c49f87d13082a9c6437a1d9be111 100644 (file)
@@ -36,21 +36,39 @@ function changeMe(item)
     <div class="left">
       <div class="sectitle">Playback control</div>
       <div class="section-controls">
-        <form method="get" action="">
-          <p>
+        <p>
+          <form method="get" action="" style="display: inline">
             <input type="submit" name="control" value="stop" />
+          </form>
+          <form method="get" action="" style="display: inline">
             <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" />
+          </form>
+          <form method="get" action="" style="display: inline">
             <input type="submit" name="control" value="next" />
-          </p>
+          </form>
+        </p>
+        <p>
+          <form method="get" action="" style="display: inline">
             <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"/>
-            <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="submit" value="Seek" />
           </form>
-        <br />
+        </p>
+        <p>
           <span class="small">( Seek Textbox: for example "+12min 42sec", "01:13:43", "-12%" etc... )</span>
+        </p>
       </div> <!-- End section -->
 
       <div class="sectitle">Misc controls</div>
@@ -93,11 +111,11 @@ function changeMe(item)
           <table class="add">
             <tr>
               <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>
               <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>
           </table>
         </form>
index 9f3d4a13115d3515ade49c6c37e6f50113e1b2b1..6e56fb3b3c658250ba8385be9bdc78dbb31ed34e 100644 (file)
@@ -89,6 +89,10 @@ form {
     padding: 0pt;
 }
 
+input {
+    border: 1px solid black;
+}
+
 ul#playlist, ul#playlist ul{
     list-style-type: none;
 }