update guide

This commit is contained in:
Luke Pulverenti 2016-09-15 21:09:46 -04:00
parent 2c9913c69b
commit f7eca29f95
19 changed files with 16920 additions and 16 deletions

View file

@ -32,6 +32,10 @@
box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 1px 5px 0 rgba(0, 0, 0, 0.12), 0 3px 1px -2px rgba(0, 0, 0, 0.2);
}
.emby-button::-moz-focus-inner {
border: 0;
}
.button-flat {
background: transparent;
box-shadow: none;
@ -138,6 +142,10 @@
justify-content: center;
}
.paper-icon-button-light::-moz-focus-inner {
border: 0;
}
.paper-icon-button-light[disabled] {
opacity: .3;
}

View file

@ -310,9 +310,11 @@
return curr.ChannelId == channel.Id;
});
var cssClass = layoutManager.tv ? 'channelPrograms channelPrograms-tv' : 'channelPrograms';
var outerCssClass = layoutManager.tv ? 'channelPrograms channelPrograms-tv' : 'channelPrograms';
html += '<div class="' + cssClass + '" data-channelid="' + channel.Id + '">';
html += '<div class="' + outerCssClass + '" data-channelid="' + channel.Id + '">';
var clickAction = layoutManager.tv ? 'link' : 'programdialog';
for (var i = 0, length = programs.length; i < length; i++) {
@ -367,7 +369,7 @@
if (program.SeriesTimerId) {
timerAttributes += ' data-seriestimerid="' + program.SeriesTimerId + '"';
}
html += '<button data-action="programdialog"' + timerAttributes + ' data-isfolder="' + program.IsFolder + '" data-id="' + program.Id + '" data-serverid="' + program.ServerId + '" data-type="' + program.Type + '" class="' + cssClass + '" style="left:' + startPercent + '%;width:' + endPercent + '%;">';
html += '<button data-action="' + clickAction + '"' + timerAttributes + ' data-isfolder="' + program.IsFolder + '" data-id="' + program.Id + '" data-serverid="' + program.ServerId + '" data-type="' + program.Type + '" class="' + cssClass + '" style="left:' + startPercent + '%;width:' + endPercent + '%;">';
var guideProgramNameClass = "guideProgramName";

View file

@ -365,6 +365,8 @@
recordingCreated = false;
currentProgramId = itemId;
currentServerId = serverId;
closeAction = null;
loading.show();
require(['text!./recordingcreator.template.html'], function (template) {