WEBUI JS: Some other tweaks to the epg broadcast info dialog styling

This commit is contained in:
Jaroslav Kysela 2014-09-29 15:58:35 +02:00
parent 9e007f5662
commit 8fa6977837
2 changed files with 9 additions and 3 deletions

View file

@ -120,7 +120,7 @@ tvheadend.epgDetails = function(event) {
content += '<div class="x-epg-meta">Content Type: ' + genre.join(', ') + '</div>';
}
content += '<div class="x-epg-meta"><a target="_blank" href="http://akas.imdb.com/find?q=' + event.title + '">Search IMDB</a></div>';
content += '<div class="x-epg-action"><a target="_blank" href="http://akas.imdb.com/find?q=' + event.title + '">Search IMDB</a></div>';
content += '<div id="related"></div>';
content += '<div id="altbcast"></div>';
@ -129,7 +129,7 @@ tvheadend.epgDetails = function(event) {
var title = event.title;
if (event.episodeOnscreen)
title += ' / ' + event.episodeOnscreen;
content += '<div class="x-epg-meta"><a href="play/stream/channel/' + event.channelUuid +
content += '<div class="x-epg-action"><a href="play/stream/channel/' + event.channelUuid +
'?title=' + encodeURIComponent(title) + '">Play</a></div>';
}

View file

@ -336,7 +336,7 @@
.x-epg-title {
margin: 5px;
font: normal 15px arial, tahoma, helvetica, sans-serif;
font: normal 16px arial, tahoma, helvetica, sans-serif;
font-weight: bold;
}
@ -363,6 +363,12 @@
}
.x-epg-meta {
font-style: italic;
margin: 5px;
}
.x-epg-action {
font-weight: bold;
margin: 5px;
}