diff --git a/CHANGELOG.md b/CHANGELOG.md index 2e837cb..4f4737d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,7 +1,7 @@ ## 0.6.0 – 2017-09-20 ### Added - Display station metadata - [#22](https://github.com/owncloud/mail/pull/1523) @onny + [#22](https://git.project-insanity.org/onny/nextcloud-app-radio/commit/c62ee87b490de39ed27e43dec4dfff221bff40b1) @onny - Add changelog file [#28](https://git.project-insanity.org/onny/nextcloud-app-radio/commit/04b1bbf49c8d7eb95e9e5d08e9e3b4b7cdc7f4ee) @onny - Continious scrolling diff --git a/css/main.css b/css/main.css index 59b672f..f0f1d81 100644 --- a/css/main.css +++ b/css/main.css @@ -136,6 +136,7 @@ background-color: #fff; height: 40px; } + #filestable tbody tr:hover, #filestable tbody tr:focus, #filestable tbody .name:focus, @@ -144,10 +145,12 @@ #filestable tbody tr.highlighted .name:focus, #filestable tbody tr.selected, #filestable tbody tr.searchresult, -table tr.mouseOver td { +#filestable tbody tr.rowhighlight, +table tr.mouseOver { transition: background-color 0.3s ease; background-color: #f8f8f8; } + tbody a { color:#000; } span.conflict-path, span.extension, span.uploading, td.date { diff --git a/js/main.js b/js/main.js index 76676e6..d34e334 100644 --- a/js/main.js +++ b/js/main.js @@ -30,6 +30,11 @@ $(function(){ action_play(stationid); $('#player').attr('data-id',stationid); $("#station_metadata").html("Playing: "+stationname); + + /* dirty fix missing background color for first td */ + $('tbody tr').css("background-color", "white"); + $(this).parent().css("background-color", "#f8f8f8"); + var element = document.getElementById('station_metadata'); if (isElementOverflowing(element)) { wrapContentsInMarquee(element);