diff --git a/webclient/css/ws.css b/webclient/css/ws.css index f956782..319cccd 100755 --- a/webclient/css/ws.css +++ b/webclient/css/ws.css @@ -285,9 +285,11 @@ background-color: #f0f0f0; border: 1px solid #999; border-bottom: 0; + padding: 0; } .table { + padding: 0; list-style-type:none; } @@ -310,8 +312,8 @@ border-bottom: 1px solid #999; } -.table li h1 { - font-size: 100% !important; +.albumdivider h1, .table li h1 { + font-size: 120% !important; } .albumdivider { @@ -319,7 +321,8 @@ } .smalldivider { - heigth: 10px !important; + font-size: 25% !important; + heigth: 5px !important; background-color: #ddd !important; } @@ -361,10 +364,10 @@ } .currenttrack2 a { - margin-left: 8px; + margin-left: 15px; } .currenttrack a { - margin-left: 14px; + margin-left: 20px; } /******************* diff --git a/webclient/js/functionsvars.js b/webclient/js/functionsvars.js index 2da2eca..18ed6b8 100755 --- a/webclient/js/functionsvars.js +++ b/webclient/js/functionsvars.js @@ -165,9 +165,9 @@ function resultsToTables(results, target, uri) { if (results[i].album.uri != nexturi) { tableid = 'art' + i; //render differently if only one track in the album - if (newalbum.length == 1) { + if ( newalbum.length == 1 ) { // html += '
  • '; - html += '
  • '; + if (i != 0) { html += '
  •  
  • '; } html += '
  • '; html += '

    ' + newalbum[0].name + "

    "; html += '

    '; @@ -189,7 +189,7 @@ function resultsToTables(results, target, uri) { } else { html += '

  • '; // html += ''; - html += '

    ' + results[i].album.name + '

    '; + html += '

    ' + results[i].album.name + '

    '; for ( j = 0; j < results[i].album.artists.length; j++) { html += results[i].album.artists[j].name; html += (j == results[i].album.artists.length - 1) ? '' : ' / '; diff --git a/webclient/js/gui.js b/webclient/js/gui.js index ba4fed7..b6323e8 100755 --- a/webclient/js/gui.js +++ b/webclient/js/gui.js @@ -59,7 +59,7 @@ function resizeMb() { //set height of playlist scrollers if ($(window).width() > 480) { - $('.scroll').height($(window).height() - 104); + $('.scroll').height($(window).height() - 111); //jqm added something which it shouldnt (at least in this case) I guess // $('#playlistspane').removeClass('height').height($(window).height() - 110); $('.scroll').removeClass('height').removeClass('width'); @@ -340,7 +340,6 @@ $(document).ready(function() { //update gui status every x seconds from mopdidy setInterval(updateTimer, STATUS_TIMER); - //only show backbutton if in UIWebview if (window.navigator.standalone) { $("#btback").show();