Removed border radius from flash mp3 player
authorHarvie <tomas@mudrunka.cz>
Fri, 19 Nov 2010 09:01:47 +0000 (10:01 +0100)
committerHarvie <tomas@mudrunka.cz>
Fri, 19 Nov 2010 09:01:47 +0000 (10:01 +0100)
index.php
jbx/themes/default/jukebox.css

index 08e8329a9c604030891017b76d829410bc5784cc..288d031764fcb262cbc1fcd376d6301e9b375872 100755 (executable)
--- a/index.php
+++ b/index.php
@@ -223,10 +223,11 @@ function render_tr_playframe_show() {
        if($GLOBALS['flash_player_frame'] == 'playframe-show' && $GLOBALS['useflash']) { ?>
 <tr id="playframe-tr">
 <td><a href="?blank" target="playframe-show" title="Stop playback" class="icon ifstop">S</a></td>
-<td colspan="100%">
+<td colspan="100%" class="noradius nomarpad">
 <iframe
 src="?blank"
 name="playframe-show"
+class="noradius nomarpad"
 width="100%"
 height="24"
 style="border:none;"
index 9a8b8e2c68580c3d17842804ba2c9da2c3dc28a1..c9ad07ac1d0333410f33592d277743985d7e8c65 100755 (executable)
@@ -2,7 +2,8 @@
  * Example CSS for Harvie's JuKe!Box
  */
 
-*:not(html):not(body) {        border-radius:6px; -moz-border-radius:5px; } 
+*:not(html):not(body):not(.noradius) { border-radius:6px; -moz-border-radius:5px; }
+.noradius {                            border-radius:0; -moz-border-radius:0; }
 
 body {
        color: lightblue;
@@ -60,6 +61,11 @@ td {
        background-color: #000099;
 }
 
+.nomarpad {
+       margin: 0;
+       padding: 0;
+}
+
 .directory {
        font-weight: bolder;
 }
This page took 0.166789 seconds and 4 git commands to generate.