1
0
Fork 0
mirror of https://github.com/jellyfin/jellyfin-web synced 2025-03-30 19:56:21 +00:00

update media info db

This commit is contained in:
Luke Pulverenti 2015-10-13 22:41:46 -04:00
parent 5c4307cf85
commit 78ff953f37
5 changed files with 18 additions and 3 deletions

View file

@ -128,6 +128,14 @@
html += '<br/>'; html += '<br/>';
html += '<a href="http://doc.freenas.org/9.3/freenas_jails.html#add-storage" target="_blank">' + Globalize.translate('ButtonMoreInformation') + '</a>'; html += '<a href="http://doc.freenas.org/9.3/freenas_jails.html#add-storage" target="_blank">' + Globalize.translate('ButtonMoreInformation') + '</a>';
} }
else if (systemInfo.OperatingSystem.toLowerCase() == 'linux') {
html += '<br/>';
html += '<br/>';
html += Globalize.translate('MessageDirectoryPickerLinuxInstruction');
html += '<br/>';
html += '<a href="http://doc.freenas.org/9.3/freenas_jails.html#add-storage" target="_blank">' + Globalize.translate('ButtonMoreInformation') + '</a>';
}
html += '</p>'; html += '</p>';

View file

@ -533,6 +533,12 @@ a[data-role='button'], button:not([data-role='none']):not(.clearButton) {
box-shadow: 0 1px 3px /*{global-box-shadow-size}*/ rgba(0,0,0,.15) /*{global-box-shadow-color}*/; box-shadow: 0 1px 3px /*{global-box-shadow-size}*/ rgba(0,0,0,.15) /*{global-box-shadow-color}*/;
} }
a[data-role='button'][data-iconpos='notext'], button[data-iconpos='notext']:not([data-role='none']):not(.clearButton) {
padding: 4px;
border-radius: 50px;
outline: 0;
}
a[data-role='button']:not([data-inline='true']), button:not([data-role='none']):not([data-inline='true']):not(.clearButton) { a[data-role='button']:not([data-inline='true']), button:not([data-role='none']):not([data-inline='true']):not(.clearButton) {
display: block; display: block;
margin: .5em 0 !important; margin: .5em 0 !important;

View file

@ -299,6 +299,7 @@
"ButtonNetwork": "Network", "ButtonNetwork": "Network",
"MessageDirectoryPickerInstruction": "Network paths can be entered manually in the event the Network button fails to locate your devices. For example, {0} or {1}.", "MessageDirectoryPickerInstruction": "Network paths can be entered manually in the event the Network button fails to locate your devices. For example, {0} or {1}.",
"MessageDirectoryPickerBSDInstruction": "For BSD, you may need to configure storage within your FreeNAS Jail in order to allow Emby to access it.", "MessageDirectoryPickerBSDInstruction": "For BSD, you may need to configure storage within your FreeNAS Jail in order to allow Emby to access it.",
"MessageDirectoryPickerLinuxInstruction": "For Linux, you must grant the Emby system user at least read access to your storage locations.",
"HeaderMenu": "Menu", "HeaderMenu": "Menu",
"ButtonOpen": "Open", "ButtonOpen": "Open",
"ButtonOpenInNewTab": "Open in new tab", "ButtonOpenInNewTab": "Open in new tab",

View file

@ -20,9 +20,9 @@ paper-button[raised].more {
} }
.channelTimeslotHeader, .timeslotHeader { .channelTimeslotHeader, .timeslotHeader {
background: #FF9100; background: #FF9100 !important;
} }
.channelTimeslotHeader { .channelTimeslotHeader {
border-right-color: #FF9100; border-right-color: #FF9100 !important;
} }

View file

@ -6,7 +6,7 @@
function onPageShow() { function onPageShow() {
var page = this; var page = this;
if (!$.browser.mobile) { if (!$.browser.mobile && !page.classList.contains('itemDetailPage')) {
Backdrops.setBackdropUrl(page, 'themes/halloween/bg.jpg'); Backdrops.setBackdropUrl(page, 'themes/halloween/bg.jpg');
} }
} }