From: Harvie Date: Sun, 11 Jul 2010 19:08:14 +0000 (+0200) Subject: Filename column is now trying to be as wide as possible X-Git-Url: https://git.harvie.cz/?p=mirrors%2FJukeBox.git;a=commitdiff_plain;h=53d2c31cae8909b925e5f3ec8981876c4bcf9883 Filename column is now trying to be as wide as possible --- diff --git a/index.php b/index.php index d345f39..b87fedc 100755 --- a/index.php +++ b/index.php @@ -202,7 +202,7 @@ function render_file_line($dir, $item, $dir_url, $index, $filesize, $parent = fa '" target="'.$GLOBALS['flash_player_frame'].'" class="icon ifplay">F/'. 'S'); } - echo(' '.unxss(str_replace('_', ' ', $item)).''.$filesize." MiB \n"); + echo(' '.unxss(str_replace('_', ' ', $item)).''.$filesize." MiB \n"); } function render_dir_line($current_dir, $item, $i) { @@ -212,7 +212,7 @@ function render_dir_line($current_dir, $item, $i) { ''.$i.'P/'. 'R'); if($GLOBALS['useflash']) echo('/F'); - echo('[DIR] '.unxss(str_replace('_', ' ', $item)). + echo('[DIR] '.unxss(str_replace('_', ' ', $item)). "\n"); } diff --git a/jbx/themes/default/jukebox.css b/jbx/themes/default/jukebox.css index 0638140..40adbe1 100755 --- a/jbx/themes/default/jukebox.css +++ b/jbx/themes/default/jukebox.css @@ -83,6 +83,7 @@ tr:hover * a { text-decoration: underline;} /* Helpful Classes */ *.hide { margin:0; padding:0; width:0; height:0; border:none; display:none; } +*.maximize-width { width:100%; } *.red { color: red; } *.yellow { color: yellow;} *.blue { color: blue;}