diff --git a/objects/playlists.json.php b/objects/playlists.json.php index 9b40b38048..58eda86202 100644 --- a/objects/playlists.json.php +++ b/objects/playlists.json.php @@ -11,6 +11,7 @@ header('Content-Type: application/json'); _session_write_close(); //mysqlBeginTransaction(); $row = PlayList::getAllFromUser(User::getId(), false); +//var_dump($row);exit; foreach ($row as $key => $value) { foreach ($row[$key]['videos'] as $key2 => $value2) { unset($row[$key]['videos'][$key2]['description']); diff --git a/plugin/PlayLists/PlayLists.php b/plugin/PlayLists/PlayLists.php index cb09f2893e..8e0eae8d3c 100644 --- a/plugin/PlayLists/PlayLists.php +++ b/plugin/PlayLists/PlayLists.php @@ -143,7 +143,6 @@ class PlayLists extends PluginAbstract $obj = $this->getDataObject(); $css = ''; - $css .= ''; if (!empty(getPlaylists_id()) && isEmbed()) { $css .= ""; diff --git a/plugin/PlayLists/listGroupItemTemplate.html b/plugin/PlayLists/listGroupItemTemplate.html index 7e04610ec6..a2003cd231 100644 --- a/plugin/PlayLists/listGroupItemTemplate.html +++ b/plugin/PlayLists/listGroupItemTemplate.html @@ -1,20 +1,22 @@ - - - + - - - {name_translated} - + + + + + {name_translated} + +
- +
\ No newline at end of file diff --git a/plugin/PlayLists/style.css b/plugin/PlayLists/style.css index e1d743b3a7..deee48744b 100644 --- a/plugin/PlayLists/style.css +++ b/plugin/PlayLists/style.css @@ -1,17 +1,40 @@ -.PlayListList{ +.PlayListList { max-height: 235px; overflow-x: hidden; overflow-y: scroll; } -.PlayListList.list-group .list-group-item{ + +.PlayListList.list-group .list-group-item { padding: 5px; } + .vjs-playlist img { min-height: 10px; } + .vjs-mouse.vjs-playlist { font-size: 12px; } + .vjs-playlist .vjs-up-next-text { font-size: .8em; } + +.plistNameSearch { + width: calc(100% - 40px); +} + + + +.epgProgress.progress-bar-primary { + opacity: 0.5; +} + +.epgProgress:hover { + opacity: 1.0; +} + +.epgProgressText { + border-right: 1px solid #FFF; + height: 100%; +} \ No newline at end of file