From 63b3d196e8ffd70f37ccb8ff91b5ab2badfb150e Mon Sep 17 00:00:00 2001 From: Fabio Manganiello Date: Thu, 26 Apr 2018 15:29:10 +0200 Subject: [PATCH] Video icons fixes --- platypush/backend/http/static/css/video.omxplayer.css | 3 ++- platypush/backend/http/static/js/video.omxplayer.js | 4 ++-- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/platypush/backend/http/static/css/video.omxplayer.css b/platypush/backend/http/static/css/video.omxplayer.css index d6f7e9b2b..52e902746 100644 --- a/platypush/backend/http/static/css/video.omxplayer.css +++ b/platypush/backend/http/static/css/video.omxplayer.css @@ -33,7 +33,8 @@ form#video-ctrl { } .video-icon-container { - margin-right: 1rem; + font-size: 2rem; + margin-right: 2rem; } .video-result.selected { diff --git a/platypush/backend/http/static/js/video.omxplayer.js b/platypush/backend/http/static/js/video.omxplayer.js index faa1cb53f..c956b687e 100644 --- a/platypush/backend/http/static/js/video.omxplayer.js +++ b/platypush/backend/http/static/js/video.omxplayer.js @@ -24,11 +24,11 @@ $(document).ready(function() { var $icon = $(''); if (url.startsWith('file://')) { - $icon.addClass('fa-hdd'); + $icon.addClass('fa-download'); } else if (url.startsWith('https://www.youtube.com/')) { $icon.addClass('fa-youtube'); } else if (url.startsWith('magnet:?')) { - $icon.addClass('fa-wifi'); + $icon.addClass('fa-film'); } else { $icon.addClass('fa-video'); }