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

update dialogs

This commit is contained in:
Luke Pulverenti 2016-07-19 15:51:22 -04:00
parent 44d840d483
commit dc69bc6055
23 changed files with 300 additions and 210 deletions

View file

@ -137,7 +137,7 @@
var html = '';
html += '<div class="dialogContent smoothScrollY">';
html += '<div class="dialogContent smoothScrollY" style="padding-top:2em;">';
html += '<div class="dialogContentInner centeredContent">';
html += '<form class="newCollectionForm" style="margin:auto;">';
@ -240,9 +240,9 @@
dlg.classList.add('formDialog');
var html = '';
var title = items.length ? globalize.translate('sharedcomponents#AddToCollection') : globalize.translate('sharedcomponents#NewCollection');
var title = items.length ? globalize.translate('sharedcomponents#HeaderAddToCollection') : globalize.translate('sharedcomponents#NewCollection');
html += '<div class="dialogHeader" style="margin:0 0 2em;">';
html += '<div class="dialogHeader">';
html += '<button is="paper-icon-button-light" class="btnCancel autoSize" tabindex="-1"><i class="md-icon">&#xE5C4;</i></button>';
html += '<div class="dialogHeaderTitle">';
html += title;