diff --git a/dashboard-ui/components/medialibrarycreator/medialibrarycreator.js b/dashboard-ui/components/medialibrarycreator/medialibrarycreator.js index 7117ed15ea..862756109c 100644 --- a/dashboard-ui/components/medialibrarycreator/medialibrarycreator.js +++ b/dashboard-ui/components/medialibrarycreator/medialibrarycreator.js @@ -1,4 +1,4 @@ -define(['dialogHelper', 'jQuery', 'emby-input', 'emby-select', 'paper-fab', 'paper-item-body', 'paper-icon-item', 'paper-icon-button-light'], function (dialogHelper, $) { +define(['dialogHelper', 'jQuery', 'emby-input', 'emby-select', 'paper-icon-button-light', 'listViewStyle'], function (dialogHelper, $) { var currentDeferred; var hasChanges; @@ -116,17 +116,17 @@ var html = ''; - html += ''; + html += '
'; - html += ''; + html += 'folder'; - html += ''; - html += path; - html += ''; + html += '
'; + html += '
' + path + '
'; + html += '
'; - html += ''; + html += ''; - html += ''; + html += '
'; return html; } diff --git a/dashboard-ui/components/medialibrarycreator/medialibrarycreator.template.html b/dashboard-ui/components/medialibrarycreator/medialibrarycreator.template.html index 9607eb36a3..b622650796 100644 --- a/dashboard-ui/components/medialibrarycreator/medialibrarycreator.template.html +++ b/dashboard-ui/components/medialibrarycreator/medialibrarycreator.template.html @@ -1,33 +1,37 @@ -
- +
+
${ButtonAddMediaLibrary}
-
-
- -
-
-
-
- -
-
-

${HeadersFolders}

- -
-
+
+
+ +
+ +
+
+
+
+ +
+
+

${HeadersFolders}

+ +
+
-
-
- +
+
+ +
+
- \ No newline at end of file +
\ No newline at end of file diff --git a/dashboard-ui/scripts/registrationservices.js b/dashboard-ui/scripts/registrationservices.js index 727f2509b7..03dc03a130 100644 --- a/dashboard-ui/scripts/registrationservices.js +++ b/dashboard-ui/scripts/registrationservices.js @@ -65,32 +65,32 @@ function getSubscriptionBenefitHtml(item) { var html = ''; - html += ''; + html += '
'; - html += ''; + html += '' + item.icon + ''; - html += ''; + html += ''; return html; } function showPlaybackOverlay(resolve, reject) { - require(['dialogHelper', 'paper-fab', 'paper-item-body', 'paper-icon-item', 'emby-button'], function (dialogHelper) { + require(['dialogHelper', 'listViewStyle', 'emby-button'], function (dialogHelper) { var dlg = dialogHelper.createDialog({ size: 'fullscreen-border', @@ -103,7 +103,7 @@ var html = ''; html += '

'; - html += ''; + html += ''; html += '

'; html += '
'; diff --git a/dashboard-ui/scripts/site.js b/dashboard-ui/scripts/site.js index 6fceb50722..8985e225bd 100644 --- a/dashboard-ui/scripts/site.js +++ b/dashboard-ui/scripts/site.js @@ -1513,7 +1513,6 @@ var AppInfo = {}; define("paper-textarea", ['webcomponentsjs', "html!" + bowerPath + "/paper-input/paper-textarea.html"]); define("paper-item", ["html!" + bowerPath + "/paper-item/paper-item.html"]); define("paper-checkbox", ["html!" + bowerPath + "/paper-checkbox/paper-checkbox.html"]); - define("paper-fab", ["emby-icons", "html!" + bowerPath + "/paper-fab/paper-fab.html"]); define("paper-progress", ["html!" + bowerPath + "/paper-progress/paper-progress.html"]); define("paper-input", ['webcomponentsjs', "html!" + bowerPath + "/paper-input/paper-input.html"]); define("paper-icon-item", ['webcomponentsjs', "html!" + bowerPath + "/paper-item/paper-icon-item.html"]);