diff --git a/dashboard-ui/components/fileorganizer/fileorganizer.template.html b/dashboard-ui/components/fileorganizer/fileorganizer.template.html index 372a348f8e..0752cab4b6 100644 --- a/dashboard-ui/components/fileorganizer/fileorganizer.template.html +++ b/dashboard-ui/components/fileorganizer/fileorganizer.template.html @@ -1,5 +1,7 @@ 
- +
@@ -13,7 +15,9 @@ - +
@@ -36,6 +40,9 @@ ${OptionRememberOrganizeCorrection}

- + \ No newline at end of file diff --git a/dashboard-ui/components/guestinviter/guestinviter.template.html b/dashboard-ui/components/guestinviter/guestinviter.template.html index 8484ebec08..62d88a7079 100644 --- a/dashboard-ui/components/guestinviter/guestinviter.template.html +++ b/dashboard-ui/components/guestinviter/guestinviter.template.html @@ -1,5 +1,7 @@ 
- +
${HeaderInviteUser}
@@ -24,5 +26,8 @@

${MessageGuestSharingPermissionsHelp}


- + \ No newline at end of file diff --git a/dashboard-ui/components/imagedownloader/imagedownloader.js b/dashboard-ui/components/imagedownloader/imagedownloader.js index b79cd606b4..e94afbbdd5 100644 --- a/dashboard-ui/components/imagedownloader/imagedownloader.js +++ b/dashboard-ui/components/imagedownloader/imagedownloader.js @@ -107,8 +107,8 @@ if (showControls) { html += '
'; - html += ''; - html += ''; + html += ''; + html += ''; html += '
'; } @@ -223,7 +223,7 @@ html += '
'; } - html += ''; + html += ''; html += '
'; html += ''; diff --git a/dashboard-ui/components/imageuploader/imageuploader.template.html b/dashboard-ui/components/imageuploader/imageuploader.template.html index 0f190f270f..b23da78e00 100644 --- a/dashboard-ui/components/imageuploader/imageuploader.template.html +++ b/dashboard-ui/components/imageuploader/imageuploader.template.html @@ -27,7 +27,10 @@ - + \ No newline at end of file diff --git a/dashboard-ui/components/itemidentifier/itemidentifier.template.html b/dashboard-ui/components/itemidentifier/itemidentifier.template.html index f2f3d40a75..30ec130669 100644 --- a/dashboard-ui/components/itemidentifier/itemidentifier.template.html +++ b/dashboard-ui/components/itemidentifier/itemidentifier.template.html @@ -18,7 +18,10 @@

- +


- +

diff --git a/dashboard-ui/components/metadataeditor/personeditor.template.html b/dashboard-ui/components/metadataeditor/personeditor.template.html index 60b2d9bdd2..b19067f257 100644 --- a/dashboard-ui/components/metadataeditor/personeditor.template.html +++ b/dashboard-ui/components/metadataeditor/personeditor.template.html @@ -1,5 +1,7 @@ 
- +
${ButtonEdit}
@@ -8,7 +10,7 @@
- +
@@ -23,8 +25,11 @@
- +
${LabelPersonRoleHelp}
- +
\ No newline at end of file diff --git a/dashboard-ui/components/remotecontrol.js b/dashboard-ui/components/remotecontrol.js index 3f93cd4952..a40e1363cf 100644 --- a/dashboard-ui/components/remotecontrol.js +++ b/dashboard-ui/components/remotecontrol.js @@ -371,14 +371,14 @@ var toggleRepeatButton = context.querySelector('.repeatToggleButton'); if (playState.RepeatMode == 'RepeatAll') { - toggleRepeatButton.icon = "repeat"; + toggleRepeatButton.innerHTML = "repeat"; toggleRepeatButton.classList.add('nowPlayingPageRepeatActive'); } else if (playState.RepeatMode == 'RepeatOne') { - toggleRepeatButton.icon = "repeat-one"; + toggleRepeatButton.innerHTML = "repeat_one"; toggleRepeatButton.classList.add('nowPlayingPageRepeatActive'); } else { - toggleRepeatButton.icon = "repeat"; + toggleRepeatButton.innerHTML = "repeat"; toggleRepeatButton.classList.remove('nowPlayingPageRepeatActive'); } @@ -533,13 +533,13 @@ if (info.isLocalPlayer) { - btnCast.querySelector('iron-icon').icon = 'cast'; + btnCast.querySelector('i').innerHTML = 'cast'; btnCast.classList.remove('btnActiveCast'); context.querySelector('.nowPlayingSelectedPlayer').innerHTML = ''; } else { - btnCast.querySelector('iron-icon').icon = 'cast-connected'; + btnCast.querySelector('i').innerHTML = 'cast-connected'; btnCast.classList.add('btnActiveCast'); context.querySelector('.nowPlayingSelectedPlayer').innerHTML = info.deviceName || info.name; } diff --git a/dashboard-ui/connectlogin.html b/dashboard-ui/connectlogin.html index 1d12eebac1..adfd848a16 100644 --- a/dashboard-ui/connectlogin.html +++ b/dashboard-ui/connectlogin.html @@ -15,25 +15,37 @@

- +
- +

${HeaderNewUsers}

- +
-


Try the new Emby Theater at tv.emby.media, a remote-friendly app designed for your TV or large screen monitor.
+


new_releases Try the new Emby Theater at tv.emby.media, a remote-friendly app designed for your TV or large screen monitor.
@@ -53,8 +65,14 @@
- - + +
@@ -81,8 +99,14 @@

- - + +
@@ -93,7 +117,10 @@

- +
diff --git a/dashboard-ui/css/nowplaying.css b/dashboard-ui/css/nowplaying.css index 51edcd7b1d..7e3bfea503 100644 --- a/dashboard-ui/css/nowplaying.css +++ b/dashboard-ui/css/nowplaying.css @@ -91,9 +91,10 @@ } } -.nowPlayingPage .btnCommand, .nowPlayingPage .btnPlayStateCommand { - width: 60px; - height: 60px; +.nowPlayingPage .btnCommand i, .nowPlayingPage .btnPlayStateCommand i { + width: 44px; + height: 44px; + font-size: 44px; } @@ -176,21 +177,6 @@ } } -@media (orientation: landscape) and (max-height: 400px) { - .nowPlayingPage .btnCommand, .nowPlayingPage .btnPlayStateCommand { - width: 60px; - height: 60px; - } -} - -@media (orientation: portrait) and (max-height: 600px) { - - .nowPlayingPage .btnCommand, .nowPlayingPage .btnPlayStateCommand { - width: 60px; - height: 60px; - } -} - .nowPlayingSelectedPlayer { display: inline-block; vertical-align: middle; diff --git a/dashboard-ui/forgotpassword.html b/dashboard-ui/forgotpassword.html index 4fc03ac7d3..4412dc7de4 100644 --- a/dashboard-ui/forgotpassword.html +++ b/dashboard-ui/forgotpassword.html @@ -13,9 +13,15 @@
- + - +
diff --git a/dashboard-ui/forgotpasswordpin.html b/dashboard-ui/forgotpasswordpin.html index 80c0c21bb5..abd217a5dc 100644 --- a/dashboard-ui/forgotpasswordpin.html +++ b/dashboard-ui/forgotpasswordpin.html @@ -12,9 +12,15 @@
- + - +
diff --git a/dashboard-ui/home.html b/dashboard-ui/home.html index 328619926a..76edae2586 100644 --- a/dashboard-ui/home.html +++ b/dashboard-ui/home.html @@ -10,7 +10,7 @@

- +

@@ -20,7 +20,10 @@

${HeaderNextUp}

- +
diff --git a/dashboard-ui/itemlist.html b/dashboard-ui/itemlist.html index 424108c85c..41c0c5cdf5 100644 --- a/dashboard-ui/itemlist.html +++ b/dashboard-ui/itemlist.html @@ -5,9 +5,9 @@
- - - + + +
diff --git a/dashboard-ui/livetv.html b/dashboard-ui/livetv.html index a28338b5e2..4fcf6fa9d4 100644 --- a/dashboard-ui/livetv.html +++ b/dashboard-ui/livetv.html @@ -48,7 +48,7 @@
- +
@@ -61,7 +61,10 @@

${HeaderLatestRecordings}

- +

diff --git a/dashboard-ui/login.html b/dashboard-ui/login.html index 9b4928d2ae..91583de5a8 100644 --- a/dashboard-ui/login.html +++ b/dashboard-ui/login.html @@ -17,9 +17,15 @@

- +
- +


@@ -34,16 +40,25 @@
- +
- +
- +
diff --git a/dashboard-ui/movies.html b/dashboard-ui/movies.html index 9a4b58f6e4..85749c7033 100644 --- a/dashboard-ui/movies.html +++ b/dashboard-ui/movies.html @@ -12,7 +12,10 @@

${HeaderResume}

- +
@@ -22,7 +25,10 @@

${HeaderLatestMovies}

- +
@@ -39,9 +45,9 @@
- - - + + +
@@ -56,8 +62,8 @@
- - + +
@@ -72,8 +78,8 @@
- - + +
@@ -88,7 +94,7 @@
- +
diff --git a/dashboard-ui/music.html b/dashboard-ui/music.html index 3e02eff7ae..2d4f188e1a 100644 --- a/dashboard-ui/music.html +++ b/dashboard-ui/music.html @@ -43,9 +43,9 @@
- - - + + +
@@ -60,8 +60,8 @@
- - + +
@@ -76,8 +76,8 @@
- - + +
@@ -92,8 +92,8 @@
- - + +
@@ -104,7 +104,7 @@
- +
diff --git a/dashboard-ui/mypreferencesdisplay.html b/dashboard-ui/mypreferencesdisplay.html index b85df849e9..bb92df2ea6 100644 --- a/dashboard-ui/mypreferencesdisplay.html +++ b/dashboard-ui/mypreferencesdisplay.html @@ -77,7 +77,7 @@

${HeaderDisplay}

-
+
- +
\ No newline at end of file diff --git a/dashboard-ui/mypreferenceshome.html b/dashboard-ui/mypreferenceshome.html index aafba23c30..1cc73580d7 100644 --- a/dashboard-ui/mypreferenceshome.html +++ b/dashboard-ui/mypreferenceshome.html @@ -115,7 +115,10 @@
- +
\ No newline at end of file diff --git a/dashboard-ui/mypreferenceslanguages.html b/dashboard-ui/mypreferenceslanguages.html index 1423d8578d..78587d5a8d 100644 --- a/dashboard-ui/mypreferenceslanguages.html +++ b/dashboard-ui/mypreferenceslanguages.html @@ -94,7 +94,10 @@
- +
\ No newline at end of file diff --git a/dashboard-ui/mysyncsettings.html b/dashboard-ui/mysyncsettings.html index fbd2740bde..c98a960ff0 100644 --- a/dashboard-ui/mysyncsettings.html +++ b/dashboard-ui/mysyncsettings.html @@ -13,7 +13,9 @@
- +
@@ -34,7 +36,10 @@

- +
\ No newline at end of file diff --git a/dashboard-ui/nowplaying.html b/dashboard-ui/nowplaying.html index c5ee7bc41e..5c18a51ff1 100644 --- a/dashboard-ui/nowplaying.html +++ b/dashboard-ui/nowplaying.html @@ -3,10 +3,14 @@
- +
- +
@@ -33,60 +37,60 @@
- - - - -
- - - -
- - - -
@@ -97,54 +101,54 @@
-
- - -
-
- -

- -
- -
diff --git a/dashboard-ui/scripts/editorsidebar.js b/dashboard-ui/scripts/editorsidebar.js index e187138051..286eda3ea0 100644 --- a/dashboard-ui/scripts/editorsidebar.js +++ b/dashboard-ui/scripts/editorsidebar.js @@ -1,4 +1,4 @@ -define(['datetime', 'jQuery'], function (datetime, $) { +define(['datetime', 'jQuery', 'material-icons'], function (datetime, $) { function getNode(item, folderState, selected) { @@ -60,7 +60,7 @@ var htmlName = "
"; if (item.LockData) { - htmlName += ''; + htmlName += 'lock'; } htmlName += name; diff --git a/dashboard-ui/scripts/livetvseriestimers.js b/dashboard-ui/scripts/livetvseriestimers.js index 3acf8226a8..52306a44e1 100644 --- a/dashboard-ui/scripts/livetvseriestimers.js +++ b/dashboard-ui/scripts/livetvseriestimers.js @@ -79,7 +79,7 @@ html += ''; - html += ''; + html += ''; html += ''; } diff --git a/dashboard-ui/scripts/registrationservices.js b/dashboard-ui/scripts/registrationservices.js index 16a81bdcde..5ae5120ab4 100644 --- a/dashboard-ui/scripts/registrationservices.js +++ b/dashboard-ui/scripts/registrationservices.js @@ -93,7 +93,8 @@ require(['dialogHelper', 'paper-fab', 'paper-item-body', 'paper-icon-item', 'emby-button'], function (dialogHelper) { var dlg = dialogHelper.createDialog({ - size: 'fullscreen-border' + size: 'fullscreen-border', + removeOnClose: true }); dlg.classList.add('ui-body-b'); @@ -122,8 +123,8 @@ html += '
'; - html += ''; - html += ''; + html += ''; + html += ''; html += '
'; @@ -133,15 +134,19 @@ // Has to be assigned a z-index after the call to .open() dlg.addEventListener('close', function (e) { appStorage.setItem(supporterPlaybackKey, new Date().getTime()); - dlg.parentNode.removeChild(dlg); resolve(); }); dialogHelper.open(dlg); - $('.btnCancelSupporterInfo').on('click', function () { + var onCancelClick = function () { dialogHelper.close(dlg); - }); + }; + var i, length; + var elems = dlg.querySelectorAll('.btnCancelSupporterInfo'); + for (i = 0, length = elems.length; i < length; i++) { + elems[i].addEventListener('click', onCancelClick); + } }); } diff --git a/dashboard-ui/selectserver.html b/dashboard-ui/selectserver.html index 168c943d9a..ce1dd80b3b 100644 --- a/dashboard-ui/selectserver.html +++ b/dashboard-ui/selectserver.html @@ -6,7 +6,12 @@

${HeaderSelectServer}

- + + +
@@ -17,11 +22,21 @@
- +

diff --git a/dashboard-ui/tv.html b/dashboard-ui/tv.html index 9bff4b0faa..3390550d63 100644 --- a/dashboard-ui/tv.html +++ b/dashboard-ui/tv.html @@ -13,7 +13,10 @@

${HeaderResume}

- +
@@ -23,7 +26,10 @@

${HeaderNextUp}

- +
@@ -34,7 +40,10 @@

${HeaderLatestEpisodes}

- +
@@ -53,9 +62,9 @@
- - - + + +
@@ -70,9 +79,9 @@
- - - + + +
@@ -82,7 +91,7 @@
- +