From a252b74db2b19f3812ebe501e3931ca1e15b1e44 Mon Sep 17 00:00:00 2001 From: softworkz Date: Wed, 23 Sep 2015 06:12:46 +0200 Subject: [PATCH 01/18] Auto-Organize: Added feature to remember/persist series matching in manual organization dialog #2 When a filename cannot be auto-matched to an existing series name, the organization must be performed manually. Unfortunately not just once, but again and again for each episode coming in. This change proposes a simple but solid method to optionally persist the matching condition from within the manual organization dialog. This approach will make Emby "learn" how to organize files in the future without user interaction. --- dashboard-ui/autoorganizelog.html | 6 + dashboard-ui/autoorganizesmart.html | 29 ++++ dashboard-ui/autoorganizetv.html | 1 + .../emby-apiclient/apiclient.js | 23 ++++ dashboard-ui/scripts/autoorganizelog.js | 6 +- dashboard-ui/scripts/autoorganizesmart.js | 126 ++++++++++++++++++ dashboard-ui/strings/html/en-US.json | 3 + dashboard-ui/strings/html/server.json | 3 + 8 files changed, 196 insertions(+), 1 deletion(-) create mode 100644 dashboard-ui/autoorganizesmart.html create mode 100644 dashboard-ui/scripts/autoorganizesmart.js diff --git a/dashboard-ui/autoorganizelog.html b/dashboard-ui/autoorganizelog.html index c7d133c1af..d7785d1119 100644 --- a/dashboard-ui/autoorganizelog.html +++ b/dashboard-ui/autoorganizelog.html @@ -12,6 +12,7 @@
${TabActivityLog} ${TabTV} + ${TabSmartMatch}
@@ -80,6 +81,11 @@
${LabelEndingEpisodeNumberHelp}
+
+ + + +

- Hello world! +

Hello world!

+ + + diff --git a/dashboard-ui/bower_components/iron-overlay-behavior/iron-overlay-backdrop.html b/dashboard-ui/bower_components/iron-overlay-behavior/iron-overlay-backdrop.html index 5a5e24b5eb..1eb3c2f596 100644 --- a/dashboard-ui/bower_components/iron-overlay-behavior/iron-overlay-backdrop.html +++ b/dashboard-ui/bower_components/iron-overlay-behavior/iron-overlay-backdrop.html @@ -118,10 +118,14 @@ Custom property | Description | Default this.style.zIndex = this._manager.backdropZ(); // close only if no element with backdrop is left if (this._manager.getBackdrops().length === 0) { + // Read style before setting opened. + var cs = getComputedStyle(this); + var noAnimation = (cs.transitionDuration === '0s' || cs.opacity == 0); this._setOpened(false); - // complete() will be called after the transition is done. - // If animations are disabled via custom-styles, user is expected to call - // complete() after close() + // In case of no animations, complete + if (noAnimation) { + this.complete(); + } } }, diff --git a/dashboard-ui/bower_components/iron-overlay-behavior/iron-overlay-behavior.html b/dashboard-ui/bower_components/iron-overlay-behavior/iron-overlay-behavior.html index afa489f537..cd5eb4297d 100644 --- a/dashboard-ui/bower_components/iron-overlay-behavior/iron-overlay-behavior.html +++ b/dashboard-ui/bower_components/iron-overlay-behavior/iron-overlay-behavior.html @@ -135,6 +135,18 @@ context. You should place this element as a child of `` whenever possible. value: function() { return this._onCaptureKeydown.bind(this); } + }, + + _boundOnCaptureFocus: { + type: Function, + value: function() { + return this._onCaptureFocus.bind(this); + } + }, + + /** @type {?Node} */ + _focusedChild: { + type: Object } }, @@ -152,10 +164,13 @@ context. You should place this element as a child of `` whenever possible. }, get _focusNode() { - return Polymer.dom(this).querySelector('[autofocus]') || this; + return this._focusedChild || Polymer.dom(this).querySelector('[autofocus]') || this; }, ready: function() { + // with-backdrop need tabindex to be set in order to trap the focus. + // If it is not set, IronOverlayBehavior will set it, and remove it if with-backdrop = false. + this.__shouldRemoveTabIndex = false; this._ensureSetup(); }, @@ -265,6 +280,14 @@ context. You should place this element as a child of `` whenever possible. }, _withBackdropChanged: function() { + // If tabindex is already set, no need to override it. + if (this.withBackdrop && !this.hasAttribute('tabindex')) { + this.setAttribute('tabindex', '-1'); + this.__shouldRemoveTabIndex = true; + } else if (this.__shouldRemoveTabIndex) { + this.removeAttribute('tabindex'); + this.__shouldRemoveTabIndex = false; + } if (this.opened) { this._manager.trackBackdrop(this); if (this.withBackdrop) { @@ -298,6 +321,7 @@ context. You should place this element as a child of `` whenever possible. _toggleListeners: function () { this._toggleListener(this.opened, document, 'tap', this._boundOnCaptureClick, true); this._toggleListener(this.opened, document, 'keydown', this._boundOnCaptureKeydown, true); + this._toggleListener(this.opened, document, 'focus', this._boundOnCaptureFocus, true); }, // tasks which must occur before opening; e.g. making the element visible @@ -343,6 +367,7 @@ context. You should place this element as a child of `` whenever possible. this.style.display = 'none'; this._manager.removeOverlay(this); + this._focusedChild = null; this._applyFocus(); this.notifyResize(); @@ -376,9 +401,12 @@ context. You should place this element as a child of `` whenever possible. _onCaptureClick: function(event) { if (this._manager.currentOverlay() === this && - !this.noCancelOnOutsideClick && Polymer.dom(event).path.indexOf(this) === -1) { - this.cancel(); + if (this.noCancelOnOutsideClick) { + this._applyFocus(); + } else { + this.cancel(); + } } }, @@ -391,6 +419,19 @@ context. You should place this element as a child of `` whenever possible. } }, + _onCaptureFocus: function (event) { + if (this._manager.currentOverlay() === this && + this.withBackdrop) { + var path = Polymer.dom(event).path; + if (path.indexOf(this) === -1) { + event.stopPropagation(); + this._applyFocus(); + } else { + this._focusedChild = path[0]; + } + } + }, + _onIronResize: function() { if (this.opened) { this.refit(); diff --git a/dashboard-ui/bower_components/iron-overlay-behavior/test/iron-overlay-behavior.html b/dashboard-ui/bower_components/iron-overlay-behavior/test/iron-overlay-behavior.html index 30d5f03b60..47d410f798 100644 --- a/dashboard-ui/bower_components/iron-overlay-behavior/test/iron-overlay-behavior.html +++ b/dashboard-ui/bower_components/iron-overlay-behavior/test/iron-overlay-behavior.html @@ -323,6 +323,19 @@ subject to an additional IP rights grant found at http://polymer.github.io/PATEN }); }); + test('no-cancel-on-outside-click property; focus stays on overlay when click outside', function(done) { + overlay = fixture('autofocus'); + overlay.noCancelOnOutsideClick = true; + runAfterOpen(overlay, function() { + MockInteractions.tap(document.body); + setTimeout(function() { + assert.equal(Polymer.dom(overlay).querySelector('[autofocus]'), document.activeElement, ' -

- +
+
+

+ ${HeaderTaskTriggers} +

+ + + ${ButtonAdd} + +
+
@@ -26,10 +31,10 @@

${HeaderAddScheduledTaskTrigger}

- +
'; + + $('.serverLogs', page).html(html).trigger('create'); + + }); }); }); diff --git a/dashboard-ui/scripts/pluginspage.js b/dashboard-ui/scripts/pluginspage.js index f1dc08e930..1aa331dba9 100644 --- a/dashboard-ui/scripts/pluginspage.js +++ b/dashboard-ui/scripts/pluginspage.js @@ -134,10 +134,16 @@ if (showNoPluginsMessage) { html += '
'; - html += '

' + Globalize.translate('MessageNoPluginsInstalled') + '

'; - html += '

'; - html += Globalize.translate('BrowsePluginCatalogMessage'); - html += '

'; + + if (AppInfo.enableAppStorePolicy) { + html += '

' + Globalize.translate('MessageNoPluginsDueToAppStore') + '

'; + } else { + html += '

' + Globalize.translate('MessageNoPluginsInstalled') + '

'; + + html += '

'; + html += Globalize.translate('BrowsePluginCatalogMessage'); + html += '

'; + } html += '
'; } diff --git a/dashboard-ui/scripts/site.js b/dashboard-ui/scripts/site.js index 4c3d8a5160..0fa7cc0a47 100644 --- a/dashboard-ui/scripts/site.js +++ b/dashboard-ui/scripts/site.js @@ -1639,7 +1639,15 @@ var AppInfo = {}; function initializeApiClient(apiClient) { - apiClient.enableAppStorePolicy = AppInfo.enableAppStorePolicy; + if (AppInfo.enableAppStorePolicy) { + apiClient.getAvailablePlugins = function() { + return Promise.resolve([]); + }; + apiClient.getInstalledPlugins = function () { + return Promise.resolve([]); + }; + } + apiClient.getDefaultImageQuality = Dashboard.getDefaultImageQuality; apiClient.normalizeImageOptions = Dashboard.normalizeImageOptions; @@ -1973,7 +1981,7 @@ var AppInfo = {}; define("jqmlistview", ['css!thirdparty/jquerymobile-1.4.5/jqm.listview.css']); - define("jqmcontrolgroup", ["thirdparty/jquerymobile-1.4.5/jqm.controlgroup", 'css!thirdparty/jquerymobile-1.4.5/jqm.controlgroup.css']); + define("jqmcontrolgroup", ['css!thirdparty/jquerymobile-1.4.5/jqm.controlgroup.css']); define("jqmcollapsible", ["jqmicons", "thirdparty/jquerymobile-1.4.5/jqm.collapsible", 'css!thirdparty/jquerymobile-1.4.5/jqm.collapsible.css']); diff --git a/dashboard-ui/scripts/sync.js b/dashboard-ui/scripts/sync.js index 18ef035041..2b372f1334 100644 --- a/dashboard-ui/scripts/sync.js +++ b/dashboard-ui/scripts/sync.js @@ -78,7 +78,7 @@ return new Promise(function (resolve, reject) { - require(['paper-checkbox', 'paper-input'], function () { + require(['paper-checkbox', 'paper-input', 'jqmcollapsible'], function () { renderFormInternal(options); resolve(); }); diff --git a/dashboard-ui/strings/javascript/javascript.json b/dashboard-ui/strings/javascript/javascript.json index ab43ee689d..5ed06e5539 100644 --- a/dashboard-ui/strings/javascript/javascript.json +++ b/dashboard-ui/strings/javascript/javascript.json @@ -129,6 +129,7 @@ "HeaderDeleteTaskTrigger": "Delete Task Trigger", "MessageDeleteTaskTrigger": "Are you sure you wish to delete this task trigger?", "MessageNoPluginsInstalled": "You have no plugins installed.", + "MessageNoPluginsDueToAppStore": "To manage plugins, please use the Emby web app.", "LabelVersionInstalled": "{0} installed", "LabelNumberReviews": "{0} Reviews", "LabelFree": "Free", diff --git a/dashboard-ui/thirdparty/jquerymobile-1.4.5/jqm.controlgroup.css b/dashboard-ui/thirdparty/jquerymobile-1.4.5/jqm.controlgroup.css index cae0269143..77eaf253e9 100644 --- a/dashboard-ui/thirdparty/jquerymobile-1.4.5/jqm.controlgroup.css +++ b/dashboard-ui/thirdparty/jquerymobile-1.4.5/jqm.controlgroup.css @@ -1,138 +1,116 @@ - +.udiv[data-role="controlgroup"], fieldset[data-role="controlgroup"] { + padding: 0; + margin: .5em 0; +} +*[data-role="controlgroup"].ui-mini .ui-btn-icon-notext, +*[data-role="controlgroup"] .ui-mini.ui-btn-icon-notext { + font-size: inherit; +} -.ui-controlgroup, -fieldset.ui-controlgroup { - padding: 0; - margin: .5em 0; +*[data-role="controlgroup"] .ui-btn, +*[data-role="controlgroup"] .ui-checkbox, +*[data-role="controlgroup"] .ui-radio, +*[data-role="controlgroup"] .ui-select { + margin: 0; } -.ui-field-contain .ui-controlgroup, -.ui-field-contain fieldset.ui-controlgroup { - margin: 0; + + *[data-role="controlgroup"] .ui-btn:focus, + *[data-role="controlgroup"] .ui-btn.ui-focus { + z-index: 1; + } + +*[data-role="controlgroup"] li { + list-style: none; } -.ui-mini .ui-controlgroup-label { - font-size: 16px; + +div[data-role="controlgroup"][data-type="horizontal"] .ui-btn, +div[data-role="controlgroup"][data-type="horizontal"] li > .ui-btn, +div[data-role="controlgroup"][data-type="horizontal"] .ui-checkbox, +div[data-role="controlgroup"][data-type="horizontal"] .ui-radio, +div[data-role="controlgroup"][data-type="horizontal"].ui-select { + float: left; + clear: none; } -.ui-controlgroup.ui-mini .ui-btn-icon-notext, -.ui-controlgroup .ui-mini.ui-btn-icon-notext { - font-size: inherit; + +div[data-role="controlgroup"][data-type="horizontal"] input[type="radio"] { + display: none; } -.ui-controlgroup-controls .ui-btn, -.ui-controlgroup-controls .ui-checkbox, -.ui-controlgroup-controls .ui-radio, -.ui-controlgroup-controls .ui-select { - margin: 0; + +div[data-role="controlgroup"][data-type="horizontal"] button.ui-btn, +*[data-role="controlgroup"] .ui-btn-icon-notext { + width: auto; } -.ui-controlgroup-controls .ui-btn:focus, -.ui-controlgroup-controls .ui-btn.ui-focus { - z-index: 1; + +div[data-role="controlgroup"][data-type="horizontal"] .ui-btn-icon-notext, +div[data-role="controlgroup"][data-type="horizontal"] button.ui-btn-icon-notext { + width: 1.5em; } -.ui-controlgroup-controls li { - list-style: none; + +*[data-role="controlgroup"] .ui-btn-icon-notext { + height: auto; + padding: .7em 1em; } -.ui-controlgroup-horizontal .ui-controlgroup-controls { - display: inline-block; - vertical-align: middle; + +*[data-role="controlgroup"]:not([data-type="horizontal"]) .ui-btn { + border-bottom-width: 0; } -.ui-controlgroup-horizontal .ui-controlgroup-controls:before, -.ui-controlgroup-horizontal .ui-controlgroup-controls:after { - content: ""; - display: table; + + *[data-role="controlgroup"]:not([data-type="horizontal"]) .ui-checkbox:last-child .ui-btn { + border-bottom-width: 1px; + } + +div[data-role="controlgroup"][data-type="horizontal"] .ui-btn { + border-right-width: 0; } -.ui-controlgroup-horizontal .ui-controlgroup-controls:after { - clear: both; + + div[data-role="controlgroup"][data-type="horizontal"] .ui-btn:last-child { + border-right-width: 1px; + } + +*[data-role="controlgroup"] .ui-btn-corner-all, +*[data-role="controlgroup"] .ui-btn.ui-corner-all { + -webkit-border-radius: 0; + border-radius: 0; } -.ui-controlgroup-horizontal .ui-controlgroup-controls > .ui-btn, -.ui-controlgroup-horizontal .ui-controlgroup-controls li > .ui-btn, -.ui-controlgroup-horizontal .ui-controlgroup-controls .ui-checkbox, -.ui-controlgroup-horizontal .ui-controlgroup-controls .ui-radio, -.ui-controlgroup-horizontal .ui-controlgroup-controls .ui-select { - float: left; - clear: none; + +*[data-role="controlgroup"] .ui-radio, +*[data-role="controlgroup"] .ui-checkbox, +*[data-role="controlgroup"] .ui-select, +*[data-role="controlgroup"] li { + -webkit-border-radius: inherit; + border-radius: inherit; } -.ui-controlgroup-horizontal .ui-controlgroup-controls button.ui-btn, -.ui-controlgroup-controls .ui-btn-icon-notext { - width: auto; + +div[data-role="controlgroup"][data-type="horizontal"] .ui-btn:first-child { + -webkit-border-top-left-radius: inherit; + border-top-left-radius: inherit; + -webkit-border-bottom-left-radius: inherit; + border-bottom-left-radius: inherit; } -.ui-controlgroup-horizontal .ui-controlgroup-controls .ui-btn-icon-notext, -.ui-controlgroup-horizontal .ui-controlgroup-controls button.ui-btn-icon-notext { - width: 1.5em; + +div[data-role="controlgroup"][data-type="horizontal"] .ui-btn:last-child { + -webkit-border-top-right-radius: inherit; + border-top-right-radius: inherit; + -webkit-border-bottom-right-radius: inherit; + border-bottom-right-radius: inherit; } - .ui-controlgroup-controls .ui-btn-icon-notext { - height: auto; - padding: .7em 1em; -} -.ui-controlgroup-vertical .ui-controlgroup-controls .ui-btn { - border-bottom-width: 0; -} -.ui-controlgroup-vertical .ui-controlgroup-controls .ui-btn.ui-last-child { - border-bottom-width: 1px; -} -.ui-controlgroup-horizontal .ui-controlgroup-controls .ui-btn { - border-right-width: 0; -} -.ui-controlgroup-horizontal .ui-controlgroup-controls .ui-btn.ui-last-child { - border-right-width: 1px; -} -.ui-controlgroup-controls .ui-btn-corner-all, -.ui-controlgroup-controls .ui-btn.ui-corner-all { - -webkit-border-radius: 0; - border-radius: 0; -} -.ui-controlgroup-controls, -.ui-controlgroup-controls .ui-radio, -.ui-controlgroup-controls .ui-checkbox, -.ui-controlgroup-controls .ui-select, -.ui-controlgroup-controls li { - -webkit-border-radius: inherit; - border-radius: inherit; -} -.ui-controlgroup-vertical .ui-btn.ui-first-child { - -webkit-border-top-left-radius: inherit; - border-top-left-radius: inherit; - -webkit-border-top-right-radius: inherit; - border-top-right-radius: inherit; -} -.ui-controlgroup-vertical .ui-btn.ui-last-child { - -webkit-border-bottom-left-radius: inherit; - border-bottom-left-radius: inherit; - -webkit-border-bottom-right-radius: inherit; - border-bottom-right-radius: inherit; -} -.ui-controlgroup-horizontal .ui-btn.ui-first-child { - -webkit-border-top-left-radius: inherit; - border-top-left-radius: inherit; - -webkit-border-bottom-left-radius: inherit; - border-bottom-left-radius: inherit; -} -.ui-controlgroup-horizontal .ui-btn.ui-last-child { - -webkit-border-top-right-radius: inherit; - border-top-right-radius: inherit; - -webkit-border-bottom-right-radius: inherit; - border-bottom-right-radius: inherit; -} -.ui-controlgroup-controls a.ui-shadow:not(:focus), -.ui-controlgroup-controls button.ui-shadow:not(:focus), -.ui-controlgroup-controls div.ui-shadow:not(.ui-focus) { - -moz-box-shadow: none; - -webkit-box-shadow: none; - box-shadow: none; + +*[data-role="controlgroup"] a.ui-shadow:not(:focus), +*[data-role="controlgroup"] button.ui-shadow:not(:focus), +*[data-role="controlgroup"] div.ui-shadow:not(.ui-focus) { + -moz-box-shadow: none; + -webkit-box-shadow: none; + box-shadow: none; } /* Fixes legend not wrapping on IE10 */ -.ui-controlgroup-label legend { - max-width: 100%; -} -.ui-controlgroup-controls > label { - position: absolute !important; - height: 1px; - width: 1px; - overflow: hidden; - clip: rect(1px,1px,1px,1px); +fieldset[data-role="controlgroup"] legend { + max-width: 100%; } .ui-textinput-autogrow-resize { - -webkit-transition: height 0.25s; - -o-transition: height 0.25s; - -moz-transition: height 0.25s; - transition: height 0.25s; + -webkit-transition: height 0.25s; + -o-transition: height 0.25s; + -moz-transition: height 0.25s; + transition: height 0.25s; } diff --git a/dashboard-ui/thirdparty/jquerymobile-1.4.5/jqm.controlgroup.js b/dashboard-ui/thirdparty/jquerymobile-1.4.5/jqm.controlgroup.js deleted file mode 100644 index 14f35e9e8d..0000000000 --- a/dashboard-ui/thirdparty/jquerymobile-1.4.5/jqm.controlgroup.js +++ /dev/null @@ -1,246 +0,0 @@ -define(['jqmwidget'], function () { - - (function ($, undefined) { - - var uiScreenHiddenRegex = /\bui-screen-hidden\b/; - function noHiddenClass(elements) { - var index, - length = elements.length, - result = []; - - for (index = 0; index < length; index++) { - if (!elements[index].className.match(uiScreenHiddenRegex)) { - result.push(elements[index]); - } - } - - return $(result); - } - - $.mobile.behaviors.addFirstLastClasses = { - _getVisibles: function ($els, create) { - var visibles; - - if (create) { - visibles = noHiddenClass($els); - } else { - visibles = $els.filter(":visible"); - if (visibles.length === 0) { - visibles = noHiddenClass($els); - } - } - - return visibles; - }, - - _addFirstLastClasses: function ($els, $visibles, create) { - $els.removeClass("ui-first-child ui-last-child"); - $visibles.eq(0).addClass("ui-first-child").end().last().addClass("ui-last-child"); - if (!create) { - this.element.trigger("updatelayout"); - } - }, - - _removeFirstLastClasses: function ($els) { - $els.removeClass("ui-first-child ui-last-child"); - } - }; - - })(jQuery); - - (function ($, undefined) { - - function keepNativeSelector() { - var keepNative = $.trim("[data-role='none']"), - globalValue = $.trim($.mobile.keepNative), - optionValue = $.trim("[data-role='none']"), - - // Check if $.mobile.keepNative has changed from the factory default - newDefault = "", - - // If $.mobile.keepNative has not changed, use options.keepNativeDefault - oldDefault = (newDefault === "" ? optionValue : ""); - - // Concatenate keepNative selectors from all sources where the value has - // changed or, if nothing has changed, return the default - return ((keepNative ? [keepNative] : []) - .concat(newDefault ? [newDefault] : []) - .concat(oldDefault ? [oldDefault] : []) - .join(", ")); - - } - - $.widget("mobile.controlgroup", $.extend({ - options: { - enhanced: false, - theme: null, - shadow: false, - corners: true, - excludeInvisible: true, - type: "vertical", - mini: false - }, - - _create: function () { - var elem = this.element, - opts = this.options, - keepNative = keepNativeSelector(); - - // Run buttonmarkup - if ($.fn.buttonMarkup) { - this.element - .find($.fn.buttonMarkup.initSelector) - .not(keepNative) - .buttonMarkup(); - } - // Enhance child widgets - $.each(this._childWidgets, $.proxy(function (number, widgetName) { - if ($.mobile[widgetName]) { - this.element - .find($.mobile[widgetName].initSelector) - .not(keepNative)[widgetName](); - } - }, this)); - - $.extend(this, { - _ui: null, - _initialRefresh: true - }); - - if (opts.enhanced) { - this._ui = { - groupLegend: elem.children(".ui-controlgroup-label").children(), - childWrapper: elem.children(".ui-controlgroup-controls") - }; - } else { - this._ui = this._enhance(); - } - - }, - - _childWidgets: ["checkboxradio", "selectmenu", "button"], - - _themeClassFromOption: function (value) { - return (value ? (value === "none" ? "" : "ui-group-theme-" + value) : ""); - }, - - _enhance: function () { - var elem = this.element, - opts = this.options, - ui = { - groupLegend: elem.children("legend"), - childWrapper: elem - .addClass("ui-controlgroup " + - "ui-controlgroup-" + - (opts.type === "horizontal" ? "horizontal" : "vertical") + " " + - this._themeClassFromOption(opts.theme) + " " + - (opts.corners ? "ui-corner-all " : "") + - (opts.mini ? "ui-mini " : "")) - .wrapInner("
") - .children() - }; - - if (ui.groupLegend.length > 0) { - $("
") - .append(ui.groupLegend) - .prependTo(elem); - } - - return ui; - }, - - _init: function () { - this.refresh(); - }, - - _setOptions: function (options) { - var callRefresh, returnValue, - elem = this.element; - - // Must have one of horizontal or vertical - if (options.type !== undefined) { - elem - .removeClass("ui-controlgroup-horizontal ui-controlgroup-vertical") - .addClass("ui-controlgroup-" + (options.type === "horizontal" ? "horizontal" : "vertical")); - callRefresh = true; - } - - if (options.theme !== undefined) { - elem - .removeClass(this._themeClassFromOption(this.options.theme)) - .addClass(this._themeClassFromOption(options.theme)); - } - - if (options.corners !== undefined) { - elem.toggleClass("ui-corner-all", options.corners); - } - - if (options.mini !== undefined) { - elem.toggleClass("ui-mini", options.mini); - } - - if (options.shadow !== undefined) { - this._ui.childWrapper.toggleClass("ui-shadow", options.shadow); - } - - if (options.excludeInvisible !== undefined) { - this.options.excludeInvisible = options.excludeInvisible; - callRefresh = true; - } - - returnValue = this._super(options); - - if (callRefresh) { - this.refresh(); - } - - return returnValue; - }, - - container: function () { - return this._ui.childWrapper; - }, - - refresh: function () { - var $el = this.container(), - els = $el.find(".ui-btn").not(".ui-slider-handle"), - create = this._initialRefresh; - if ($.mobile.checkboxradio) { - $el.find(":mobile-checkboxradio").checkboxradio("refresh"); - } - this._addFirstLastClasses(els, - this.options.excludeInvisible ? this._getVisibles(els, create) : els, - create); - this._initialRefresh = false; - }, - - // Caveat: If the legend is not the first child of the controlgroup at enhance - // time, it will be after _destroy(). - _destroy: function () { - var ui, buttons, - opts = this.options; - - if (opts.enhanced) { - return this; - } - - ui = this._ui; - buttons = this.element - .removeClass("ui-controlgroup " + - "ui-controlgroup-horizontal ui-controlgroup-vertical ui-corner-all ui-mini " + - this._themeClassFromOption(opts.theme)) - .find(".ui-btn") - .not(".ui-slider-handle"); - - this._removeFirstLastClasses(buttons); - - ui.groupLegend.unwrap(); - ui.childWrapper.children().unwrap(); - } - }, $.mobile.behaviors.addFirstLastClasses)); - - })(jQuery); - -}); \ No newline at end of file diff --git a/dashboard-ui/thirdparty/jquerymobile-1.4.5/jqm.listview.js b/dashboard-ui/thirdparty/jquerymobile-1.4.5/jqm.listview.js deleted file mode 100644 index c0c088acb8..0000000000 --- a/dashboard-ui/thirdparty/jquerymobile-1.4.5/jqm.listview.js +++ /dev/null @@ -1,292 +0,0 @@ -define(['jqmwidget'], function () { - - (function ($, window, undefined) { - var rbrace = /(?:\{[\s\S]*\}|\[[\s\S]*\])$/; - - $.extend($.mobile, { - - // Namespace used framework-wide for data-attrs. Default is no namespace - - // Retrieve an attribute from an element and perform some massaging of the value - - getAttribute: function (element, key) { - var data; - - element = element.jquery ? element[0] : element; - - if (element && element.getAttribute) { - data = element.getAttribute("data-" + key); - } - - // Copied from core's src/data.js:dataAttr() - // Convert from a string to a proper data type - try { - data = data === "true" ? true : - data === "false" ? false : - data === "null" ? null : - // Only convert to a number if it doesn't change the string - +data + "" === data ? +data : - rbrace.test(data) ? JSON.parse(data) : - data; - } catch (err) { } - - return data; - } - - }); - - })(jQuery, this); - - (function ($, undefined) { - - var uiScreenHiddenRegex = /\bui-screen-hidden\b/; - function noHiddenClass(elements) { - var index, - length = elements.length, - result = []; - - for (index = 0; index < length; index++) { - if (!elements[index].className.match(uiScreenHiddenRegex)) { - result.push(elements[index]); - } - } - - return $(result); - } - - $.mobile.behaviors.addFirstLastClasses = { - _getVisibles: function ($els, create) { - var visibles; - - if (create) { - visibles = noHiddenClass($els); - } else { - visibles = $els.filter(":visible"); - if (visibles.length === 0) { - visibles = noHiddenClass($els); - } - } - - return visibles; - }, - - _addFirstLastClasses: function ($els, $visibles, create) { - $els.removeClass("ui-first-child ui-last-child"); - $visibles.eq(0).addClass("ui-first-child").end().last().addClass("ui-last-child"); - if (!create) { - this.element.trigger("updatelayout"); - } - }, - - _removeFirstLastClasses: function ($els) { - $els.removeClass("ui-first-child ui-last-child"); - } - }; - - })(jQuery); - - (function ($, undefined) { - - var getAttr = $.mobile.getAttribute; - - $.widget("mobile.listview", $.extend({ - - options: { - theme: null, - countTheme: null, /* Deprecated in 1.4 */ - dividerTheme: null, - icon: "carat-r", - splitIcon: "carat-r", - splitTheme: null, - corners: true, - shadow: true, - inset: false - }, - - _create: function () { - var t = this, - listviewClasses = ""; - - listviewClasses += t.options.inset ? " ui-listview-inset" : ""; - - if (!!t.options.inset) { - listviewClasses += t.options.corners ? " ui-corner-all" : ""; - listviewClasses += t.options.shadow ? " ui-shadow" : ""; - } - - // create listview markup - t.element.addClass(" ui-listview" + listviewClasses); - - t.refresh(true); - }, - - // TODO: Remove in 1.5 - _findFirstElementByTagName: function (ele, nextProp, lcName, ucName) { - var dict = {}; - dict[lcName] = dict[ucName] = true; - while (ele) { - if (dict[ele.nodeName]) { - return ele; - } - ele = ele[nextProp]; - } - return null; - }, - // TODO: Remove in 1.5 - _addThumbClasses: function (containers) { - var i, img, len = containers.length; - for (i = 0; i < len; i++) { - img = $(this._findFirstElementByTagName(containers[i].firstChild, "nextSibling", "img", "IMG")); - if (img.length) { - $(this._findFirstElementByTagName(img[0].parentNode, "parentNode", "li", "LI")).addClass(img.hasClass("ui-li-icon") ? "ui-li-has-icon" : "ui-li-has-thumb"); - } - } - }, - - _getChildrenByTagName: function (ele, lcName, ucName) { - var results = [], - dict = {}; - dict[lcName] = dict[ucName] = true; - ele = ele.firstChild; - while (ele) { - if (dict[ele.nodeName]) { - results.push(ele); - } - ele = ele.nextSibling; - } - return $(results); - }, - - _beforeListviewRefresh: $.noop, - _afterListviewRefresh: $.noop, - - refresh: function (create) { - var buttonClass, pos, numli, item, itemClass, itemTheme, itemIcon, icon, a, - isDivider, startCount, newStartCount, value, last, splittheme, splitThemeClass, spliticon, - altButtonClass, dividerTheme, li, - o = this.options, - $list = this.element, - ol = !!$.nodeName($list[0], "ol"), - start = $list.attr("start"), - itemClassDict = {}, - countBubbles = $list.find(".ui-li-count"), - countTheme = getAttr($list[0], "counttheme") || this.options.countTheme, - countThemeClass = countTheme ? "ui-body-" + countTheme : "ui-body-inherit"; - - if (o.theme) { - $list.addClass("ui-group-theme-" + o.theme); - } - - // Check if a start attribute has been set while taking a value of 0 into account - if (ol && (start || start === 0)) { - startCount = parseInt(start, 10) - 1; - $list.css("counter-reset", "listnumbering " + startCount); - } - - this._beforeListviewRefresh(); - - li = this._getChildrenByTagName($list[0], "li", "LI"); - - for (pos = 0, numli = li.length; pos < numli; pos++) { - item = li.eq(pos); - itemClass = ""; - - if (create || item[0].className.search(/\bui-li-static\b|\bui-li-divider\b/) < 0) { - a = this._getChildrenByTagName(item[0], "a", "A"); - isDivider = (getAttr(item[0], "role") === "list-divider"); - value = item.attr("value"); - itemTheme = getAttr(item[0], "theme"); - - if (a.length && a[0].className.search(/\bui-btn\b/) < 0 && !isDivider) { - itemIcon = getAttr(item[0], "icon"); - icon = (itemIcon === false) ? false : (itemIcon || o.icon); - - // TODO: Remove in 1.5 together with links.js (links.js / .ui-link deprecated in 1.4) - a.removeClass("ui-link"); - - buttonClass = "ui-btn"; - - if (itemTheme) { - buttonClass += " ui-btn-" + itemTheme; - } - - if (a.length > 1) { - itemClass = "ui-li-has-alt"; - - last = a.last(); - splittheme = getAttr(last[0], "theme") || o.splitTheme || getAttr(item[0], "theme", true); - splitThemeClass = splittheme ? " ui-btn-" + splittheme : ""; - spliticon = getAttr(last[0], "icon") || getAttr(item[0], "icon") || o.splitIcon; - altButtonClass = "ui-btn ui-btn-icon-notext ui-icon-" + spliticon + splitThemeClass; - - last - .attr("title", $.trim(last.text())) - .addClass(altButtonClass) - .empty(); - - // Reduce to the first anchor, because only the first gets the buttonClass - a = a.first(); - } else if (icon) { - buttonClass += " ui-btn-icon-right ui-icon-" + icon; - } - - // Apply buttonClass to the (first) anchor - a.addClass(buttonClass); - } else if (isDivider) { - dividerTheme = (getAttr(item[0], "theme") || o.dividerTheme || o.theme); - - itemClass = "ui-li-divider ui-bar-" + (dividerTheme ? dividerTheme : "inherit"); - - item.attr("role", "heading"); - } else if (a.length <= 0) { - itemClass = "ui-li-static ui-body-" + (itemTheme ? itemTheme : "inherit"); - } - if (ol && value) { - newStartCount = parseInt(value, 10) - 1; - - item.css("counter-reset", "listnumbering " + newStartCount); - } - } - - // Instead of setting item class directly on the list item - // at this point in time, push the item into a dictionary - // that tells us what class to set on it so we can do this after this - // processing loop is finished. - - if (!itemClassDict[itemClass]) { - itemClassDict[itemClass] = []; - } - - itemClassDict[itemClass].push(item[0]); - } - - // Set the appropriate listview item classes on each list item. - // The main reason we didn't do this - // in the for-loop above is because we can eliminate per-item function overhead - // by calling addClass() and children() once or twice afterwards. This - // can give us a significant boost on platforms like WP7.5. - - for (itemClass in itemClassDict) { - $(itemClassDict[itemClass]).addClass(itemClass); - } - - countBubbles.each(function () { - $(this).closest("li").addClass("ui-li-has-count"); - }); - if (countThemeClass) { - countBubbles.not("[class*='ui-body-']").addClass(countThemeClass); - } - - // Deprecated in 1.4. From 1.5 you have to add class ui-li-has-thumb or ui-li-has-icon to the LI. - this._addThumbClasses(li); - this._addThumbClasses(li.find(".ui-btn")); - - this._afterListviewRefresh(); - - this._addFirstLastClasses(li, this._getVisibles(li, create), create); - } - }, $.mobile.behaviors.addFirstLastClasses)); - - })(jQuery); - -}); \ No newline at end of file From 9915242409908dfc06e3d3a2dd8659c140cb9aa3 Mon Sep 17 00:00:00 2001 From: Luke Pulverenti Date: Sun, 7 Feb 2016 16:48:08 -0500 Subject: [PATCH 13/18] update progressive encoding --- dashboard-ui/mypreferencesdisplay.html | 6 +-- dashboard-ui/mypreferenceshome.html | 8 ++-- dashboard-ui/mypreferenceslanguages.html | 10 ++--- dashboard-ui/scripts/logpage.js | 7 +-- dashboard-ui/scripts/sync.js | 2 +- dashboard-ui/syncjob.html | 2 +- .../jquerymobile-1.4.5/jqm.controlgroup.css | 45 ++++++++++--------- .../thirdparty/paper-button-style.css | 2 +- dashboard-ui/userparentalcontrol.html | 2 +- 9 files changed, 45 insertions(+), 39 deletions(-) diff --git a/dashboard-ui/mypreferencesdisplay.html b/dashboard-ui/mypreferencesdisplay.html index b1a9eba34f..22a9c679f0 100644 --- a/dashboard-ui/mypreferencesdisplay.html +++ b/dashboard-ui/mypreferencesdisplay.html @@ -18,7 +18,7 @@

- + @@ -82,7 +82,7 @@


- + @@ -62,7 +62,7 @@

- +

${LabelPlayDefaultAudioTrack}


- +

- +

- +
diff --git a/dashboard-ui/scripts/logpage.js b/dashboard-ui/scripts/logpage.js index 19db3c699b..a342eb62bd 100644 --- a/dashboard-ui/scripts/logpage.js +++ b/dashboard-ui/scripts/logpage.js @@ -1,11 +1,11 @@ (function () { - $(document).on('pageshow', "#logPage", function () { + $(document).on('pagebeforeshow', "#logPage", function () { var page = this; + Dashboard.showLoadingMsg(); - - require(['paper-fab', 'paper-progress', 'paper-item-body', 'paper-icon-item'], function () { + require(['paper-fab', 'paper-item-body', 'paper-icon-item'], function () { var apiClient = ApiClient; @@ -56,6 +56,7 @@ html += '
'; $('.serverLogs', page).html(html).trigger('create'); + Dashboard.hideLoadingMsg(); }); }); diff --git a/dashboard-ui/scripts/sync.js b/dashboard-ui/scripts/sync.js index 2b372f1334..fd1c94763a 100644 --- a/dashboard-ui/scripts/sync.js +++ b/dashboard-ui/scripts/sync.js @@ -183,7 +183,7 @@ //html += ''; //html += ''; - $(elem).html(html); + $(elem).html(html).trigger('create'); $('#selectSyncTarget', elem).on('change', function () { diff --git a/dashboard-ui/syncjob.html b/dashboard-ui/syncjob.html index 539d1430d1..5789453ee0 100644 --- a/dashboard-ui/syncjob.html +++ b/dashboard-ui/syncjob.html @@ -4,7 +4,7 @@ ${TitleSync} -
+
diff --git a/dashboard-ui/thirdparty/jquerymobile-1.4.5/jqm.controlgroup.css b/dashboard-ui/thirdparty/jquerymobile-1.4.5/jqm.controlgroup.css index 77eaf253e9..8e20885378 100644 --- a/dashboard-ui/thirdparty/jquerymobile-1.4.5/jqm.controlgroup.css +++ b/dashboard-ui/thirdparty/jquerymobile-1.4.5/jqm.controlgroup.css @@ -1,8 +1,13 @@ -.udiv[data-role="controlgroup"], fieldset[data-role="controlgroup"] { +div[data-role="controlgroup"], fieldset[data-role="controlgroup"] { padding: 0; margin: .5em 0; + clear: both; } + div[data-role="controlgroup"] + *, fieldset[data-role="controlgroup"] + * { + clear: both; + } + *[data-role="controlgroup"].ui-mini .ui-btn-icon-notext, *[data-role="controlgroup"] .ui-mini.ui-btn-icon-notext { font-size: inherit; @@ -24,26 +29,22 @@ list-style: none; } -div[data-role="controlgroup"][data-type="horizontal"] .ui-btn, -div[data-role="controlgroup"][data-type="horizontal"] li > .ui-btn, -div[data-role="controlgroup"][data-type="horizontal"] .ui-checkbox, -div[data-role="controlgroup"][data-type="horizontal"] .ui-radio, -div[data-role="controlgroup"][data-type="horizontal"].ui-select { +*[data-role="controlgroup"][data-type="horizontal"] .ui-btn, +*[data-role="controlgroup"][data-type="horizontal"] li > .ui-btn, +*[data-role="controlgroup"][data-type="horizontal"] .ui-checkbox, +*[data-role="controlgroup"][data-type="horizontal"] .ui-radio, +*[data-role="controlgroup"][data-type="horizontal"].ui-select { float: left; clear: none; } -div[data-role="controlgroup"][data-type="horizontal"] input[type="radio"] { - display: none; -} - -div[data-role="controlgroup"][data-type="horizontal"] button.ui-btn, +*[data-role="controlgroup"][data-type="horizontal"] button.ui-btn, *[data-role="controlgroup"] .ui-btn-icon-notext { width: auto; } -div[data-role="controlgroup"][data-type="horizontal"] .ui-btn-icon-notext, -div[data-role="controlgroup"][data-type="horizontal"] button.ui-btn-icon-notext { +*[data-role="controlgroup"][data-type="horizontal"] .ui-btn-icon-notext, +*[data-role="controlgroup"][data-type="horizontal"] button.ui-btn-icon-notext { width: 1.5em; } @@ -56,18 +57,22 @@ div[data-role="controlgroup"][data-type="horizontal"] button.ui-btn-icon-notext border-bottom-width: 0; } - *[data-role="controlgroup"]:not([data-type="horizontal"]) .ui-checkbox:last-child .ui-btn { - border-bottom-width: 1px; - } +*[data-role="controlgroup"]:not([data-type="horizontal"]) .ui-checkbox:last-child .ui-btn { + border-bottom-width: 1px; +} -div[data-role="controlgroup"][data-type="horizontal"] .ui-btn { +*[data-role="controlgroup"][data-type="horizontal"] .ui-btn { border-right-width: 0; } - div[data-role="controlgroup"][data-type="horizontal"] .ui-btn:last-child { + *[data-role="controlgroup"][data-type="horizontal"] .ui-btn:last-child { border-right-width: 1px; } +*[data-role="controlgroup"][data-type="horizontal"] .ui-radio:last-child label { + border-right-width: 1px; +} + *[data-role="controlgroup"] .ui-btn-corner-all, *[data-role="controlgroup"] .ui-btn.ui-corner-all { -webkit-border-radius: 0; @@ -82,14 +87,14 @@ div[data-role="controlgroup"][data-type="horizontal"] .ui-btn { border-radius: inherit; } -div[data-role="controlgroup"][data-type="horizontal"] .ui-btn:first-child { +*[data-role="controlgroup"][data-type="horizontal"] .ui-btn:first-child { -webkit-border-top-left-radius: inherit; border-top-left-radius: inherit; -webkit-border-bottom-left-radius: inherit; border-bottom-left-radius: inherit; } -div[data-role="controlgroup"][data-type="horizontal"] .ui-btn:last-child { +*[data-role="controlgroup"][data-type="horizontal"] .ui-btn:last-child { -webkit-border-top-right-radius: inherit; border-top-right-radius: inherit; -webkit-border-bottom-right-radius: inherit; diff --git a/dashboard-ui/thirdparty/paper-button-style.css b/dashboard-ui/thirdparty/paper-button-style.css index 94b0436bab..421dba23d3 100644 --- a/dashboard-ui/thirdparty/paper-button-style.css +++ b/dashboard-ui/thirdparty/paper-button-style.css @@ -449,7 +449,7 @@ paper-input label, paper-textarea label { } .ui-body-b .paper-input-container-0 .input-content.paper-input-container label, .ui-body-b .paper-input-container-0 .input-content.paper-input-container .paper-input-label, .ui-body-b paper-textarea label, .ui-body-b .selectLabel, .ui-body-b .fieldDescription { - color: #858585; + color: #ccc; } .ui-body-a .paper-input-container-0 .input-content.paper-input-container label, .ui-body-a .paper-input-container-0 .input-content.paper-input-container .paper-input-label, .ui-body-a paper-textarea label, .ui-body-a .selectLabel, .ui-body-a .fieldDescription { diff --git a/dashboard-ui/userparentalcontrol.html b/dashboard-ui/userparentalcontrol.html index 96b3528c04..1129b6e016 100644 --- a/dashboard-ui/userparentalcontrol.html +++ b/dashboard-ui/userparentalcontrol.html @@ -18,7 +18,7 @@
  • - +
    ${MaxParentalRatingHelp}
  • From 4ed0a8d9197e3a4cccd175a71984777875ed4acd Mon Sep 17 00:00:00 2001 From: Luke Pulverenti Date: Sun, 7 Feb 2016 23:42:56 -0500 Subject: [PATCH 14/18] update listviews --- dashboard-ui/css/site.css | 4 +- dashboard-ui/scripts/librarylist.js | 14 +- .../jquerymobile-1.4.5/images/ajax-loader.gif | Bin 6242 -> 0 bytes .../images/icons-png/action-black.png | Bin 219 -> 0 bytes .../images/icons-png/action-white.png | Bin 227 -> 0 bytes .../images/icons-png/alert-black.png | Bin 244 -> 0 bytes .../images/icons-png/alert-white.png | Bin 243 -> 0 bytes .../images/icons-png/arrow-d-black.png | Bin 146 -> 0 bytes .../images/icons-png/arrow-d-l-black.png | Bin 167 -> 0 bytes .../images/icons-png/arrow-d-l-white.png | Bin 173 -> 0 bytes .../images/icons-png/arrow-d-r-black.png | Bin 159 -> 0 bytes .../images/icons-png/arrow-d-r-white.png | Bin 171 -> 0 bytes .../images/icons-png/arrow-d-white.png | Bin 149 -> 0 bytes .../images/icons-png/arrow-l-black.png | Bin 149 -> 0 bytes .../images/icons-png/arrow-l-white.png | Bin 156 -> 0 bytes .../images/icons-png/arrow-r-black.png | Bin 147 -> 0 bytes .../images/icons-png/arrow-r-white.png | Bin 152 -> 0 bytes .../images/icons-png/arrow-u-black.png | Bin 147 -> 0 bytes .../images/icons-png/arrow-u-l-black.png | Bin 163 -> 0 bytes .../images/icons-png/arrow-u-l-white.png | Bin 169 -> 0 bytes .../images/icons-png/arrow-u-r-black.png | Bin 163 -> 0 bytes .../images/icons-png/arrow-u-r-white.png | Bin 165 -> 0 bytes .../images/icons-png/arrow-u-white.png | Bin 151 -> 0 bytes .../images/icons-png/audio-black.png | Bin 307 -> 0 bytes .../images/icons-png/audio-white.png | Bin 314 -> 0 bytes .../images/icons-png/back-black.png | Bin 233 -> 0 bytes .../images/icons-png/back-white.png | Bin 240 -> 0 bytes .../images/icons-png/bars-black.png | Bin 132 -> 0 bytes .../images/icons-png/bars-white.png | Bin 135 -> 0 bytes .../images/icons-png/bullets-black.png | Bin 147 -> 0 bytes .../images/icons-png/bullets-white.png | Bin 152 -> 0 bytes .../images/icons-png/calendar-black.png | Bin 146 -> 0 bytes .../images/icons-png/calendar-white.png | Bin 143 -> 0 bytes .../images/icons-png/camera-black.png | Bin 250 -> 0 bytes .../images/icons-png/camera-white.png | Bin 251 -> 0 bytes .../images/icons-png/carat-d-black.png | Bin 207 -> 0 bytes .../images/icons-png/carat-d-white.png | Bin 213 -> 0 bytes .../images/icons-png/carat-l-black.png | Bin 174 -> 0 bytes .../images/icons-png/carat-l-white.png | Bin 177 -> 0 bytes .../images/icons-png/carat-r-black.png | Bin 184 -> 0 bytes .../images/icons-png/carat-r-white.png | Bin 194 -> 0 bytes .../images/icons-png/carat-u-black.png | Bin 196 -> 0 bytes .../images/icons-png/carat-u-white.png | Bin 204 -> 0 bytes .../images/icons-png/check-black.png | Bin 169 -> 0 bytes .../images/icons-png/check-white.png | Bin 172 -> 0 bytes .../images/icons-png/clock-black.png | Bin 310 -> 0 bytes .../images/icons-png/clock-white.png | Bin 316 -> 0 bytes .../images/icons-png/cloud-black.png | Bin 212 -> 0 bytes .../images/icons-png/cloud-white.png | Bin 210 -> 0 bytes .../images/icons-png/comment-black.png | Bin 165 -> 0 bytes .../images/icons-png/comment-white.png | Bin 160 -> 0 bytes .../images/icons-png/delete-black.png | Bin 171 -> 0 bytes .../images/icons-png/delete-white.png | Bin 185 -> 0 bytes .../images/icons-png/edit-black.png | Bin 163 -> 0 bytes .../images/icons-png/edit-white.png | Bin 170 -> 0 bytes .../images/icons-png/eye-black.png | Bin 249 -> 0 bytes .../images/icons-png/eye-white.png | Bin 253 -> 0 bytes .../images/icons-png/forbidden-black.png | Bin 299 -> 0 bytes .../images/icons-png/forbidden-white.png | Bin 308 -> 0 bytes .../images/icons-png/forward-black.png | Bin 233 -> 0 bytes .../images/icons-png/forward-white.png | Bin 243 -> 0 bytes .../images/icons-png/gear-black.png | Bin 318 -> 0 bytes .../images/icons-png/gear-white.png | Bin 302 -> 0 bytes .../images/icons-png/grid-black.png | Bin 160 -> 0 bytes .../images/icons-png/grid-white.png | Bin 167 -> 0 bytes .../images/icons-png/heart-black.png | Bin 242 -> 0 bytes .../images/icons-png/heart-white.png | Bin 246 -> 0 bytes .../images/icons-png/home-black.png | Bin 150 -> 0 bytes .../images/icons-png/home-white.png | Bin 154 -> 0 bytes .../images/icons-png/info-black.png | Bin 250 -> 0 bytes .../images/icons-png/info-white.png | Bin 251 -> 0 bytes .../images/icons-png/location-black.png | Bin 245 -> 0 bytes .../images/icons-png/location-white.png | Bin 247 -> 0 bytes .../images/icons-png/lock-black.png | Bin 204 -> 0 bytes .../images/icons-png/lock-white.png | Bin 207 -> 0 bytes .../images/icons-png/mail-black.png | Bin 226 -> 0 bytes .../images/icons-png/mail-white.png | Bin 227 -> 0 bytes .../images/icons-png/minus-black.png | Bin 116 -> 0 bytes .../images/icons-png/minus-white.png | Bin 116 -> 0 bytes .../images/icons-png/navigation-black.png | Bin 242 -> 0 bytes .../images/icons-png/navigation-white.png | Bin 241 -> 0 bytes .../images/icons-png/phone-black.png | Bin 270 -> 0 bytes .../images/icons-png/phone-white.png | Bin 274 -> 0 bytes .../images/icons-png/plus-black.png | Bin 123 -> 0 bytes .../images/icons-png/plus-white.png | Bin 124 -> 0 bytes .../images/icons-png/power-black.png | Bin 292 -> 0 bytes .../images/icons-png/power-white.png | Bin 302 -> 0 bytes .../images/icons-png/recycle-black.png | Bin 243 -> 0 bytes .../images/icons-png/recycle-white.png | Bin 253 -> 0 bytes .../images/icons-png/refresh-black.png | Bin 295 -> 0 bytes .../images/icons-png/refresh-white.png | Bin 301 -> 0 bytes .../images/icons-png/search-black.png | Bin 324 -> 0 bytes .../images/icons-png/search-white.png | Bin 321 -> 0 bytes .../images/icons-png/shop-black.png | Bin 174 -> 0 bytes .../images/icons-png/shop-white.png | Bin 173 -> 0 bytes .../images/icons-png/star-black.png | Bin 231 -> 0 bytes .../images/icons-png/star-white.png | Bin 239 -> 0 bytes .../images/icons-png/tag-black.png | Bin 159 -> 0 bytes .../images/icons-png/tag-white.png | Bin 159 -> 0 bytes .../images/icons-png/user-black.png | Bin 245 -> 0 bytes .../images/icons-png/user-white.png | Bin 245 -> 0 bytes .../images/icons-png/video-black.png | Bin 171 -> 0 bytes .../images/icons-png/video-white.png | Bin 170 -> 0 bytes .../jquerymobile-1.4.5/jqm.listview.css | 424 +++++------ .../jquery.mobile.custom.icons.css | 563 +-------------- .../jquery.mobile.custom.theme.css | 679 ++++++++++-------- 106 files changed, 575 insertions(+), 1109 deletions(-) delete mode 100644 dashboard-ui/thirdparty/jquerymobile-1.4.5/images/ajax-loader.gif delete mode 100644 dashboard-ui/thirdparty/jquerymobile-1.4.5/images/icons-png/action-black.png delete mode 100644 dashboard-ui/thirdparty/jquerymobile-1.4.5/images/icons-png/action-white.png delete mode 100644 dashboard-ui/thirdparty/jquerymobile-1.4.5/images/icons-png/alert-black.png delete mode 100644 dashboard-ui/thirdparty/jquerymobile-1.4.5/images/icons-png/alert-white.png delete mode 100644 dashboard-ui/thirdparty/jquerymobile-1.4.5/images/icons-png/arrow-d-black.png delete mode 100644 dashboard-ui/thirdparty/jquerymobile-1.4.5/images/icons-png/arrow-d-l-black.png delete mode 100644 dashboard-ui/thirdparty/jquerymobile-1.4.5/images/icons-png/arrow-d-l-white.png delete mode 100644 dashboard-ui/thirdparty/jquerymobile-1.4.5/images/icons-png/arrow-d-r-black.png delete mode 100644 dashboard-ui/thirdparty/jquerymobile-1.4.5/images/icons-png/arrow-d-r-white.png delete mode 100644 dashboard-ui/thirdparty/jquerymobile-1.4.5/images/icons-png/arrow-d-white.png delete mode 100644 dashboard-ui/thirdparty/jquerymobile-1.4.5/images/icons-png/arrow-l-black.png delete mode 100644 dashboard-ui/thirdparty/jquerymobile-1.4.5/images/icons-png/arrow-l-white.png delete mode 100644 dashboard-ui/thirdparty/jquerymobile-1.4.5/images/icons-png/arrow-r-black.png delete mode 100644 dashboard-ui/thirdparty/jquerymobile-1.4.5/images/icons-png/arrow-r-white.png delete mode 100644 dashboard-ui/thirdparty/jquerymobile-1.4.5/images/icons-png/arrow-u-black.png delete mode 100644 dashboard-ui/thirdparty/jquerymobile-1.4.5/images/icons-png/arrow-u-l-black.png delete mode 100644 dashboard-ui/thirdparty/jquerymobile-1.4.5/images/icons-png/arrow-u-l-white.png delete mode 100644 dashboard-ui/thirdparty/jquerymobile-1.4.5/images/icons-png/arrow-u-r-black.png delete mode 100644 dashboard-ui/thirdparty/jquerymobile-1.4.5/images/icons-png/arrow-u-r-white.png delete mode 100644 dashboard-ui/thirdparty/jquerymobile-1.4.5/images/icons-png/arrow-u-white.png delete mode 100644 dashboard-ui/thirdparty/jquerymobile-1.4.5/images/icons-png/audio-black.png delete mode 100644 dashboard-ui/thirdparty/jquerymobile-1.4.5/images/icons-png/audio-white.png delete mode 100644 dashboard-ui/thirdparty/jquerymobile-1.4.5/images/icons-png/back-black.png delete mode 100644 dashboard-ui/thirdparty/jquerymobile-1.4.5/images/icons-png/back-white.png delete mode 100644 dashboard-ui/thirdparty/jquerymobile-1.4.5/images/icons-png/bars-black.png delete mode 100644 dashboard-ui/thirdparty/jquerymobile-1.4.5/images/icons-png/bars-white.png delete mode 100644 dashboard-ui/thirdparty/jquerymobile-1.4.5/images/icons-png/bullets-black.png delete mode 100644 dashboard-ui/thirdparty/jquerymobile-1.4.5/images/icons-png/bullets-white.png delete mode 100644 dashboard-ui/thirdparty/jquerymobile-1.4.5/images/icons-png/calendar-black.png delete mode 100644 dashboard-ui/thirdparty/jquerymobile-1.4.5/images/icons-png/calendar-white.png delete mode 100644 dashboard-ui/thirdparty/jquerymobile-1.4.5/images/icons-png/camera-black.png delete mode 100644 dashboard-ui/thirdparty/jquerymobile-1.4.5/images/icons-png/camera-white.png delete mode 100644 dashboard-ui/thirdparty/jquerymobile-1.4.5/images/icons-png/carat-d-black.png delete mode 100644 dashboard-ui/thirdparty/jquerymobile-1.4.5/images/icons-png/carat-d-white.png delete mode 100644 dashboard-ui/thirdparty/jquerymobile-1.4.5/images/icons-png/carat-l-black.png delete mode 100644 dashboard-ui/thirdparty/jquerymobile-1.4.5/images/icons-png/carat-l-white.png delete mode 100644 dashboard-ui/thirdparty/jquerymobile-1.4.5/images/icons-png/carat-r-black.png delete mode 100644 dashboard-ui/thirdparty/jquerymobile-1.4.5/images/icons-png/carat-r-white.png delete mode 100644 dashboard-ui/thirdparty/jquerymobile-1.4.5/images/icons-png/carat-u-black.png delete mode 100644 dashboard-ui/thirdparty/jquerymobile-1.4.5/images/icons-png/carat-u-white.png delete mode 100644 dashboard-ui/thirdparty/jquerymobile-1.4.5/images/icons-png/check-black.png delete mode 100644 dashboard-ui/thirdparty/jquerymobile-1.4.5/images/icons-png/check-white.png delete mode 100644 dashboard-ui/thirdparty/jquerymobile-1.4.5/images/icons-png/clock-black.png delete mode 100644 dashboard-ui/thirdparty/jquerymobile-1.4.5/images/icons-png/clock-white.png delete mode 100644 dashboard-ui/thirdparty/jquerymobile-1.4.5/images/icons-png/cloud-black.png delete mode 100644 dashboard-ui/thirdparty/jquerymobile-1.4.5/images/icons-png/cloud-white.png delete mode 100644 dashboard-ui/thirdparty/jquerymobile-1.4.5/images/icons-png/comment-black.png delete mode 100644 dashboard-ui/thirdparty/jquerymobile-1.4.5/images/icons-png/comment-white.png delete mode 100644 dashboard-ui/thirdparty/jquerymobile-1.4.5/images/icons-png/delete-black.png delete mode 100644 dashboard-ui/thirdparty/jquerymobile-1.4.5/images/icons-png/delete-white.png delete mode 100644 dashboard-ui/thirdparty/jquerymobile-1.4.5/images/icons-png/edit-black.png delete mode 100644 dashboard-ui/thirdparty/jquerymobile-1.4.5/images/icons-png/edit-white.png delete mode 100644 dashboard-ui/thirdparty/jquerymobile-1.4.5/images/icons-png/eye-black.png delete mode 100644 dashboard-ui/thirdparty/jquerymobile-1.4.5/images/icons-png/eye-white.png delete mode 100644 dashboard-ui/thirdparty/jquerymobile-1.4.5/images/icons-png/forbidden-black.png delete mode 100644 dashboard-ui/thirdparty/jquerymobile-1.4.5/images/icons-png/forbidden-white.png delete mode 100644 dashboard-ui/thirdparty/jquerymobile-1.4.5/images/icons-png/forward-black.png delete mode 100644 dashboard-ui/thirdparty/jquerymobile-1.4.5/images/icons-png/forward-white.png delete mode 100644 dashboard-ui/thirdparty/jquerymobile-1.4.5/images/icons-png/gear-black.png delete mode 100644 dashboard-ui/thirdparty/jquerymobile-1.4.5/images/icons-png/gear-white.png delete mode 100644 dashboard-ui/thirdparty/jquerymobile-1.4.5/images/icons-png/grid-black.png delete mode 100644 dashboard-ui/thirdparty/jquerymobile-1.4.5/images/icons-png/grid-white.png delete mode 100644 dashboard-ui/thirdparty/jquerymobile-1.4.5/images/icons-png/heart-black.png delete mode 100644 dashboard-ui/thirdparty/jquerymobile-1.4.5/images/icons-png/heart-white.png delete mode 100644 dashboard-ui/thirdparty/jquerymobile-1.4.5/images/icons-png/home-black.png delete mode 100644 dashboard-ui/thirdparty/jquerymobile-1.4.5/images/icons-png/home-white.png delete mode 100644 dashboard-ui/thirdparty/jquerymobile-1.4.5/images/icons-png/info-black.png delete mode 100644 dashboard-ui/thirdparty/jquerymobile-1.4.5/images/icons-png/info-white.png delete mode 100644 dashboard-ui/thirdparty/jquerymobile-1.4.5/images/icons-png/location-black.png delete mode 100644 dashboard-ui/thirdparty/jquerymobile-1.4.5/images/icons-png/location-white.png delete mode 100644 dashboard-ui/thirdparty/jquerymobile-1.4.5/images/icons-png/lock-black.png delete mode 100644 dashboard-ui/thirdparty/jquerymobile-1.4.5/images/icons-png/lock-white.png delete mode 100644 dashboard-ui/thirdparty/jquerymobile-1.4.5/images/icons-png/mail-black.png delete mode 100644 dashboard-ui/thirdparty/jquerymobile-1.4.5/images/icons-png/mail-white.png delete mode 100644 dashboard-ui/thirdparty/jquerymobile-1.4.5/images/icons-png/minus-black.png delete mode 100644 dashboard-ui/thirdparty/jquerymobile-1.4.5/images/icons-png/minus-white.png delete mode 100644 dashboard-ui/thirdparty/jquerymobile-1.4.5/images/icons-png/navigation-black.png delete mode 100644 dashboard-ui/thirdparty/jquerymobile-1.4.5/images/icons-png/navigation-white.png delete mode 100644 dashboard-ui/thirdparty/jquerymobile-1.4.5/images/icons-png/phone-black.png delete mode 100644 dashboard-ui/thirdparty/jquerymobile-1.4.5/images/icons-png/phone-white.png delete mode 100644 dashboard-ui/thirdparty/jquerymobile-1.4.5/images/icons-png/plus-black.png delete mode 100644 dashboard-ui/thirdparty/jquerymobile-1.4.5/images/icons-png/plus-white.png delete mode 100644 dashboard-ui/thirdparty/jquerymobile-1.4.5/images/icons-png/power-black.png delete mode 100644 dashboard-ui/thirdparty/jquerymobile-1.4.5/images/icons-png/power-white.png delete mode 100644 dashboard-ui/thirdparty/jquerymobile-1.4.5/images/icons-png/recycle-black.png delete mode 100644 dashboard-ui/thirdparty/jquerymobile-1.4.5/images/icons-png/recycle-white.png delete mode 100644 dashboard-ui/thirdparty/jquerymobile-1.4.5/images/icons-png/refresh-black.png delete mode 100644 dashboard-ui/thirdparty/jquerymobile-1.4.5/images/icons-png/refresh-white.png delete mode 100644 dashboard-ui/thirdparty/jquerymobile-1.4.5/images/icons-png/search-black.png delete mode 100644 dashboard-ui/thirdparty/jquerymobile-1.4.5/images/icons-png/search-white.png delete mode 100644 dashboard-ui/thirdparty/jquerymobile-1.4.5/images/icons-png/shop-black.png delete mode 100644 dashboard-ui/thirdparty/jquerymobile-1.4.5/images/icons-png/shop-white.png delete mode 100644 dashboard-ui/thirdparty/jquerymobile-1.4.5/images/icons-png/star-black.png delete mode 100644 dashboard-ui/thirdparty/jquerymobile-1.4.5/images/icons-png/star-white.png delete mode 100644 dashboard-ui/thirdparty/jquerymobile-1.4.5/images/icons-png/tag-black.png delete mode 100644 dashboard-ui/thirdparty/jquerymobile-1.4.5/images/icons-png/tag-white.png delete mode 100644 dashboard-ui/thirdparty/jquerymobile-1.4.5/images/icons-png/user-black.png delete mode 100644 dashboard-ui/thirdparty/jquerymobile-1.4.5/images/icons-png/user-white.png delete mode 100644 dashboard-ui/thirdparty/jquerymobile-1.4.5/images/icons-png/video-black.png delete mode 100644 dashboard-ui/thirdparty/jquerymobile-1.4.5/images/icons-png/video-white.png diff --git a/dashboard-ui/css/site.css b/dashboard-ui/css/site.css index c8e8e2e11e..c98afb3907 100644 --- a/dashboard-ui/css/site.css +++ b/dashboard-ui/css/site.css @@ -835,13 +835,13 @@ paper-input + .fieldDescription { } .ulForm { + margin: -1em !important; margin-bottom: 20px !important; } .ulForm li:not(.ui-li-divider) { background: none; - border-top: none; - border-bottom: none; + border: 0 !important; } .popup .ulForm { diff --git a/dashboard-ui/scripts/librarylist.js b/dashboard-ui/scripts/librarylist.js index 9186fe8a9e..4553ccbb88 100644 --- a/dashboard-ui/scripts/librarylist.js +++ b/dashboard-ui/scripts/librarylist.js @@ -852,11 +852,19 @@ require(['hammer'], function (Hammer) { - var hammertime = new Hammer(element); + var manager = new Hammer.Manager(element); + + var press = new Hammer.Press({ + time: 500 + }); + + manager.add(press); + + //var hammertime = new Hammer(element); element.classList.add('hasTapHold'); - hammertime.on('press', onTapHold); - hammertime.on('pressup', onTapHoldUp); + manager.on('press', onTapHold); + manager.on('pressup', onTapHoldUp); }); showTapHoldHelp(element); diff --git a/dashboard-ui/thirdparty/jquerymobile-1.4.5/images/ajax-loader.gif b/dashboard-ui/thirdparty/jquerymobile-1.4.5/images/ajax-loader.gif deleted file mode 100644 index 57f5624e7bce9ace2e91c342025a91eae38fbbf2..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 6242 zcmbuDcT`m8y2hvNzGn{%0}e%L8o@#kjG$mbv7j+1R-%alDgvTGQ7J+gm|+-T=mH`* zFfjC9q)3~giu7I-MIeZPEyid($?=YQ?n=(RS@(}~_y2pZ^?TmudA|4CJ9q6c-Rx*U zG9bNTkmQe|qN0wDjEQtS$F#H!?7!lI8Df|3*WoBnD~ShmU>uEQ$91MaQm1s_EHtwQr8;Ii2`6 zBF81cwYD%}ZR3kC9?ph6=R8q?0PZ7)r7zcW(;vBP@kz7O?swRdjJddD#`+NM6&l2|ju*rl1M$}A zbrUEV=ZK7gGy|ff67v z2D~U*XA`r116%6GFsr~?NE?&61RQU}AW zPeg|3B5@H3CO{mTVg_LnPO#YIYGzuF37Ux|%f-av%MFS%v#Zymx6!(Ky+*9Ds`+|j zdxt*UY16IuO(TLd4X6U0BW2^Ny(3q~%A?inr(xKoUZ4$4EG>F&FptNP&o+?M?=xN=C);-C>6 z-p4<=;G&1G@5_m1?`Rxy)fu)_Rk5C4ruL&l2g`U%VdUXlM({d=ErWv?0z(k|{eewi zGmlvXU_WR>bjT!J2gWf^95(mxzahr1iS$C%;dJa~rWufTvd|35i!L+H6_-|-ASjBV z1$D-aZIvzS+Zyk5=ye|HG3rFR2eccI3CXA)e!~lyfC}-;N7g4zZ7>*^w0^_U95itu`;DpYS0Pe$Q_ zuqOuKbQtZK{;^O9oc%=|40{W{n(uBR&87xYsQ15N_J4jNkV0c79AgJrG;nD;C`>xv z1cx)W>kbKM> zKIlNt{z9)oh`w4moU*NW)9Zt}l>gAEa%E)>pOjq#hws~Qa>C)GQ90}#;vtVu%8K8u zrSDZ8lPhbJUw^`@`H@S@A*Ewiyf74oK@djH9rXM0;wEj|V6P*(AQtI|pOTj=gt|%~ z1Nf?+A97L0C8H!@J(No@MH;$rNk*0l?8m^&iZc+{e7`vfM0$G4jH^v8d+&6Ph4%=? z#zR8-CygJ53{D$8gmyhP3t3oPGI_o*_wv$0=<8pL-hu%2AKxk1%odXZIbZ#(s6|q6 zWGGTGwuYev$!ebh-Kaor*)|30c9s3JWBtdq6t(qH1%aa8Jqw#TgQrX=~zqUE;{u8BL)GmMqIo?T98H z3}dablD1znIx~O=8qMwAqU%v~O5cUI_vUIo7$)AxO32!L-6FWZV#n9~!{KUOHx6nZ zF@E0gE;{Cu#Gej-hy;i!Phn{)0l_}L&^nAM6B_4HODlnnIyAx3sn;-zE2TCzCq|GW$oyC+^*!d_YqC zGmL-o41eU=RhY@zvVBz~FmQ7s>$5hS6{>kXShJRRZTzmNtc~g?`!B{TTt8l*#3I7u zb&ZnVYT$fs?p%fCD%#Ua?=sn}$u^zU9YtElz z{q_GK)z^=Y(Lbc8va|B$z4Xu0*s=D`BDZ?2LQHD&dB!GXYsbEqz8mQ4s~y&bX*W5B zZCinlQLP+LdZ%hPUkfvxT>}<*)tfFWJDEdpT#8gfJ4l@-z50;X@qILaZ+|A>QjiZd zn9mQ>Msa!q9f+hQ)2Oj7i3u=Ol9{TFiP6lgY!)KMDCHGJ95G%&rjRR@ATgcX+|t05 zit9BNVb zZiZLIGmQ@EQGkTYH`DWMHt<{GyXW)P75szp@=@=NA+$>RWZTx%&`MR6RITfdzP~Nc z8RRZ>Y_&xl7KXpxu(Eo4a3YCNzmrZ)lv(TndFHhiV|KHb0_~_gZyNPSWjOE>LZSo* zhiaoj9H1m6Q7LiCU;;$WxFOQUgh)m{IZGMA>17zRpeUfM3|B6!VnQ`#4Z2cU^95OL zd$FvdlT})S_9{Vy?8*=cAEl3aG{D5n%;3=U?2KJ6!gvxnL4uwUi7%N?>5Ff^d}H>% za5d$TyeG%C+yJ@y@A*T^f;|>M1O z01FDj5GFY?M8HDM;h0mbt2>?oC0#;OQX*0f;Piw{11Ja2b1f{^DoCLhl_?j{Ypbf2 zklI?TfrZKFXbTf;r~BM(YrkFwcXzZv-Sqv{FhR6S$^iPqIRYQd!yixGZ(z*PMR!Tq zOZ@rWI}0s;e2VO+mj4u4EjjO~oR_RWH-9egz0^Z>mY?$2jw8}KZts(3lw>6xoyE|c@Y{| zWbgNia}ncS=5P=m*MYAEhGLM=!=H!5ZiYkA#B~sk;i)MR;>-+9FjJhpLX=ma4Ci4b zthCI8TO^Q9#~Wg9WA*iTcsATpUsD3ztv^uE(c6^)VMK3RHi{Dud;3$y9*#f6r&AEd zPmiBuKMlA|8b_ZOfN;C=UuKKS>vp-ka7ncC7ajVLeyhv(Iq#zkg-4t<^l~VHHpkU` z&20*IyDuKKHy;(yD6~6IZ0ZM#6Kwp#S~-_YekLV;4tp=oKN z%&Y`)YOW|<05a&2{(6>7dbv`*H%>H`)yP5`TWi{dfmkb1P3Q8vx|2H7+|K_khrDL> zgW25ZChU(i7ELAL0{;U0I6LyEZzVgsZ)^IUR{vf%M8$SnlZ$g6)hSeAdWYou=k4x9 z2<^}pj`h>{y%w1nO_w>(i~D_pL3TmKchdFIlm^*u*L{mir}~V&wF3oQk8%B#ieuE_ zldZnl$HHXcHZINa)J-xlgB)yR=IDK3)}7~n@%mckRVIk?0s=|gU^FB&I0OpD!UN%0 z4C4eMiHW{f!IZ=^S5Pr_-Z5S*`T@dl@#P<2{8kBGpbX#{%4wCA*_sT3z!5vQWV-Yg zR<;~!9i$JB3`=|UT82hPWqr%R!N~_*?K#uvEHQ_pkBknZx5l3D*Z*74F*&F!Y&F#V zTetOC#PDh!Z9}vqR0WV-(cI1AYxf@BDyhC7d1Uis5VSnT7*-=XR)s`!t+0V_WMLK> zWyxo%!hyY&Gd$Uz&BFSnP;v5n+p1T*FE2psUw!=pd{I9y5Dg9Xhr+_WkVrTr5$Ggu&_h``Tk2=MZoN-(3Un!qma`X0l(8q#Z- z0KN4CX!p3d?;>73IyK&f-e&>m!>O@xIKK{E80mKV`WV_Z)($=UYYq{44p)54;fFOL zzut6EdaEi$%WtIu;gS?gxsj*5OrU3pd+cFcv71d$={@t7tZz=~w=mU7gt&404cWxl z9Lu8GiP2X0rZ)aN#d&MheHOK&=S(ODsfly}??J=X`8Q{M0{q-9KvaOB`i^4tpuhL)vfX?>R}fQ zZzu^@hMHT4B1gI#`s(nZ$2>tbRCBKFtn!@UVSx1&~}4S%NsIeH`omY}fHm zq>J6P?=2KKBGcF#`moDqMeb+on;be1k?yr{4y?V$v3P6e&9jo7q2Y0Nos>vlu+al< zGPiDKHN+kD(9^7&yI8qzNA+p}VCC#l+evS4mPIdLf&&OH_smLw10UgWF+CWGL124S zNO;OgWB4GCF6L{1XbNJ_M7Uyck{X1Tm1mFuoG27yPRl@~ygWx4#BYo7i(#i=6zj#B za$DNk@zJrqURiwuHZs;R(T_E&0Z8Ga@d@9j?f&8 zj*7h&Z;l|>&En{I3PU7HGEbLqVHC|yjX#K^{4GfFZBa@^!(r*|+VX~j()OlIM(d$= ztO>fC)!5TJuoab6266uurteP}2ffHst`st7UAsQuk!BjzTyYY|gfnKy{yi4%ziXJ< zarD@Dq|N@pC%>!4iF4x|+}Vl}vZMJkA9Y!OnuT7q^5eFk*`j3%FZq_+4B!57&c{{lxZt1(K#`GGNuZC(3a_Zh5GHZ~$HUb?I71S{1TeZNAI(zsl1QK%N??8!F26DT z7>P7CmIBKvtFiWW^zL0LlF`ftv8p?FI=f_js$TiSBclj3p$;Msu+h8lOacVo?dSoQ z{+h%;C-$!-e(>i}iZ6dgYbNV@l&9o~V-M=CUH;p|&=%u5w7K8Kbek-+)O+`CO6$CV za?a6=)+cw=6yOp%t6=f9LCKwK4pQf}CD^gr2&oaCOSarQwruGOT^iu;PbJB>HeBem zf(8PyJSHei#E+^0;LV#r2s89L7O4tAkSK-)U=j@V-T=Y5RUl0nEEZyorMaS8aBF4N zZIwD)Dn)xyWT34L0#re?tGl#s02vxl2jKgCy$^>+m(TV*?w^|0O@RmIrwUa6Es6i_ z%?|~eU;lPvSMA1#a-Z3QhLNv?nTe7o6IZ~LP3>L!PV-t@_Gk~m>x0u-$9;3}3U~B31K+m!lhY7sr?ocK@L=;Z zVEMm!7nTR{!xGylUv%j8rjOH8{yBBh&{kCxcPIf^D9XCJX;CMjd$5nVc(!(macxjJ zBxzbPwA?VYFNe25ygOT1@H(&ic>aUtHH#Y;ypu!oV`CY zoQ(Wqv#n`DvcI@jY49d%T7jM6`&9R!NRn7idu3N zirj|lAgH7iNE2%z$;{h%^$pT8s!2y(rxa}Ys&=5Ev1t!90CzQAzWi?k{BT$Pu)Gb* z2iR%3aq(uv#h&Jf?_xN5xwarTXm45U`mwssu3O&(aPeT<1NLuyBZD2QcWGQ@XSKa> z*N}9dVI6bS@Vwt8TRg_sNBK9%U+z^o+crWM7#Cd%olL2kdFA2m<-$EI`qK^8i0N*>4SbWs(?0ZfcMVbwA5N5E#&)R262Lm6pkWVgR%zDve65 zt}#QB%gW&fP%3L{zf;`V-3#682L{`!*QnI@HZ)E)Pi;~8X|8|1%^m>ny`EpANHY5` DX3o&U diff --git a/dashboard-ui/thirdparty/jquerymobile-1.4.5/images/icons-png/action-black.png b/dashboard-ui/thirdparty/jquerymobile-1.4.5/images/icons-png/action-black.png deleted file mode 100644 index 15e8e48f1361dc5e33734cd5f9e3b6a26ee57941..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 219 zcmeAS@N?(olHy`uVBq!ia0vp^d?3uh1|;P@bT0xamSQK*5Dp-y;YjHK@;M7UB8!1) zj({-ZRBb+KpkS@1i(`nz>Er|jzB5coW^6_W>J{wRj!b%z!SXQOA*WN1<1lYPp{YU~ z-x2u>PwJTprI`7A%N+i&b}x)DJ;b0du%F?Pyh9B8kw-0axR`%B{E_Tf%gM^O>)2ff znLaTK2%GTdw~vN@O1Ta JS?83{1OTBuLGl0q diff --git a/dashboard-ui/thirdparty/jquerymobile-1.4.5/images/icons-png/action-white.png b/dashboard-ui/thirdparty/jquerymobile-1.4.5/images/icons-png/action-white.png deleted file mode 100644 index 9f31c01db81f8e8995a8353e5ebfdd10de699e5e..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 227 zcmeAS@N?(olHy`uVBq!ia0vp^d?3uh1|;P@bT0xamSQK*5Dp-y;YjHK@;M7UB8!1) zj({-ZRBb+KpkS+~i(`nz>Er|jra%Ax*NX{kHk`oq&-s9%!Za0kWeywWB<~VOiHwG> z)r=pD6#g}+{TJ@IEK!iLiTRQK|BcKcy&mTtu|5)a_`}@sx*vKYjd7Xm(PMaH}UsPnL*5t;v+<6Bo}IN{AWoDop5Ze ii-n+Ue(C~i1_qlso)vEte6@fsWbkzLb6Mw<&;$T2MNQTK diff --git a/dashboard-ui/thirdparty/jquerymobile-1.4.5/images/icons-png/alert-white.png b/dashboard-ui/thirdparty/jquerymobile-1.4.5/images/icons-png/alert-white.png deleted file mode 100644 index d44e25b4fb5c4a07682fbf9784256552946c2f03..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 243 zcmeAS@N?(olHy`uVBq!ia0vp^d?3uh1|;P@bT0xamSQK*5Dp-y;YjHK@;M7UB8!1) zj({-ZRBb+Kpx{(b7sn8b(|gZvj$ohlH$q-Im5qx)$7ZP|MneeTB(ZF;=2 i;JD5LlYK^i_KN42<|X=BZ&L<3kipZ{&t;ucLK6TMa#;2N diff --git a/dashboard-ui/thirdparty/jquerymobile-1.4.5/images/icons-png/arrow-d-black.png b/dashboard-ui/thirdparty/jquerymobile-1.4.5/images/icons-png/arrow-d-black.png deleted file mode 100644 index 797ab9b65f7dd2935b11aea7d81d29f939cea179..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 146 zcmeAS@N?(olHy`uVBq!ia0vp^d?3uh1|;P@bT0xamSQK*5Dp-y;YjHK@;M7UB8!1) zj({-ZRBb+KprDDTi(`nz>Ewh1eE$|FE;_iv&CAp*A<%=ve8S?LjWV;PPZX9hFKozE ka2GZ^%gdwE#8xwl!F9IJ?s&h)5zopr0Ojx{>;M1& diff --git a/dashboard-ui/thirdparty/jquerymobile-1.4.5/images/icons-png/arrow-d-l-black.png b/dashboard-ui/thirdparty/jquerymobile-1.4.5/images/icons-png/arrow-d-l-black.png deleted file mode 100644 index 07018838490d10f5d38e94982c15d7bd604483c6..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 167 zcmeAS@N?(olHy`uVBq!ia0vp^d?3uh1|;P@bT0xamSQK*5Dp-y;YjHK@;M7UB8!1) zj({-ZRBb+KprEIxi(`nz>Er|jITHs%PlhEA?M2KdEbh!Wd&A_QsTq*P*nXA8)G$F% z#Y>oZ))U4gQ^N-V9w8i)mU7NN#@zC#>y=s16Zbi@7*~tOt*=<#5)U+#!PC{xWt~$( F6976_F2w)< diff --git a/dashboard-ui/thirdparty/jquerymobile-1.4.5/images/icons-png/arrow-d-l-white.png b/dashboard-ui/thirdparty/jquerymobile-1.4.5/images/icons-png/arrow-d-l-white.png deleted file mode 100644 index 4234114fd7c83fef6c220f537a4c1682789bb853..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 173 zcmeAS@N?(olHy`uVBq!ia0vp^d?3uh1|;P@bT0xamSQK*5Dp-y;YjHK@;M7UB8!1) zj({-ZRBb+KprF5}i(`nz>9rT5xfm2USRDHAUEDKMG14V9ub;L4kfVu`fzqTcFI3vH zF7Y1P(9HGai&*4g6Dt?loPGhR1#OC38kpigaIsEUy#JTo$4qze^#989YEOSC=>;0i N;OXk;vd$@?2>|})G*AEl diff --git a/dashboard-ui/thirdparty/jquerymobile-1.4.5/images/icons-png/arrow-d-r-black.png b/dashboard-ui/thirdparty/jquerymobile-1.4.5/images/icons-png/arrow-d-r-black.png deleted file mode 100644 index 33cd363184b1be9baa07752529ff43fecfb24a9c..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 159 zcmeAS@N?(olHy`uVBq!ia0vp^d?3uh1|;P@bT0xamSQK*5Dp-y;YjHK@;M7UB8!1) zj({-ZRBb+KprE6ti(`nz>Er~51~v^f&IXe|?T^@sOeQXoob5I%Gf%6% y+c(S^HIx4M1SlKM`q;!=vU#G8z0l&9_6!A+;@0OsJrWEwjKR~@&t;ucLK6V!xGYux diff --git a/dashboard-ui/thirdparty/jquerymobile-1.4.5/images/icons-png/arrow-d-r-white.png b/dashboard-ui/thirdparty/jquerymobile-1.4.5/images/icons-png/arrow-d-r-white.png deleted file mode 100644 index 3db6ebdf98a3d9113b695e8a2e27d256a93509a5..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 171 zcmeAS@N?(olHy`uVBq!ia0vp^d?3uh1|;P@bT0xamSQK*5Dp-y;YjHK@;M7UB8!1) zj({-ZRBb+KprEg(i(`nz>EwilrvLx{n>QFRYcj0jWRp5^(Pc}Tn#`lGE;oA)hs`lt z+#$SLa#^3s?1@i33%@a@@U5&nwtk|-*%qhY47E8br~8j&FflUJe{7$6?$jobZ492S KelF{r5}E*H7B+JL diff --git a/dashboard-ui/thirdparty/jquerymobile-1.4.5/images/icons-png/arrow-d-white.png b/dashboard-ui/thirdparty/jquerymobile-1.4.5/images/icons-png/arrow-d-white.png deleted file mode 100644 index 0fcdb6c36b08ab39deed3105f8f3f32ed3249f69..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 149 zcmeAS@N?(olHy`uVBq!ia0vp^d?3uh1|;P@bT0xamSQK*5Dp-y;YjHK@;M7UB8!1) zj({-ZRBb+KprE;@i(`nz>Ewh1O#c=$vLzi{;pSz^bX5A^WIm}A7wW?o)78&qol`;+0E|Q@{{R30 diff --git a/dashboard-ui/thirdparty/jquerymobile-1.4.5/images/icons-png/arrow-l-black.png b/dashboard-ui/thirdparty/jquerymobile-1.4.5/images/icons-png/arrow-l-black.png deleted file mode 100644 index 93a248ecd963693eb3bcdb30e34967a1d50f2f02..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 149 zcmeAS@N?(olHy`uVBq!ia0vp^d?3uh1|;P@bT0xamSQK*5Dp-y;YjHK@;M7UB8!1) zj({-ZRBb+KprE;@i(`nz>Ewh1yiyV;7!-W}pS=2IehiFiF^HU{aoJ;AuqKyG*P`Y{ hEDnK_l(i-@GZZuV>^`t_77x$}22WQ%mvv4FO#slwDVqQQ diff --git a/dashboard-ui/thirdparty/jquerymobile-1.4.5/images/icons-png/arrow-l-white.png b/dashboard-ui/thirdparty/jquerymobile-1.4.5/images/icons-png/arrow-l-white.png deleted file mode 100644 index 3c8b133574759a973b92141a0357ea62ffda0c7d..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 156 zcmeAS@N?(olHy`uVBq!ia0vp^d?3uh1|;P@bT0xamSQK*5Dp-y;YjHK@;M7UB8!1) zj({-ZRBb+KprD7|z(xfl$1m=4<5+TV}!&RiMzp7~(JSB?v&ycZb6qz=lS w{NN(AXJNd~6vy9JR?K-Jdy!$$$(73S7WdrGJ*f!V4>XCv)78&qol`;+0Le8j0ssI2 diff --git a/dashboard-ui/thirdparty/jquerymobile-1.4.5/images/icons-png/arrow-r-black.png b/dashboard-ui/thirdparty/jquerymobile-1.4.5/images/icons-png/arrow-r-black.png deleted file mode 100644 index b5f5d49ae50b958e94b5e830483b9107efcf96d4..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 147 zcmeAS@N?(olHy`uVBq!ia0vp^d?3uh1|;P@bT0xamSQK*5Dp-y;YjHK@;M7UB8!1) zj({-ZRBb+KprEOzi(`nz>Ewh1{8ADpSpJ{9`e%O3Sr8>Z|Ji?)M{Gr=hfFW~CNm#x kbiVu|V?p$!!z(!%p6&M8efwlp0nh*jPgg&ebxsLQ07Wk@`v3p{ diff --git a/dashboard-ui/thirdparty/jquerymobile-1.4.5/images/icons-png/arrow-r-white.png b/dashboard-ui/thirdparty/jquerymobile-1.4.5/images/icons-png/arrow-r-white.png deleted file mode 100644 index bf316061908654cd2612750f19c86e1cb8727dca..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 152 zcmeAS@N?(olHy`uVBq!ia0vp^d?3uh1|;P@bT0xamSQK*5Dp-y;YjHK@;M7UB8!1) zj({-ZRBb+KprDnfi(`nz>AjaW@-i53Fgv>aKRdUnOUc86>wbK5XT~HK3(do=#cQPW r)Ewh1yiyBhs4!gmAm1f@;-brzw47NSS;v-hE>BA`Nz71l m6?RNttgRx|leNS}nL)(RXZM!Nn^pl0VDNPHb6Mw<&;$Ss?k4#F diff --git a/dashboard-ui/thirdparty/jquerymobile-1.4.5/images/icons-png/arrow-u-l-black.png b/dashboard-ui/thirdparty/jquerymobile-1.4.5/images/icons-png/arrow-u-l-black.png deleted file mode 100644 index b518a1df5c9154f7301970ab4e4d5fb984f8b834..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 163 zcmeAS@N?(olHy`uVBq!ia0vp^d?3uh1|;P@bT0xamSQK*5Dp-y;YjHK@;M7UB8!1) zj({-ZRBb+KprEU#i(`nz>EwijgdhGac?k!YPFyb>{P(P5dY^Fxr5TGmLe<78N?AGdzV_KQ=21~PcM`njxgN@xNA D%2+PL diff --git a/dashboard-ui/thirdparty/jquerymobile-1.4.5/images/icons-png/arrow-u-l-white.png b/dashboard-ui/thirdparty/jquerymobile-1.4.5/images/icons-png/arrow-u-l-white.png deleted file mode 100644 index 71adaa1ec525436b986db137f2db1e0b5997d3b5..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 169 zcmeAS@N?(olHy`uVBq!ia0vp^d?3uh1|;P@bT0xamSQK*5Dp-y;YjHK@;M7UB8!1) zj({-ZRBb+KprE&>i(`nz>Es{&G8qXD>?xT_PReDzEGBXZ2iP+bl|Ach9Q;<8IsD{x z$vmd!F(oagPT^Kskg4&*%O_5p;4s=du`#A0t(e(z*27s0EW0{p{wVzZ0cb3Pr>mdK II;Vst0FZJp^8f$< diff --git a/dashboard-ui/thirdparty/jquerymobile-1.4.5/images/icons-png/arrow-u-r-black.png b/dashboard-ui/thirdparty/jquerymobile-1.4.5/images/icons-png/arrow-u-r-black.png deleted file mode 100644 index 375b09792600b9fa6d171a2ff73d07a85fd2a6e5..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 163 zcmeAS@N?(olHy`uVBq!ia0vp^d?3uh1|;P@bT0xamSQK*5Dp-y;YjHK@;M7UB8!1) zj({-ZRBb+KprEU#i(`nz>AmL-`4|*9m=D;^UH;KHwo^=p$1Jglo8gWjgSUp%Y$w*~ zAM>T%?bA+Z&rnpZm7H6wEAssI3Y(9e64L^Y7~Lvb6}SH193D@gfefCmelF{r5}E)> CXDqb< diff --git a/dashboard-ui/thirdparty/jquerymobile-1.4.5/images/icons-png/arrow-u-r-white.png b/dashboard-ui/thirdparty/jquerymobile-1.4.5/images/icons-png/arrow-u-r-white.png deleted file mode 100644 index 45b518de8b1973db73d67b95f672023d299601bf..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 165 zcmeAS@N?(olHy`uVBq!ia0vp^d?3uh1|;P@bT0xamSQK*5Dp-y;YjHK@;M7UB8!1) zj({-ZRBb+KprE^_i(`nz>AmL<@-irJIA82Lmys8?zRg2Z?oW6PW24B)1%i2&5}~qf zT~B^({`j(=X{`{KNM+vQKY1;FHg0!2r9^KybKcHi_OqNzopr E0IK6LE&u=k diff --git a/dashboard-ui/thirdparty/jquerymobile-1.4.5/images/icons-png/arrow-u-white.png b/dashboard-ui/thirdparty/jquerymobile-1.4.5/images/icons-png/arrow-u-white.png deleted file mode 100644 index 18afaa11e1fb7045112145754a74a80c630c8e47..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 151 zcmeAS@N?(olHy`uVBq!ia0vp^d?3uh1|;P@bT0xamSQK*5Dp-y;YjHK@;M7UB8!1) zj({-ZRBb+KprECvi(`nz>Ewh1jQ{@szt3=pX9>d!HHi!bcj3ZWg&Bv|&umb8GpqAT q%c_|!zASTlnLIlC0(+-qurOTDb3Z2~_h>565C%_IKbLh*2~7Y-0xO&V diff --git a/dashboard-ui/thirdparty/jquerymobile-1.4.5/images/icons-png/audio-black.png b/dashboard-ui/thirdparty/jquerymobile-1.4.5/images/icons-png/audio-black.png deleted file mode 100644 index b7901c506bc878488f7e6f0a98d81d91c764990b..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 307 zcmeAS@N?(olHy`uVBq!ia0vp^d?3uh1|;P@bT0xamSQK*5Dp-y;YjHK@;M7UB8!1) zj({-ZRBb+Kpx{+c7sn8b)2){by_y{b+8!Q{QOME{14{xs7pR;SIlZg?-}+hk>2Yag5~p@~K4O!*7`iz6kJ>+$`w@v- zIHOV(WFDFpT@MZ5nzvZ|qnzD`X66}c4t(bh#kan1-5=f%w4v2<--ce54>f>F{+t$y@fA*(X&3JN9bHS9O#ybv$WeN8gp8O+q zujb_%-bu|9;}6DO;q$s+-XZ%%Dei#sy^T{0zC;HXh}7BF=>N&Qv_|vBQQ^3Y2W9LE zZga8K$nEU?z%TKibEwh1EWA7^3=@|9f0Fgff1R4ZKjtIr8-G{`_%kH2Cz&Q4 zPH%{qJ|QhkVH#VKxI!N5qvZh~{TI)bz^k!n{ YzGAezZOYjV!Y&reVgZ7^Z{Sii|+;u66~VUa(KkFGn^$aJVP zY-HXjwXxCIVU4$kv9^FW^G0rg?MxqoSNu>{xTa=R(BKr~ut#iFrLkZ7V}a=nS$}-8 zR&Y;Vy-{#gq5eiG2gXqTBmWmj#d2l_usljq*vEa9;ZlTGkMD^GY68^)uaBfV>=Egx fZJfawE61>3nCEum{m8RG*D-jy`njxgN@xNA7Pd{! diff --git a/dashboard-ui/thirdparty/jquerymobile-1.4.5/images/icons-png/bars-black.png b/dashboard-ui/thirdparty/jquerymobile-1.4.5/images/icons-png/bars-black.png deleted file mode 100644 index f3e99e678478403328879da830ad2f635b1d9130..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 132 zcmeAS@N?(olHy`uVBq!ia0vp^d?3uh1|;P@bT0xamSQK*5Dp-y;YjHK@;M7UB8!1) zj({-ZRBb+KprD$ki(`nz>Er|njsl^M|C2lX8%*TXogW9b1=?TYn4@^TU%jnOp7E_j Wpvb-XSzm!V7(8A5T-G@yGywp+Q6U`w diff --git a/dashboard-ui/thirdparty/jquerymobile-1.4.5/images/icons-png/bars-white.png b/dashboard-ui/thirdparty/jquerymobile-1.4.5/images/icons-png/bars-white.png deleted file mode 100644 index 84059c63e650cea8d2b9d8797e4333385095281f..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 135 zcmeAS@N?(olHy`uVBq!ia0vp^d?3uh1|;P@bT0xamSQK*5Dp-y;YjHK@;M7UB8!1) zj({-ZRBb+KprEFwi(`nz>Ewh3)<6FL|9|rTl4fCr-s2}PR7^>{(r@zVv1HNTilmGm af((1k`KU8aS-T9ViNVv=&t;ucLK6T(2q@tI diff --git a/dashboard-ui/thirdparty/jquerymobile-1.4.5/images/icons-png/bullets-black.png b/dashboard-ui/thirdparty/jquerymobile-1.4.5/images/icons-png/bullets-black.png deleted file mode 100644 index 10a2f1cc67f9ce00a2cd4e98b580dc0b70d3f730..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 147 zcmeAS@N?(olHy`uVBq!ia0vp^d?3uh1|;P@bT0xamSQK*5Dp-y;YjHK@;M7UB8!1) zj({-ZRBb+KprEOzi(`nz>Er|njsl^M{>2~v3m;IISTL(kDbvQU<=A4L#dS*rEtrdq mh30G6&vPjL+m?%L2 diff --git a/dashboard-ui/thirdparty/jquerymobile-1.4.5/images/icons-png/bullets-white.png b/dashboard-ui/thirdparty/jquerymobile-1.4.5/images/icons-png/bullets-white.png deleted file mode 100644 index 49971a164ad8a3c98bf54ce7335fc76582e4a455..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 152 zcmeAS@N?(olHy`uVBq!ia0vp^d?3uh1|;P@bT0xamSQK*5Dp-y;YjHK@;M7UB8!1) zj({-ZRBb+KprDnfi(`nz>Ewh3)<6FL|L>__*LO^v#jim`j{VVM52=3Pg&#EzuaM7t ra@;tEslLhRF_p_&anZH#8eN{9*6Vb&zpW_;=ocO(IE3Qe*2x k6*E^U_qkmsm-#3&?8#JN-+cJ+W}tosPgg&ebxsLQ0HJ6ldjJ3c diff --git a/dashboard-ui/thirdparty/jquerymobile-1.4.5/images/icons-png/calendar-white.png b/dashboard-ui/thirdparty/jquerymobile-1.4.5/images/icons-png/calendar-white.png deleted file mode 100644 index e5b7b9f22077147cfbc8edce56b1514ab083819f..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 143 zcmeAS@N?(olHy`uVBq!ia0vp^d?3uh1|;P@bT0xamSQK*5Dp-y;YjHK@;M7UB8!1) zj({-ZRBb+KprE0ri(`nz>EwilrvLx{&u4k`n8$)4;2n>^dL~ diff --git a/dashboard-ui/thirdparty/jquerymobile-1.4.5/images/icons-png/camera-black.png b/dashboard-ui/thirdparty/jquerymobile-1.4.5/images/icons-png/camera-black.png deleted file mode 100644 index 6a029ea0eef23f5669df2000f7d232e05d4b9aac..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 250 zcmeAS@N?(olHy`uVBq!ia0vp^d?3uh1|;P@bT0xamSQK*5Dp-y;YjHK@;M7UB8!1) zj({-ZRBb+Kpx_)&7sn8b)5!@7lmgfvNh#ztBnd=|&UVsMIOh`dL!{&X;)lmQK1Dj5 z;k>j%vfIh2LfGT6yp9lmV+E7IcgLGAJ}KBrG_f~Ch`g$qu-T>Ihk{tC1QT1vId;p_ z6C`?d9R6^3{ul0u?A%%?EL3kRAT7N3qrfD2;{|V&Z~@|2Y2 p9M7>YXL>TlnIru`5MLw%1IO{&YR|^CDnNHKc)I$ztaD0e0sv-GQ7Hfb diff --git a/dashboard-ui/thirdparty/jquerymobile-1.4.5/images/icons-png/camera-white.png b/dashboard-ui/thirdparty/jquerymobile-1.4.5/images/icons-png/camera-white.png deleted file mode 100644 index 7f00e232b01225a9cbd5a0840138de70407843a6..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 251 zcmeAS@N?(olHy`uVBq!ia0vp^d?3uh1|;P@bT0xamSQK*5Dp-y;YjHK@;M7UB8!1) zj({-ZRBb+Kpx|6j7sn8b)5!@7#D4t$zu!vWIzu6|Nb`+VH$;jU3)LnaTK?bgV6w_j z9ffBsnRouoFWJDkgTe~DWM4fQ1n-u diff --git a/dashboard-ui/thirdparty/jquerymobile-1.4.5/images/icons-png/carat-d-black.png b/dashboard-ui/thirdparty/jquerymobile-1.4.5/images/icons-png/carat-d-black.png deleted file mode 100644 index 0653b692f0e5682a109ea6ef8968b045fd63793f..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 207 zcmeAS@N?(olHy`uVBq!ia0vp^d?3uh1|;P@bT0xamSQK*5Dp-y;YjHK@;M7UB8!1) zj({-ZRBb+KpkSe=i(`nz>8lqExtI(E94?kiiC)hw-CMtY`GnNqmEsrF8dDVvZ~ats zol&WI=>FEj8q!aj(uugR)7l)SaPk@oo9P{w>^V$* x87pcXj>N7g;js9+;L;4oQ~b48e{lc0A-z1o=wbl>Y!RU444$rjF6*2UngI0wNNoTB diff --git a/dashboard-ui/thirdparty/jquerymobile-1.4.5/images/icons-png/carat-d-white.png b/dashboard-ui/thirdparty/jquerymobile-1.4.5/images/icons-png/carat-d-white.png deleted file mode 100644 index 9e7e9e98a8a6727d71e6859db2228d2326722b28..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 213 zcmeAS@N?(olHy`uVBq!ia0vp^d?3uh1|;P@bT0xamSQK*5Dp-y;YjHK@;M7UB8!1) zj({-ZRBb+KpkTSDi(`n!#H$x<`3@QIuw9t5Od%+&?%n>wngLgR4zS93YcJBsJ$zz& z;7agWETDN$M3B>&Ewh1{3VS)Yy?&tOknuZ@WWK#Kl`KQ4r{ztsR`8aA363U z!${HXvUHH?%gesPu2O}WW~!?1CYaVMgnrI8Ih$5;{m+amU%HGZGBafCG`b=BW;4(t O1_n=8KbLh*2~7aJ`Ziqv diff --git a/dashboard-ui/thirdparty/jquerymobile-1.4.5/images/icons-png/carat-l-white.png b/dashboard-ui/thirdparty/jquerymobile-1.4.5/images/icons-png/carat-l-white.png deleted file mode 100644 index af941a03022b9a94ab4942adbae028a3d05a8c98..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 177 zcmeAS@N?(olHy`uVBq!ia0vp^d?3uh1|;P@bT0xamSQK*5Dp-y;YjHK@;M7UB8!1) zj({-ZRBb+KpkT14i(`nz>Ewh1%>VxXU(bEyd1FLtV+2FU8ulaW|2rQDRtQrK73SE( zo|If`ww3&*16m=d#Wzp$P!^WjMnC diff --git a/dashboard-ui/thirdparty/jquerymobile-1.4.5/images/icons-png/carat-r-black.png b/dashboard-ui/thirdparty/jquerymobile-1.4.5/images/icons-png/carat-r-black.png deleted file mode 100644 index 1343997bc6f4421714ec0e27972ce71d50231fdc..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 184 zcmeAS@N?(olHy`uVBq!ia0vp^d?3uh1|;P@bT0xamSQK*5Dp-y;YjHK@;M7UB8!1) zj({-ZRBb+KpkS1zi(`nz>Ewh1EUz4D9v&a#^*B`fwMgNe~pq0YEr|l=KufyhqFKW?6BsjgARk%HHJse|0_OF704D|eUYcb z{*ODuB$L^}!JoCgOkW2qiku$NEAP2Ubj5)t8Q*CUCYi#EUkZC(WGua>KIyT*3J>0n j`IBTmddxa6==FrbD^K*db!=81&^`uFS3j3^P6Ewh3j2GIICYkPSOtK9!{o9_j$mI3H%%+Fef0(>>6g?oa zzdb4C?5-mjMvO_p3jZ3sH|z2F8Z@l?DeCjN(q>jcrX9Ob2;-yW6($E8Btt$YuaGkc lU`Ewh3Wx|Bt7OFU&`74tXRQORH3fRTX<5M t@rq~16>JS0Llw-_lvbU2Fslvd!Uq?{7#2O)!~?XM!PC{xWt~$(698*>KU)9* diff --git a/dashboard-ui/thirdparty/jquerymobile-1.4.5/images/icons-png/check-black.png b/dashboard-ui/thirdparty/jquerymobile-1.4.5/images/icons-png/check-black.png deleted file mode 100644 index 2cf2fc6abcde05d2f7db52465a8935d18a5188e2..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 169 zcmeAS@N?(olHy`uVBq!ia0vp^d?3uh1|;P@bT0xamSQK*5Dp-y;YjHK@;M7UB8!1) zj({-ZRBb+KprE&>i(`nz>Ewh3%oz8%$Gxfm1$oCEviVkaE+KAv_|&`~I{-u$Sxk>+1n&j~Hv zM(F{859RVMaP8-{ywl(1_LObzp_j>0Lf<^(*O+nr*cy1?tec-~SB0V2g1oaJlNmf+ L{an^LB{Ts5g#a=G diff --git a/dashboard-ui/thirdparty/jquerymobile-1.4.5/images/icons-png/clock-black.png b/dashboard-ui/thirdparty/jquerymobile-1.4.5/images/icons-png/clock-black.png deleted file mode 100644 index 0c38d91e3d217375cf09084b5f85f301bd6b4c01..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 310 zcmeAS@N?(olHy`uVBq!ia0vp^d?3uh1|;P@bT0xamSQK*5Dp-y;YjHK@;M7UB8!1) zj({-ZRBb+Kpx_Np7sn8b)4h`txtbgVTHEVd#XY`gMK0%P@e33zX;{Q3tawp&Ref9R z5w17>w{BN(2fs<;w<|ebx%=^%t{QDN=>k^&pa#>9Ba00y8jc;7U7{C!wng_vv!3UH zzWZ6ZeOEn$x89VLxmtB@jx{}lgAn^dz>d)Bt}W<Y4r+$D2KrA&W;TJo3j(8 zH#SvyS}Pylabv61hlS;H?9~K^ZQ`x*?pkqWLvCgq2m3;y4r+y^G(g&HmJ{pnT)<(^vCKo~W>XF0a1AZ5lCSOWdzRps-=^boFyt I=akR{01tJ3761SM diff --git a/dashboard-ui/thirdparty/jquerymobile-1.4.5/images/icons-png/cloud-black.png b/dashboard-ui/thirdparty/jquerymobile-1.4.5/images/icons-png/cloud-black.png deleted file mode 100644 index 7c50e3724e787999546f35ee9093d269973415cd..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 212 zcmeAS@N?(olHy`uVBq!ia0vp^d?3uh1|;P@bT0xamSQK*5Dp-y;YjHK@;M7UB8!1) zj({-ZRBb+KpkSG&i(`nz>Er|n9tVjI;l>?eUfhCk@XEX|<7gq%rVnlt zj+Lim{NcP5;n#Mo)S!NsgYuq6jyar1WWM-MXLxZlj`>XjV-3&+44$rjF6*2Ung9f4 BLw^7O diff --git a/dashboard-ui/thirdparty/jquerymobile-1.4.5/images/icons-png/cloud-white.png b/dashboard-ui/thirdparty/jquerymobile-1.4.5/images/icons-png/cloud-white.png deleted file mode 100644 index 6bbe75210a4371d8b47cc8a6ecb76270c7abc921..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 210 zcmeAS@N?(olHy`uVBq!ia0vp^d?3uh1|;P@bT0xamSQK*5Dp-y;YjHK@;M7UB8!1) zj({-ZRBb+KpkRroi(`nz>Er~7f)D@y*C#6Yu{?^>&~@oq=ArQKkGyCN%OioBSvieA z-q*i*U@kEG@ueNF?dv}9cf>PpwBMvwuJG^Me2Wi4%T_+J&wRiwP~2p)@2|hr4US7c z`gnTn9i>j6ys(4snZI~Oi@89fapR2Uf1bh&Yc<#JKev6&YM}iLp00i_>zopr06lC< A@c;k- diff --git a/dashboard-ui/thirdparty/jquerymobile-1.4.5/images/icons-png/comment-black.png b/dashboard-ui/thirdparty/jquerymobile-1.4.5/images/icons-png/comment-black.png deleted file mode 100644 index 8de9ce841f47399d651ba373e4535a2f274b1cc5..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 165 zcmeAS@N?(olHy`uVBq!ia0vp^d?3uh1|;P@bT0xamSQK*5Dp-y;YjHK@;M7UB8!1) zj({-ZRBb+KprE^_i(`nz>Ewij1P+!*(;fcI_xQur@mJF03d>=A$%Qzopr E00uEFR{#J2 diff --git a/dashboard-ui/thirdparty/jquerymobile-1.4.5/images/icons-png/comment-white.png b/dashboard-ui/thirdparty/jquerymobile-1.4.5/images/icons-png/comment-white.png deleted file mode 100644 index 5ff59e34f9d0eb69a162db8b68c92f9edc730d62..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 160 zcmeAS@N?(olHy`uVBq!ia0vp^d?3uh1|;P@bT0xamSQK*5Dp-y;YjHK@;M7UB8!1) zj({-ZRBb+KprDhdi(`nz>Es{(|JN%B?Em9$Q^9)VACF2_Q{!}=|0h`%OJy$oC@T3Y zuEFHj)>CjT|QBBq*>>SjxF-Vumk6?9qx%HnVuo0!?G^boFyt=akR{00TQN A;{X5v diff --git a/dashboard-ui/thirdparty/jquerymobile-1.4.5/images/icons-png/delete-black.png b/dashboard-ui/thirdparty/jquerymobile-1.4.5/images/icons-png/delete-black.png deleted file mode 100644 index 94a5b9f57974d7f743fc6af408d457abfbb57119..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 171 zcmeAS@N?(olHy`uVBq!ia0vp^d?3uh1|;P@bT0xamSQK*5Dp-y;YjHK@;M7UB8!1) zj({-ZRBb+KprEg(i(`nz>Er~51~!djtQ$@>v;1=|Wajgg_;jM_hRNe8$JIW{pUnLK zQL@MTU_H}1#i(NDeG`-;g>OnpXFRoE9-m>Ek&|n5n LS3j3^P67|nbxegd`IG;UveeRu$zHZuXZqNE3WOw;8cNcv(v~Ear zP3=pqI5N|?Tf5I>i_Wq+4bpDCZC6h!-?HfXoc>2=xBPd?3_U6H)A|X+iHX6^ ab&OW73Cx}!Tkis`VeoYIb6Mw<&;$U)B|Osr diff --git a/dashboard-ui/thirdparty/jquerymobile-1.4.5/images/icons-png/edit-black.png b/dashboard-ui/thirdparty/jquerymobile-1.4.5/images/icons-png/edit-black.png deleted file mode 100644 index ab390d7a170003eab1834a240f2bdc876bc16a45..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 163 zcmeAS@N?(olHy`uVBq!ia0vp^d?3uh1|;P@bT0xamSQK*5Dp-y;YjHK@;M7UB8!1) zj({-ZRBb+KprEU#i(`nz>Er|jITHs%PlhEA?M2Kdte&WG_QW~mTVXj|(jFIGCVl=l zc~#+r>>veqVGflEi#b`uKm?zIsk*~lUl9g|s*AQE#V$g>fCe&ny85}Sb4q9e0B^%8 Ap#T5? diff --git a/dashboard-ui/thirdparty/jquerymobile-1.4.5/images/icons-png/edit-white.png b/dashboard-ui/thirdparty/jquerymobile-1.4.5/images/icons-png/edit-white.png deleted file mode 100644 index ae657a02d60f665d3aa6ef959cb8577ba96787b4..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 170 zcmeAS@N?(olHy`uVBq!ia0vp^d?3uh1|;P@bT0xamSQK*5Dp-y;YjHK@;M7UB8!1) zj({-ZRBb+KprDVZi(`nz>Er|jp+Eos?`Le0^k59|HMrog&h5~wiF4hzti2&3^hI54 zx!~J9|5Y+&{>&2bxW;mIhQlVc6~|arvYWDO7_Rbcifp`*!oeVsty!iae$EMKE`z75 KpUXO@geCyiE;2p< diff --git a/dashboard-ui/thirdparty/jquerymobile-1.4.5/images/icons-png/eye-black.png b/dashboard-ui/thirdparty/jquerymobile-1.4.5/images/icons-png/eye-black.png deleted file mode 100644 index d7cc1d06931dc19f5a9208b2f07b0ecf163e4412..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 249 zcmeAS@N?(olHy`uVBq!ia0vp^d?3uh1|;P@bT0xamSQK*5Dp-y;YjHK@;M7UB8!1) zj({-ZRBb+Kpx|sz7sn8b)5!@E83#Cy1Ul3RbnJKf$hbm6SP<>zopr0Oxg61ONa4 diff --git a/dashboard-ui/thirdparty/jquerymobile-1.4.5/images/icons-png/eye-white.png b/dashboard-ui/thirdparty/jquerymobile-1.4.5/images/icons-png/eye-white.png deleted file mode 100644 index c05bd0d8acdc575aeff54977026d9bff306e4fb7..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 253 zcmeAS@N?(olHy`uVBq!ia0vp^d?3uh1|;P@bT0xamSQK*5Dp-y;YjHK@;M7UB8!1) zj({-ZRBb+Kpx}H@7sn8b)5!@E0U!SVuXj`EV|vu=@JF>amo#q#cX?>=`xZ=@d zhZ>oa1t}XQadwygSG;Ioro7F;u{=vp%#_vR({+cscGU?HL}r{9%xXWF;kKhdcDfyM3sk4=MHl)GNy7weL2i~gIRhl z^98Ty7>n;lybe+;R!sWGWOQZnSreBBe!o~H6GP&p8v8F*J((A1@AAOqd49@H?tjhO zt!7`G({o3eN&MVAx7lV1ZT$DY#{Pc1LTLk|TSEHLOO*_B?|5GcewY%~FuA^X<->Kh qI}KTGo-nx+H|@OE=CaewKbS%S;|@+_eXj=e7=x#)pUXO@geCy!#BwbF diff --git a/dashboard-ui/thirdparty/jquerymobile-1.4.5/images/icons-png/forbidden-white.png b/dashboard-ui/thirdparty/jquerymobile-1.4.5/images/icons-png/forbidden-white.png deleted file mode 100644 index bf135930f01a908ad207282f578124ec38c81105..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 308 zcmeAS@N?(olHy`uVBq!ia0vp^d?3uh1|;P@bT0xamSQK*5Dp-y;YjHK@;M7UB8!1) zj({-ZRBb+Kpx`x67sn8b)2){b^A0(Pv^>=1v=w}$qxeWd@6uDAI}9REjXJb^{Th{@ z%4mo<9G;%GK_~gJhxSeDe}C_tyB!pDh-dzfqmt@>9x!jdq`v2ILIitA?FCi&nun~5 z*I1f;)Z?A=?bg&RpDL@UWB(6tdE#^3>nn4GbbYK)%NFyU?2k?Fty8g;I4aX(c<$du zl}~JY*dJ?FFP~(2aL?syygf(1?oHXT;U(u{?)vAIS7ncXV&ti|i9frllyRG9{v2c7 zsHu7tum9~lRnWd=e`C}Kk?c1GK95Ype5)_oGj{UotN)rg0q8>pPgg&ebxsLQ0580H AGynhq diff --git a/dashboard-ui/thirdparty/jquerymobile-1.4.5/images/icons-png/forward-black.png b/dashboard-ui/thirdparty/jquerymobile-1.4.5/images/icons-png/forward-black.png deleted file mode 100644 index bcc46226e3c5ac3c504e2da089dd891cb84eb0bd..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 233 zcmeAS@N?(olHy`uVBq!ia0vp^d?3uh1|;P@bT0xamSQK*5Dp-y;YjHK@;M7UB8!1) zj({-ZRBb+KpkTMBi(`nz>Er|jJ`;lpoc|`T{%LPGOSYkcNkE?c(RGJE?4HVDXR91) z*n9=edKLvrci20s&SNUn7TC?O(L`YLqs_V6AxXLd#gl|A;ulO3TH?m;vshr|!M*&e zHckxb%?s%L->`$PBhuqy4BJ%>qX&8d;>;VFHqNqb_@NfHN04_$!wvq9=}aGuW4aic XmKm+)k7&LGbQXiBtDnm{r-UW|*xX2q diff --git a/dashboard-ui/thirdparty/jquerymobile-1.4.5/images/icons-png/forward-white.png b/dashboard-ui/thirdparty/jquerymobile-1.4.5/images/icons-png/forward-white.png deleted file mode 100644 index fa80f3677ec180fd4cf5fe60bbb4fea1db542109..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 243 zcmeAS@N?(olHy`uVBq!ia0vp^d?3uh1|;P@bT0xamSQK*5Dp-y;YjHK@;M7UB8!1) zj({-ZRBb+Kpx{(b7sn8b({nE>@;fGqusyI=UNOn{Vs2e?g4$1Gvx|0)-_>0LLq+Qy z1T<%LJ`=2YxM}CR^83H$rKek~pY~!=TrKpzWz`0W|wLJ9Y>;PS>qqh%I^O zdAH*d^Odfv_8+tpIV37R+*XKUaT>XgsXi{YkugkJXZ1fG`HK1!<)jIzuMr`?P*g!G511>VCAyV)PJR?;tjPE^)H8YJ#RMsEp*Cwve!o0 zH7~iAE&OvOY<|$cp6>SvCKERIz1(QeRRaCS;OXk;vd$@?2>?V)c(nik diff --git a/dashboard-ui/thirdparty/jquerymobile-1.4.5/images/icons-png/grid-black.png b/dashboard-ui/thirdparty/jquerymobile-1.4.5/images/icons-png/grid-black.png deleted file mode 100644 index aee31601c1287cdb68bc465dfac35d4becf1ce79..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 160 zcmeAS@N?(olHy`uVBq!ia0vp^d?3uh1|;P@bT0xamSQK*5Dp-y;YjHK@;M7UB8!1) zj({-ZRBb+KprDhdi(`nz>Ewij1Pjh1{}=wSU}jP1p4-qh*HQd;e_N-Ra`fXum2-hB zlyZ{PH*`#7Zwq)ZN5M#8g}6m}2WN+(j0M9X-u87q>z924n#SPi>gTe~DWM4fag8kt diff --git a/dashboard-ui/thirdparty/jquerymobile-1.4.5/images/icons-png/grid-white.png b/dashboard-ui/thirdparty/jquerymobile-1.4.5/images/icons-png/grid-white.png deleted file mode 100644 index 19652cdb8f4ecedd3f8676e29039438f1ae0985d..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 167 zcmeAS@N?(olHy`uVBq!ia0vp^d?3uh1|;P@bT0xamSQK*5Dp-y;YjHK@;M7UB8!1) zj({-ZRBb+KprEIxi(`nz>Es{(|NlSvpQB(7Bgcg!ehx>^DRdh)d9bM*;9xn@VQ4sk z(?QB#;bXsJW=@j&#*T@MZD9}Qs2C}%5VuI@U_BzhFT+rbP0 Hl+XkKKq@gX diff --git a/dashboard-ui/thirdparty/jquerymobile-1.4.5/images/icons-png/heart-black.png b/dashboard-ui/thirdparty/jquerymobile-1.4.5/images/icons-png/heart-black.png deleted file mode 100644 index fda9f924877666b8f83063a2c83d88bda474c2a6..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 242 zcmeAS@N?(olHy`uVBq!ia0vp^d?3uh1|;P@bT0xamSQK*5Dp-y;YjHK@;M7UB8!1) zj({-ZRBb+Kpx_iw7sn8b({nG_@-aF}ust{~8q?BsOf{qB#_Yhg1+2DTLN)IY4A{AS{V7LMi%8fS!#NU$ci@vINpek1hE=7bn6zS&jZo^M^2 zR`8xNzu*lczrkBZ_51UCtrtWnI>$sW$lmdLGUp|!DPrL|>5Y4sYz?kYFrCLbC3$7) jqK4u%C1;lL?Pau|RR7{u_ih`Y`xrc3{an^LB{Ts5!P-|h diff --git a/dashboard-ui/thirdparty/jquerymobile-1.4.5/images/icons-png/heart-white.png b/dashboard-ui/thirdparty/jquerymobile-1.4.5/images/icons-png/heart-white.png deleted file mode 100644 index ba7a949e33e4800538660675cc8b94cf8d3f693e..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 246 zcmeAS@N?(olHy`uVBq!ia0vp^d?3uh1|;P@bT0xamSQK*5Dp-y;YjHK@;M7UB8!1) zj({-ZRBb+Kpx_Ko7sn8b({nHEswrnJY8U)w?^4b4Sk5cP&P9C6M=q_Hc$e^ykDSY1$Sv~x m!_+NOKEsvojA3ngJ+qRJqrc#UpZ|ewWbkzLb6Mw<&;$S&bXE`m diff --git a/dashboard-ui/thirdparty/jquerymobile-1.4.5/images/icons-png/home-black.png b/dashboard-ui/thirdparty/jquerymobile-1.4.5/images/icons-png/home-black.png deleted file mode 100644 index 6b4e5f35aef0a787439eb31b69b584cd795a2a87..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 150 zcmeAS@N?(olHy`uVBq!ia0vp^d?3uh1|;P@bT0xamSQK*5Dp-y;YjHK@;M7UB8!1) zj({-ZRBb+KprD1Pi(`nz>Ewh1yiyBhs4!gmAm1f@;-brzw47NSS;v-hE>BA`Nz71l p6%L!-d9{Uc#iEHKI}=w6GL(NwTB;hbBo1f>gQu&X%Q~loCIG$0DVhKP diff --git a/dashboard-ui/thirdparty/jquerymobile-1.4.5/images/icons-png/home-white.png b/dashboard-ui/thirdparty/jquerymobile-1.4.5/images/icons-png/home-white.png deleted file mode 100644 index c1f8feda6bbfd4d223326cf9133fcd4972cd8700..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 154 zcmeAS@N?(olHy`uVBq!ia0vp^d?3uh1|;P@bT0xamSQK*5Dp-y;YjHK@;M7UB8!1) zj({-ZRBb+KprDPXi(`nz>Ewh1jQ{@szt3=pX9>d!HHi!bcj3ZWg&Bv|&umb8GpqAT u%c_|!zB9~(S2NF+*Szl0b*JDO2g56o`DMEvD$N0!!{F)a=d#Wzp$P!yq%GP2 diff --git a/dashboard-ui/thirdparty/jquerymobile-1.4.5/images/icons-png/info-black.png b/dashboard-ui/thirdparty/jquerymobile-1.4.5/images/icons-png/info-black.png deleted file mode 100644 index 46ee7e3b95ab0e611ab1b0c99f549d66e7c15645..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 250 zcmeAS@N?(olHy`uVBq!ia0vp^d?3uh1|;P@bT0xamSQK*5Dp-y;YjHK@;M7UB8!1) zj({-ZRBb+Kpx_)&7sn8b(@QUTa~*OJXnFWvjBRf_%X>wZJ$^3z=^f%98FzWzDN*2? z?675l+2zmY7w`IcjV(RqBj0w5#9SwKn~VNG8nxI6}RuU)h= q_<}AwuhycSzAE3l6kdJ&{D7I4qn#(9Q!E_lP6kg`KbLh*2~7Z_6Inq3 diff --git a/dashboard-ui/thirdparty/jquerymobile-1.4.5/images/icons-png/info-white.png b/dashboard-ui/thirdparty/jquerymobile-1.4.5/images/icons-png/info-white.png deleted file mode 100644 index af8346f1467b23c53d0e42c63ee6662242328e28..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 251 zcmeAS@N?(olHy`uVBq!ia0vp^d?3uh1|;P@bT0xamSQK*5Dp-y;YjHK@;M7UB8!1) zj({-ZRBb+Kpx|6j7sn8b(@QV;avd@daCmsf>0-6VM>(g1uQjS{y!U#9UI?`}Uz{;l z?+W{7&rg$ndTQz?^x5|9aNTkvG0bSgv7;90S7u(}=hF+|z4mLl%*#~$&OS6A zzUbZ->a9o)aB~Y@RDA4-;KyInZ~Rk`^Wym)T^MZ8{czb?&nJA7kGsvSY3Pw#{cvq5 sPkGNf=c2CGSm+YHpQntDKg)U|^@>)by@J8M_+H z{C~XoHCgt@**CM(9!{6ZXyB`0GTo5SAhUyc{rcU!M|<1c6&QjSOtP*_Tpnnkcfxkh zhgE@TF>2)>4>h}q8U%-&e!I6o_~(rCYxfo~ZJD^@>TGXGPH#5@_A248MT>9DEbwM( l<>VH!d_5_W@pOHEzIltKo*-}A2cQ!fJYD@<);T3K0RXgmRC@pb diff --git a/dashboard-ui/thirdparty/jquerymobile-1.4.5/images/icons-png/location-white.png b/dashboard-ui/thirdparty/jquerymobile-1.4.5/images/icons-png/location-white.png deleted file mode 100644 index f6eeacd73cc73cdbfb18ba8f5f408aa2d6972bbf..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 247 zcmeAS@N?(olHy`uVBq!ia0vp^d?3uh1|;P@bT0xamSQK*5Dp-y;YjHK@;M7UB8!1) zj({-ZRBb+Kpx{hT7sn8b(^D@R@-YUAv|YR&*|_j>SJ-*2h$&M$6r4k@wFs0VZxzx2=uQ7YF^nLSmA0md779 oXg>VK|3>osf4s>(cD40PGrjcOGasLu0(2yUr>mdKI;Vst017N!9{>OV diff --git a/dashboard-ui/thirdparty/jquerymobile-1.4.5/images/icons-png/lock-black.png b/dashboard-ui/thirdparty/jquerymobile-1.4.5/images/icons-png/lock-black.png deleted file mode 100644 index bf947e81d792a3504200b26a39ba2fcc602d1a20..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 204 zcmeAS@N?(olHy`uVBq!ia0vp^d?3uh1|;P@bT0xamSQK*5Dp-y;YjHK@;M7UB8!1) zj({-ZRBb+KpkSV-i(`nz>Ewh1EC(HGBs%sxe^gZ9OHp8`YW!i(cc;}m*dXK}zrs1T zBu0g2&70~Sp8naGX~Q%1%rT|u%u}s9d>@yuSi&G?S-0X&c#c$J-9gq3r~a!8UUpl| uDKLBT;)@a;z9%oEr|l=Kufy^RqoV?C?jni=VMjf!U5Bwxr6o^1-FQm&$g+>tAwdk?GWH?ww9R@G8jk;;@#()O wi^=5-rX$auWSFoe1s9o^IT-#mxuh1tc!iyh$K2=@JJ50lPgg&ebxsLQ0JDigY5)KL diff --git a/dashboard-ui/thirdparty/jquerymobile-1.4.5/images/icons-png/mail-black.png b/dashboard-ui/thirdparty/jquerymobile-1.4.5/images/icons-png/mail-black.png deleted file mode 100644 index cb67c0e26b80ec0c16696f406f6a022b39c9c8cd..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 226 zcmeAS@N?(olHy`uVBq!ia0vp^d?3uh1|;P@bT0xamSQK*5Dp-y;YjHK@;M7UB8!1) zj({-ZRBb+KpkRxqi(`nz>Er|n4guaH@{K?2C;m_l;b#^X&}RA=sAST3MZ@8%K@4k> zu0k5yBQ}M9&92NIYvfkBNv~qp`6${Uyufce)1%)Wv)(aoR1MK%T=mVKdDcnp1?L_x zKT-`i!!8=#uuSZ5q`~sT3}-U`b7s1fS#7!;V4&<{zOte7&WZFS2_puE->n{vqW?U% Q1Kq>m>FVdQ&MBb@0Hb_HQ2+n{ diff --git a/dashboard-ui/thirdparty/jquerymobile-1.4.5/images/icons-png/mail-white.png b/dashboard-ui/thirdparty/jquerymobile-1.4.5/images/icons-png/mail-white.png deleted file mode 100644 index 06a60839d239dd1cfeb46a8d13eb00f474e385bf..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 227 zcmeAS@N?(olHy`uVBq!ia0vp^d?3uh1|;P@bT0xamSQK*5Dp-y;YjHK@;M7UB8!1) zj({-ZRBb+KpkS+~i(`nz>Ewh3)<6FLuQw5>|Ko4Nu(Fpe^9fUutAd?Zi`oP!)(LVG zj;(fB!+PY5!ySer^&2u6IzlZXjmnZy`!;~Ej7^GhEF}O6a-xR;s R{srhD22WQ%mvv4FO#rWdOYr~z diff --git a/dashboard-ui/thirdparty/jquerymobile-1.4.5/images/icons-png/minus-black.png b/dashboard-ui/thirdparty/jquerymobile-1.4.5/images/icons-png/minus-black.png deleted file mode 100644 index 97589d7cfb70eb7ee6fbd69648e56d55c5902812..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 116 zcmeAS@N?(olHy`uVBq!ia0vp^d?3uh1|;P@bT0xamSQK*5Dp-y;YjHK@;M7UB8!1) zj({-ZRBb+KprDwii(`nz>Er|n){2AmMjrz%S#T9FFf27OKba|z+X_^{;OXk;vd$@? F2>`U_8Eyao diff --git a/dashboard-ui/thirdparty/jquerymobile-1.4.5/images/icons-png/minus-white.png b/dashboard-ui/thirdparty/jquerymobile-1.4.5/images/icons-png/minus-white.png deleted file mode 100644 index 874eaf37890e0049b66191217bdb1d944c9210f3..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 116 zcmeAS@N?(olHy`uVBq!ia0vp^d?3uh1|;P@bT0xamSQK*5Dp-y;YjHK@;M7UB8!1) zj({-ZRBb+KprDwii(`m|e{zBZ>yCrhOoT<3DpDpB?WfhdT^M z_!o2~{;(F{UZnku;gN^JJ>Db#FPI$oP?W;k=3v9xasOdJPfzRx+g!FI7ad~wk9ary zU=i5wdYPrjOnIYX=bNsophXW=L&s=8$BTl~TzI8jtv`aw}Gt h=acu#la=b1OVN~;OXk;vd$@?2>^+%QO5uP diff --git a/dashboard-ui/thirdparty/jquerymobile-1.4.5/images/icons-png/navigation-white.png b/dashboard-ui/thirdparty/jquerymobile-1.4.5/images/icons-png/navigation-white.png deleted file mode 100644 index 195388d0c674eebcb65fd7d768c469711e8f8e83..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 241 zcmeAS@N?(olHy`uVBq!ia0vp^d?3uh1|;P@bT0xamSQK*5Dp-y;YjHK@;M7UB8!1) zj({-ZRBb+Kpx|Ur7sn8b)5!@7On?0Uzh6M$In&3OBoSlAjoJe186L_1S5#o1&sM3B z$MA^#f8fD#1u>WKGmJ+jI_#0|`2Y7f-!$cH1C~dc4u9U+Cq8I;mualf$M&d7A&%*Y zdczOhS!xqDOLp>lri5RaEX1n5aMnMjjWU{2)16G;DVbi9ULd9HaaDquSEVe-bQbf+ gl%mVa70oOe!o}J7qI%ZP20D+y)78&qol`;+04k+TO8@`> diff --git a/dashboard-ui/thirdparty/jquerymobile-1.4.5/images/icons-png/phone-black.png b/dashboard-ui/thirdparty/jquerymobile-1.4.5/images/icons-png/phone-black.png deleted file mode 100644 index 6d0a09cdfb3cbb4fca6cfd3e58766c743cac8863..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 270 zcmeAS@N?(olHy`uVBq!ia0vp^d?3uh1|;P@bT0xamSQK*5Dp-y;YjHK@;M7UB8!1) zj({-ZRBb+Kpx_2i7sn8b)5!@y!1RdKp@yZSQqqGV(4j`G<3IC9!yuFWjE}Bn%&P3T z_=9&zopr0I0cI-~a#s diff --git a/dashboard-ui/thirdparty/jquerymobile-1.4.5/images/icons-png/phone-white.png b/dashboard-ui/thirdparty/jquerymobile-1.4.5/images/icons-png/phone-white.png deleted file mode 100644 index 773b60233cb15da7a1020414b1364fa114d4687e..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 274 zcmeAS@N?(olHy`uVBq!ia0vp^d?3uh1|;P@bT0xamSQK*5Dp-y;YjHK@;M7UB8!1) zj({-ZRBb+Kpx_oy7sn8b)5$;n|F;(w&}Vq0>~Q9^gARjMAJe1F{}mrdT%6U&b)Vs5 zmdRP0BN>0#u5Msk_0wEnw$S2_U+P&RSdYjZvDzx*`B*iGsa^h+zXXSxYq8FxWBLv` zeqGOgdd#wC*l0RykC;Gl^5qk3M|Mv%`Ool3WW^j)lP??9g%&7?3%vi?&!xxsv1mz! zU6;4SfNTsgl!@ggh3!ji!Ke+&{A Q1KrQy>FVdQ&MBb@05n!*00000 diff --git a/dashboard-ui/thirdparty/jquerymobile-1.4.5/images/icons-png/plus-black.png b/dashboard-ui/thirdparty/jquerymobile-1.4.5/images/icons-png/plus-black.png deleted file mode 100644 index 08547279df5a0f720d6e298611f3a6947225c290..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 123 zcmeAS@N?(olHy`uVBq!ia0vp^d?3uh1|;P@bT0xamSQK*5Dp-y;YjHK@;M7UB8!1) zj({-ZRBb+KprEX$i(`nz>Ewh1eE$|FE;?9n`Nw=8n<*xJY78<`jBUH(7xqt6QUoew N@O1TaS?83{1OU`n9#sGU diff --git a/dashboard-ui/thirdparty/jquerymobile-1.4.5/images/icons-png/plus-white.png b/dashboard-ui/thirdparty/jquerymobile-1.4.5/images/icons-png/plus-white.png deleted file mode 100644 index 7b484187a63abb44b261a3426f60c8171c02b54d..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 124 zcmeAS@N?(olHy`uVBq!ia0vp^d?3uh1|;P@bT0xamSQK*5Dp-y;YjHK@;M7UB8!1) zj({-ZRBb+KprD+mi(`nz>Ewh1O#c=$vLziXxcpwYUIP OGI+ZBxvXBPe}cDV2%8ck<$99 zUOD>@lcTQDTqdu@=NDFp h3%D=-IlYE~!Tg!iuD+tfeLx>Ec)I$ztaD0e0sxS$VY~nU diff --git a/dashboard-ui/thirdparty/jquerymobile-1.4.5/images/icons-png/power-white.png b/dashboard-ui/thirdparty/jquerymobile-1.4.5/images/icons-png/power-white.png deleted file mode 100644 index 8852da1a20070e815be83df8894ecd34bb9ad5f6..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 302 zcmeAS@N?(olHy`uVBq!ia0vp^d?3uh1|;P@bT0xamSQK*5Dp-y;YjHK@;M7UB8!1) zj({-ZRBb+Kpx^~h7sn8b)5!@382|nMzhAtg+;{@lKW9cmF6YJ{Vgj=lXR`!tbEuK- zV7_Ro$@DRN#jOAxspN%s^c{5C*A#MvB$?_hXPPO!z)5(b>AiL?smB*H*hF_VuldLy zGJ&<DeiSa1 rQ_Dzs&-Unfz#i_7#S{N}3oRFQpzS$6;RW(>ZK$@>VA#hStl+(1Ui+$)78&qol`;+0Q6^6Q~&?~ diff --git a/dashboard-ui/thirdparty/jquerymobile-1.4.5/images/icons-png/refresh-black.png b/dashboard-ui/thirdparty/jquerymobile-1.4.5/images/icons-png/refresh-black.png deleted file mode 100644 index fb19712aac4448e45b4d585cb6c4116a688fbd02..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 295 zcmeAS@N?(olHy`uVBq!ia0vp^d?3uh1|;P@bT0xamSQK*5Dp-y;YjHK@;M7UB8!1) zj({-ZRBb+Kpx{YQ7sn8b)5!@Atd|__a2^S7_@OTFpW%_W!yT?8LLRSPO*B2q^if>l zUq5p_(<2XsJhn&n2EK+4fB07=hzdkA8cK^qGk=USaXuiW+W5mbM4_M2{6_z}jk2dA zo85zr&7{{mSWdGrF-`iYAMu!9qrJD$#bMjA(*eELmSp8LXT^B8M8zwlwH2x?oXCAC zrpY~6G~}#f%0Z4LEE^a*-ZsvV?vib+;0}4GFTlQVwglS|`41|V6JiYXo_8=73Jc6{ jUv^tRpiDW0kB=cP!dEEn#)>4Mrx-k4{an^LB{Ts5Znj~c diff --git a/dashboard-ui/thirdparty/jquerymobile-1.4.5/images/icons-png/refresh-white.png b/dashboard-ui/thirdparty/jquerymobile-1.4.5/images/icons-png/refresh-white.png deleted file mode 100644 index fdd59adb9774476597d60c40a2890c0bbe561fb3..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 301 zcmeAS@N?(olHy`uVBq!ia0vp^d?3uh1|;P@bT0xamSQK*5Dp-y;YjHK@;M7UB8!1) zj({-ZRBb+Kpx}8=7sn8b)5!@AO#lD?pU(EkPhlU^5&Om;>;myjkHQqDIRu6GuhA6i z*#GA^uN`Bdihw!uNBJ4cBozL!hi>5NSlcjzw`*-6(L!S4z(A4PPMREi+4M;}7vQAK9lIKIXu+z~yo33b*Va(`}BX>r|cA>I)bj zwwQF`1Z$&^&8$@mviOv^-4s+CcpY;1kK74(!*L{fK~a691;^bZ1`7Wg)K4}(X)3gI r=joW;@WaOBZe8Oh$3o4vHDU~HAE#b_VSb|x=rsmUS3j3^P6kC9f+hRai=E5(!VJ1y-?aX3X*Jq0)8X*UgJ(~CKYh@VWwq#eiKEhSkIL+KaTV-4 z&X>0+{n_mo&gQQ=xmL6(y~^W~bGy5O!Q7xB_|Ec!7VjQu>Gr7J&U;|GY3rRUsy1$i zt@A#{{5o&k^W=f$7U2iX$0LrrRy^PMbj>fr)`ds3|8YH^a>)AMN~YZsf0$fP+c!Gj SkJShIn8DN4&t;ucLK6Uebcjm; diff --git a/dashboard-ui/thirdparty/jquerymobile-1.4.5/images/icons-png/search-white.png b/dashboard-ui/thirdparty/jquerymobile-1.4.5/images/icons-png/search-white.png deleted file mode 100644 index 274517d360b4fbe92fa20c9d71535aa6bbe5003f..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 321 zcmeAS@N?(olHy`uVBq!ia0vp^d?3uh1|;P@bT0xamSQK*5Dp-y;YjHK@;M7UB8!1) zj({-ZRBb+Kpx|Rq7sn8b(^D^=*J=$EY5SO8^l7O8FlnXH)N>CcEQ|u!^c+sz|6m;1eE0gjB;NbaYs21dU9H7tYGrX;w(7>wl2EBL zkKF3!ZJ0JWi)WF^0jp;ldmf*N-*`o2yKtt-<{t__JcZ}5-q5gF-0Qz*vERYmj_&<; z9@tqGXI2P4^m3FsOvg7Y?@bSi$T7<$8SN|+mp^D$93B2qrd8kO!P<}W zYkQtQVU$)Q6b_g4QiR(zlQgI)4`Q$qHHKa+vp OW$<+Mb6Mw<&;$UIeSoC^ diff --git a/dashboard-ui/thirdparty/jquerymobile-1.4.5/images/icons-png/shop-black.png b/dashboard-ui/thirdparty/jquerymobile-1.4.5/images/icons-png/shop-black.png deleted file mode 100644 index c2f3719c368082f44b0327ba686537948e6b0a3d..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 174 zcmeAS@N?(olHy`uVBq!ia0vp^d?3uh1|;P@bT0xamSQK*5Dp-y;YjHK@;M7UB8!1) zj({-ZRBb+KpkRQfi(`nz>Ewh1EN>iaSUc`Be{|QFEgLH+EY`c%L5KCoD~B~qM~ocq z9Clz~xT(^1gngsEz~YbghDkjYB9EDSZv4q;bv@Ix%uI;Y&GeF!GDGD%Zile%lNfEr|l=Kufyr?WrOboe9JVefSF4NnV0$U`dyG3KN|g?kJ~ zCU;)s*yPF6$#3+4*-+}gurk|p1=a_bGCEz?S{h27+*TO!xFM5;VTPBCm!a@}F`&^5 Mp00i_>zopr0Nh(Jo&W#< diff --git a/dashboard-ui/thirdparty/jquerymobile-1.4.5/images/icons-png/star-black.png b/dashboard-ui/thirdparty/jquerymobile-1.4.5/images/icons-png/star-black.png deleted file mode 100644 index 381e1f285354018bc559afb742032e51b50cd73e..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 231 zcmeAS@N?(olHy`uVBq!ia0vp^d?3uh1|;P@bT0xamSQK*5Dp-y;YjHK@;M7UB8!1) zj({-ZRBb+KpkSw`i(`nz>Ewh1ygdtNq!@5_q)%GaDc)hv{83%unWAg5mB9b@M%N@cM;) VqomF4^FT*2c)I$ztaD0e0sxeqNTdJ& diff --git a/dashboard-ui/thirdparty/jquerymobile-1.4.5/images/icons-png/star-white.png b/dashboard-ui/thirdparty/jquerymobile-1.4.5/images/icons-png/star-white.png deleted file mode 100644 index bf6c4abbbea9ce6a4b9845c7281e69b9af457990..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 239 zcmeAS@N?(olHy`uVBq!ia0vp^d?3uh1|;P@bT0xamSQK*5Dp-y;YjHK@;M7UB8!1) zj({-ZRBb+Kpx{JL7sn8b)5!@382|nMpU-oMX9?4SWswdxlS6#>IQ)_9uxB*n*Oa>a zU)e!QQ|i1@rcJYVAd^7-Uw<2hmA&nm*O(rycFEYq6x5w(EH0pbU~#6M2d`eb_T!5y zdh`P}eaJX-WO*TT$i-*{zV=7k12%r$VY1Odxkg*STdC8V>7$v#KaQYg-^GmkPOzP9 eykZc*#gKE~t)sqt$vU9p7(8A5T-G@yGywoigHHGW diff --git a/dashboard-ui/thirdparty/jquerymobile-1.4.5/images/icons-png/tag-black.png b/dashboard-ui/thirdparty/jquerymobile-1.4.5/images/icons-png/tag-black.png deleted file mode 100644 index d6f65d1b291355f1e3cd42b7d2c2d47a5474394a..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 159 zcmeAS@N?(olHy`uVBq!ia0vp^d?3uh1|;P@bT0xamSQK*5Dp-y;YjHK@;M7UB8!1) zj({-ZRBb+KprE6ti(`nz>EwijgdhE^<^}?c|0b`NTy}w{L)YUXPcX}+6xXh^|2q#v yn40%wspEs{%vL*%sO#cg;*^*3WF>YkNIBTLvqe-M-?&tbP4$Nk~ yyo+afb|f>+;#BKl+cZf@?Cgo>w;$fMSNuKDFa}RoKbLh*2~7a~t}KZF diff --git a/dashboard-ui/thirdparty/jquerymobile-1.4.5/images/icons-png/user-black.png b/dashboard-ui/thirdparty/jquerymobile-1.4.5/images/icons-png/user-black.png deleted file mode 100644 index 1a0cb07718e6c966ca1a075296f5f8c568f6a8e9..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 245 zcmeAS@N?(olHy`uVBq!ia0vp^d?3uh1|;P@bT0xamSQK*5Dp-y;YjHK@;M7UB8!1) zj({-ZRBb+Kpx|^*7sn8b)5!@3SaclruyoWjf8!uYXXBEHHT z>($*JtLsR`3tn2%0$M2q>Ow9c$Jrj1I9&(|GXR48fKn9On{ zexgY&Tasb?-de3>IDp5alYgACV^HwM0)4u6>ZGZsC5 k?jUpCp^2@;XPz5_=)R-}8tVdX1D(j=>FVdQ&MBb@06$1kZvX%Q diff --git a/dashboard-ui/thirdparty/jquerymobile-1.4.5/images/icons-png/user-white.png b/dashboard-ui/thirdparty/jquerymobile-1.4.5/images/icons-png/user-white.png deleted file mode 100644 index f843f6f88d13c1e2d63cb15233af73095e9e0ee9..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 245 zcmeAS@N?(olHy`uVBq!ia0vp^d?3uh1|;P@bT0xamSQK*5Dp-y;YjHK@;M7UB8!1) zj({-ZRBb+Kpx|^*7sn8b({nFb^Eo<-G(6N)$#K4*m2-e=$|8}qx*cmfoI->y-fVC= zsb#ZBY1QmI{?3mIV}}k}Ve>VAnC9_=p!dY*E zLOwsZ@SUx4LsKxD)q+3ScO%*69Ftkz_*!_^0=eJQPOI-YA+58p*>KzU_|F;#*_5{g n)+~_w_UQIP=|4B`e_)f2KQQ6`$2qfsPGsbP0l+XkKR*7A+ diff --git a/dashboard-ui/thirdparty/jquerymobile-1.4.5/images/icons-png/video-black.png b/dashboard-ui/thirdparty/jquerymobile-1.4.5/images/icons-png/video-black.png deleted file mode 100644 index 97e74d40f3ad5d0db12f8ca9b5fb810c6fc30008..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 171 zcmeAS@N?(olHy`uVBq!ia0vp^d?3uh1|;P@bT0xamSQK*5Dp-y;YjHK@;M7UB8!1) zj({-ZRBb+KprEg(i(`nz>Er|n4groM`i(#A`TlTq{N0#&WI1PB{Gykc2?|caJj&U> z{8t@gOR?K1C4GT+(N4EbbGrmB)^}X^!W3QdL%73xf?9kVBRj+KZv~3nbJE>`1~YiN L`njxgN@xNAlRz=P diff --git a/dashboard-ui/thirdparty/jquerymobile-1.4.5/images/icons-png/video-white.png b/dashboard-ui/thirdparty/jquerymobile-1.4.5/images/icons-png/video-white.png deleted file mode 100644 index cbe8bdea12953877fd0210dc1cbe23ae6762a3c4..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 170 zcmeAS@N?(olHy`uVBq!ia0vp^d?3uh1|;P@bT0xamSQK*5Dp-y;YjHK@;M7UB8!1) zj({-ZRBb+KprDVZi(`nz>7y4bP0l+XkK&j&V6 diff --git a/dashboard-ui/thirdparty/jquerymobile-1.4.5/jqm.listview.css b/dashboard-ui/thirdparty/jquerymobile-1.4.5/jqm.listview.css index 3a2e6645f8..fbc7d46294 100644 --- a/dashboard-ui/thirdparty/jquerymobile-1.4.5/jqm.listview.css +++ b/dashboard-ui/thirdparty/jquerymobile-1.4.5/jqm.listview.css @@ -1,279 +1,245 @@ - - - -ul[data-role="listview"], -ul[data-role="listview"] > li { - margin: 0; - padding: 0; - list-style: none; -} -.ui-content ul[data-role="listview"], -.ui-panel-inner > ul[data-role="listview"] { - margin: -1em; +ul[data-role="listview"] { + border-radius: 3px; + border-color: #ccc; } + + ul[data-role="listview"], + ul[data-role="listview"] > li { + margin: 0; + padding: 0; + list-style: none; + border-color: #ccc; + } + /*.ui-content ul[data-role="listview"], .ui-panel-inner > ul[data-role="listview"] { margin: 1em 0; }*/ + .ui-collapsible-content > ul[data-role="listview"] { - margin: -.5em -1em; -} -.ui-collapsible-content > ul[data-role="listview"] { - margin: .5em 0; + margin: .5em 0; } + ul[data-role="listview"] > li { - display: block; - position: relative; - overflow: visible; + display: block; + position: relative; + overflow: visible; } + + ul[data-role="listview"] > li, + ul[data-role="listview"] > li[data-role="list-divider"], + ul[data-role="listview"] > li > a { + margin: 0; + display: block; + position: relative; + text-align: left; + text-overflow: ellipsis; + overflow: hidden; + white-space: nowrap; + color: inherit !important; + font-weight: inherit !important; + font-size: inherit !important; + } + +ul[data-role="listview"] > li[data-role="list-divider"] { + background: #ddd; +} + +ul[data-role="listview"] > li > a:focus { + z-index: 1; +} + ul[data-role="listview"] > li, -ul[data-role="listview"] > .ui-li-divider, -ul[data-role="listview"] > li > a.ui-btn { - margin: 0; - display: block; - position: relative; - text-align: left; - text-overflow: ellipsis; - overflow: hidden; - white-space: nowrap; +ul[data-role="listview"] > li[data-role="list-divider"] { + border-width: 1px 0 0 0; + border-style: solid; } -ul[data-role="listview"] > li > .ui-btn:focus { - z-index: 1; + + ul[data-role="listview"] > li, + ul[data-role="listview"] > li[data-role="list-divider"] { + border-right-width: 1px; + border-left-width: 1px; + } + + ul[data-role="listview"] > li:last-child, + ul[data-role="listview"] > li[data-role="list-divider"]:last-child, + ul[data-role="listview"] > li:last-child > a { + border-bottom-width: 1px; + } + +.ui-collapsible-content > ul[data-role="listview"]:not(ul[data-role="listview"]) > li:first-child, +.ui-collapsible-content > ul[data-role="listview"]:not(ul[data-role="listview"]) > li:first-child > a { + border-top-width: 0; } -ul[data-role="listview"] > li, -ul[data-role="listview"] > .ui-li-divider, -ul[data-role="listview"] > li > a.ui-btn { - border-width: 1px 0 0 0; - border-style: solid; + +.ui-collapsible-themed-content ul[data-role="listview"]:not(ul[data-role="listview"]) > li:last-child, +.ui-collapsible-themed-content ul[data-role="listview"]:not(ul[data-role="listview"]) > li:last-child > a { + border-bottom-width: 0; } -ul[data-role="listview"] > li, -ul[data-role="listview"] > .ui-li-divider, -ul[data-role="listview"] > li > a.ui-btn { - /*border-right-width: 1px; - border-left-width: 1px;*/ + +ul[data-role="listview"] > li:first-child, +ul[data-role="listview"] > li:first-child > a { + -webkit-border-top-right-radius: inherit; + border-top-right-radius: inherit; + -webkit-border-top-left-radius: inherit; + border-top-left-radius: inherit; } + ul[data-role="listview"] > li:last-child, -ul[data-role="listview"] > .ui-li-divider.ui-last-child, -ul[data-role="listview"] > li.ui-last-child > a.ui-btn { - border-bottom-width: 1px; +ul[data-role="listview"] > li:last-child > a { + -webkit-border-bottom-right-radius: inherit; + border-bottom-right-radius: inherit; + -webkit-border-bottom-left-radius: inherit; + border-bottom-left-radius: inherit; } -.ui-collapsible-content > ul[data-role="listview"]:not(ul[data-role="listview"]) > li.ui-first-child, -.ui-collapsible-content > ul[data-role="listview"]:not(ul[data-role="listview"]) > li.ui-first-child > a.ui-btn { - border-top-width: 0; + +ul[data-role="listview"] > li.ui-li-has-alt > a { + -webkit-border-top-right-radius: 0; + border-top-right-radius: 0; + -webkit-border-bottom-right-radius: 0; + border-bottom-right-radius: 0; } -.ui-collapsible-themed-content ul[data-role="listview"]:not(ul[data-role="listview"]) > li.ui-last-child, -.ui-collapsible-themed-content ul[data-role="listview"]:not(ul[data-role="listview"]) > li.ui-last-child > a.ui-btn { - border-bottom-width: 0; + +ul[data-role="listview"] > li:first-child > a + a { + -webkit-border-top-left-radius: 0; + border-top-left-radius: 0; + -webkit-border-top-right-radius: inherit; + border-top-right-radius: inherit; } -ul[data-role="listview"] > li.ui-first-child, -ul[data-role="listview"] > li.ui-first-child > a.ui-btn { - -webkit-border-top-right-radius: inherit; - border-top-right-radius: inherit; - -webkit-border-top-left-radius: inherit; - border-top-left-radius: inherit; + +ul[data-role="listview"] > li:last-child > a + a { + -webkit-border-bottom-left-radius: 0; + border-bottom-left-radius: 0; + -webkit-border-bottom-right-radius: inherit; + border-bottom-right-radius: inherit; } -ul[data-role="listview"] > li.ui-last-child, -ul[data-role="listview"] > li.ui-last-child > a.ui-btn { - -webkit-border-bottom-right-radius: inherit; - border-bottom-right-radius: inherit; - -webkit-border-bottom-left-radius: inherit; - border-bottom-left-radius: inherit; + +ul[data-role="listview"] > li:first-child img:first-child:not(.ui-li-icon) { + -webkit-border-top-left-radius: inherit; + border-top-left-radius: inherit; } -ul[data-role="listview"] > li.ui-li-has-alt > a.ui-btn { - -webkit-border-top-right-radius: 0; - border-top-right-radius: 0; - -webkit-border-bottom-right-radius: 0; - border-bottom-right-radius: 0; -} -ul[data-role="listview"] > li.ui-first-child > a.ui-btn + a.ui-btn { - -webkit-border-top-left-radius: 0; - border-top-left-radius: 0; - -webkit-border-top-right-radius: inherit; - border-top-right-radius: inherit; -} -ul[data-role="listview"] > li.ui-last-child > a.ui-btn + a.ui-btn { - -webkit-border-bottom-left-radius: 0; - border-bottom-left-radius: 0; - -webkit-border-bottom-right-radius: inherit; - border-bottom-right-radius: inherit; -} -ul[data-role="listview"] > li.ui-first-child img:first-child:not(.ui-li-icon) { - -webkit-border-top-left-radius: inherit; - border-top-left-radius: inherit; -} -ul[data-role="listview"] > li.ui-last-child img:first-child:not(.ui-li-icon) { - -webkit-border-bottom-left-radius: inherit; - border-bottom-left-radius: inherit; + +ul[data-role="listview"] > li:last-child img:first-child:not(.ui-li-icon) { + -webkit-border-bottom-left-radius: inherit; + border-bottom-left-radius: inherit; } + .ui-collapsible-content > ul[data-role="listview"]:not(ul[data-role="listview"]) { - -webkit-border-radius: inherit; - border-radius: inherit; + -webkit-border-radius: inherit; + border-radius: inherit; } + ul[data-role="listview"] > li { - padding: .7em 1em; -} -ul[data-role="listview"] > .ui-li-divider { - padding: .5em 1.143em; - font-size: 14px; - font-weight: bold; - cursor: default; - outline: 0; /* Dividers in custom selectmenus have tabindex */ -} -ul[data-role="listview"] > .ui-li-has-count > .ui-btn, -ul[data-role="listview"] > .ui-li-static.ui-li-has-count, -ul[data-role="listview"] > .ui-li-divider.ui-li-has-count { - padding-right: 2.8125em; + padding: .7em 1em; } + + ul[data-role="listview"] > li[data-role="list-divider"] { + padding: .5em 1.143em; + font-size: 14px; + font-weight: bold; + cursor: default; + outline: 0; /* Dividers in custom selectmenus have tabindex */ + } + + ul[data-role="listview"] > .ui-li-has-count > a, + ul[data-role="listview"] > .ui-li-static.ui-li-has-count, + ul[data-role="listview"] > li[data-role="list-divider"].ui-li-has-count { + padding-right: 2.8125em; + } + ul[data-role="listview"] > .ui-li-has-count > .ui-btn-icon-right { - padding-right: 4.6875em; + padding-right: 4.6875em; } -ul[data-role="listview"] > .ui-li-has-thumb > .ui-btn, + +ul[data-role="listview"] > .ui-li-has-thumb > a, ul[data-role="listview"] > .ui-li-static.ui-li-has-thumb { - min-height: 3.625em; - padding-left: 6.25em; + min-height: 3.625em; + padding-left: 6.25em; } /* ui-li-has-icon deprecated in 1.4. TODO: remove in 1.5 */ -ul[data-role="listview"] > .ui-li-has-icon > .ui-btn, -ul[data-role="listview"] > .ui-li-static.ui-li-has-icon { - min-height: 1.25em; - padding-left: 2.5em; +ul[data-role="listview"] > .ui-li-has-icon > a, +ul[data-role="listview"] > a + a { + min-height: 1.25em; + padding-left: 2.5em; } /* Used by both listview and custom multiple select button */ .ui-li-count { - position: absolute; - font-size: 12.5px; - font-weight: bold; - text-align: center; - border-width: 1px; - border-style: solid; - padding: 0 .48em; - line-height: 1.6em; - min-height: 1.6em; - min-width: .64em; - right: .8em; - top: 50%; - margin-top: -.88em; + position: absolute; + font-size: 12.5px; + font-weight: bold; + text-align: center; + border-width: 1px; + border-style: solid; + padding: 0 .48em; + line-height: 1.6em; + min-height: 1.6em; + min-width: .64em; + right: .8em; + top: 50%; + margin-top: -.88em; } + ul[data-role="listview"] .ui-btn-icon-right .ui-li-count { - right: 3.2em; -} -ul[data-role="listview"] .ui-li-has-thumb > img:first-child, -ul[data-role="listview"] .ui-li-has-thumb > .ui-btn > img:first-child, -ul[data-role="listview"] .ui-li-has-thumb .ui-li-thumb { - position: absolute; - left: 0; - top: 0; - max-height: 5em; - max-width: 5em; -} -/* ui-li-has-icon deprecated in 1.4. TODO: remove in 1.5 */ -ul[data-role="listview"] > .ui-li-has-icon > img:first-child, -ul[data-role="listview"] > .ui-li-has-icon > .ui-btn > img:first-child { - position: absolute; - left: .625em; - top: .9em; - max-height: 1em; - max-width: 1em; + right: 3.2em; } + ul[data-role="listview"] > li h1, ul[data-role="listview"] > li h2, ul[data-role="listview"] > li h3, ul[data-role="listview"] > li h4, ul[data-role="listview"] > li h5, ul[data-role="listview"] > li h6 { - font-size: 1em; - display: block; - margin: .45em 0; - text-overflow: ellipsis; - overflow: hidden; - white-space: nowrap; + font-size: 1em; + display: block; + margin: .45em 0; + text-overflow: ellipsis; + overflow: hidden; + white-space: nowrap; } + ul[data-role="listview"] > li p { - font-size: .75em; - font-weight: normal; - display: block; - margin: .6em 0; - text-overflow: ellipsis; - overflow: hidden; - white-space: nowrap; + font-size: .75em; + font-weight: normal; + display: block; + margin: .6em 0; + text-overflow: ellipsis; + overflow: hidden; + white-space: nowrap; } + ul[data-role="listview"] .ui-li-aside { - position: absolute; - top: 1em; - right: 3.333em; - margin: 0; - text-align: right; + position: absolute; + top: 1em; + right: 3.333em; + margin: 0; + text-align: right; } -ul[data-role="listview"] > li.ui-li-has-alt > .ui-btn { - margin-right: 2.5em; - border-right-width: 0; + +ul[data-role="listview"] > li.ui-li-has-alt > a { + margin-right: 2.5em; + border-right-width: 0; } -ul[data-role="listview"] > li.ui-li-has-alt > .ui-btn + .ui-btn { - position: absolute; - width: 2.5em; - height: 100%; - min-height: auto; - -webkit-box-sizing: border-box; - -moz-box-sizing: border-box; - box-sizing: border-box; - border-left-width: 1px; - top: 0; - right: 0; - margin: 0; - padding: 0; - z-index: 2; + +ul[data-role="listview"] > li > a + a { + position: absolute; + width: 2.5em; + height: 100%; + min-height: auto; + -webkit-box-sizing: border-box; + -moz-box-sizing: border-box; + box-sizing: border-box; + border-left-width: 1px; + top: 0; + right: 0; + margin: 0; + padding: 0; + z-index: 2; } -ul[data-role="listview"] > li.ui-li-has-alt > .ui-btn + .ui-btn { - border-right-width: 1px; + +ul[data-role="listview"] > li.ui-li-has-alt > a + a { + border-right-width: 1px; } -ul[data-role="listview"] > li.ui-li-has-alt > .ui-btn + .ui-btn:focus { - z-index: 3; -} -ol[data-role="listview"], -ol[data-role="listview"] > .ui-li-divider { - counter-reset: listnumbering; -} -ol[data-role="listview"] > li > .ui-btn, -ol[data-role="listview"] > li { - vertical-align: middle; -} -ol[data-role="listview"] > li > .ui-btn:first-child:before, -ol[data-role="listview"] > li:before, -ol[data-role="listview"] > li.ui-field-contain > label:before, -ol[data-role="listview"] > li.ui-field-contain > .ui-controlgroup-label:before { - display: inline-block; - font-size: .9em; - font-weight: normal; - padding-right: .3em; - min-width: 1.4em; - line-height: 1.5; - vertical-align: middle; - counter-increment: listnumbering; - content: counter(listnumbering) "."; -} -ol[data-role="listview"] > li.ui-field-contain:before { - content: none; - display: none; -} -ol[data-role="listview"] > li h1:first-child, -ol[data-role="listview"] > li h2:first-child, -ol[data-role="listview"] > li h3:first-child, -ol[data-role="listview"] > li h4:first-child, -ol[data-role="listview"] > li h5:first-child, -ol[data-role="listview"] > li h6:first-child, -ol[data-role="listview"] > li p:first-child, -ol[data-role="listview"] > li img:first-child + * { - display: inline-block; - vertical-align: middle; -} -ol[data-role="listview"] > li h1:first-child ~ *, -ol[data-role="listview"] > li h2:first-child ~ *, -ol[data-role="listview"] > li h3:first-child ~ *, -ol[data-role="listview"] > li h4:first-child ~ *, -ol[data-role="listview"] > li h5:first-child ~ *, -ol[data-role="listview"] > li h6:first-child ~ *, -ol[data-role="listview"] > li p:first-child ~ *, -ol[data-role="listview"] > li img:first-child + * ~ * { - margin-top: 0; - text-indent: 2.04em; /* (1.4em + .3em) * .9em / .75em */ -} \ No newline at end of file + + ul[data-role="listview"] > li.ui-li-has-alt > a + a:focus { + z-index: 3; + } diff --git a/dashboard-ui/thirdparty/jquerymobile-1.4.5/jquery.mobile.custom.icons.css b/dashboard-ui/thirdparty/jquerymobile-1.4.5/jquery.mobile.custom.icons.css index da2ab17eae..ef71a6eaef 100644 --- a/dashboard-ui/thirdparty/jquerymobile-1.4.5/jquery.mobile.custom.icons.css +++ b/dashboard-ui/thirdparty/jquerymobile-1.4.5/jquery.mobile.custom.icons.css @@ -88,6 +88,9 @@ html .ui-btn.ui-checkbox-on.ui-checkbox-on:after { .ui-icon-delete:after { background-image: url("data:image/svg+xml;charset=US-ASCII,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22iso-8859-1%22%3F%3E%3C!DOCTYPE%20svg%20PUBLIC%20%22-%2F%2FW3C%2F%2FDTD%20SVG%201.1%2F%2FEN%22%20%22http%3A%2F%2Fwww.w3.org%2FGraphics%2FSVG%2F1.1%2FDTD%2Fsvg11.dtd%22%3E%3Csvg%20version%3D%221.1%22%20id%3D%22Layer_1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20x%3D%220px%22%20y%3D%220px%22%20%20width%3D%2214px%22%20height%3D%2214px%22%20viewBox%3D%220%200%2014%2014%22%20style%3D%22enable-background%3Anew%200%200%2014%2014%3B%22%20xml%3Aspace%3D%22preserve%22%3E%3Cpolygon%20fill%3D%22%23FFF%22%20points%3D%2214%2C3%2011%2C0%207%2C4%203%2C0%200%2C3%204%2C7%200%2C11%203%2C14%207%2C10%2011%2C14%2014%2C11%2010%2C7%20%22%2F%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3C%2Fsvg%3E"); } +.ui-icon-delete:after { + background-image: url("data:image/svg+xml;charset=US-ASCII,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22iso-8859-1%22%3F%3E%3C!DOCTYPE%20svg%20PUBLIC%20%22-%2F%2FW3C%2F%2FDTD%20SVG%201.1%2F%2FEN%22%20%22http%3A%2F%2Fwww.w3.org%2FGraphics%2FSVG%2F1.1%2FDTD%2Fsvg11.dtd%22%3E%3Csvg%20version%3D%221.1%22%20id%3D%22Layer_1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20x%3D%220px%22%20y%3D%220px%22%20%20width%3D%2214px%22%20height%3D%2214px%22%20viewBox%3D%220%200%2014%2014%22%20style%3D%22enable-background%3Anew%200%200%2014%2014%3B%22%20xml%3Aspace%3D%22preserve%22%3E%3Cpolygon%20fill%3D%22%23FFF%22%20points%3D%2214%2C3%2011%2C0%207%2C4%203%2C0%200%2C3%204%2C7%200%2C11%203%2C14%207%2C10%2011%2C14%2014%2C11%2010%2C7%20%22%2F%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3C%2Fsvg%3E"); +} .ui-icon-edit:after { background-image: url("data:image/svg+xml;charset=US-ASCII,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22iso-8859-1%22%3F%3E%3C!DOCTYPE%20svg%20PUBLIC%20%22-%2F%2FW3C%2F%2FDTD%20SVG%201.1%2F%2FEN%22%20%22http%3A%2F%2Fwww.w3.org%2FGraphics%2FSVG%2F1.1%2FDTD%2Fsvg11.dtd%22%3E%3Csvg%20version%3D%221.1%22%20id%3D%22Layer_1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20x%3D%220px%22%20y%3D%220px%22%20%20width%3D%2214px%22%20height%3D%2214px%22%20viewBox%3D%220%200%2014%2014%22%20style%3D%22enable-background%3Anew%200%200%2014%2014%3B%22%20xml%3Aspace%3D%22preserve%22%3E%3Cpath%20fill%3D%22%23FFF%22%20d%3D%22M1%2C10l-1%2C4l4-1l7-7L8%2C3L1%2C10z%20M11%2C0L9%2C2l3%2C3l2-2L11%2C0z%22%2F%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3C%2Fsvg%3E"); } @@ -162,564 +165,4 @@ html .ui-btn.ui-checkbox-on.ui-checkbox-on:after { } .ui-icon-video:after { background-image: url("data:image/svg+xml;charset=US-ASCII,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22iso-8859-1%22%3F%3E%3C!DOCTYPE%20svg%20PUBLIC%20%22-%2F%2FW3C%2F%2FDTD%20SVG%201.1%2F%2FEN%22%20%22http%3A%2F%2Fwww.w3.org%2FGraphics%2FSVG%2F1.1%2FDTD%2Fsvg11.dtd%22%3E%3Csvg%20version%3D%221.1%22%20id%3D%22Layer_1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20x%3D%220px%22%20y%3D%220px%22%20%20width%3D%2214px%22%20height%3D%2214px%22%20viewBox%3D%220%20-2%2014%2014%22%20style%3D%22enable-background%3Anew%200%20-2%2014%2014%3B%22%20xml%3Aspace%3D%22preserve%22%3E%3Cpath%20style%3D%22fill%3A%23FFFFFF%3B%22%20d%3D%22M8%2C0H2C0.896%2C0%2C0%2C0.896%2C0%2C2v6c0%2C1.104%2C0.896%2C2%2C2%2C2h6c1.104%2C0%2C2-0.896%2C2-2V5V2C10%2C0.896%2C9.104%2C0%2C8%2C0z%20%20M10%2C5l4%2C4V1L10%2C5z%22%2F%3E%3C%2Fsvg%3E"); -} -/* Alt icons */ -.ui-alt-icon.ui-icon-action:after, -.ui-alt-icon .ui-icon-action:after { - background-image: url("data:image/svg+xml;charset=US-ASCII,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22iso-8859-1%22%3F%3E%3C!DOCTYPE%20svg%20PUBLIC%20%22-%2F%2FW3C%2F%2FDTD%20SVG%201.1%2F%2FEN%22%20%22http%3A%2F%2Fwww.w3.org%2FGraphics%2FSVG%2F1.1%2FDTD%2Fsvg11.dtd%22%3E%3Csvg%20version%3D%221.1%22%20id%3D%22Layer_1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20x%3D%220px%22%20y%3D%220px%22%20%20width%3D%2214px%22%20height%3D%2214px%22%20viewBox%3D%220%200%2014%2014%22%20style%3D%22enable-background%3Anew%200%200%2014%2014%3B%22%20xml%3Aspace%3D%22preserve%22%3E%3Cpath%20d%3D%22M9%2C5v3l5-4L9%2C0v3c0%2C0-5%2C0-5%2C7C6%2C5%2C9%2C5%2C9%2C5z%20M11%2C12H2V5h1l2-2H0v11h13V7l-2%2C2V12z%22%2F%3E%3C%2Fsvg%3E"); -} -.ui-alt-icon.ui-icon-alert:after, -.ui-alt-icon .ui-icon-alert:after { - background-image: url("data:image/svg+xml;charset=US-ASCII,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22iso-8859-1%22%3F%3E%3C!DOCTYPE%20svg%20PUBLIC%20%22-%2F%2FW3C%2F%2FDTD%20SVG%201.1%2F%2FEN%22%20%22http%3A%2F%2Fwww.w3.org%2FGraphics%2FSVG%2F1.1%2FDTD%2Fsvg11.dtd%22%3E%3Csvg%20version%3D%221.1%22%20id%3D%22Layer_1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20x%3D%220px%22%20y%3D%220px%22%20%20width%3D%2214px%22%20height%3D%2214px%22%20viewBox%3D%220%200%2014%2014%22%20style%3D%22enable-background%3Anew%200%200%2014%2014%3B%22%20xml%3Aspace%3D%22preserve%22%3E%3Cpath%20d%3D%22M7%2C0L0%2C12h14L7%2C0z%20M7%2C11c-0.553%2C0-1-0.447-1-1s0.447-1%2C1-1c0.553%2C0%2C1%2C0.447%2C1%2C1S7.553%2C11%2C7%2C11z%20M7%2C8C6.447%2C8%2C6%2C7.553%2C6%2C7V5%20c0-0.553%2C0.447-1%2C1-1c0.553%2C0%2C1%2C0.447%2C1%2C1v2C8%2C7.553%2C7.553%2C8%2C7%2C8z%22%2F%3E%3C%2Fsvg%3E"); -} -.ui-alt-icon.ui-icon-arrow-d:after, -.ui-alt-icon .ui-icon-arrow-d:after { - background-image: url("data:image/svg+xml;charset=US-ASCII,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22iso-8859-1%22%3F%3E%3C!DOCTYPE%20svg%20PUBLIC%20%22-%2F%2FW3C%2F%2FDTD%20SVG%201.1%2F%2FEN%22%20%22http%3A%2F%2Fwww.w3.org%2FGraphics%2FSVG%2F1.1%2FDTD%2Fsvg11.dtd%22%3E%3Csvg%20version%3D%221.1%22%20id%3D%22Layer_1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20x%3D%220px%22%20y%3D%220px%22%20%20width%3D%2214px%22%20height%3D%2214px%22%20viewBox%3D%220%200%2014%2014%22%20style%3D%22enable-background%3Anew%200%200%2014%2014%3B%22%20xml%3Aspace%3D%22preserve%22%3E%3Cpolygon%20points%3D%229%2C7%209%2C0%205%2C0%205%2C7%200%2C7%207%2C14%2014%2C7%20%22%2F%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3C%2Fsvg%3E"); -} -.ui-alt-icon.ui-icon-arrow-d-l:after, -.ui-alt-icon .ui-icon-arrow-d-l:after { - background-image: url("data:image/svg+xml;charset=US-ASCII,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22iso-8859-1%22%3F%3E%3C!DOCTYPE%20svg%20PUBLIC%20%22-%2F%2FW3C%2F%2FDTD%20SVG%201.1%2F%2FEN%22%20%22http%3A%2F%2Fwww.w3.org%2FGraphics%2FSVG%2F1.1%2FDTD%2Fsvg11.dtd%22%3E%3Csvg%20version%3D%221.1%22%20id%3D%22Layer_1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20x%3D%220px%22%20y%3D%220px%22%20%20width%3D%2214px%22%20height%3D%2214px%22%20viewBox%3D%220%200%2014%2014%22%20style%3D%22enable-background%3Anew%200%200%2014%2014%3B%22%20xml%3Aspace%3D%22preserve%22%3E%3Cpolygon%20points%3D%2214%2C3%2011%2C0%203.5%2C7.5%200%2C4%200%2C14%2010%2C14%206.5%2C10.5%20%22%2F%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3C%2Fsvg%3E"); -} -.ui-alt-icon.ui-icon-arrow-d-r:after, -.ui-alt-icon .ui-icon-arrow-d-r:after { - background-image: url("data:image/svg+xml;charset=US-ASCII,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22iso-8859-1%22%3F%3E%3C!DOCTYPE%20svg%20PUBLIC%20%22-%2F%2FW3C%2F%2FDTD%20SVG%201.1%2F%2FEN%22%20%22http%3A%2F%2Fwww.w3.org%2FGraphics%2FSVG%2F1.1%2FDTD%2Fsvg11.dtd%22%3E%3Csvg%20version%3D%221.1%22%20id%3D%22Layer_1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20x%3D%220px%22%20y%3D%220px%22%20%20width%3D%2214px%22%20height%3D%2214px%22%20viewBox%3D%220%200%2014%2014%22%20style%3D%22enable-background%3Anew%200%200%2014%2014%3B%22%20xml%3Aspace%3D%22preserve%22%3E%3Cpolygon%20points%3D%2210.5%2C7.5%203%2C0%200%2C3%207.5%2C10.5%204%2C14%2014%2C14%2014%2C4%20%22%2F%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3C%2Fsvg%3E"); -} -.ui-alt-icon.ui-icon-arrow-l:after, -.ui-alt-icon .ui-icon-arrow-l:after { - background-image: url("data:image/svg+xml;charset=US-ASCII,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22iso-8859-1%22%3F%3E%3C!DOCTYPE%20svg%20PUBLIC%20%22-%2F%2FW3C%2F%2FDTD%20SVG%201.1%2F%2FEN%22%20%22http%3A%2F%2Fwww.w3.org%2FGraphics%2FSVG%2F1.1%2FDTD%2Fsvg11.dtd%22%3E%3Csvg%20version%3D%221.1%22%20id%3D%22Layer_1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20x%3D%220px%22%20y%3D%220px%22%20%20width%3D%2214px%22%20height%3D%2214px%22%20viewBox%3D%220%200%2014%2014%22%20style%3D%22enable-background%3Anew%200%200%2014%2014%3B%22%20xml%3Aspace%3D%22preserve%22%3E%3Cpolygon%20points%3D%227%2C5%207%2C0%200%2C7%207%2C14%207%2C9%2014%2C9%2014%2C5%20%22%2F%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3C%2Fsvg%3E"); -} -.ui-alt-icon.ui-icon-arrow-r:after, -.ui-alt-icon .ui-icon-arrow-r:after { - background-image: url("data:image/svg+xml;charset=US-ASCII,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22iso-8859-1%22%3F%3E%3C!DOCTYPE%20svg%20PUBLIC%20%22-%2F%2FW3C%2F%2FDTD%20SVG%201.1%2F%2FEN%22%20%22http%3A%2F%2Fwww.w3.org%2FGraphics%2FSVG%2F1.1%2FDTD%2Fsvg11.dtd%22%3E%3Csvg%20version%3D%221.1%22%20id%3D%22Layer_1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20x%3D%220px%22%20y%3D%220px%22%20%20width%3D%2214px%22%20height%3D%2214px%22%20viewBox%3D%220%200%2014%2014%22%20style%3D%22enable-background%3Anew%200%200%2014%2014%3B%22%20xml%3Aspace%3D%22preserve%22%3E%3Cpolygon%20points%3D%2214%2C7%207%2C0%207%2C5%200%2C5%200%2C9%207%2C9%207%2C14%20%22%2F%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3C%2Fsvg%3E"); -} -.ui-alt-icon.ui-icon-arrow-u:after, -.ui-alt-icon .ui-icon-arrow-u:after { - background-image: url("data:image/svg+xml;charset=US-ASCII,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22iso-8859-1%22%3F%3E%3C!DOCTYPE%20svg%20PUBLIC%20%22-%2F%2FW3C%2F%2FDTD%20SVG%201.1%2F%2FEN%22%20%22http%3A%2F%2Fwww.w3.org%2FGraphics%2FSVG%2F1.1%2FDTD%2Fsvg11.dtd%22%3E%3Csvg%20version%3D%221.1%22%20id%3D%22Layer_1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20x%3D%220px%22%20y%3D%220px%22%20%20width%3D%2214px%22%20height%3D%2214px%22%20viewBox%3D%220%200%2014%2014%22%20style%3D%22enable-background%3Anew%200%200%2014%2014%3B%22%20xml%3Aspace%3D%22preserve%22%3E%3Cpolygon%20points%3D%227%2C0%200%2C7%205%2C7%205%2C14%209%2C14%209%2C7%2014%2C7%20%22%2F%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3C%2Fsvg%3E"); -} -.ui-alt-icon.ui-icon-arrow-u-l:after, -.ui-alt-icon .ui-icon-arrow-u-l:after { - background-image: url("data:image/svg+xml;charset=US-ASCII,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22iso-8859-1%22%3F%3E%3C!DOCTYPE%20svg%20PUBLIC%20%22-%2F%2FW3C%2F%2FDTD%20SVG%201.1%2F%2FEN%22%20%22http%3A%2F%2Fwww.w3.org%2FGraphics%2FSVG%2F1.1%2FDTD%2Fsvg11.dtd%22%3E%3Csvg%20version%3D%221.1%22%20id%3D%22Layer_1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20x%3D%220px%22%20y%3D%220px%22%20%20width%3D%2214px%22%20height%3D%2214px%22%20viewBox%3D%220%200%2014%2014%22%20style%3D%22enable-background%3Anew%200%200%2014%2014%3B%22%20xml%3Aspace%3D%22preserve%22%3E%3Cpolygon%20points%3D%2214%2C11%206.5%2C3.5%2010%2C0%200%2C0%200%2C10%203.5%2C6.5%2011%2C14%20%22%2F%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3C%2Fsvg%3E"); -} -.ui-alt-icon.ui-icon-arrow-u-r:after, -.ui-alt-icon .ui-icon-arrow-u-r:after { - background-image: url("data:image/svg+xml;charset=US-ASCII,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22iso-8859-1%22%3F%3E%3C!DOCTYPE%20svg%20PUBLIC%20%22-%2F%2FW3C%2F%2FDTD%20SVG%201.1%2F%2FEN%22%20%22http%3A%2F%2Fwww.w3.org%2FGraphics%2FSVG%2F1.1%2FDTD%2Fsvg11.dtd%22%3E%3Csvg%20version%3D%221.1%22%20id%3D%22Layer_1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20x%3D%220px%22%20y%3D%220px%22%20%20width%3D%2214px%22%20height%3D%2214px%22%20viewBox%3D%220%200%2014%2014%22%20style%3D%22enable-background%3Anew%200%200%2014%2014%3B%22%20xml%3Aspace%3D%22preserve%22%3E%3Cpolygon%20points%3D%2214%2C0%204%2C0%207.5%2C3.5%200%2C11%203%2C14%2010.5%2C6.5%2014%2C10%20%22%2F%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3C%2Fsvg%3E"); -} -.ui-alt-icon.ui-icon-audio:after, -.ui-alt-icon .ui-icon-audio:after { - background-image: url("data:image/svg+xml;charset=US-ASCII,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22iso-8859-1%22%3F%3E%3C!DOCTYPE%20svg%20PUBLIC%20%22-%2F%2FW3C%2F%2FDTD%20SVG%201.1%2F%2FEN%22%20%22http%3A%2F%2Fwww.w3.org%2FGraphics%2FSVG%2F1.1%2FDTD%2Fsvg11.dtd%22%3E%3Csvg%20version%3D%221.1%22%20id%3D%22Layer_1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20x%3D%220px%22%20y%3D%220px%22%20%20width%3D%2214.018px%22%20height%3D%2214px%22%20viewBox%3D%220%200%2014.018%2014%22%20style%3D%22enable-background%3Anew%200%200%2014.018%2014%3B%22%20xml%3Aspace%3D%22preserve%22%3E%3Cpath%20d%3D%22M1%2C4C0.447%2C4%2C0%2C4.447%2C0%2C5v4c0%2C0.553%2C0.447%2C1%2C1%2C1h1l4%2C4V0L2%2C4H1z%20M10.346%2C7c0-1.699-1.042-3.154-2.546-3.867L6.982%2C4.68%20C7.885%2C5.107%2C8.51%2C5.98%2C8.51%2C7S7.885%2C8.893%2C6.982%2C9.32L7.8%2C10.867C9.304%2C10.154%2C10.346%2C8.699%2C10.346%2C7z%20M9.447%2C0.017L8.618%2C1.586%20C10.723%2C2.584%2C12.182%2C4.621%2C12.182%2C7s-1.459%2C4.416-3.563%2C5.414l0.829%2C1.569c2.707-1.283%2C4.57-3.925%2C4.57-6.983%20S12.154%2C1.3%2C9.447%2C0.017z%22%2F%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3C%2Fsvg%3E"); -} -.ui-alt-icon.ui-icon-back:after, -.ui-alt-icon .ui-icon-back:after { - background-image: url("data:image/svg+xml;charset=US-ASCII,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22iso-8859-1%22%3F%3E%3C!DOCTYPE%20svg%20PUBLIC%20%22-%2F%2FW3C%2F%2FDTD%20SVG%201.1%2F%2FEN%22%20%22http%3A%2F%2Fwww.w3.org%2FGraphics%2FSVG%2F1.1%2FDTD%2Fsvg11.dtd%22%3E%3Csvg%20version%3D%221.1%22%20id%3D%22Layer_1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20x%3D%220px%22%20y%3D%220px%22%20%20width%3D%2214px%22%20height%3D%2214px%22%20viewBox%3D%220%200%2014%2014%22%20style%3D%22enable-background%3Anew%200%200%2014%2014%3B%22%20xml%3Aspace%3D%22preserve%22%3E%3Cpath%20d%3D%22M5%2C3V0L1%2C4l4%2C4V5c0%2C0%2C6%2C0%2C6%2C3s-5%2C4-5%2C4v2c0%2C0%2C7-1%2C7-6C13%2C4%2C8%2C3%2C5%2C3z%22%2F%3E%3C%2Fsvg%3E"); -} -.ui-alt-icon.ui-icon-bars:after, -.ui-alt-icon .ui-icon-bars:after { - background-image: url("data:image/svg+xml;charset=US-ASCII,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22iso-8859-1%22%3F%3E%3C!DOCTYPE%20svg%20PUBLIC%20%22-%2F%2FW3C%2F%2FDTD%20SVG%201.1%2F%2FEN%22%20%22http%3A%2F%2Fwww.w3.org%2FGraphics%2FSVG%2F1.1%2FDTD%2Fsvg11.dtd%22%3E%3Csvg%20version%3D%221.1%22%20id%3D%22Layer_1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20x%3D%220px%22%20y%3D%220px%22%20%20width%3D%2214px%22%20height%3D%2214px%22%20viewBox%3D%220%200%2014%2014%22%20style%3D%22enable-background%3Anew%200%200%2014%2014%3B%22%20xml%3Aspace%3D%22preserve%22%3E%3Cpath%20d%3D%22M1%2C4h12c0.553%2C0%2C1-0.447%2C1-1s-0.447-1-1-1H1C0.447%2C2%2C0%2C2.447%2C0%2C3S0.447%2C4%2C1%2C4z%20M13%2C6H1C0.447%2C6%2C0%2C6.447%2C0%2C7%20c0%2C0.553%2C0.447%2C1%2C1%2C1h12c0.553%2C0%2C1-0.447%2C1-1C14%2C6.447%2C13.553%2C6%2C13%2C6z%20M13%2C10H1c-0.553%2C0-1%2C0.447-1%2C1s0.447%2C1%2C1%2C1h12%20c0.553%2C0%2C1-0.447%2C1-1S13.553%2C10%2C13%2C10z%22%2F%3E%3C%2Fsvg%3E"); -} -.ui-alt-icon.ui-icon-bullets:after, -.ui-alt-icon .ui-icon-bullets:after { - background-image: url("data:image/svg+xml;charset=US-ASCII,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22iso-8859-1%22%3F%3E%3C!DOCTYPE%20svg%20PUBLIC%20%22-%2F%2FW3C%2F%2FDTD%20SVG%201.1%2F%2FEN%22%20%22http%3A%2F%2Fwww.w3.org%2FGraphics%2FSVG%2F1.1%2FDTD%2Fsvg11.dtd%22%3E%3Csvg%20version%3D%221.1%22%20id%3D%22Layer_1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20x%3D%220px%22%20y%3D%220px%22%20%20width%3D%2214px%22%20height%3D%2214px%22%20viewBox%3D%220%200%2014%2014%22%20style%3D%22enable-background%3Anew%200%200%2014%2014%3B%22%20xml%3Aspace%3D%22preserve%22%3E%3Cpath%20d%3D%22M5%2C4h8c0.553%2C0%2C1-0.447%2C1-1s-0.447-1-1-1H5C4.447%2C2%2C4%2C2.447%2C4%2C3S4.447%2C4%2C5%2C4z%20M13%2C6H5C4.447%2C6%2C4%2C6.447%2C4%2C7%20c0%2C0.553%2C0.447%2C1%2C1%2C1h8c0.553%2C0%2C1-0.447%2C1-1C14%2C6.447%2C13.553%2C6%2C13%2C6z%20M13%2C10H5c-0.553%2C0-1%2C0.447-1%2C1s0.447%2C1%2C1%2C1h8%20c0.553%2C0%2C1-0.447%2C1-1S13.553%2C10%2C13%2C10z%20M1%2C2C0.447%2C2%2C0%2C2.447%2C0%2C3s0.447%2C1%2C1%2C1s1-0.447%2C1-1S1.553%2C2%2C1%2C2z%20M1%2C6C0.447%2C6%2C0%2C6.447%2C0%2C7%20c0%2C0.553%2C0.447%2C1%2C1%2C1s1-0.447%2C1-1C2%2C6.447%2C1.553%2C6%2C1%2C6z%20M1%2C10c-0.553%2C0-1%2C0.447-1%2C1s0.447%2C1%2C1%2C1s1-0.447%2C1-1S1.553%2C10%2C1%2C10z%22%2F%3E%3C%2Fsvg%3E"); -} -.ui-alt-icon.ui-icon-calendar:after, -.ui-alt-icon .ui-icon-calendar:after { - background-image: url("data:image/svg+xml;charset=US-ASCII,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22iso-8859-1%22%3F%3E%3C!DOCTYPE%20svg%20PUBLIC%20%22-%2F%2FW3C%2F%2FDTD%20SVG%201.1%2F%2FEN%22%20%22http%3A%2F%2Fwww.w3.org%2FGraphics%2FSVG%2F1.1%2FDTD%2Fsvg11.dtd%22%3E%3Csvg%20version%3D%221.1%22%20id%3D%22Layer_1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20x%3D%220px%22%20y%3D%220px%22%20%20width%3D%2214px%22%20height%3D%2214px%22%20viewBox%3D%220%200%2014%2014%22%20style%3D%22enable-background%3Anew%200%200%2014%2014%3B%22%20xml%3Aspace%3D%22preserve%22%3E%3Cpath%20d%3D%22M0%2C8h2V6H0V8z%20M3%2C8h2V6H3V8z%20M6%2C8h2V6H6V8z%20M9%2C8h2V6H9V8z%20M12%2C8h2V6h-2V8z%20M0%2C11h2V9H0V11z%20M3%2C11h2V9H3V11z%20M6%2C11h2V9H6V11z%20%20M9%2C11h2V9H9V11z%20M12%2C11h2V9h-2V11z%20M0%2C14h2v-2H0V14z%20M3%2C14h2v-2H3V14z%20M6%2C14h2v-2H6V14z%20M9%2C14h2v-2H9V14z%20M12%2C1%20c0-0.553-0.447-1-1-1s-1%2C0.447-1%2C1H4c0-0.553-0.447-1-1-1S2%2C0.447%2C2%2C1H0v4h14V1H12z%22%2F%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3C%2Fsvg%3E"); -} -.ui-alt-icon.ui-icon-camera:after, -.ui-alt-icon .ui-icon-camera:after { - background-image: url("data:image/svg+xml;charset=US-ASCII,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22iso-8859-1%22%3F%3E%3C!DOCTYPE%20svg%20PUBLIC%20%22-%2F%2FW3C%2F%2FDTD%20SVG%201.1%2F%2FEN%22%20%22http%3A%2F%2Fwww.w3.org%2FGraphics%2FSVG%2F1.1%2FDTD%2Fsvg11.dtd%22%3E%3Csvg%20version%3D%221.1%22%20id%3D%22Layer_1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20x%3D%220px%22%20y%3D%220px%22%20%20width%3D%2214px%22%20height%3D%2214px%22%20viewBox%3D%220%200%2014%2014%22%20style%3D%22enable-background%3Anew%200%200%2014%2014%3B%22%20xml%3Aspace%3D%22preserve%22%3E%3Cpath%20d%3D%22M12%2C2.5H9.908c-0.206-0.581-0.756-1-1.408-1h-3c-0.652%2C0-1.202%2C0.419-1.408%2C1H2c-1.104%2C0-2%2C0.896-2%2C2v6c0%2C1.104%2C0.896%2C2%2C2%2C2%20h10c1.104%2C0%2C2-0.896%2C2-2v-6C14%2C3.396%2C13.104%2C2.5%2C12%2C2.5z%20M7%2C10.5c-1.657%2C0-3-1.344-3-3c0-1.657%2C1.343-3%2C3-3s3%2C1.343%2C3%2C3%20C10%2C9.156%2C8.657%2C10.5%2C7%2C10.5z%20M7%2C5.5c-1.104%2C0-2%2C0.896-2%2C2c0%2C1.104%2C0.896%2C2%2C2%2C2c1.104%2C0%2C2-0.896%2C2-2C9%2C6.396%2C8.104%2C5.5%2C7%2C5.5z%22%2F%3E%3C%2Fsvg%3E"); -} -.ui-alt-icon.ui-icon-carat-d:after, -.ui-alt-icon .ui-icon-carat-d:after { - background-image: url("data:image/svg+xml;charset=US-ASCII,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22iso-8859-1%22%3F%3E%3C!DOCTYPE%20svg%20PUBLIC%20%22-%2F%2FW3C%2F%2FDTD%20SVG%201.1%2F%2FEN%22%20%22http%3A%2F%2Fwww.w3.org%2FGraphics%2FSVG%2F1.1%2FDTD%2Fsvg11.dtd%22%3E%3Csvg%20version%3D%221.1%22%20id%3D%22Layer_1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20x%3D%220px%22%20y%3D%220px%22%20%20width%3D%2214px%22%20height%3D%2214px%22%20viewBox%3D%220%200%2014%2014%22%20style%3D%22enable-background%3Anew%200%200%2014%2014%3B%22%20xml%3Aspace%3D%22preserve%22%3E%3Cpolygon%20points%3D%2211.949%2C3.404%207%2C8.354%202.05%2C3.404%20-0.071%2C5.525%207%2C12.596%2014.07%2C5.525%20%22%2F%3E%3C%2Fsvg%3E"); -} -.ui-alt-icon.ui-icon-carat-l:after, -.ui-alt-icon .ui-icon-carat-l:after { - background-image: url("data:image/svg+xml;charset=US-ASCII,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22iso-8859-1%22%3F%3E%3C!DOCTYPE%20svg%20PUBLIC%20%22-%2F%2FW3C%2F%2FDTD%20SVG%201.1%2F%2FEN%22%20%22http%3A%2F%2Fwww.w3.org%2FGraphics%2FSVG%2F1.1%2FDTD%2Fsvg11.dtd%22%3E%3Csvg%20version%3D%221.1%22%20id%3D%22Layer_1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20x%3D%220px%22%20y%3D%220px%22%20%20width%3D%2214px%22%20height%3D%2214px%22%20viewBox%3D%220%200%2014%2014%22%20style%3D%22enable-background%3Anew%200%200%2014%2014%3B%22%20xml%3Aspace%3D%22preserve%22%3E%3Cpolygon%20points%3D%2210.596%2C11.949%205.646%2C7%2010.596%2C2.05%208.475%2C-0.071%201.404%2C7%208.475%2C14.07%20%22%2F%3E%3C%2Fsvg%3E"); -} -.ui-alt-icon.ui-icon-carat-r:after, -.ui-alt-icon .ui-icon-carat-r:after { - background-image: url("data:image/svg+xml;charset=US-ASCII,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22iso-8859-1%22%3F%3E%3C!DOCTYPE%20svg%20PUBLIC%20%22-%2F%2FW3C%2F%2FDTD%20SVG%201.1%2F%2FEN%22%20%22http%3A%2F%2Fwww.w3.org%2FGraphics%2FSVG%2F1.1%2FDTD%2Fsvg11.dtd%22%3E%3Csvg%20version%3D%221.1%22%20id%3D%22Layer_1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20x%3D%220px%22%20y%3D%220px%22%20%20width%3D%2214px%22%20height%3D%2214px%22%20viewBox%3D%220%200%2014%2014%22%20style%3D%22enable-background%3Anew%200%200%2014%2014%3B%22%20xml%3Aspace%3D%22preserve%22%3E%3Cpolygon%20points%3D%223.404%2C2.051%208.354%2C7%203.404%2C11.95%205.525%2C14.07%2012.596%2C7%205.525%2C-0.071%20%22%2F%3E%3C%2Fsvg%3E"); -} -.ui-alt-icon.ui-icon-carat-u:after, -.ui-alt-icon .ui-icon-carat-u:after { - background-image: url("data:image/svg+xml;charset=US-ASCII,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22iso-8859-1%22%3F%3E%3C!DOCTYPE%20svg%20PUBLIC%20%22-%2F%2FW3C%2F%2FDTD%20SVG%201.1%2F%2FEN%22%20%22http%3A%2F%2Fwww.w3.org%2FGraphics%2FSVG%2F1.1%2FDTD%2Fsvg11.dtd%22%3E%3Csvg%20version%3D%221.1%22%20id%3D%22Layer_1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20x%3D%220px%22%20y%3D%220px%22%20%20width%3D%2214px%22%20height%3D%2214px%22%20viewBox%3D%220%200%2014%2014%22%20style%3D%22enable-background%3Anew%200%200%2014%2014%3B%22%20xml%3Aspace%3D%22preserve%22%3E%3Cpolygon%20points%3D%222.051%2C10.596%207%2C5.646%2011.95%2C10.596%2014.07%2C8.475%207%2C1.404%20-0.071%2C8.475%20%22%2F%3E%3C%2Fsvg%3E"); -} -.ui-alt-icon.ui-icon-check:after, -.ui-alt-icon .ui-icon-check:after, -html .ui-alt-icon.ui-btn.ui-checkbox-on:after, -html .ui-alt-icon .ui-btn.ui-checkbox-on:after { - background-image: url("data:image/svg+xml;charset=US-ASCII,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22iso-8859-1%22%3F%3E%3C!DOCTYPE%20svg%20PUBLIC%20%22-%2F%2FW3C%2F%2FDTD%20SVG%201.1%2F%2FEN%22%20%22http%3A%2F%2Fwww.w3.org%2FGraphics%2FSVG%2F1.1%2FDTD%2Fsvg11.dtd%22%3E%3Csvg%20version%3D%221.1%22%20id%3D%22Layer_1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20x%3D%220px%22%20y%3D%220px%22%20%20width%3D%2214px%22%20height%3D%2214px%22%20viewBox%3D%220%200%2014%2014%22%20style%3D%22enable-background%3Anew%200%200%2014%2014%3B%22%20xml%3Aspace%3D%22preserve%22%3E%3Cpolygon%20points%3D%2214%2C4%2011%2C1%205.003%2C6.997%203%2C5%200%2C8%204.966%2C13%204.983%2C12.982%205%2C13%20%22%2F%3E%3C%2Fsvg%3E"); -} -.ui-alt-icon.ui-icon-clock:after, -.ui-alt-icon .ui-icon-clock:after { - background-image: url("data:image/svg+xml;charset=US-ASCII,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22iso-8859-1%22%3F%3E%3C!DOCTYPE%20svg%20PUBLIC%20%22-%2F%2FW3C%2F%2FDTD%20SVG%201.1%2F%2FEN%22%20%22http%3A%2F%2Fwww.w3.org%2FGraphics%2FSVG%2F1.1%2FDTD%2Fsvg11.dtd%22%3E%3Csvg%20version%3D%221.1%22%20id%3D%22Layer_1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20x%3D%220px%22%20y%3D%220px%22%20%20width%3D%2214px%22%20height%3D%2214px%22%20viewBox%3D%220%200%2014%2014%22%20style%3D%22enable-background%3Anew%200%200%2014%2014%3B%22%20xml%3Aspace%3D%22preserve%22%3E%3Cpath%20d%3D%22M7%2C0C3.134%2C0%2C0%2C3.134%2C0%2C7s3.134%2C7%2C7%2C7s7-3.134%2C7-7S10.866%2C0%2C7%2C0z%20M7%2C12c-2.762%2C0-5-2.238-5-5s2.238-5%2C5-5s5%2C2.238%2C5%2C5%20S9.762%2C12%2C7%2C12z%20M9%2C6H8V4c0-0.553-0.447-1-1-1S6%2C3.447%2C6%2C4v3c0%2C0.553%2C0.447%2C1%2C1%2C1h2c0.553%2C0%2C1-0.447%2C1-1S9.553%2C6%2C9%2C6z%22%2F%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3C%2Fsvg%3E"); -} -.ui-alt-icon.ui-icon-cloud:after, -.ui-alt-icon .ui-icon-cloud:after { - background-image: url("data:image/svg+xml;charset=US-ASCII,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22iso-8859-1%22%3F%3E%3C!DOCTYPE%20svg%20PUBLIC%20%22-%2F%2FW3C%2F%2FDTD%20SVG%201.1%2F%2FEN%22%20%22http%3A%2F%2Fwww.w3.org%2FGraphics%2FSVG%2F1.1%2FDTD%2Fsvg11.dtd%22%3E%3Csvg%20version%3D%221.1%22%20id%3D%22Layer_1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20x%3D%220px%22%20y%3D%220px%22%20%20width%3D%2214px%22%20height%3D%2214px%22%20viewBox%3D%220%200%2014%2014%22%20style%3D%22enable-background%3Anew%200%200%2014%2014%3B%22%20xml%3Aspace%3D%22preserve%22%3E%3Cpath%20d%3D%22M14%2C9.5c0-0.793-0.465-1.473-1.134-1.795C12.949%2C7.484%2C13%2C7.249%2C13%2C7c0-1.104-0.896-2-2-2c-0.158%2C0-0.311%2C0.023-0.457%2C0.058%20C9.816%2C3.549%2C8.286%2C2.5%2C6.5%2C2.5c-2.33%2C0-4.224%2C1.777-4.454%2C4.046C0.883%2C6.76%2C0%2C7.773%2C0%2C9c0%2C1.381%2C1.119%2C2.5%2C2.5%2C2.5h10v-0.07%20C13.361%2C11.206%2C14%2C10.432%2C14%2C9.5z%22%2F%3E%3C%2Fsvg%3E"); -} -.ui-alt-icon.ui-icon-comment:after, -.ui-alt-icon .ui-icon-comment:after { - background-image: url("data:image/svg+xml;charset=US-ASCII,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22iso-8859-1%22%3F%3E%3C!DOCTYPE%20svg%20PUBLIC%20%22-%2F%2FW3C%2F%2FDTD%20SVG%201.1%2F%2FEN%22%20%22http%3A%2F%2Fwww.w3.org%2FGraphics%2FSVG%2F1.1%2FDTD%2Fsvg11.dtd%22%3E%3Csvg%20version%3D%221.1%22%20id%3D%22Layer_1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20x%3D%220px%22%20y%3D%220px%22%20%20width%3D%2214px%22%20height%3D%2214px%22%20viewBox%3D%220%200%2014%2014%22%20style%3D%22enable-background%3Anew%200%200%2014%2014%3B%22%20xml%3Aspace%3D%22preserve%22%3E%3Cpath%20d%3D%22M12%2C0H2C0.896%2C0%2C0%2C0.896%2C0%2C2v7c0%2C1.104%2C0.896%2C2%2C2%2C2h1v3l3-3h6c1.104%2C0%2C2-0.896%2C2-2V2C14%2C0.896%2C13.104%2C0%2C12%2C0z%22%2F%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3C%2Fsvg%3E"); -} -.ui-alt-icon.ui-icon-delete:after, -.ui-alt-icon .ui-icon-delete:after { - background-image: url("data:image/svg+xml;charset=US-ASCII,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22iso-8859-1%22%3F%3E%3C!DOCTYPE%20svg%20PUBLIC%20%22-%2F%2FW3C%2F%2FDTD%20SVG%201.1%2F%2FEN%22%20%22http%3A%2F%2Fwww.w3.org%2FGraphics%2FSVG%2F1.1%2FDTD%2Fsvg11.dtd%22%3E%3Csvg%20version%3D%221.1%22%20id%3D%22Layer_1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20x%3D%220px%22%20y%3D%220px%22%20%20width%3D%2214px%22%20height%3D%2214px%22%20viewBox%3D%220%200%2014%2014%22%20style%3D%22enable-background%3Anew%200%200%2014%2014%3B%22%20xml%3Aspace%3D%22preserve%22%3E%3Cpolygon%20points%3D%2214%2C3%2011%2C0%207%2C4%203%2C0%200%2C3%204%2C7%200%2C11%203%2C14%207%2C10%2011%2C14%2014%2C11%2010%2C7%20%22%2F%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3C%2Fsvg%3E"); -} -.ui-alt-icon.ui-icon-edit:after, -.ui-alt-icon .ui-icon-edit:after { - background-image: url("data:image/svg+xml;charset=US-ASCII,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22iso-8859-1%22%3F%3E%3C!DOCTYPE%20svg%20PUBLIC%20%22-%2F%2FW3C%2F%2FDTD%20SVG%201.1%2F%2FEN%22%20%22http%3A%2F%2Fwww.w3.org%2FGraphics%2FSVG%2F1.1%2FDTD%2Fsvg11.dtd%22%3E%3Csvg%20version%3D%221.1%22%20id%3D%22Layer_1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20x%3D%220px%22%20y%3D%220px%22%20%20width%3D%2214px%22%20height%3D%2214px%22%20viewBox%3D%220%200%2014%2014%22%20style%3D%22enable-background%3Anew%200%200%2014%2014%3B%22%20xml%3Aspace%3D%22preserve%22%3E%3Cpath%20d%3D%22M1%2C10l-1%2C4l4-1l7-7L8%2C3L1%2C10z%20M11%2C0L9%2C2l3%2C3l2-2L11%2C0z%22%2F%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3C%2Fsvg%3E"); -} -.ui-alt-icon.ui-icon-eye:after, -.ui-alt-icon .ui-icon-eye:after { - background-image: url("data:image/svg+xml;charset=US-ASCII,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22iso-8859-1%22%3F%3E%3C!DOCTYPE%20svg%20PUBLIC%20%22-%2F%2FW3C%2F%2FDTD%20SVG%201.1%2F%2FEN%22%20%22http%3A%2F%2Fwww.w3.org%2FGraphics%2FSVG%2F1.1%2FDTD%2Fsvg11.dtd%22%3E%3Csvg%20version%3D%221.1%22%20id%3D%22Layer_1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20x%3D%220px%22%20y%3D%220px%22%20%20width%3D%2214px%22%20height%3D%2214px%22%20viewBox%3D%220%200%2014%2014%22%20style%3D%22enable-background%3Anew%200%200%2014%2014%3B%22%20xml%3Aspace%3D%22preserve%22%3E%3Cpath%20d%3D%22M7%2C2C3%2C2%2C0%2C7%2C0%2C7s3%2C5%2C7%2C5s7-5%2C7-5S11%2C2%2C7%2C2z%20M7%2C10c-1.657%2C0-3-1.344-3-3c0-1.657%2C1.343-3%2C3-3s3%2C1.343%2C3%2C3%20C10%2C8.656%2C8.657%2C10%2C7%2C10z%20M7%2C6C6.448%2C6%2C6%2C6.447%2C6%2C7c0%2C0.553%2C0.448%2C1%2C1%2C1s1-0.447%2C1-1C8%2C6.447%2C7.552%2C6%2C7%2C6z%22%2F%3E%3C%2Fsvg%3E"); -} -.ui-alt-icon.ui-icon-forbidden:after, -.ui-alt-icon .ui-icon-forbidden:after { - background-image: url("data:image/svg+xml;charset=US-ASCII,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22iso-8859-1%22%3F%3E%3C!DOCTYPE%20svg%20PUBLIC%20%22-%2F%2FW3C%2F%2FDTD%20SVG%201.1%2F%2FEN%22%20%22http%3A%2F%2Fwww.w3.org%2FGraphics%2FSVG%2F1.1%2FDTD%2Fsvg11.dtd%22%3E%3Csvg%20version%3D%221.1%22%20id%3D%22Layer_1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20x%3D%220px%22%20y%3D%220px%22%20%20width%3D%2214px%22%20height%3D%2214px%22%20viewBox%3D%220%200%2014%2014%22%20style%3D%22enable-background%3Anew%200%200%2014%2014%3B%22%20xml%3Aspace%3D%22preserve%22%3E%3Cpath%20d%3D%22M12.601%2C11.187C13.476%2C10.018%2C14%2C8.572%2C14%2C7c0-3.866-3.134-7-7-7C5.428%2C0%2C3.982%2C0.524%2C2.813%2C1.399L2.757%2C1.343L2.053%2C2.048%20L2.048%2C2.053L1.343%2C2.758l0.056%2C0.056C0.524%2C3.982%2C0%2C5.428%2C0%2C7c0%2C3.866%2C3.134%2C7%2C7%2C7c1.572%2C0%2C3.018-0.524%2C4.187-1.399l0.056%2C0.057%20l0.705-0.705l0.005-0.005l0.705-0.705L12.601%2C11.187z%20M7%2C2c2.761%2C0%2C5%2C2.238%2C5%2C5c0%2C1.019-0.308%2C1.964-0.832%2C2.754L4.246%2C2.832%20C5.036%2C2.308%2C5.981%2C2%2C7%2C2z%20M7%2C12c-2.761%2C0-5-2.238-5-5c0-1.019%2C0.308-1.964%2C0.832-2.754l6.922%2C6.922C8.964%2C11.692%2C8.019%2C12%2C7%2C12z%22%2F%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3C%2Fsvg%3E"); -} -.ui-alt-icon.ui-icon-forward:after, -.ui-alt-icon .ui-icon-forward:after { - background-image: url("data:image/svg+xml;charset=US-ASCII,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22iso-8859-1%22%3F%3E%3C!DOCTYPE%20svg%20PUBLIC%20%22-%2F%2FW3C%2F%2FDTD%20SVG%201.1%2F%2FEN%22%20%22http%3A%2F%2Fwww.w3.org%2FGraphics%2FSVG%2F1.1%2FDTD%2Fsvg11.dtd%22%3E%3Csvg%20version%3D%221.1%22%20id%3D%22Layer_1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20x%3D%220px%22%20y%3D%220px%22%20%20width%3D%2214px%22%20height%3D%2214px%22%20viewBox%3D%220%200%2014%2014%22%20style%3D%22enable-background%3Anew%200%200%2014%2014%3B%22%20xml%3Aspace%3D%22preserve%22%3E%3Cpath%20d%3D%22M13%2C4L9%2C0v3C6%2C3%2C1%2C4%2C1%2C8c0%2C5%2C7%2C6%2C7%2C6v-2c0%2C0-5-1-5-4s6-3%2C6-3v3L13%2C4z%22%2F%3E%3C%2Fsvg%3E"); -} -.ui-alt-icon.ui-icon-gear:after, -.ui-alt-icon .ui-icon-gear:after { - background-image: url("data:image/svg+xml;charset=US-ASCII,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22iso-8859-1%22%3F%3E%3C!DOCTYPE%20svg%20PUBLIC%20%22-%2F%2FW3C%2F%2FDTD%20SVG%201.1%2F%2FEN%22%20%22http%3A%2F%2Fwww.w3.org%2FGraphics%2FSVG%2F1.1%2FDTD%2Fsvg11.dtd%22%3E%3Csvg%20version%3D%221.1%22%20id%3D%22Layer_1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20x%3D%220px%22%20y%3D%220px%22%20%20width%3D%2214px%22%20height%3D%2214px%22%20viewBox%3D%220%200%2014%2014%22%20style%3D%22enable-background%3Anew%200%200%2014%2014%3B%22%20xml%3Aspace%3D%22preserve%22%3E%3Cpath%20d%3D%22M13.621%2C5.904l-1.036-0.259c-0.168-0.042-0.303-0.168-0.355-0.332c-0.092-0.284-0.205-0.559-0.339-0.82%20c-0.079-0.153-0.073-0.337%2C0.017-0.486l0.549-0.915c0.118-0.196%2C0.088-0.448-0.075-0.61l-0.862-0.863%20c-0.162-0.163-0.414-0.193-0.611-0.075l-0.916%2C0.55C9.844%2C2.182%2C9.659%2C2.188%2C9.506%2C2.109C9.244%2C1.975%2C8.97%2C1.861%2C8.686%2C1.77%20c-0.165-0.052-0.29-0.187-0.332-0.354L8.095%2C0.379C8.039%2C0.156%2C7.839%2C0%2C7.609%2C0H6.391c-0.229%2C0-0.43%2C0.156-0.485%2C0.379L5.646%2C1.415%20C5.604%2C1.582%2C5.479%2C1.718%2C5.313%2C1.77c-0.284%2C0.092-0.559%2C0.206-0.82%2C0.34C4.339%2C2.188%2C4.155%2C2.182%2C4.007%2C2.093L3.092%2C1.544%20c-0.196-0.118-0.448-0.087-0.61%2C0.075L1.619%2C2.481C1.457%2C2.644%2C1.426%2C2.896%2C1.544%2C3.093l0.549%2C0.914%20c0.089%2C0.148%2C0.095%2C0.332%2C0.017%2C0.486C1.975%2C4.755%2C1.861%2C5.029%2C1.77%2C5.314c-0.053%2C0.164-0.188%2C0.29-0.354%2C0.332L0.379%2C5.905%20C0.156%2C5.961%2C0%2C6.161%2C0%2C6.391v1.219c0%2C0.229%2C0.156%2C0.43%2C0.379%2C0.485l1.036%2C0.26C1.582%2C8.396%2C1.717%2C8.521%2C1.77%2C8.687%20c0.092%2C0.284%2C0.205%2C0.559%2C0.34%2C0.82C2.188%2C9.66%2C2.182%2C9.844%2C2.093%2C9.993l-0.549%2C0.915c-0.118%2C0.195-0.087%2C0.448%2C0.075%2C0.61%20l0.862%2C0.862c0.162%2C0.163%2C0.414%2C0.193%2C0.61%2C0.075l0.915-0.549c0.148-0.089%2C0.332-0.095%2C0.486-0.017%20c0.262%2C0.135%2C0.536%2C0.248%2C0.82%2C0.34c0.165%2C0.053%2C0.291%2C0.187%2C0.332%2C0.354l0.259%2C1.036C5.96%2C13.844%2C6.16%2C14%2C6.39%2C14h1.22%20c0.229%2C0%2C0.43-0.156%2C0.485-0.379l0.259-1.036c0.042-0.167%2C0.168-0.302%2C0.333-0.354c0.284-0.092%2C0.559-0.205%2C0.82-0.34%20c0.154-0.078%2C0.338-0.072%2C0.486%2C0.017l0.914%2C0.549c0.197%2C0.118%2C0.449%2C0.088%2C0.611-0.074l0.862-0.863%20c0.163-0.162%2C0.193-0.415%2C0.075-0.611l-0.549-0.915c-0.089-0.148-0.096-0.332-0.017-0.485c0.134-0.263%2C0.248-0.536%2C0.339-0.82%20c0.053-0.165%2C0.188-0.291%2C0.355-0.333l1.036-0.259C13.844%2C8.039%2C14%2C7.839%2C14%2C7.609V6.39C14%2C6.16%2C13.844%2C5.96%2C13.621%2C5.904z%20M7%2C10%20c-1.657%2C0-3-1.343-3-3s1.343-3%2C3-3s3%2C1.343%2C3%2C3S8.657%2C10%2C7%2C10z%22%2F%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3C%2Fsvg%3E"); -} -.ui-alt-icon.ui-icon-grid:after, -.ui-alt-icon .ui-icon-grid:after { - background-image: url("data:image/svg+xml;charset=US-ASCII,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22iso-8859-1%22%3F%3E%3C!DOCTYPE%20svg%20PUBLIC%20%22-%2F%2FW3C%2F%2FDTD%20SVG%201.1%2F%2FEN%22%20%22http%3A%2F%2Fwww.w3.org%2FGraphics%2FSVG%2F1.1%2FDTD%2Fsvg11.dtd%22%3E%3Csvg%20version%3D%221.1%22%20id%3D%22Layer_1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20x%3D%220px%22%20y%3D%220px%22%20%20width%3D%2214px%22%20height%3D%2214px%22%20viewBox%3D%220%200%2014%2014%22%20style%3D%22enable-background%3Anew%200%200%2014%2014%3B%22%20xml%3Aspace%3D%22preserve%22%3E%3Cpath%20d%3D%22M3%2C0H1C0.447%2C0%2C0%2C0.447%2C0%2C1v2c0%2C0.553%2C0.447%2C1%2C1%2C1h2c0.553%2C0%2C1-0.447%2C1-1V1C4%2C0.447%2C3.553%2C0%2C3%2C0z%20M8%2C0H6%20C5.447%2C0%2C5%2C0.447%2C5%2C1v2c0%2C0.553%2C0.447%2C1%2C1%2C1h2c0.553%2C0%2C1-0.447%2C1-1V1C9%2C0.447%2C8.553%2C0%2C8%2C0z%20M13%2C0h-2c-0.553%2C0-1%2C0.447-1%2C1v2%20c0%2C0.553%2C0.447%2C1%2C1%2C1h2c0.553%2C0%2C1-0.447%2C1-1V1C14%2C0.447%2C13.553%2C0%2C13%2C0z%20M3%2C5H1C0.447%2C5%2C0%2C5.447%2C0%2C6v2c0%2C0.553%2C0.447%2C1%2C1%2C1h2%20c0.553%2C0%2C1-0.447%2C1-1V6C4%2C5.447%2C3.553%2C5%2C3%2C5z%20M8%2C5H6C5.447%2C5%2C5%2C5.447%2C5%2C6v2c0%2C0.553%2C0.447%2C1%2C1%2C1h2c0.553%2C0%2C1-0.447%2C1-1V6%20C9%2C5.447%2C8.553%2C5%2C8%2C5z%20M13%2C5h-2c-0.553%2C0-1%2C0.447-1%2C1v2c0%2C0.553%2C0.447%2C1%2C1%2C1h2c0.553%2C0%2C1-0.447%2C1-1V6C14%2C5.447%2C13.553%2C5%2C13%2C5z%20M3%2C10%20H1c-0.553%2C0-1%2C0.447-1%2C1v2c0%2C0.553%2C0.447%2C1%2C1%2C1h2c0.553%2C0%2C1-0.447%2C1-1v-2C4%2C10.447%2C3.553%2C10%2C3%2C10z%20M8%2C10H6c-0.553%2C0-1%2C0.447-1%2C1v2%20c0%2C0.553%2C0.447%2C1%2C1%2C1h2c0.553%2C0%2C1-0.447%2C1-1v-2C9%2C10.447%2C8.553%2C10%2C8%2C10z%20M13%2C10h-2c-0.553%2C0-1%2C0.447-1%2C1v2c0%2C0.553%2C0.447%2C1%2C1%2C1h2%20c0.553%2C0%2C1-0.447%2C1-1v-2C14%2C10.447%2C13.553%2C10%2C13%2C10z%22%2F%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3C%2Fsvg%3E"); -} -.ui-alt-icon.ui-icon-heart:after, -.ui-alt-icon .ui-icon-heart:after { - background-image: url("data:image/svg+xml;charset=US-ASCII,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22iso-8859-1%22%3F%3E%3C!DOCTYPE%20svg%20PUBLIC%20%22-%2F%2FW3C%2F%2FDTD%20SVG%201.1%2F%2FEN%22%20%22http%3A%2F%2Fwww.w3.org%2FGraphics%2FSVG%2F1.1%2FDTD%2Fsvg11.dtd%22%3E%3Csvg%20version%3D%221.1%22%20id%3D%22Layer_1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20x%3D%220px%22%20y%3D%220px%22%20%20width%3D%2214px%22%20height%3D%2214px%22%20viewBox%3D%220%200%2014%2014%22%20style%3D%22enable-background%3Anew%200%200%2014%2014%3B%22%20xml%3Aspace%3D%22preserve%22%3E%3Cpath%20d%3D%22M7%2C1.958c-2-3-7-2.128-7%2C1.872c0%2C3%2C4%2C7%2C4%2C7s2.417%2C2.48%2C3%2C3c0.583-0.52%2C3-3%2C3-3s4-4%2C4-7C14-0.169%2C9-1.042%2C7%2C1.958z%22%2F%3E%3C%2Fsvg%3E"); -} -.ui-alt-icon.ui-icon-home:after, -.ui-alt-icon .ui-icon-home:after { - background-image: url("data:image/svg+xml;charset=US-ASCII,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22iso-8859-1%22%3F%3E%3C!DOCTYPE%20svg%20PUBLIC%20%22-%2F%2FW3C%2F%2FDTD%20SVG%201.1%2F%2FEN%22%20%22http%3A%2F%2Fwww.w3.org%2FGraphics%2FSVG%2F1.1%2FDTD%2Fsvg11.dtd%22%3E%3Csvg%20version%3D%221.1%22%20id%3D%22Layer_1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20x%3D%220px%22%20y%3D%220px%22%20%20width%3D%2214px%22%20height%3D%2214px%22%20viewBox%3D%220%200%2014%2014%22%20style%3D%22enable-background%3Anew%200%200%2014%2014%3B%22%20xml%3Aspace%3D%22preserve%22%3E%3Cpolygon%20points%3D%227%2C0%200%2C7%202%2C7%202%2C14%205%2C14%205%2C9%209%2C9%209%2C14%2012%2C14%2012%2C7%2014%2C7%20%22%2F%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3C%2Fsvg%3E"); -} -.ui-alt-icon.ui-icon-info:after, -.ui-alt-icon .ui-icon-info:after { - background-image: url("data:image/svg+xml;charset=US-ASCII,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22iso-8859-1%22%3F%3E%3C!DOCTYPE%20svg%20PUBLIC%20%22-%2F%2FW3C%2F%2FDTD%20SVG%201.1%2F%2FEN%22%20%22http%3A%2F%2Fwww.w3.org%2FGraphics%2FSVG%2F1.1%2FDTD%2Fsvg11.dtd%22%3E%3Csvg%20version%3D%221.1%22%20id%3D%22Layer_1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20x%3D%220px%22%20y%3D%220px%22%20%20width%3D%2214px%22%20height%3D%2214px%22%20viewBox%3D%220%200%2014%2014%22%20style%3D%22enable-background%3Anew%200%200%2014%2014%3B%22%20xml%3Aspace%3D%22preserve%22%3E%3Cpath%20d%3D%22M7%2C0C3.134%2C0%2C0%2C3.134%2C0%2C7s3.134%2C7%2C7%2C7s7-3.134%2C7-7S10.866%2C0%2C7%2C0z%20M7%2C2c0.552%2C0%2C1%2C0.447%2C1%2C1S7.552%2C4%2C7%2C4S6%2C3.553%2C6%2C3%20S6.448%2C2%2C7%2C2z%20M9%2C11H5v-1h1V6H5V5h3v5h1V11z%22%2F%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3C%2Fsvg%3E"); -} -.ui-alt-icon.ui-icon-location:after, -.ui-alt-icon .ui-icon-location:after { - background-image: url("data:image/svg+xml;charset=US-ASCII,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22iso-8859-1%22%3F%3E%3C!DOCTYPE%20svg%20PUBLIC%20%22-%2F%2FW3C%2F%2FDTD%20SVG%201.1%2F%2FEN%22%20%22http%3A%2F%2Fwww.w3.org%2FGraphics%2FSVG%2F1.1%2FDTD%2Fsvg11.dtd%22%3E%3Csvg%20version%3D%221.1%22%20id%3D%22Layer_1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20x%3D%220px%22%20y%3D%220px%22%20%20width%3D%2214px%22%20height%3D%2214px%22%20viewBox%3D%220%200%2014%2014%22%20style%3D%22enable-background%3Anew%200%200%2014%2014%3B%22%20xml%3Aspace%3D%22preserve%22%3E%3Cpath%20d%3D%22M7%2C0C4.791%2C0%2C3%2C1.791%2C3%2C4c0%2C2%2C4%2C10%2C4%2C10s4-8%2C4-10C11%2C1.791%2C9.209%2C0%2C7%2C0z%20M7%2C6C5.896%2C6%2C5%2C5.104%2C5%2C4s0.896-2%2C2-2%20c1.104%2C0%2C2%2C0.896%2C2%2C2S8.104%2C6%2C7%2C6z%22%2F%3E%3C%2Fsvg%3E"); -} -.ui-alt-icon.ui-icon-lock:after, -.ui-alt-icon .ui-icon-lock:after { - background-image: url("data:image/svg+xml;charset=US-ASCII,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22iso-8859-1%22%3F%3E%3C!DOCTYPE%20svg%20PUBLIC%20%22-%2F%2FW3C%2F%2FDTD%20SVG%201.1%2F%2FEN%22%20%22http%3A%2F%2Fwww.w3.org%2FGraphics%2FSVG%2F1.1%2FDTD%2Fsvg11.dtd%22%3E%3Csvg%20version%3D%221.1%22%20id%3D%22Layer_1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20x%3D%220px%22%20y%3D%220px%22%20%20width%3D%2214px%22%20height%3D%2214px%22%20viewBox%3D%220%200%2014%2014%22%20style%3D%22enable-background%3Anew%200%200%2014%2014%3B%22%20xml%3Aspace%3D%22preserve%22%3E%3Cpath%20d%3D%22M12%2C6V5c0-2.762-2.238-5-5-5C4.239%2C0%2C2%2C2.238%2C2%2C5v1H1v8h12V6H12z%20M7.5%2C9.848V12h-1V9.848C6.207%2C9.673%2C6%2C9.366%2C6%2C9%20c0-0.553%2C0.448-1%2C1-1s1%2C0.447%2C1%2C1C8%2C9.366%2C7.793%2C9.673%2C7.5%2C9.848z%20M10%2C6H4V5c0-1.657%2C1.343-3%2C3-3s3%2C1.343%2C3%2C3V6z%22%2F%3E%3C%2Fsvg%3E"); -} -.ui-alt-icon.ui-icon-mail:after, -.ui-alt-icon .ui-icon-mail:after { - background-image: url("data:image/svg+xml;charset=US-ASCII,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22iso-8859-1%22%3F%3E%3C!DOCTYPE%20svg%20PUBLIC%20%22-%2F%2FW3C%2F%2FDTD%20SVG%201.1%2F%2FEN%22%20%22http%3A%2F%2Fwww.w3.org%2FGraphics%2FSVG%2F1.1%2FDTD%2Fsvg11.dtd%22%3E%3Csvg%20version%3D%221.1%22%20id%3D%22Layer_1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20x%3D%220px%22%20y%3D%220px%22%20%20width%3D%2214px%22%20height%3D%2214px%22%20viewBox%3D%220%200%2014%2014%22%20style%3D%22enable-background%3Anew%200%200%2014%2014%3B%22%20xml%3Aspace%3D%22preserve%22%3E%3Cpath%20d%3D%22M0%2C3.75V12h14V3.75L7%2C9L0%2C3.75z%20M14%2C2H0l7%2C5L14%2C2z%22%2F%3E%3C%2Fsvg%3E"); -} -.ui-alt-icon.ui-icon-minus:after, -.ui-alt-icon .ui-icon-minus:after { - background-image: url("data:image/svg+xml;charset=US-ASCII,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22iso-8859-1%22%3F%3E%3C!DOCTYPE%20svg%20PUBLIC%20%22-%2F%2FW3C%2F%2FDTD%20SVG%201.1%2F%2FEN%22%20%22http%3A%2F%2Fwww.w3.org%2FGraphics%2FSVG%2F1.1%2FDTD%2Fsvg11.dtd%22%3E%3Csvg%20version%3D%221.1%22%20id%3D%22Layer_1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20x%3D%220px%22%20y%3D%220px%22%20%20width%3D%2214px%22%20height%3D%2214px%22%20viewBox%3D%220%200%2014%2014%22%20style%3D%22enable-background%3Anew%200%200%2014%2014%3B%22%20xml%3Aspace%3D%22preserve%22%3E%3Crect%20y%3D%225%22%20width%3D%2214%22%20height%3D%224%22%2F%3E%3C%2Fsvg%3E"); -} -.ui-alt-icon.ui-icon-navigation:after, -.ui-alt-icon .ui-icon-navigation:after { - background-image: url("data:image/svg+xml;charset=US-ASCII,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22iso-8859-1%22%3F%3E%3C!DOCTYPE%20svg%20PUBLIC%20%22-%2F%2FW3C%2F%2FDTD%20SVG%201.1%2F%2FEN%22%20%22http%3A%2F%2Fwww.w3.org%2FGraphics%2FSVG%2F1.1%2FDTD%2Fsvg11.dtd%22%3E%3Csvg%20version%3D%221.1%22%20id%3D%22Layer_1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20x%3D%220px%22%20y%3D%220px%22%20%20width%3D%2214px%22%20height%3D%2214px%22%20viewBox%3D%220%200%2014%2014%22%20style%3D%22enable-background%3Anew%200%200%2014%2014%3B%22%20xml%3Aspace%3D%22preserve%22%3E%3Cpolygon%20points%3D%2213%2C1%200%2C6%207%2C7%208%2C14%20%22%2F%3E%3C%2Fsvg%3E"); -} -.ui-alt-icon.ui-icon-phone:after, -.ui-alt-icon .ui-icon-phone:after { - background-image: url("data:image/svg+xml;charset=US-ASCII,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22iso-8859-1%22%3F%3E%3C!DOCTYPE%20svg%20PUBLIC%20%22-%2F%2FW3C%2F%2FDTD%20SVG%201.1%2F%2FEN%22%20%22http%3A%2F%2Fwww.w3.org%2FGraphics%2FSVG%2F1.1%2FDTD%2Fsvg11.dtd%22%3E%3Csvg%20version%3D%221.1%22%20id%3D%22Layer_1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20x%3D%220px%22%20y%3D%220px%22%20%20width%3D%2214px%22%20height%3D%2214px%22%20viewBox%3D%220%200%2014%2014%22%20style%3D%22enable-background%3Anew%200%200%2014%2014%3B%22%20xml%3Aspace%3D%22preserve%22%3E%3Cpath%20d%3D%22M6.949%2C9.182C6.175%2C8.549%2C5.281%2C7.697%2C4.507%2C6.736C3.963%2C6.063%2C3.483%2C5.355%2C3.979%2C4.858l-3.482-3.48%20c-0.508%2C0.634-1.633%2C3.654%2C3.188%2C8.598c5.08%2C5.211%2C8.356%2C4.097%2C8.92%2C3.511l-3.396-3.399C8.734%2C10.561%2C8.123%2C10.139%2C6.949%2C9.182z%20%20M13.83%2C11.512v-0.004c0%2C0-2.648-2.646-2.649-2.647c-0.21-0.212-0.546-0.205-0.754%2C0.002L9.465%2C9.823l3.402%2C3.407%20c0%2C0%2C0.963-0.961%2C0.961-0.961l0.002-0.002C14.053%2C12.049%2C14.031%2C11.713%2C13.83%2C11.512z%20M5.202%2C3.636V3.634%20c0.222-0.222%2C0.2-0.557%2C0-0.758V2.873c0%2C0-2.726-2.725-2.727-2.726c-0.21-0.21-0.545-0.205-0.753%2C0.001L0.761%2C1.113L4.24%2C4.595%20C4.241%2C4.596%2C5.202%2C3.637%2C5.202%2C3.636z%22%2F%3E%3C%2Fsvg%3E"); -} -.ui-alt-icon.ui-icon-plus:after, -.ui-alt-icon .ui-icon-plus:after { - background-image: url("data:image/svg+xml;charset=US-ASCII,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22iso-8859-1%22%3F%3E%3C!DOCTYPE%20svg%20PUBLIC%20%22-%2F%2FW3C%2F%2FDTD%20SVG%201.1%2F%2FEN%22%20%22http%3A%2F%2Fwww.w3.org%2FGraphics%2FSVG%2F1.1%2FDTD%2Fsvg11.dtd%22%3E%3Csvg%20version%3D%221.1%22%20id%3D%22Layer_1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20x%3D%220px%22%20y%3D%220px%22%20%20width%3D%2214px%22%20height%3D%2214px%22%20viewBox%3D%220%200%2014%2014%22%20style%3D%22enable-background%3Anew%200%200%2014%2014%3B%22%20xml%3Aspace%3D%22preserve%22%3E%3Cpolygon%20points%3D%2214%2C5%209%2C5%209%2C0%205%2C0%205%2C5%200%2C5%200%2C9%205%2C9%205%2C14%209%2C14%209%2C9%2014%2C9%20%22%2F%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3C%2Fsvg%3E"); -} -.ui-alt-icon.ui-icon-power:after, -.ui-alt-icon .ui-icon-power:after { - background-image: url("data:image/svg+xml;charset=US-ASCII,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22iso-8859-1%22%3F%3E%3C!DOCTYPE%20svg%20PUBLIC%20%22-%2F%2FW3C%2F%2FDTD%20SVG%201.1%2F%2FEN%22%20%22http%3A%2F%2Fwww.w3.org%2FGraphics%2FSVG%2F1.1%2FDTD%2Fsvg11.dtd%22%3E%3Csvg%20version%3D%221.1%22%20id%3D%22Layer_1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20x%3D%220px%22%20y%3D%220px%22%20%20width%3D%2214px%22%20height%3D%2214px%22%20viewBox%3D%220%200%2014%2014%22%20style%3D%22enable-background%3Anew%200%200%2014%2014%3B%22%20xml%3Aspace%3D%22preserve%22%3E%3Cpath%20d%3D%22M11.243%2C2.408c-0.392-0.401-1.024-0.401-1.415%2C0c-0.391%2C0.401-0.391%2C1.054%2C0%2C1.455C10.584%2C4.642%2C11%2C5.675%2C11%2C6.773%20s-0.416%2C2.133-1.172%2C2.91c-1.512%2C1.558-4.145%2C1.558-5.656%2C0C3.416%2C8.904%2C3%2C7.872%2C3%2C6.773C3%2C5.673%2C3.416%2C4.64%2C4.172%2C3.863%20c0.39-0.401%2C0.39-1.054%2C0-1.455c-0.391-0.401-1.024-0.401-1.415%2C0C1.624%2C3.574%2C1%2C5.125%2C1%2C6.773c0%2C1.647%2C0.624%2C3.199%2C1.757%2C4.365%20c1.134%2C1.166%2C2.64%2C1.809%2C4.243%2C1.809c1.604%2C0%2C3.109-0.645%2C4.243-1.811C12.376%2C9.975%2C13%2C8.423%2C13%2C6.773%20C13%2C5.125%2C12.376%2C3.574%2C11.243%2C2.408z%20M7%2C8.053c0.553%2C0%2C1-0.445%2C1-1v-6c0-0.553-0.447-1-1-1c-0.553%2C0-1%2C0.447-1%2C1v6%20C6%2C7.604%2C6.447%2C8.053%2C7%2C8.053z%22%2F%3E%3C%2Fsvg%3E"); -} -.ui-alt-icon.ui-icon-recycle:after, -.ui-alt-icon .ui-icon-recycle:after { - background-image: url("data:image/svg+xml;charset=US-ASCII,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22iso-8859-1%22%3F%3E%3C!DOCTYPE%20svg%20PUBLIC%20%22-%2F%2FW3C%2F%2FDTD%20SVG%201.1%2F%2FEN%22%20%22http%3A%2F%2Fwww.w3.org%2FGraphics%2FSVG%2F1.1%2FDTD%2Fsvg11.dtd%22%3E%3Csvg%20version%3D%221.1%22%20id%3D%22Layer_1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20x%3D%220px%22%20y%3D%220px%22%20%20width%3D%2214px%22%20height%3D%2214px%22%20viewBox%3D%220%200%2014%2014%22%20style%3D%22enable-background%3Anew%200%200%2014%2014%3B%22%20xml%3Aspace%3D%22preserve%22%3E%3Cpath%20d%3D%22M3%2C7h1L2%2C4L0%2C7h1c0%2C3.313%2C2.687%2C6%2C6%2C6c0.702%2C0%2C1.374-0.127%2C2-0.35v-2.205C8.41%2C10.789%2C7.732%2C11%2C7%2C11C4.791%2C11%2C3%2C9.209%2C3%2C7z%20%20M13%2C7c0-3.313-2.688-6-6-6C6.298%2C1%2C5.626%2C1.127%2C5%2C1.349v2.206C5.59%2C3.211%2C6.268%2C3%2C7%2C3c2.209%2C0%2C4%2C1.791%2C4%2C4h-1l2%2C3l2-3H13z%22%2F%3E%3C%2Fsvg%3E"); -} -.ui-alt-icon.ui-icon-refresh:after, -.ui-alt-icon .ui-icon-refresh:after { - background-image: url("data:image/svg+xml;charset=US-ASCII,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22iso-8859-1%22%3F%3E%3C!DOCTYPE%20svg%20PUBLIC%20%22-%2F%2FW3C%2F%2FDTD%20SVG%201.1%2F%2FEN%22%20%22http%3A%2F%2Fwww.w3.org%2FGraphics%2FSVG%2F1.1%2FDTD%2Fsvg11.dtd%22%3E%3Csvg%20version%3D%221.1%22%20id%3D%22Layer_1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20x%3D%220px%22%20y%3D%220px%22%20%20width%3D%2214.001px%22%20height%3D%2214.002px%22%20viewBox%3D%220%200%2014.001%2014.002%22%20style%3D%22enable-background%3Anew%200%200%2014.001%2014.002%3B%22%20%20xml%3Aspace%3D%22preserve%22%3E%3Cpath%20d%3D%22M14.001%2C6.001v-6l-2.06%2C2.06c-0.423-0.424-0.897-0.809-1.44-1.122C7.153-0.994%2C2.872%2C0.153%2C0.939%2C3.501%20c-1.933%2C3.348-0.786%2C7.629%2C2.562%2C9.562c3.348%2C1.933%2C7.629%2C0.785%2C9.562-2.562l-1.732-1c-1.381%2C2.392-4.438%2C3.211-6.83%2C1.83%20s-3.211-4.438-1.83-6.83s4.438-3.211%2C6.83-1.83c0.389%2C0.225%2C0.718%2C0.506%2C1.02%2C0.81l-2.52%2C2.52H14.001z%22%2F%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3C%2Fsvg%3E"); -} -.ui-alt-icon.ui-icon-search:after, -.ui-alt-icon .ui-icon-search:after, -.ui-input-search:after { - background-image: url("data:image/svg+xml;charset=US-ASCII,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22iso-8859-1%22%3F%3E%3C!DOCTYPE%20svg%20PUBLIC%20%22-%2F%2FW3C%2F%2FDTD%20SVG%201.1%2F%2FEN%22%20%22http%3A%2F%2Fwww.w3.org%2FGraphics%2FSVG%2F1.1%2FDTD%2Fsvg11.dtd%22%3E%3Csvg%20version%3D%221.1%22%20id%3D%22Layer_1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20x%3D%220px%22%20y%3D%220px%22%20%20width%3D%2214px%22%20height%3D%2214px%22%20viewBox%3D%220%200%2014%2014%22%20style%3D%22enable-background%3Anew%200%200%2014%2014%3B%22%20xml%3Aspace%3D%22preserve%22%3E%3Cpath%20d%3D%22M10.171%2C8.766c0.617-0.888%2C0.979-1.964%2C0.979-3.126c0-3.037-2.463-5.5-5.5-5.5s-5.5%2C2.463-5.5%2C5.5s2.463%2C5.5%2C5.5%2C5.5%20c1.152%2C0%2C2.223-0.355%2C3.104-0.962l3.684%2C3.683l1.414-1.414L10.171%2C8.766z%20M5.649%2C9.14c-1.933%2C0-3.5-1.567-3.5-3.5%20c0-1.933%2C1.567-3.5%2C3.5-3.5c1.933%2C0%2C3.5%2C1.567%2C3.5%2C3.5C9.149%2C7.572%2C7.582%2C9.14%2C5.649%2C9.14z%22%2F%3E%3C%2Fsvg%3E"); -} -.ui-alt-icon.ui-icon-shop:after, -.ui-alt-icon .ui-icon-shop:after { - background-image: url("data:image/svg+xml;charset=US-ASCII,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22iso-8859-1%22%3F%3E%3C!DOCTYPE%20svg%20PUBLIC%20%22-%2F%2FW3C%2F%2FDTD%20SVG%201.1%2F%2FEN%22%20%22http%3A%2F%2Fwww.w3.org%2FGraphics%2FSVG%2F1.1%2FDTD%2Fsvg11.dtd%22%3E%3Csvg%20version%3D%221.1%22%20id%3D%22Layer_1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20x%3D%220px%22%20y%3D%220px%22%20%20width%3D%2214px%22%20height%3D%2214px%22%20viewBox%3D%220%200%2014%2014%22%20style%3D%22enable-background%3Anew%200%200%2014%2014%3B%22%20xml%3Aspace%3D%22preserve%22%3E%3Cpath%20d%3D%22M10%2C4V3c0-1.657-1.343-3-3-3S4%2C1.343%2C4%2C3v1H1v10h12V4H10z%20M4.5%2C6C4.224%2C6%2C4%2C5.776%2C4%2C5.5S4.224%2C5%2C4.5%2C5S5%2C5.224%2C5%2C5.5%20S4.776%2C6%2C4.5%2C6z%20M5%2C3c0-1.104%2C0.896-2%2C2-2c1.104%2C0%2C2%2C0.896%2C2%2C2v1H5V3z%20M9.5%2C6C9.225%2C6%2C9%2C5.776%2C9%2C5.5S9.225%2C5%2C9.5%2C5S10%2C5.224%2C10%2C5.5%20S9.775%2C6%2C9.5%2C6z%22%2F%3E%3C%2Fsvg%3E"); -} -.ui-alt-icon.ui-icon-star:after, -.ui-alt-icon .ui-icon-star:after { - background-image: url("data:image/svg+xml;charset=US-ASCII,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22iso-8859-1%22%3F%3E%3C!DOCTYPE%20svg%20PUBLIC%20%22-%2F%2FW3C%2F%2FDTD%20SVG%201.1%2F%2FEN%22%20%22http%3A%2F%2Fwww.w3.org%2FGraphics%2FSVG%2F1.1%2FDTD%2Fsvg11.dtd%22%3E%3Csvg%20version%3D%221.1%22%20id%3D%22Layer_1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20x%3D%220px%22%20y%3D%220px%22%20%20width%3D%2214px%22%20height%3D%2214px%22%20viewBox%3D%220%200%2014%2014%22%20style%3D%22enable-background%3Anew%200%200%2014%2014%3B%22%20xml%3Aspace%3D%22preserve%22%3E%3Cpolygon%20points%3D%2214%2C5%209%2C5%207%2C0%205%2C5%200%2C5%204%2C8%202.625%2C13%207%2C10%2011.375%2C13%2010%2C8%20%22%2F%3E%3C%2Fsvg%3E"); -} -.ui-alt-icon.ui-icon-tag:after, -.ui-alt-icon .ui-icon-tag:after { - background-image: url("data:image/svg+xml;charset=US-ASCII,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22iso-8859-1%22%3F%3E%3C!DOCTYPE%20svg%20PUBLIC%20%22-%2F%2FW3C%2F%2FDTD%20SVG%201.1%2F%2FEN%22%20%22http%3A%2F%2Fwww.w3.org%2FGraphics%2FSVG%2F1.1%2FDTD%2Fsvg11.dtd%22%3E%3Csvg%20version%3D%221.1%22%20id%3D%22Layer_1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20x%3D%220px%22%20y%3D%220px%22%20%20width%3D%2214px%22%20height%3D%2214px%22%20viewBox%3D%220%200%2014%2014%22%20style%3D%22enable-background%3Anew%200%200%2014%2014%3B%22%20xml%3Aspace%3D%22preserve%22%3E%3Cpath%20d%3D%22M5%2C0H0v5l9%2C9l5-5L5%2C0z%20M3%2C4C2.447%2C4%2C2%2C3.553%2C2%2C3s0.447-1%2C1-1s1%2C0.447%2C1%2C1S3.553%2C4%2C3%2C4z%22%2F%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3C%2Fsvg%3E"); -} -.ui-alt-icon.ui-icon-user:after, -.ui-alt-icon .ui-icon-user:after { - background-image: url("data:image/svg+xml;charset=US-ASCII,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22iso-8859-1%22%3F%3E%3C!DOCTYPE%20svg%20PUBLIC%20%22-%2F%2FW3C%2F%2FDTD%20SVG%201.1%2F%2FEN%22%20%22http%3A%2F%2Fwww.w3.org%2FGraphics%2FSVG%2F1.1%2FDTD%2Fsvg11.dtd%22%3E%3Csvg%20version%3D%221.1%22%20id%3D%22Layer_1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20x%3D%220px%22%20y%3D%220px%22%20%20width%3D%2214px%22%20height%3D%2214px%22%20viewBox%3D%220%200%2014%2014%22%20style%3D%22enable-background%3Anew%200%200%2014%2014%3B%22%20xml%3Aspace%3D%22preserve%22%3E%3Cpath%20d%3D%22M8.851%2C10.101c-0.18-0.399-0.2-0.763-0.153-1.104C9.383%2C8.49%2C9.738%2C7.621%2C9.891%2C6.465C10.493%2C6.355%2C10.5%2C5.967%2C10.5%2C5.5%20c0-0.437-0.008-0.804-0.502-0.94C9.999%2C4.539%2C10%2C4.521%2C10%2C4.5c0-2.103-1-4-2-4C8%2C0.5%2C7.5%2C0%2C6.5%2C0C5%2C0%2C4%2C1.877%2C4%2C4.5%20c0%2C0.021%2C0.001%2C0.039%2C0.002%2C0.06C3.508%2C4.696%2C3.5%2C5.063%2C3.5%2C5.5c0%2C0.467%2C0.007%2C0.855%2C0.609%2C0.965%20C4.262%2C7.621%2C4.617%2C8.49%2C5.303%2C8.997c0.047%2C0.341%2C0.026%2C0.704-0.153%2C1.104C1.503%2C10.503%2C0%2C12%2C0%2C12v2h14v-2%20C14%2C12%2C12.497%2C10.503%2C8.851%2C10.101z%22%2F%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3C%2Fsvg%3E"); -} -.ui-alt-icon.ui-icon-video:after, -.ui-alt-icon .ui-icon-video:after { - background-image: url("data:image/svg+xml;charset=US-ASCII,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22iso-8859-1%22%3F%3E%3C!DOCTYPE%20svg%20PUBLIC%20%22-%2F%2FW3C%2F%2FDTD%20SVG%201.1%2F%2FEN%22%20%22http%3A%2F%2Fwww.w3.org%2FGraphics%2FSVG%2F1.1%2FDTD%2Fsvg11.dtd%22%3E%3Csvg%20version%3D%221.1%22%20id%3D%22Layer_1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20x%3D%220px%22%20y%3D%220px%22%20%20width%3D%2214px%22%20height%3D%2214px%22%20viewBox%3D%220%20-2%2014%2014%22%20style%3D%22enable-background%3Anew%200%20-2%2014%2014%3B%22%20xml%3Aspace%3D%22preserve%22%3E%3Cpath%20d%3D%22M8%2C0H2C0.896%2C0%2C0%2C0.896%2C0%2C2v6c0%2C1.104%2C0.896%2C2%2C2%2C2h6c1.104%2C0%2C2-0.896%2C2-2V5V2C10%2C0.896%2C9.104%2C0%2C8%2C0z%20M10%2C5l4%2C4V1L10%2C5z%22%2F%3E%3C%2Fsvg%3E"); -} -/* PNG icons */ -.ui-nosvg .ui-icon-action:after { - background-image: url(images/icons-png/action-white.png); -} -.ui-nosvg .ui-icon-alert:after { - background-image: url(images/icons-png/alert-white.png); -} -.ui-nosvg .ui-icon-arrow-d-l:after { - background-image: url(images/icons-png/arrow-d-l-white.png); -} -.ui-nosvg .ui-icon-arrow-d-r:after { - background-image: url(images/icons-png/arrow-d-r-white.png); -} -.ui-nosvg .ui-icon-arrow-d:after { - background-image: url(images/icons-png/arrow-d-white.png); -} -.ui-nosvg .ui-icon-arrow-l:after { - background-image: url(images/icons-png/arrow-l-white.png); -} -.ui-nosvg .ui-icon-arrow-r:after { - background-image: url(images/icons-png/arrow-r-white.png); -} -.ui-nosvg .ui-icon-arrow-u-l:after { - background-image: url(images/icons-png/arrow-u-l-white.png); -} -.ui-nosvg .ui-icon-arrow-u-r:after { - background-image: url(images/icons-png/arrow-u-r-white.png); -} -.ui-nosvg .ui-icon-arrow-u:after { - background-image: url(images/icons-png/arrow-u-white.png); -} -.ui-nosvg .ui-icon-audio:after { - background-image: url(images/icons-png/audio-white.png); -} -.ui-nosvg .ui-icon-back:after { - background-image: url(images/icons-png/back-white.png); -} -.ui-nosvg .ui-icon-bars:after { - background-image: url(images/icons-png/bars-white.png); -} -.ui-nosvg .ui-icon-bullets:after { - background-image: url(images/icons-png/bullets-white.png); -} -.ui-nosvg .ui-icon-calendar:after { - background-image: url(images/icons-png/calendar-white.png); -} -.ui-nosvg .ui-icon-camera:after { - background-image: url(images/icons-png/camera-white.png); -} -.ui-nosvg .ui-icon-carat-d:after { - background-image: url(images/icons-png/carat-d-white.png); -} -.ui-nosvg .ui-icon-carat-l:after { - background-image: url(images/icons-png/carat-l-white.png); -} -.ui-nosvg .ui-icon-carat-r:after { - background-image: url(images/icons-png/carat-r-white.png); -} -.ui-nosvg .ui-icon-carat-u:after { - background-image: url(images/icons-png/carat-u-white.png); -} -.ui-nosvg .ui-icon-check:after, -html.ui-nosvg .ui-btn.ui-checkbox-on:after { - background-image: url(images/icons-png/check-white.png); -} -.ui-nosvg .ui-icon-clock:after { - background-image: url(images/icons-png/clock-white.png); -} -.ui-nosvg .ui-icon-cloud:after { - background-image: url(images/icons-png/cloud-white.png); -} -.ui-nosvg .ui-icon-comment:after { - background-image: url(images/icons-png/comment-white.png); -} -.ui-nosvg .ui-icon-delete:after { - background-image: url(images/icons-png/delete-white.png); -} -.ui-nosvg .ui-icon-edit:after { - background-image: url(images/icons-png/edit-white.png); -} -.ui-nosvg .ui-icon-eye:after { - background-image: url(images/icons-png/eye-white.png); -} -.ui-nosvg .ui-icon-forbidden:after { - background-image: url(images/icons-png/forbidden-white.png); -} -.ui-nosvg .ui-icon-forward:after { - background-image: url(images/icons-png/forward-white.png); -} -.ui-nosvg .ui-icon-gear:after { - background-image: url(images/icons-png/gear-white.png); -} -.ui-nosvg .ui-icon-grid:after { - background-image: url(images/icons-png/grid-white.png); -} -.ui-nosvg .ui-icon-heart:after { - background-image: url(images/icons-png/heart-white.png); -} -.ui-nosvg .ui-icon-home:after { - background-image: url(images/icons-png/home-white.png); -} -.ui-nosvg .ui-icon-info:after { - background-image: url(images/icons-png/info-white.png); -} -.ui-nosvg .ui-icon-location:after { - background-image: url(images/icons-png/location-white.png); -} -.ui-nosvg .ui-icon-lock:after { - background-image: url(images/icons-png/lock-white.png); -} -.ui-nosvg .ui-icon-mail:after { - background-image: url(images/icons-png/mail-white.png); -} -.ui-nosvg .ui-icon-minus:after { - background-image: url(images/icons-png/minus-white.png); -} -.ui-nosvg .ui-icon-navigation:after { - background-image: url(images/icons-png/navigation-white.png); -} -.ui-nosvg .ui-icon-phone:after { - background-image: url(images/icons-png/phone-white.png); -} -.ui-nosvg .ui-icon-plus:after { - background-image: url(images/icons-png/plus-white.png); -} -.ui-nosvg .ui-icon-power:after { - background-image: url(images/icons-png/power-white.png); -} -.ui-nosvg .ui-icon-recycle:after { - background-image: url(images/icons-png/recycle-white.png); -} -.ui-nosvg .ui-icon-refresh:after { - background-image: url(images/icons-png/refresh-white.png); -} -.ui-nosvg .ui-icon-search:after { - background-image: url(images/icons-png/search-white.png); -} -.ui-nosvg .ui-icon-shop:after { - background-image: url(images/icons-png/shop-white.png); -} -.ui-nosvg .ui-icon-star:after { - background-image: url(images/icons-png/star-white.png); -} -.ui-nosvg .ui-icon-tag:after { - background-image: url(images/icons-png/tag-white.png); -} -.ui-nosvg .ui-icon-user:after { - background-image: url(images/icons-png/user-white.png); -} -.ui-nosvg .ui-icon-video:after { - background-image: url(images/icons-png/video-white.png); -} -/* Alt icons */ -.ui-nosvg .ui-alt-icon.ui-icon-action:after, -.ui-nosvg .ui-alt-icon .ui-icon-action:after { - background-image: url(images/icons-png/action-black.png); -} -.ui-nosvg .ui-alt-icon.ui-icon-alert:after, -.ui-nosvg .ui-alt-icon .ui-icon-alert:after { - background-image: url(images/icons-png/alert-black.png); -} -.ui-nosvg .ui-alt-icon.ui-icon-arrow-d:after, -.ui-nosvg .ui-alt-icon .ui-icon-arrow-d:after { - background-image: url(images/icons-png/arrow-d-black.png); -} -.ui-nosvg .ui-alt-icon.ui-icon-arrow-d-l:after, -.ui-nosvg .ui-alt-icon .ui-icon-arrow-d-l:after { - background-image: url(images/icons-png/arrow-d-l-black.png); -} -.ui-nosvg .ui-alt-icon.ui-icon-arrow-d-r:after, -.ui-nosvg .ui-alt-icon .ui-icon-arrow-d-r:after { - background-image: url(images/icons-png/arrow-d-r-black.png); -} -.ui-nosvg .ui-alt-icon.ui-icon-arrow-l:after, -.ui-nosvg .ui-alt-icon .ui-icon-arrow-l:after { - background-image: url(images/icons-png/arrow-l-black.png); -} -.ui-nosvg .ui-alt-icon.ui-icon-arrow-r:after, -.ui-nosvg .ui-alt-icon .ui-icon-arrow-r:after { - background-image: url(images/icons-png/arrow-r-black.png); -} -.ui-nosvg .ui-alt-icon.ui-icon-arrow-u:after, -.ui-nosvg .ui-alt-icon .ui-icon-arrow-u:after { - background-image: url(images/icons-png/arrow-u-black.png); -} -.ui-nosvg .ui-alt-icon.ui-icon-arrow-u-l:after, -.ui-nosvg .ui-alt-icon .ui-icon-arrow-u-l:after { - background-image: url(images/icons-png/arrow-u-l-black.png); -} -.ui-nosvg .ui-alt-icon.ui-icon-arrow-u-r:after, -.ui-nosvg .ui-alt-icon .ui-icon-arrow-u-r:after { - background-image: url(images/icons-png/arrow-u-r-black.png); -} -.ui-nosvg .ui-alt-icon.ui-icon-audio:after, -.ui-nosvg .ui-alt-icon .ui-icon-audio:after { - background-image: url(images/icons-png/audio-black.png); -} -.ui-nosvg .ui-alt-icon.ui-icon-back:after, -.ui-nosvg .ui-alt-icon .ui-icon-back:after { - background-image: url(images/icons-png/back-black.png); -} -.ui-nosvg .ui-alt-icon.ui-icon-bars:after, -.ui-nosvg .ui-alt-icon .ui-icon-bars:after { - background-image: url(images/icons-png/bars-black.png); -} -.ui-nosvg .ui-alt-icon.ui-icon-bullets:after, -.ui-nosvg .ui-alt-icon .ui-icon-bullets:after { - background-image: url(images/icons-png/bullets-black.png); -} -.ui-nosvg .ui-alt-icon.ui-icon-calendar:after, -.ui-nosvg .ui-alt-icon .ui-icon-calendar:after { - background-image: url(images/icons-png/calendar-black.png); -} -.ui-nosvg .ui-alt-icon.ui-icon-camera:after, -.ui-nosvg .ui-alt-icon .ui-icon-camera:after { - background-image: url(images/icons-png/camera-black.png); -} -.ui-nosvg .ui-alt-icon.ui-icon-carat-d:after, -.ui-nosvg .ui-alt-icon .ui-icon-carat-d:after { - background-image: url(images/icons-png/carat-d-black.png); -} -.ui-nosvg .ui-alt-icon.ui-icon-carat-l:after, -.ui-nosvg .ui-alt-icon .ui-icon-carat-l:after { - background-image: url(images/icons-png/carat-l-black.png); -} -.ui-nosvg .ui-alt-icon.ui-icon-carat-r:after, -.ui-nosvg .ui-alt-icon .ui-icon-carat-r:after { - background-image: url(images/icons-png/carat-r-black.png); -} -.ui-nosvg .ui-alt-icon.ui-icon-carat-u:after, -.ui-nosvg .ui-alt-icon .ui-icon-carat-u:after { - background-image: url(images/icons-png/carat-u-black.png); -} -.ui-nosvg .ui-alt-icon.ui-icon-check:after, -.ui-nosvg .ui-alt-icon .ui-icon-check:after, -.ui-nosvg .ui-alt-icon.ui-btn.ui-checkbox-on:after, -.ui-nosvg .ui-alt-icon .ui-btn.ui-checkbox-on:after { - background-image: url(images/icons-png/check-black.png); -} -.ui-nosvg .ui-alt-icon.ui-icon-clock:after, -.ui-nosvg .ui-alt-icon .ui-icon-clock:after { - background-image: url(images/icons-png/clock-black.png); -} -.ui-nosvg .ui-alt-icon.ui-icon-cloud:after, -.ui-nosvg .ui-alt-icon .ui-icon-cloud:after { - background-image: url(images/icons-png/cloud-black.png); -} -.ui-nosvg .ui-alt-icon.ui-icon-comment:after, -.ui-nosvg .ui-alt-icon .ui-icon-comment:after { - background-image: url(images/icons-png/comment-black.png); -} -.ui-nosvg .ui-alt-icon.ui-icon-delete:after, -.ui-nosvg .ui-alt-icon .ui-icon-delete:after { - background-image: url(images/icons-png/delete-black.png); -} -.ui-nosvg .ui-alt-icon.ui-icon-edit:after, -.ui-nosvg .ui-alt-icon .ui-icon-edit:after { - background-image: url(images/icons-png/edit-black.png); -} -.ui-nosvg .ui-alt-icon.ui-icon-eye:after, -.ui-nosvg .ui-alt-icon .ui-icon-eye:after { - background-image: url(images/icons-png/eye-black.png); -} -.ui-nosvg .ui-alt-icon.ui-icon-forbidden:after, -.ui-nosvg .ui-alt-icon .ui-icon-forbidden:after { - background-image: url(images/icons-png/forbidden-black.png); -} -.ui-nosvg .ui-alt-icon.ui-icon-forward:after, -.ui-nosvg .ui-alt-icon .ui-icon-forward:after { - background-image: url(images/icons-png/forward-black.png); -} -.ui-nosvg .ui-alt-icon.ui-icon-gear:after, -.ui-nosvg .ui-alt-icon .ui-icon-gear:after { - background-image: url(images/icons-png/gear-black.png); -} -.ui-nosvg .ui-alt-icon.ui-icon-grid:after, -.ui-nosvg .ui-alt-icon .ui-icon-grid:after { - background-image: url(images/icons-png/grid-black.png); -} -.ui-nosvg .ui-alt-icon.ui-icon-heart:after, -.ui-nosvg .ui-alt-icon .ui-icon-heart:after { - background-image: url(images/icons-png/heart-black.png); -} -.ui-nosvg .ui-alt-icon.ui-icon-home:after, -.ui-nosvg .ui-alt-icon .ui-icon-home:after { - background-image: url(images/icons-png/home-black.png); -} -.ui-nosvg .ui-alt-icon.ui-icon-info:after, -.ui-nosvg .ui-alt-icon .ui-icon-info:after { - background-image: url(images/icons-png/info-black.png); -} -.ui-nosvg .ui-alt-icon.ui-icon-location:after, -.ui-nosvg .ui-alt-icon .ui-icon-location:after { - background-image: url(images/icons-png/location-black.png); -} -.ui-nosvg .ui-alt-icon.ui-icon-lock:after, -.ui-nosvg .ui-alt-icon .ui-icon-lock:after { - background-image: url(images/icons-png/lock-black.png); -} -.ui-nosvg .ui-alt-icon.ui-icon-mail:after, -.ui-nosvg .ui-alt-icon .ui-icon-mail:after { - background-image: url(images/icons-png/mail-black.png); -} -.ui-nosvg .ui-alt-icon.ui-icon-minus:after, -.ui-nosvg .ui-alt-icon .ui-icon-minus:after { - background-image: url(images/icons-png/minus-black.png); -} -.ui-nosvg .ui-alt-icon.ui-icon-navigation:after, -.ui-nosvg .ui-alt-icon .ui-icon-navigation:after { - background-image: url(images/icons-png/navigation-black.png); -} -.ui-nosvg .ui-alt-icon.ui-icon-phone:after, -.ui-nosvg .ui-alt-icon .ui-icon-phone:after { - background-image: url(images/icons-png/phone-black.png); -} -.ui-nosvg .ui-alt-icon.ui-icon-plus:after, -.ui-nosvg .ui-alt-icon .ui-icon-plus:after { - background-image: url(images/icons-png/plus-black.png); -} -.ui-nosvg .ui-alt-icon.ui-icon-power:after, -.ui-nosvg .ui-alt-icon .ui-icon-power:after { - background-image: url(images/icons-png/power-black.png); -} -.ui-nosvg .ui-alt-icon.ui-icon-recycle:after, -.ui-nosvg .ui-alt-icon .ui-icon-recycle:after { - background-image: url(images/icons-png/recycle-black.png); -} -.ui-nosvg .ui-alt-icon.ui-icon-refresh:after, -.ui-nosvg .ui-alt-icon .ui-icon-refresh:after { - background-image: url(images/icons-png/refresh-black.png); -} -.ui-nosvg .ui-alt-icon.ui-icon-search:after, -.ui-nosvg .ui-alt-icon .ui-icon-search:after, -.ui-nosvg .ui-input-search:after { - background-image: url(images/icons-png/search-black.png); -} -.ui-nosvg .ui-alt-icon.ui-icon-shop:after, -.ui-nosvg .ui-alt-icon .ui-icon-shop:after { - background-image: url(images/icons-png/shop-black.png); -} -.ui-nosvg .ui-alt-icon.ui-icon-star:after, -.ui-nosvg .ui-alt-icon .ui-icon-star:after { - background-image: url(images/icons-png/star-black.png); -} -.ui-nosvg .ui-alt-icon.ui-icon-tag:after, -.ui-nosvg .ui-alt-icon .ui-icon-tag:after { - background-image: url(images/icons-png/tag-black.png); -} -.ui-nosvg .ui-alt-icon.ui-icon-user:after, -.ui-nosvg .ui-alt-icon .ui-icon-user:after { - background-image: url(images/icons-png/user-black.png); -} -.ui-nosvg .ui-alt-icon.ui-icon-video:after, -.ui-nosvg .ui-alt-icon .ui-icon-video:after { - background-image: url(images/icons-png/video-black.png); } \ No newline at end of file diff --git a/dashboard-ui/thirdparty/jquerymobile-1.4.5/jquery.mobile.custom.theme.css b/dashboard-ui/thirdparty/jquerymobile-1.4.5/jquery.mobile.custom.theme.css index 9c3d00bc2f..bf53fbe867 100644 --- a/dashboard-ui/thirdparty/jquerymobile-1.4.5/jquery.mobile.custom.theme.css +++ b/dashboard-ui/thirdparty/jquerymobile-1.4.5/jquery.mobile.custom.theme.css @@ -14,21 +14,23 @@ -----------------------------------------------------------------------------------------------------------*/ html { - font-size: 100%; + font-size: 100%; } + body, button, .ui-btn { - line-height: 1.3 /*{global-font-family}*/; + line-height: 1.3 /*{global-font-family}*/; } + legend { - color: inherit; + color: inherit; } /* Form labels (overrides font-weight bold in bars, and mini font-size) */ .ui-mobile label, div.ui-controlgroup-label { - font-weight: normal; - font-size: 16px; + font-weight: normal; + font-size: 16px; } /* Buttons @@ -36,15 +38,17 @@ div.ui-controlgroup-label { .ui-btn, label.ui-btn { - font-weight: bold; - border-width: 1px; - border-style: solid; + font-weight: bold; + border-width: 1px; + border-style: solid; } + .ui-btn { - text-decoration: none !important; + text-decoration: none !important; } + .ui-btn-active { - cursor: pointer; + cursor: pointer; } /* Corner rounding @@ -52,8 +56,8 @@ label.ui-btn { /* Class ui-btn-corner-all deprecated in 1.4 */ .ui-corner-all { - -webkit-border-radius: .3125em /*{global-radii-blocks}*/; - border-radius: .3125em /*{global-radii-blocks}*/; + -webkit-border-radius: .3125em /*{global-radii-blocks}*/; + border-radius: .3125em /*{global-radii-blocks}*/; } /* Buttons */ .ui-btn-corner-all, @@ -62,20 +66,20 @@ label.ui-btn { .ui-slider-track.ui-corner-all, /* Count bubble */ .ui-li-count { - -webkit-border-radius: .3125em /*{global-radii-buttons}*/; - border-radius: .3125em /*{global-radii-buttons}*/; + -webkit-border-radius: .3125em /*{global-radii-buttons}*/; + border-radius: .3125em /*{global-radii-buttons}*/; } /* Icon-only buttons */ .ui-btn-icon-notext.ui-btn-corner-all, .ui-btn-icon-notext.ui-corner-all { - -webkit-border-radius: 1em; - border-radius: 1em; + -webkit-border-radius: 1em; + border-radius: 1em; } /* Radius clip workaround for cleaning up corner trapping */ .ui-btn-corner-all, .ui-corner-all { - -webkit-background-clip: padding; - background-clip: padding-box; + -webkit-background-clip: padding; + background-clip: padding-box; } /* Icons @@ -86,12 +90,12 @@ label.ui-btn { .ui-btn-icon-top:after, .ui-btn-icon-bottom:after, .ui-btn-icon-notext:after { - background-color: #666 /*{global-icon-color}*/; - background-color: rgba(0,0,0,.3) /*{global-icon-disc}*/; - background-position: center center; - background-repeat: no-repeat; - -webkit-border-radius: 1em; - border-radius: 1em; + background-color: #666 /*{global-icon-color}*/; + background-color: rgba(0,0,0,.3) /*{global-icon-disc}*/; + background-position: center center; + background-repeat: no-repeat; + -webkit-border-radius: 1em; + border-radius: 1em; } /* Alt icons */ @@ -101,14 +105,14 @@ html .ui-alt-icon.ui-checkbox-off:after, html .ui-alt-icon.ui-radio-off:after, html .ui-alt-icon .ui-checkbox-off:after, html .ui-alt-icon .ui-radio-off:after { - background-color: #666 /*{global-icon-color}*/; - background-color: rgba(0,0,0,.15) /*{global-icon-disc}*/; + background-color: #666 /*{global-icon-color}*/; + background-color: rgba(0,0,0,.15) /*{global-icon-disc}*/; } /* No disc */ .ui-nodisc-icon.ui-btn:after, .ui-nodisc-icon .ui-btn:after { - background-color: transparent; + background-color: transparent; } /* Checkbox and radio */ @@ -116,36 +120,41 @@ html .ui-alt-icon .ui-radio-off:after { .ui-btn.ui-checkbox-on:after, .ui-btn.ui-radio-off:after, .ui-btn.ui-radio-on:after { - display: block; - width: 18px; - height: 18px; - margin: -9px 2px 0 2px; + display: block; + width: 18px; + height: 18px; + margin: -9px 2px 0 2px; } + .ui-checkbox-off:after, .ui-btn.ui-radio-off:after { - filter: Alpha(Opacity=30); - opacity: .3; + filter: Alpha(Opacity=30); + opacity: .3; } + .ui-btn.ui-checkbox-off:after, .ui-btn.ui-checkbox-on:after { - -webkit-border-radius: .1875em; - border-radius: .1875em; + -webkit-border-radius: .1875em; + border-radius: .1875em; } + .ui-btn.ui-checkbox-off:after { - background-color: #666; - background-color: rgba(0,0,0,.3); + background-color: #666; + background-color: rgba(0,0,0,.3); } + .ui-radio .ui-btn.ui-radio-on:after { - background-image: none; - background-color: #fff; - width: 8px; - height: 8px; - border-width: 5px; - border-style: solid; + background-image: none; + background-color: #fff; + width: 8px; + height: 8px; + border-width: 5px; + border-style: solid; } + .ui-alt-icon.ui-btn.ui-radio-on:after, .ui-alt-icon .ui-btn.ui-radio-on:after { - background-color: #000; + background-color: #000; } /* Swatches */ @@ -159,21 +168,22 @@ html .ui-alt-icon .ui-radio-off:after { html .ui-bar-a .ui-bar-inherit, html .ui-body-a .ui-bar-inherit, html body .ui-group-theme-a .ui-bar-inherit { - background-color: #e9e9e9 /*{a-bar-background-color}*/; - border-color: #ddd /*{a-bar-border}*/; - color: #333 /*{a-bar-color}*/; - font-weight: bold; + background-color: #e9e9e9 /*{a-bar-background-color}*/; + border-color: #ddd /*{a-bar-border}*/; + color: #333 /*{a-bar-color}*/; + font-weight: bold; } + .ui-bar-a { - border-width: 1px; - border-style: solid; + border-width: 1px; + border-style: solid; } /* Page and overlay */ .ui-page-theme-a .ui-panel-wrapper { - background-color: #f9f9f9 /*{a-page-background-color}*/; - border-color: #bbb /*{a-page-border}*/; - color: #333 /*{a-page-color}*/; + background-color: #f9f9f9 /*{a-page-background-color}*/; + border-color: #bbb /*{a-page-border}*/; + color: #333 /*{a-page-color}*/; } /* Body: Read-only lists, text inputs, collapsible content */ @@ -182,9 +192,9 @@ html .ui-bar-a .ui-body-inherit, html .ui-body-a .ui-body-inherit, html body .ui-group-theme-a .ui-body-inherit, html .ui-panel-page-container-a { - background-color: #fff /*{a-body-background-color}*/; - border-color: #ddd /*{a-body-border}*/; - color: #333 /*{a-body-color}*/; + background-color: #fff /*{a-body-background-color}*/; + border-color: #ddd /*{a-body-border}*/; + color: #333 /*{a-body-color}*/; } /* Links */ @@ -192,28 +202,31 @@ html .ui-panel-page-container-a { html .ui-bar-a a, html .ui-body-a a, html body .ui-group-theme-a a { - color: #3388cc /*{a-link-color}*/; - font-weight: bold; -} -.ui-page-theme-a a:visited, -html .ui-bar-a a:visited, -html .ui-body-a a:visited, -html body .ui-group-theme-a a:visited { - color: #3388cc /*{a-link-visited}*/; -} -.ui-page-theme-a a:hover, -html .ui-bar-a a:hover, -html .ui-body-a a:hover, -html body .ui-group-theme-a a:hover { - color: #005599 /*{a-link-hover}*/; -} -.ui-page-theme-a a:active, -html .ui-bar-a a:active, -html .ui-body-a a:active, -html body .ui-group-theme-a a:active { - color: #005599 /*{a-link-active}*/; + color: #3388cc /*{a-link-color}*/; + font-weight: bold; } + .ui-page-theme-a a:visited, + html .ui-bar-a a:visited, + html .ui-body-a a:visited, + html body .ui-group-theme-a a:visited { + color: #3388cc /*{a-link-visited}*/; + } + + .ui-page-theme-a a:hover, + html .ui-bar-a a:hover, + html .ui-body-a a:hover, + html body .ui-group-theme-a a:hover { + color: #005599 /*{a-link-hover}*/; + } + + .ui-page-theme-a a:active, + html .ui-bar-a a:active, + html .ui-body-a a:active, + html body .ui-group-theme-a a:active { + color: #005599 /*{a-link-active}*/; + } + /* Button up */ .ui-page-theme-a .ui-btn, html .ui-bar-a .ui-btn, @@ -226,54 +239,54 @@ html .ui-bar-a .ui-btn:visited, html .ui-body-a .ui-btn:visited, html body .ui-group-theme-a .ui-btn:visited, html head + body .ui-btn.ui-btn-a:visited { - background-color: #f6f6f6 /*{a-bup-background-color}*/; - border-color: #ddd /*{a-bup-border}*/; - color: #333 /*{a-bup-color}*/; -} -/* Button hover */ -.ui-page-theme-a .ui-btn:hover, -html .ui-bar-a .ui-btn:hover, -html .ui-body-a .ui-btn:hover, -html body .ui-group-theme-a .ui-btn:hover, -html head + body .ui-btn.ui-btn-a:hover { - background-color: #ededed /*{a-bhover-background-color}*/; - border-color: #ddd /*{a-bhover-border}*/; - color: #333 /*{a-bhover-color}*/; -} -/* Button down */ -.ui-page-theme-a .ui-btn:active, -html .ui-bar-a .ui-btn:active, -html .ui-body-a .ui-btn:active, -html body .ui-group-theme-a .ui-btn:active, -html head + body .ui-btn.ui-btn-a:active { - background-color: #e8e8e8 /*{a-bdown-background-color}*/; - border-color: #ddd /*{a-bdown-border}*/; - color: #333 /*{a-bdown-color}*/; + background-color: #f6f6f6 /*{a-bup-background-color}*/; + border-color: #ddd /*{a-bup-border}*/; + color: #333 /*{a-bup-color}*/; } + /* Button hover */ + .ui-page-theme-a .ui-btn:hover, + html .ui-bar-a .ui-btn:hover, + html .ui-body-a .ui-btn:hover, + html body .ui-group-theme-a .ui-btn:hover, + html head + body .ui-btn.ui-btn-a:hover { + background-color: #ededed /*{a-bhover-background-color}*/; + border-color: #ddd /*{a-bhover-border}*/; + color: #333 /*{a-bhover-color}*/; + } + /* Button down */ + .ui-page-theme-a .ui-btn:active, + html .ui-bar-a .ui-btn:active, + html .ui-body-a .ui-btn:active, + html body .ui-group-theme-a .ui-btn:active, + html head + body .ui-btn.ui-btn-a:active { + background-color: #e8e8e8 /*{a-bdown-background-color}*/; + border-color: #ddd /*{a-bdown-border}*/; + color: #333 /*{a-bdown-color}*/; + } -/* Active button */ -.ui-page-theme-a .ui-btn.ui-btn-active, -html .ui-bar-a .ui-btn.ui-btn-active, -html .ui-body-a .ui-btn.ui-btn-active, -html body .ui-group-theme-a .ui-btn.ui-btn-active, -html head + body .ui-btn.ui-btn-a.ui-btn-active, -/* Active checkbox icon */ -.ui-page-theme-a .ui-checkbox-on:after, -html .ui-bar-a .ui-checkbox-on:after, -html .ui-body-a .ui-checkbox-on:after, -html body .ui-group-theme-a .ui-checkbox-on:after, -.ui-btn.ui-checkbox-on.ui-btn-a:after { - background-color: #3388cc /*{a-active-background-color}*/; - border-color: #3388cc /*{a-active-border}*/; - color: #fff /*{a-active-color}*/; -} + /* Active button */ + .ui-page-theme-a .ui-btn.ui-btn-active, + html .ui-bar-a .ui-btn.ui-btn-active, + html .ui-body-a .ui-btn.ui-btn-active, + html body .ui-group-theme-a .ui-btn.ui-btn-active, + html head + body .ui-btn.ui-btn-a.ui-btn-active, + /* Active checkbox icon */ + .ui-page-theme-a .ui-checkbox-on:after, + html .ui-bar-a .ui-checkbox-on:after, + html .ui-body-a .ui-checkbox-on:after, + html body .ui-group-theme-a .ui-checkbox-on:after, + .ui-btn.ui-checkbox-on.ui-btn-a:after { + background-color: #3388cc /*{a-active-background-color}*/; + border-color: #3388cc /*{a-active-border}*/; + color: #fff /*{a-active-color}*/; + } /* Active radio button icon */ .ui-page-theme-a .ui-radio-on:after, html .ui-bar-a .ui-radio-on:after, html .ui-body-a .ui-radio-on:after, html body .ui-group-theme-a .ui-radio-on:after, .ui-btn.ui-radio-on.ui-btn-a:after { - border-color: #3388cc /*{a-active-background-color}*/; + border-color: #3388cc /*{a-active-background-color}*/; } /* B @@ -285,21 +298,22 @@ html body .ui-group-theme-a .ui-radio-on:after, html .ui-bar-b .ui-bar-inherit, html .ui-body-b .ui-bar-inherit, html body .ui-group-theme-b .ui-bar-inherit { - background-color: #1d1d1d /*{b-bar-background-color}*/; - border-color: #1b1b1b /*{b-bar-border}*/; - color: #fff /*{b-bar-color}*/; - font-weight: bold; + background-color: #1d1d1d /*{b-bar-background-color}*/; + border-color: #1b1b1b /*{b-bar-border}*/; + color: #fff /*{b-bar-color}*/; + font-weight: bold; } + .ui-bar-b { - border-width: 1px; - border-style: solid; + border-width: 1px; + border-style: solid; } /* Page and overlay */ .ui-page-theme-b .ui-panel-wrapper { - background-color: #252525 /*{b-page-background-color}*/; - border-color: #454545 /*{b-page-border}*/; - color: #fff /*{b-page-color}*/; + background-color: #252525 /*{b-page-background-color}*/; + border-color: #454545 /*{b-page-border}*/; + color: #fff /*{b-page-color}*/; } /* Body: Read-only lists, text inputs, collapsible content */ @@ -308,26 +322,29 @@ html .ui-bar-b .ui-body-inherit, html .ui-body-b .ui-body-inherit, html body .ui-group-theme-b .ui-body-inherit, html .ui-panel-page-container-b { - background-color: #2a2a2a /*{b-body-background-color}*/; - border-color: #1d1d1d /*{b-body-border}*/; - color: #fff /*{b-body-color}*/; + background-color: #2a2a2a /*{b-body-background-color}*/; + border-color: #1d1d1d /*{b-body-border}*/; + color: #fff /*{b-body-color}*/; } /* Links */ .ui-body-b a { - color: #22aadd /*{b-link-color}*/; - font-weight: bold; -} -.ui-body-b a:visited { - color: #22aadd /*{b-link-visited}*/; -} -.ui-body-b a:hover { - color: #0088bb /*{b-link-hover}*/; -} -.ui-body-b a:active { - color: #0088bb /*{b-link-active}*/; + color: #22aadd /*{b-link-color}*/; + font-weight: bold; } + .ui-body-b a:visited { + color: #22aadd /*{b-link-visited}*/; + } + + .ui-body-b a:hover { + color: #0088bb /*{b-link-hover}*/; + } + + .ui-body-b a:active { + color: #0088bb /*{b-link-active}*/; + } + /* Button up */ .ui-page-theme-b .ui-btn, html .ui-bar-b .ui-btn, @@ -340,54 +357,54 @@ html .ui-bar-b .ui-btn:visited, html .ui-body-b .ui-btn:visited, html body .ui-group-theme-b .ui-btn:visited, html head + body .ui-btn.ui-btn-b:visited { - background-color: #333 /*{b-bup-background-color}*/; - border-color: #1f1f1f /*{b-bup-border}*/; - color: #fff /*{b-bup-color}*/; -} -/* Button hover */ -.ui-page-theme-b .ui-btn:hover, -html .ui-bar-b .ui-btn:hover, -html .ui-body-b .ui-btn:hover, -html body .ui-group-theme-b .ui-btn:hover, -html head + body .ui-btn.ui-btn-b:hover { - background-color: #373737 /*{b-bhover-background-color}*/; - border-color: #1f1f1f /*{b-bhover-border}*/; - color: #fff /*{b-bhover-color}*/; -} -/* Button down */ -.ui-page-theme-b .ui-btn:active, -html .ui-bar-b .ui-btn:active, -html .ui-body-b .ui-btn:active, -html body .ui-group-theme-b .ui-btn:active, -html head + body .ui-btn.ui-btn-b:active { - background-color: #404040 /*{b-bdown-background-color}*/; - border-color: #1f1f1f /*{b-bdown-border}*/; - color: #fff /*{b-bdown-color}*/; + background-color: #333 /*{b-bup-background-color}*/; + border-color: #1f1f1f /*{b-bup-border}*/; + color: #fff /*{b-bup-color}*/; } + /* Button hover */ + .ui-page-theme-b .ui-btn:hover, + html .ui-bar-b .ui-btn:hover, + html .ui-body-b .ui-btn:hover, + html body .ui-group-theme-b .ui-btn:hover, + html head + body .ui-btn.ui-btn-b:hover { + background-color: #373737 /*{b-bhover-background-color}*/; + border-color: #1f1f1f /*{b-bhover-border}*/; + color: #fff /*{b-bhover-color}*/; + } + /* Button down */ + .ui-page-theme-b .ui-btn:active, + html .ui-bar-b .ui-btn:active, + html .ui-body-b .ui-btn:active, + html body .ui-group-theme-b .ui-btn:active, + html head + body .ui-btn.ui-btn-b:active { + background-color: #404040 /*{b-bdown-background-color}*/; + border-color: #1f1f1f /*{b-bdown-border}*/; + color: #fff /*{b-bdown-color}*/; + } -/* Active button */ -.ui-page-theme-b .ui-btn.ui-btn-active, -html .ui-bar-b .ui-btn.ui-btn-active, -html .ui-body-b .ui-btn.ui-btn-active, -html body .ui-group-theme-b .ui-btn.ui-btn-active, -html head + body .ui-btn.ui-btn-b.ui-btn-active, -/* Active checkbox icon */ -.ui-page-theme-b .ui-checkbox-on:after, -html .ui-bar-b .ui-checkbox-on:after, -html .ui-body-b .ui-checkbox-on:after, -html body .ui-group-theme-b .ui-checkbox-on:after, -.ui-btn.ui-checkbox-on.ui-btn-b:after { - background-color: #22aadd /*{b-active-background-color}*/; - border-color: #22aadd /*{b-active-border}*/; - color: #fff /*{b-active-color}*/; -} + /* Active button */ + .ui-page-theme-b .ui-btn.ui-btn-active, + html .ui-bar-b .ui-btn.ui-btn-active, + html .ui-body-b .ui-btn.ui-btn-active, + html body .ui-group-theme-b .ui-btn.ui-btn-active, + html head + body .ui-btn.ui-btn-b.ui-btn-active, + /* Active checkbox icon */ + .ui-page-theme-b .ui-checkbox-on:after, + html .ui-bar-b .ui-checkbox-on:after, + html .ui-body-b .ui-checkbox-on:after, + html body .ui-group-theme-b .ui-checkbox-on:after, + .ui-btn.ui-checkbox-on.ui-btn-b:after { + background-color: #22aadd /*{b-active-background-color}*/; + border-color: #22aadd /*{b-active-border}*/; + color: #fff /*{b-active-color}*/; + } /* Active radio button icon */ .ui-page-theme-b .ui-radio-on:after, html .ui-bar-b .ui-radio-on:after, html .ui-body-b .ui-radio-on:after, html body .ui-group-theme-b .ui-radio-on:after, .ui-btn.ui-radio-on.ui-btn-b:after { - border-color: #22aadd /*{b-active-background-color}*/; + border-color: #22aadd /*{b-active-background-color}*/; } /* @@ -402,251 +419,283 @@ html body .ui-group-theme-b .ui-radio-on:after, .ui-mobile fieldset, .ui-page { - padding: 0; - margin: 0; + padding: 0; + margin: 0; } + .ui-mobile a img, .ui-mobile fieldset { - border-width: 0; + border-width: 0; } /* Fixes for fieldset issues on IE10 and FF (see #6077) */ .ui-mobile fieldset { - min-width: 0; + min-width: 0; } + @-moz-document url-prefix() { - .ui-mobile fieldset { - display: table-column; - vertical-align: middle; - } + .ui-mobile fieldset { + display: table-column; + vertical-align: middle; + } } /* Viewport */ .ui-mobile-viewport { - margin: 0; - overflow-x: visible; - -webkit-text-size-adjust: 100%; - -ms-text-size-adjust:none; - -webkit-tap-highlight-color: rgba(0, 0, 0, 0); + margin: 0; + overflow-x: visible; + -webkit-text-size-adjust: 100%; + -ms-text-size-adjust: none; + -webkit-tap-highlight-color: rgba(0, 0, 0, 0); } /* Issue #2066 */ body.ui-mobile-viewport, div.ui-mobile-viewport { - overflow-x: hidden; + overflow-x: hidden; } /* "page" containers - full-screen views, one should always be in view post-pageload */ .ui-mobile [data-role=page], .ui-mobile [data-role=dialog], .ui-page { - top: 0; - left: 0; - width: 100%; - min-height: 100%; - position: absolute; - display: none; - border: 0; + top: 0; + left: 0; + width: 100%; + min-height: 100%; + position: absolute; + display: none; + border: 0; } /* On ios4, setting focus on the page element causes flashing during transitions when there is an outline, so we turn off outlines */ .ui-page { - outline: none; + outline: none; } + .ui-mobile .ui-page-active { - display: block; - overflow: visible; - overflow-x: hidden; + display: block; + overflow: visible; + overflow-x: hidden; } + @media screen and (orientation: portrait) { - .ui-mobile .ui-page { - min-height: 420px; - } + .ui-mobile .ui-page { + min-height: 420px; + } } + @media screen and (orientation: landscape) { - .ui-mobile .ui-page { - min-height: 300px; - } + .ui-mobile .ui-page { + min-height: 300px; + } } /* Fouc */ .ui-mobile-rendering > * { - visibility: hidden; + visibility: hidden; } /* Headers, content panels */ .ui-bar, .ui-body { - position: relative; - padding: .4em 1em; - overflow: hidden; - display: block; - clear: both; -} -.ui-bar h1, -.ui-bar h2, -.ui-bar h3, -.ui-bar h4, -.ui-bar h5, -.ui-bar h6 { - margin: 0; - padding: 0; - font-size: 1em; - display: inline-block; + position: relative; + padding: .4em 1em; + overflow: hidden; + display: block; + clear: both; } + + .ui-bar h1, + .ui-bar h2, + .ui-bar h3, + .ui-bar h4, + .ui-bar h5, + .ui-bar h6 { + margin: 0; + padding: 0; + font-size: 1em; + display: inline-block; + } + .ui-content { - border-width: 0; - overflow: visible; - overflow-x: hidden; - padding: 1em; + border-width: 0; + overflow: visible; + overflow-x: hidden; + padding: 1em; } /* Buttons and icons */ .ui-btn { - font-size: 16px; - margin: .5em 0; - padding: .7em 1em; - display: block; - position: relative; - text-align: center; - text-overflow: ellipsis; - overflow: hidden; - white-space: nowrap; - cursor: pointer; - -webkit-user-select: none; - -moz-user-select: none; - -ms-user-select: none; - user-select: none; + font-size: 16px; + margin: .5em 0; + padding: .7em 1em; + display: block; + position: relative; + text-align: center; + text-overflow: ellipsis; + overflow: hidden; + white-space: nowrap; + cursor: pointer; + -webkit-user-select: none; + -moz-user-select: none; + -ms-user-select: none; + user-select: none; } + .ui-btn-icon-notext { - padding: 0; - width: 1.75em; - height: 1.75em; - text-indent: -9999px; - white-space: nowrap !important; + padding: 0; + width: 1.75em; + height: 1.75em; + text-indent: -9999px; + white-space: nowrap !important; } + .ui-mini { - font-size: 12.5px; -} -.ui-mini .ui-btn { - font-size: inherit; -} -.ui-mini.ui-btn-icon-notext, -.ui-mini .ui-btn-icon-notext { - font-size: 16px; - padding: 0; + font-size: 12.5px; } + + .ui-mini .ui-btn { + font-size: inherit; + } + + .ui-mini.ui-btn-icon-notext, + .ui-mini .ui-btn-icon-notext { + font-size: 16px; + padding: 0; + } + .ui-btn-inline { - display: inline-block; - vertical-align: middle; - margin-right: .625em; + display: inline-block; + vertical-align: middle; + margin-right: .625em; } + .ui-btn-icon-left { - padding-left: 2.5em; + padding-left: 2.5em; } + .ui-btn-icon-right { - padding-right: 2.5em; + padding-right: 2.5em; } + .ui-btn-icon-top { - padding-top: 2.5em; + padding-top: 2.5em; } + .ui-btn-icon-bottom { - padding-bottom: 2.5em; -} -.ui-btn-icon-left:after, -.ui-btn-icon-right:after, -.ui-btn-icon-top:after, -.ui-btn-icon-bottom:after, -.ui-btn-icon-notext:after { - content: ""; - position: absolute; - display: block; - width: 22px; - height: 22px; + padding-bottom: 2.5em; } + + .ui-btn-icon-left:after, + .ui-btn-icon-right:after, + .ui-btn-icon-top:after, + .ui-btn-icon-bottom:after, + .ui-btn-icon-notext:after { + content: ""; + position: absolute; + display: block; + width: 22px; + height: 22px; + } + .ui-btn-icon-notext:after, .ui-btn-icon-left:after, .ui-btn-icon-right:after { - top: 50%; - margin-top: -11px; + top: 50%; + margin-top: -11px; } + .ui-btn-icon-left:after { - left: .5625em; + left: .5625em; } + .ui-btn-icon-right:after { - right: .5625em; + right: .5625em; } + .ui-mini.ui-btn-icon-left:after, .ui-mini .ui-btn-icon-left:after { - left: .37em; + left: .37em; } + .ui-mini.ui-btn-icon-right:after, .ui-mini .ui-btn-icon-right:after { - right: .37em; + right: .37em; } + .ui-btn-icon-notext:after, .ui-btn-icon-top:after, .ui-btn-icon-bottom:after { - left: 50%; - margin-left: -11px; + left: 50%; + margin-left: -11px; } + .ui-btn-icon-top:after { - top: .5625em; + top: .5625em; } + .ui-btn-icon-bottom:after { - top: auto; - bottom: .5625em; + top: auto; + bottom: .5625em; } /* Buttons in header position classes */ .ui-btn-left > [class*="ui-"], .ui-btn-right > [class*="ui-"] { - margin: 0; + margin: 0; } + .ui-btn-left, .ui-btn-right { - position: absolute; - top: .24em; + position: absolute; + top: .24em; } + .ui-btn-left { - left: .4em; + left: .4em; } + .ui-btn-right { - right: .4em; + right: .4em; } + .ui-btn-icon-notext.ui-btn-left { - top: .3125em; - left: .3125em; + top: .3125em; + left: .3125em; } + .ui-btn-icon-notext.ui-btn-right { - top: .3125em; - right: .3125em; + top: .3125em; + right: .3125em; } /* Button elements */ button.ui-btn, -.ui-controlgroup-controls button.ui-btn-icon-notext { - -webkit-box-sizing: border-box; - -moz-box-sizing: border-box; - box-sizing: border-box; - -webkit-appearance: none; - -moz-appearance: none; - width: 100%; +*[data-role="controlgroup"] button.ui-btn-icon-notext { + -webkit-box-sizing: border-box; + -moz-box-sizing: border-box; + box-sizing: border-box; + -webkit-appearance: none; + -moz-appearance: none; + width: 100%; } + button.ui-btn-inline { - width: auto; + width: auto; } /* Firefox adds a 1px border in a button element. We negate this to make sure they have the same height as other buttons in controlgroups. */ button.ui-btn::-moz-focus-inner { - border: 0; + border: 0; } + button.ui-btn-icon-notext, -.ui-controlgroup-horizontal .ui-controlgroup-controls button.ui-btn { - -webkit-box-sizing: content-box; - -moz-box-sizing: content-box; - box-sizing: content-box; - width: 1.75em; +*[data-role="controlgroup"][data-type="horizontal"] button.ui-btn { + -webkit-box-sizing: content-box; + -moz-box-sizing: content-box; + box-sizing: content-box; + width: 1.75em; } /* Form labels */ .ui-mobile label, -.ui-controlgroup-label { - display: block; - margin: 0 0 .4em; -} \ No newline at end of file +*[data-role="controlgroup"] label { + display: block; + margin: 0 0 .4em; +} From ac9ab5502a748e7c1929386e95f6f47005be01f7 Mon Sep 17 00:00:00 2001 From: Luke Pulverenti Date: Mon, 8 Feb 2016 00:59:33 -0500 Subject: [PATCH 15/18] update dlna profile list --- dashboard-ui/scripts/dlnaprofiles.js | 112 +++++++++--------- dashboard-ui/scripts/htmlmediarenderer.js | 21 ---- dashboard-ui/scripts/site.js | 21 ++-- .../jquerymobile-1.4.5/jqm.listview.css | 8 +- .../jquery.mobile.custom.icons.css | 101 ++-------------- .../jquery.mobile.custom.theme.css | 27 +++-- 6 files changed, 97 insertions(+), 193 deletions(-) diff --git a/dashboard-ui/scripts/dlnaprofiles.js b/dashboard-ui/scripts/dlnaprofiles.js index b944236ebb..b4a4638302 100644 --- a/dashboard-ui/scripts/dlnaprofiles.js +++ b/dashboard-ui/scripts/dlnaprofiles.js @@ -6,78 +6,76 @@ ApiClient.getJSON(ApiClient.getUrl("Dlna/ProfileInfos")).then(function (result) { - renderProfiles(page, result); + renderUserProfiles(page, result); + renderSystemProfiles(page, result); Dashboard.hideLoadingMsg(); }); } - function renderProfiles(page, profiles) { - - renderUserProfiles(page, profiles); - renderSystemProfiles(page, profiles); - } - function renderUserProfiles(page, profiles) { - profiles = profiles.filter(function (p) { + renderProfiles(page, page.querySelector('.customProfiles'), profiles.filter(function (p) { return p.Type == 'User'; - }); - - var html = ''; - - html += ''; - - var elem = $('.customProfiles', page).html(html).trigger('create'); - - $('.btnDeleteProfile', elem).on('click', function () { - - var id = this.getAttribute('data-profileid'); - deleteProfile(page, id); - }); + })); } function renderSystemProfiles(page, profiles) { - profiles = profiles.filter(function (p) { + renderProfiles(page, page.querySelector('.systemProfiles'), profiles.filter(function (p) { return p.Type == 'System'; + })); + } + + function renderProfiles(page, element, profiles) { + + require(['paper-fab', 'paper-item-body', 'paper-icon-item'], function () { + + var html = ''; + + if (profiles.length) { + html += '
    '; + } + + for (var i = 0, length = profiles.length; i < length; i++) { + + var profile = profiles[i]; + + html += ''; + + html += ""; + html += ''; + html += ""; + + html += ''; + html += ""; + + html += "
    " + profile.Name + "
    "; + //html += "
    " + task.Description + "
    "; + + html += "
    "; + html += '
    '; + + if (profile.Type == 'User') { + html += ''; + } + + html += '
    '; + } + + if (profiles.length) { + html += '
    '; + } + + element.innerHTML = html; + + $('.btnDeleteProfile', element).on('click', function () { + + var id = this.getAttribute('data-profileid'); + deleteProfile(page, id); + }); }); - - var html = ''; - - html += '
      '; - - for (var i = 0, length = profiles.length; i < length; i++) { - - var profile = profiles[i]; - - html += '
    • '; - html += ''; - html += profile.Name; - html += ''; - html += '
    • '; - } - - html += '
    '; - - $('.systemProfiles', page).html(html).trigger('create'); } function deleteProfile(page, id) { diff --git a/dashboard-ui/scripts/htmlmediarenderer.js b/dashboard-ui/scripts/htmlmediarenderer.js index fef7c0ad48..eb4118ac60 100644 --- a/dashboard-ui/scripts/htmlmediarenderer.js +++ b/dashboard-ui/scripts/htmlmediarenderer.js @@ -10,23 +10,7 @@ var mediaElement; var self = this; - function hideStatusBar() { - if (options.type == 'video' && window.StatusBar) { - //StatusBar.backgroundColorByName("black"); - //StatusBar.overlaysWebView(true); - StatusBar.hide(); - } - } - - function showStatusBar() { - if (options.type == 'video' && window.StatusBar) { - StatusBar.show(); - //StatusBar.overlaysWebView(false); - } - } - function onEnded() { - showStatusBar(); Events.trigger(self, 'ended'); } @@ -87,7 +71,6 @@ var errorCode = elem.error ? elem.error.code : ''; console.log('Media element error code: ' + errorCode); - showStatusBar(); Events.trigger(self, 'error'); } @@ -130,8 +113,6 @@ function onOneVideoPlaying(e) { - hideStatusBar(); - var element = e.target; element.removeEventListener('playing', onOneVideoPlaying); @@ -507,8 +488,6 @@ $(elem).remove(); } } - - showStatusBar(); }; self.supportsTextTracks = function () { diff --git a/dashboard-ui/scripts/site.js b/dashboard-ui/scripts/site.js index 0fa7cc0a47..eaaaab12e2 100644 --- a/dashboard-ui/scripts/site.js +++ b/dashboard-ui/scripts/site.js @@ -1970,24 +1970,25 @@ var AppInfo = {}; define("jstree", [bowerPath + "/jstree/dist/jstree.min", "css!thirdparty/jstree/themes/default/style.min.css"]); - define("jqmicons", ['css!thirdparty/jquerymobile-1.4.5/jquery.mobile.custom.icons.css']); - define("jqmtable", ["thirdparty/jquerymobile-1.4.5/jqm.table", 'css!thirdparty/jquerymobile-1.4.5/jqm.table.css']); + define("jqmbase", ['css!thirdparty/jquerymobile-1.4.5/jquery.mobile.custom.theme.css']); + define("jqmicons", ['jqmbase', 'css!thirdparty/jquerymobile-1.4.5/jquery.mobile.custom.icons.css']); + define("jqmtable", ['jqmbase', "thirdparty/jquerymobile-1.4.5/jqm.table", 'css!thirdparty/jquerymobile-1.4.5/jqm.table.css']); - define("jqmwidget", ["thirdparty/jquerymobile-1.4.5/jqm.widget"]); + define("jqmwidget", ['jqmbase', "thirdparty/jquerymobile-1.4.5/jqm.widget"]); - define("jqmslider", ["thirdparty/jquerymobile-1.4.5/jqm.slider", 'css!thirdparty/jquerymobile-1.4.5/jqm.slider.css']); + define("jqmslider", ['jqmbase', "thirdparty/jquerymobile-1.4.5/jqm.slider", 'css!thirdparty/jquerymobile-1.4.5/jqm.slider.css']); - define("jqmpopup", ["thirdparty/jquerymobile-1.4.5/jqm.popup", 'css!thirdparty/jquerymobile-1.4.5/jqm.popup.css']); + define("jqmpopup", ['jqmbase', "thirdparty/jquerymobile-1.4.5/jqm.popup", 'css!thirdparty/jquerymobile-1.4.5/jqm.popup.css']); - define("jqmlistview", ['css!thirdparty/jquerymobile-1.4.5/jqm.listview.css']); + define("jqmlistview", ['jqmbase', 'css!thirdparty/jquerymobile-1.4.5/jqm.listview.css']); - define("jqmcontrolgroup", ['css!thirdparty/jquerymobile-1.4.5/jqm.controlgroup.css']); + define("jqmcontrolgroup", ['jqmbase', 'css!thirdparty/jquerymobile-1.4.5/jqm.controlgroup.css']); - define("jqmcollapsible", ["jqmicons", "thirdparty/jquerymobile-1.4.5/jqm.collapsible", 'css!thirdparty/jquerymobile-1.4.5/jqm.collapsible.css']); + define("jqmcollapsible", ['jqmbase', "jqmicons", "thirdparty/jquerymobile-1.4.5/jqm.collapsible", 'css!thirdparty/jquerymobile-1.4.5/jqm.collapsible.css']); - define("jqmcheckbox", ["jqmicons", "thirdparty/jquerymobile-1.4.5/jqm.checkbox", 'css!thirdparty/jquerymobile-1.4.5/jqm.checkbox.css']); + define("jqmcheckbox", ['jqmbase', "jqmicons", "thirdparty/jquerymobile-1.4.5/jqm.checkbox", 'css!thirdparty/jquerymobile-1.4.5/jqm.checkbox.css']); - define("jqmpanel", ["thirdparty/jquerymobile-1.4.5/jqm.panel", 'css!thirdparty/jquerymobile-1.4.5/jqm.panel.css']); + define("jqmpanel", ['jqmbase', "thirdparty/jquerymobile-1.4.5/jqm.panel", 'css!thirdparty/jquerymobile-1.4.5/jqm.panel.css']); define("iron-icon-set", ["html!" + bowerPath + "/iron-icon/iron-icon.html", "html!" + bowerPath + "/iron-iconset-svg/iron-iconset-svg.html"]); define("slideshow", [embyWebComponentsBowerPath + "/slideshow/slideshow"], returnFirstDependency); diff --git a/dashboard-ui/thirdparty/jquerymobile-1.4.5/jqm.listview.css b/dashboard-ui/thirdparty/jquerymobile-1.4.5/jqm.listview.css index fbc7d46294..ba98d0bb27 100644 --- a/dashboard-ui/thirdparty/jquerymobile-1.4.5/jqm.listview.css +++ b/dashboard-ui/thirdparty/jquerymobile-1.4.5/jqm.listview.css @@ -1,6 +1,6 @@ ul[data-role="listview"] { border-radius: 3px; - border-color: #ccc; + border-color: #ddd; } ul[data-role="listview"], @@ -8,7 +8,7 @@ margin: 0; padding: 0; list-style: none; - border-color: #ccc; + border-color: #ddd; } /*.ui-content ul[data-role="listview"], @@ -236,10 +236,10 @@ ul[data-role="listview"] > li > a + a { z-index: 2; } -ul[data-role="listview"] > li.ui-li-has-alt > a + a { +ul[data-role="listview"] > li > a + a { border-right-width: 1px; } - ul[data-role="listview"] > li.ui-li-has-alt > a + a:focus { + ul[data-role="listview"] > li > a + a:focus { z-index: 3; } diff --git a/dashboard-ui/thirdparty/jquerymobile-1.4.5/jquery.mobile.custom.icons.css b/dashboard-ui/thirdparty/jquerymobile-1.4.5/jquery.mobile.custom.icons.css index ef71a6eaef..81a7f9da43 100644 --- a/dashboard-ui/thirdparty/jquerymobile-1.4.5/jquery.mobile.custom.icons.css +++ b/dashboard-ui/thirdparty/jquerymobile-1.4.5/jquery.mobile.custom.icons.css @@ -11,10 +11,10 @@ /* SVG icons */ -.ui-icon-action:after { +a[data-icon="action"]:after { background-image: url("data:image/svg+xml;charset=US-ASCII,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22iso-8859-1%22%3F%3E%3C!DOCTYPE%20svg%20PUBLIC%20%22-%2F%2FW3C%2F%2FDTD%20SVG%201.1%2F%2FEN%22%20%22http%3A%2F%2Fwww.w3.org%2FGraphics%2FSVG%2F1.1%2FDTD%2Fsvg11.dtd%22%3E%3Csvg%20version%3D%221.1%22%20id%3D%22Layer_1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20x%3D%220px%22%20y%3D%220px%22%20%20width%3D%2214px%22%20height%3D%2214px%22%20viewBox%3D%220%200%2014%2014%22%20style%3D%22enable-background%3Anew%200%200%2014%2014%3B%22%20xml%3Aspace%3D%22preserve%22%3E%3Cpath%20style%3D%22fill%3A%23FFFFFF%3B%22%20d%3D%22M9%2C5v3l5-4L9%2C0v3c0%2C0-5%2C0-5%2C7C6%2C5%2C9%2C5%2C9%2C5z%20M11%2C12H2V5h1l2-2H0v11h13V7l-2%2C2V12z%22%2F%3E%3C%2Fsvg%3E"); } -.ui-icon-alert:after { +a[data-icon="alert"]:after { background-image: url("data:image/svg+xml;charset=US-ASCII,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22iso-8859-1%22%3F%3E%3C!DOCTYPE%20svg%20PUBLIC%20%22-%2F%2FW3C%2F%2FDTD%20SVG%201.1%2F%2FEN%22%20%22http%3A%2F%2Fwww.w3.org%2FGraphics%2FSVG%2F1.1%2FDTD%2Fsvg11.dtd%22%3E%3Csvg%20version%3D%221.1%22%20id%3D%22Layer_1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20x%3D%220px%22%20y%3D%220px%22%20%20width%3D%2214px%22%20height%3D%2214px%22%20viewBox%3D%220%200%2014%2014%22%20style%3D%22enable-background%3Anew%200%200%2014%2014%3B%22%20xml%3Aspace%3D%22preserve%22%3E%3Cpath%20style%3D%22fill%3A%23FFFFFF%3B%22%20d%3D%22M7%2C0L0%2C12h14L7%2C0z%20M7%2C11c-0.553%2C0-1-0.447-1-1s0.447-1%2C1-1c0.553%2C0%2C1%2C0.447%2C1%2C1S7.553%2C11%2C7%2C11z%20M7%2C8%20C6.447%2C8%2C6%2C7.553%2C6%2C7V5c0-0.553%2C0.447-1%2C1-1c0.553%2C0%2C1%2C0.447%2C1%2C1v2C8%2C7.553%2C7.553%2C8%2C7%2C8z%22%2F%3E%3C%2Fsvg%3E"); } .ui-icon-arrow-d-l:after { @@ -23,7 +23,7 @@ .ui-icon-arrow-d-r:after { background-image: url("data:image/svg+xml;charset=US-ASCII,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22iso-8859-1%22%3F%3E%3C!DOCTYPE%20svg%20PUBLIC%20%22-%2F%2FW3C%2F%2FDTD%20SVG%201.1%2F%2FEN%22%20%22http%3A%2F%2Fwww.w3.org%2FGraphics%2FSVG%2F1.1%2FDTD%2Fsvg11.dtd%22%3E%3Csvg%20version%3D%221.1%22%20id%3D%22Layer_1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20x%3D%220px%22%20y%3D%220px%22%20%20width%3D%2214px%22%20height%3D%2214px%22%20viewBox%3D%220%200%2014%2014%22%20style%3D%22enable-background%3Anew%200%200%2014%2014%3B%22%20xml%3Aspace%3D%22preserve%22%3E%3Cpolygon%20fill%3D%22%23FFF%22%20points%3D%2210.5%2C7.5%203%2C0%200%2C3%207.5%2C10.5%204%2C14%2014%2C14%2014%2C4%20%22%2F%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3C%2Fsvg%3E"); } -.ui-icon-arrow-d:after { +a[data-icon="arrow-d"]:after { background-image: url("data:image/svg+xml;charset=US-ASCII,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22iso-8859-1%22%3F%3E%3C!DOCTYPE%20svg%20PUBLIC%20%22-%2F%2FW3C%2F%2FDTD%20SVG%201.1%2F%2FEN%22%20%22http%3A%2F%2Fwww.w3.org%2FGraphics%2FSVG%2F1.1%2FDTD%2Fsvg11.dtd%22%3E%3Csvg%20version%3D%221.1%22%20id%3D%22Layer_1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20x%3D%220px%22%20y%3D%220px%22%20%20width%3D%2214px%22%20height%3D%2214px%22%20viewBox%3D%220%200%2014%2014%22%20style%3D%22enable-background%3Anew%200%200%2014%2014%3B%22%20xml%3Aspace%3D%22preserve%22%3E%3Cpolygon%20fill%3D%22%23FFF%22%20points%3D%229%2C7%209%2C0%205%2C0%205%2C7%200%2C7%207%2C14%2014%2C7%20%22%2F%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3C%2Fsvg%3E"); } .ui-icon-arrow-l:after { @@ -44,7 +44,7 @@ .ui-icon-audio:after { background-image: url("data:image/svg+xml;charset=US-ASCII,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22iso-8859-1%22%3F%3E%3C!DOCTYPE%20svg%20PUBLIC%20%22-%2F%2FW3C%2F%2FDTD%20SVG%201.1%2F%2FEN%22%20%22http%3A%2F%2Fwww.w3.org%2FGraphics%2FSVG%2F1.1%2FDTD%2Fsvg11.dtd%22%3E%3Csvg%20version%3D%221.1%22%20id%3D%22Layer_1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20x%3D%220px%22%20y%3D%220px%22%20%20width%3D%2214.018px%22%20height%3D%2214px%22%20viewBox%3D%220%200%2014.018%2014%22%20style%3D%22enable-background%3Anew%200%200%2014.018%2014%3B%22%20xml%3Aspace%3D%22preserve%22%3E%3Cpath%20fill%3D%22%23FFF%22%20d%3D%22M1%2C4C0.447%2C4%2C0%2C4.447%2C0%2C5v4c0%2C0.553%2C0.447%2C1%2C1%2C1h1l4%2C4V0L2%2C4H1z%20M10.346%2C7c0-1.699-1.042-3.154-2.546-3.867L6.982%2C4.68%20C7.885%2C5.107%2C8.51%2C5.98%2C8.51%2C7S7.885%2C8.893%2C6.982%2C9.32L7.8%2C10.867C9.304%2C10.154%2C10.346%2C8.699%2C10.346%2C7z%20M9.447%2C0.017L8.618%2C1.586%20C10.723%2C2.584%2C12.182%2C4.621%2C12.182%2C7s-1.459%2C4.416-3.563%2C5.414l0.829%2C1.569c2.707-1.283%2C4.57-3.925%2C4.57-6.983%20S12.154%2C1.3%2C9.447%2C0.017z%22%2F%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3C%2Fsvg%3E"); } -.ui-icon-back:after { +a[data-icon="back"]:after { background-image: url("data:image/svg+xml;charset=US-ASCII,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22iso-8859-1%22%3F%3E%3C!DOCTYPE%20svg%20PUBLIC%20%22-%2F%2FW3C%2F%2FDTD%20SVG%201.1%2F%2FEN%22%20%22http%3A%2F%2Fwww.w3.org%2FGraphics%2FSVG%2F1.1%2FDTD%2Fsvg11.dtd%22%3E%3Csvg%20version%3D%221.1%22%20id%3D%22Layer_1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20x%3D%220px%22%20y%3D%220px%22%20%20width%3D%2214px%22%20height%3D%2214px%22%20viewBox%3D%220%200%2014%2014%22%20style%3D%22enable-background%3Anew%200%200%2014%2014%3B%22%20xml%3Aspace%3D%22preserve%22%3E%3Cpath%20style%3D%22fill%3A%23FFFFFF%3B%22%20d%3D%22M5%2C3V0L1%2C4l4%2C4V5c0%2C0%2C6%2C0%2C6%2C3s-5%2C4-5%2C4v2c0%2C0%2C7-1%2C7-6C13%2C4%2C8%2C3%2C5%2C3z%22%2F%3E%3C%2Fsvg%3E"); } .ui-icon-bars:after { @@ -56,113 +56,38 @@ .ui-icon-calendar:after { background-image: url("data:image/svg+xml;charset=US-ASCII,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22iso-8859-1%22%3F%3E%3C!DOCTYPE%20svg%20PUBLIC%20%22-%2F%2FW3C%2F%2FDTD%20SVG%201.1%2F%2FEN%22%20%22http%3A%2F%2Fwww.w3.org%2FGraphics%2FSVG%2F1.1%2FDTD%2Fsvg11.dtd%22%3E%3Csvg%20version%3D%221.1%22%20id%3D%22Layer_1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20x%3D%220px%22%20y%3D%220px%22%20%20width%3D%2214px%22%20height%3D%2214px%22%20viewBox%3D%220%200%2014%2014%22%20style%3D%22enable-background%3Anew%200%200%2014%2014%3B%22%20xml%3Aspace%3D%22preserve%22%3E%3Cpath%20fill%3D%22%23FFF%22%20d%3D%22M0%2C8h2V6H0V8z%20M3%2C8h2V6H3V8z%20M6%2C8h2V6H6V8z%20M9%2C8h2V6H9V8z%20M12%2C8h2V6h-2V8z%20M0%2C11h2V9H0V11z%20M3%2C11h2V9H3V11z%20M6%2C11h2V9H6V11z%20%20M9%2C11h2V9H9V11z%20M12%2C11h2V9h-2V11z%20M0%2C14h2v-2H0V14z%20M3%2C14h2v-2H3V14z%20M6%2C14h2v-2H6V14z%20M9%2C14h2v-2H9V14z%20M12%2C1%20c0-0.553-0.447-1-1-1s-1%2C0.447-1%2C1H4c0-0.553-0.447-1-1-1S2%2C0.447%2C2%2C1H0v4h14V1H12z%22%2F%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3C%2Fsvg%3E"); } -.ui-icon-camera:after { - background-image: url("data:image/svg+xml;charset=US-ASCII,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22iso-8859-1%22%3F%3E%3C!DOCTYPE%20svg%20PUBLIC%20%22-%2F%2FW3C%2F%2FDTD%20SVG%201.1%2F%2FEN%22%20%22http%3A%2F%2Fwww.w3.org%2FGraphics%2FSVG%2F1.1%2FDTD%2Fsvg11.dtd%22%3E%3Csvg%20version%3D%221.1%22%20id%3D%22Layer_1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20x%3D%220px%22%20y%3D%220px%22%20%20width%3D%2214px%22%20height%3D%2214px%22%20viewBox%3D%220%200%2014%2014%22%20style%3D%22enable-background%3Anew%200%200%2014%2014%3B%22%20xml%3Aspace%3D%22preserve%22%3E%3Cpath%20style%3D%22fill%3A%23FFFFFF%3B%22%20d%3D%22M12%2C2.5H9.908c-0.206-0.581-0.756-1-1.408-1h-3c-0.652%2C0-1.202%2C0.419-1.408%2C1H2c-1.104%2C0-2%2C0.896-2%2C2%20v6c0%2C1.104%2C0.896%2C2%2C2%2C2h10c1.104%2C0%2C2-0.896%2C2-2v-6C14%2C3.396%2C13.104%2C2.5%2C12%2C2.5z%20M7%2C10.5c-1.657%2C0-3-1.344-3-3c0-1.657%2C1.343-3%2C3-3%20s3%2C1.343%2C3%2C3C10%2C9.156%2C8.657%2C10.5%2C7%2C10.5z%20M7%2C5.5c-1.104%2C0-2%2C0.896-2%2C2c0%2C1.104%2C0.896%2C2%2C2%2C2c1.104%2C0%2C2-0.896%2C2-2%20C9%2C6.396%2C8.104%2C5.5%2C7%2C5.5z%22%2F%3E%3C%2Fsvg%3E"); -} -.ui-icon-carat-d:after { - background-image: url("data:image/svg+xml;charset=US-ASCII,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22iso-8859-1%22%3F%3E%3C!DOCTYPE%20svg%20PUBLIC%20%22-%2F%2FW3C%2F%2FDTD%20SVG%201.1%2F%2FEN%22%20%22http%3A%2F%2Fwww.w3.org%2FGraphics%2FSVG%2F1.1%2FDTD%2Fsvg11.dtd%22%3E%3Csvg%20version%3D%221.1%22%20id%3D%22Layer_1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20x%3D%220px%22%20y%3D%220px%22%20%20width%3D%2214px%22%20height%3D%2214px%22%20viewBox%3D%220%200%2014%2014%22%20style%3D%22enable-background%3Anew%200%200%2014%2014%3B%22%20xml%3Aspace%3D%22preserve%22%3E%3Cpolygon%20style%3D%22fill%3A%23FFFFFF%3B%22%20points%3D%2211.949%2C3.404%207%2C8.354%202.05%2C3.404%20-0.071%2C5.525%207%2C12.596%2014.07%2C5.525%20%22%2F%3E%3C%2Fsvg%3E"); -} -.ui-icon-carat-l:after { - background-image: url("data:image/svg+xml;charset=US-ASCII,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22iso-8859-1%22%3F%3E%3C!DOCTYPE%20svg%20PUBLIC%20%22-%2F%2FW3C%2F%2FDTD%20SVG%201.1%2F%2FEN%22%20%22http%3A%2F%2Fwww.w3.org%2FGraphics%2FSVG%2F1.1%2FDTD%2Fsvg11.dtd%22%3E%3Csvg%20version%3D%221.1%22%20id%3D%22Layer_1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20x%3D%220px%22%20y%3D%220px%22%20%20width%3D%2214px%22%20height%3D%2214px%22%20viewBox%3D%220%200%2014%2014%22%20style%3D%22enable-background%3Anew%200%200%2014%2014%3B%22%20xml%3Aspace%3D%22preserve%22%3E%3Cpolygon%20style%3D%22fill%3A%23FFFFFF%3B%22%20points%3D%2210.596%2C11.949%205.646%2C7%2010.596%2C2.05%208.475%2C-0.071%201.404%2C7%208.475%2C14.07%20%22%2F%3E%3C%2Fsvg%3E"); -} -.ui-icon-carat-r:after { - background-image: url("data:image/svg+xml;charset=US-ASCII,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22iso-8859-1%22%3F%3E%3C!DOCTYPE%20svg%20PUBLIC%20%22-%2F%2FW3C%2F%2FDTD%20SVG%201.1%2F%2FEN%22%20%22http%3A%2F%2Fwww.w3.org%2FGraphics%2FSVG%2F1.1%2FDTD%2Fsvg11.dtd%22%3E%3Csvg%20version%3D%221.1%22%20id%3D%22Layer_1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20x%3D%220px%22%20y%3D%220px%22%20%20width%3D%2214px%22%20height%3D%2214px%22%20viewBox%3D%220%200%2014%2014%22%20style%3D%22enable-background%3Anew%200%200%2014%2014%3B%22%20xml%3Aspace%3D%22preserve%22%3E%3Cpolygon%20style%3D%22fill%3A%23FFFFFF%3B%22%20points%3D%223.404%2C2.051%208.354%2C7%203.404%2C11.95%205.525%2C14.07%2012.596%2C7%205.525%2C-0.071%20%22%2F%3E%3C%2Fsvg%3E"); -} -.ui-icon-carat-u:after { - background-image: url("data:image/svg+xml;charset=US-ASCII,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22iso-8859-1%22%3F%3E%3C!DOCTYPE%20svg%20PUBLIC%20%22-%2F%2FW3C%2F%2FDTD%20SVG%201.1%2F%2FEN%22%20%22http%3A%2F%2Fwww.w3.org%2FGraphics%2FSVG%2F1.1%2FDTD%2Fsvg11.dtd%22%3E%3Csvg%20version%3D%221.1%22%20id%3D%22Layer_1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20x%3D%220px%22%20y%3D%220px%22%20%20width%3D%2214px%22%20height%3D%2214px%22%20viewBox%3D%220%200%2014%2014%22%20style%3D%22enable-background%3Anew%200%200%2014%2014%3B%22%20xml%3Aspace%3D%22preserve%22%3E%3Cpolygon%20style%3D%22fill%3A%23FFFFFF%3B%22%20points%3D%222.051%2C10.596%207%2C5.646%2011.95%2C10.596%2014.07%2C8.475%207%2C1.404%20-0.071%2C8.475%20%22%2F%3E%3C%2Fsvg%3E"); -} .ui-icon-check:after, /* Used ui-checkbox-on twice to increase specificity. If active state has background-image for gradient this rule overrides. */ html .ui-btn.ui-checkbox-on.ui-checkbox-on:after { background-image: url("data:image/svg+xml;charset=US-ASCII,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22iso-8859-1%22%3F%3E%3C!DOCTYPE%20svg%20PUBLIC%20%22-%2F%2FW3C%2F%2FDTD%20SVG%201.1%2F%2FEN%22%20%22http%3A%2F%2Fwww.w3.org%2FGraphics%2FSVG%2F1.1%2FDTD%2Fsvg11.dtd%22%3E%3Csvg%20version%3D%221.1%22%20id%3D%22Layer_1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20x%3D%220px%22%20y%3D%220px%22%20%20width%3D%2214px%22%20height%3D%2214px%22%20viewBox%3D%220%200%2014%2014%22%20style%3D%22enable-background%3Anew%200%200%2014%2014%3B%22%20xml%3Aspace%3D%22preserve%22%3E%3Cpolygon%20style%3D%22fill%3A%23FFFFFF%3B%22%20points%3D%2214%2C4%2011%2C1%205.003%2C6.997%203%2C5%200%2C8%204.966%2C13%204.983%2C12.982%205%2C13%20%22%2F%3E%3C%2Fsvg%3E"); } -.ui-icon-clock:after { - background-image: url("data:image/svg+xml;charset=US-ASCII,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22iso-8859-1%22%3F%3E%3C!DOCTYPE%20svg%20PUBLIC%20%22-%2F%2FW3C%2F%2FDTD%20SVG%201.1%2F%2FEN%22%20%22http%3A%2F%2Fwww.w3.org%2FGraphics%2FSVG%2F1.1%2FDTD%2Fsvg11.dtd%22%3E%3Csvg%20version%3D%221.1%22%20id%3D%22Layer_1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20x%3D%220px%22%20y%3D%220px%22%20%20width%3D%2214px%22%20height%3D%2214px%22%20viewBox%3D%220%200%2014%2014%22%20style%3D%22enable-background%3Anew%200%200%2014%2014%3B%22%20xml%3Aspace%3D%22preserve%22%3E%3Cpath%20fill%3D%22%23FFF%22%20d%3D%22M7%2C0C3.134%2C0%2C0%2C3.134%2C0%2C7s3.134%2C7%2C7%2C7s7-3.134%2C7-7S10.866%2C0%2C7%2C0z%20M7%2C12c-2.762%2C0-5-2.238-5-5s2.238-5%2C5-5s5%2C2.238%2C5%2C5%20S9.762%2C12%2C7%2C12z%20M9%2C6H8V4c0-0.553-0.447-1-1-1S6%2C3.447%2C6%2C4v3c0%2C0.553%2C0.447%2C1%2C1%2C1h2c0.553%2C0%2C1-0.447%2C1-1S9.553%2C6%2C9%2C6z%22%2F%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3C%2Fsvg%3E"); -} -.ui-icon-cloud:after { - background-image: url("data:image/svg+xml;charset=US-ASCII,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22iso-8859-1%22%3F%3E%3C!DOCTYPE%20svg%20PUBLIC%20%22-%2F%2FW3C%2F%2FDTD%20SVG%201.1%2F%2FEN%22%20%22http%3A%2F%2Fwww.w3.org%2FGraphics%2FSVG%2F1.1%2FDTD%2Fsvg11.dtd%22%3E%3Csvg%20version%3D%221.1%22%20id%3D%22Layer_1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20x%3D%220px%22%20y%3D%220px%22%20%20width%3D%2214px%22%20height%3D%2214px%22%20viewBox%3D%220%200%2014%2014%22%20style%3D%22enable-background%3Anew%200%200%2014%2014%3B%22%20xml%3Aspace%3D%22preserve%22%3E%3Cpath%20style%3D%22fill%3A%23FFFFFF%3B%22%20d%3D%22M14%2C9.5c0-0.793-0.465-1.473-1.134-1.795C12.949%2C7.484%2C13%2C7.249%2C13%2C7c0-1.104-0.896-2-2-2%20c-0.158%2C0-0.311%2C0.023-0.457%2C0.058C9.816%2C3.549%2C8.286%2C2.5%2C6.5%2C2.5c-2.33%2C0-4.224%2C1.777-4.454%2C4.046C0.883%2C6.76%2C0%2C7.773%2C0%2C9%20c0%2C1.381%2C1.119%2C2.5%2C2.5%2C2.5h10v-0.07C13.361%2C11.206%2C14%2C10.432%2C14%2C9.5z%22%2F%3E%3C%2Fsvg%3E"); -} -.ui-icon-comment:after { - background-image: url("data:image/svg+xml;charset=US-ASCII,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22iso-8859-1%22%3F%3E%3C!DOCTYPE%20svg%20PUBLIC%20%22-%2F%2FW3C%2F%2FDTD%20SVG%201.1%2F%2FEN%22%20%22http%3A%2F%2Fwww.w3.org%2FGraphics%2FSVG%2F1.1%2FDTD%2Fsvg11.dtd%22%3E%3Csvg%20version%3D%221.1%22%20id%3D%22Layer_1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20x%3D%220px%22%20y%3D%220px%22%20%20width%3D%2214px%22%20height%3D%2214px%22%20viewBox%3D%220%200%2014%2014%22%20style%3D%22enable-background%3Anew%200%200%2014%2014%3B%22%20xml%3Aspace%3D%22preserve%22%3E%3Cpath%20fill%3D%22%23FFF%22%20d%3D%22M12%2C0H2C0.896%2C0%2C0%2C0.896%2C0%2C2v7c0%2C1.104%2C0.896%2C2%2C2%2C2h1v3l3-3h6c1.104%2C0%2C2-0.896%2C2-2V2C14%2C0.896%2C13.104%2C0%2C12%2C0z%22%2F%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3C%2Fsvg%3E"); -} -.ui-icon-delete:after { +a[data-icon="delete"]:after, .ui-icon-delete:after { background-image: url("data:image/svg+xml;charset=US-ASCII,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22iso-8859-1%22%3F%3E%3C!DOCTYPE%20svg%20PUBLIC%20%22-%2F%2FW3C%2F%2FDTD%20SVG%201.1%2F%2FEN%22%20%22http%3A%2F%2Fwww.w3.org%2FGraphics%2FSVG%2F1.1%2FDTD%2Fsvg11.dtd%22%3E%3Csvg%20version%3D%221.1%22%20id%3D%22Layer_1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20x%3D%220px%22%20y%3D%220px%22%20%20width%3D%2214px%22%20height%3D%2214px%22%20viewBox%3D%220%200%2014%2014%22%20style%3D%22enable-background%3Anew%200%200%2014%2014%3B%22%20xml%3Aspace%3D%22preserve%22%3E%3Cpolygon%20fill%3D%22%23FFF%22%20points%3D%2214%2C3%2011%2C0%207%2C4%203%2C0%200%2C3%204%2C7%200%2C11%203%2C14%207%2C10%2011%2C14%2014%2C11%2010%2C7%20%22%2F%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3C%2Fsvg%3E"); } -.ui-icon-delete:after { - background-image: url("data:image/svg+xml;charset=US-ASCII,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22iso-8859-1%22%3F%3E%3C!DOCTYPE%20svg%20PUBLIC%20%22-%2F%2FW3C%2F%2FDTD%20SVG%201.1%2F%2FEN%22%20%22http%3A%2F%2Fwww.w3.org%2FGraphics%2FSVG%2F1.1%2FDTD%2Fsvg11.dtd%22%3E%3Csvg%20version%3D%221.1%22%20id%3D%22Layer_1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20x%3D%220px%22%20y%3D%220px%22%20%20width%3D%2214px%22%20height%3D%2214px%22%20viewBox%3D%220%200%2014%2014%22%20style%3D%22enable-background%3Anew%200%200%2014%2014%3B%22%20xml%3Aspace%3D%22preserve%22%3E%3Cpolygon%20fill%3D%22%23FFF%22%20points%3D%2214%2C3%2011%2C0%207%2C4%203%2C0%200%2C3%204%2C7%200%2C11%203%2C14%207%2C10%2011%2C14%2014%2C11%2010%2C7%20%22%2F%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3C%2Fsvg%3E"); -} -.ui-icon-edit:after { +a[data-icon="edit"]:after, .ui-icon-edit:after { background-image: url("data:image/svg+xml;charset=US-ASCII,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22iso-8859-1%22%3F%3E%3C!DOCTYPE%20svg%20PUBLIC%20%22-%2F%2FW3C%2F%2FDTD%20SVG%201.1%2F%2FEN%22%20%22http%3A%2F%2Fwww.w3.org%2FGraphics%2FSVG%2F1.1%2FDTD%2Fsvg11.dtd%22%3E%3Csvg%20version%3D%221.1%22%20id%3D%22Layer_1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20x%3D%220px%22%20y%3D%220px%22%20%20width%3D%2214px%22%20height%3D%2214px%22%20viewBox%3D%220%200%2014%2014%22%20style%3D%22enable-background%3Anew%200%200%2014%2014%3B%22%20xml%3Aspace%3D%22preserve%22%3E%3Cpath%20fill%3D%22%23FFF%22%20d%3D%22M1%2C10l-1%2C4l4-1l7-7L8%2C3L1%2C10z%20M11%2C0L9%2C2l3%2C3l2-2L11%2C0z%22%2F%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3C%2Fsvg%3E"); } -.ui-icon-eye:after { - background-image: url("data:image/svg+xml;charset=US-ASCII,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22iso-8859-1%22%3F%3E%3C!DOCTYPE%20svg%20PUBLIC%20%22-%2F%2FW3C%2F%2FDTD%20SVG%201.1%2F%2FEN%22%20%22http%3A%2F%2Fwww.w3.org%2FGraphics%2FSVG%2F1.1%2FDTD%2Fsvg11.dtd%22%3E%3Csvg%20version%3D%221.1%22%20id%3D%22Layer_1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20x%3D%220px%22%20y%3D%220px%22%20%20width%3D%2214px%22%20height%3D%2214px%22%20viewBox%3D%220%200%2014%2014%22%20style%3D%22enable-background%3Anew%200%200%2014%2014%3B%22%20xml%3Aspace%3D%22preserve%22%3E%3Cpath%20style%3D%22fill%3A%23FFFFFF%3B%22%20d%3D%22M7%2C2C3%2C2%2C0%2C7%2C0%2C7s3%2C5%2C7%2C5s7-5%2C7-5S11%2C2%2C7%2C2z%20M7%2C10c-1.657%2C0-3-1.344-3-3c0-1.657%2C1.343-3%2C3-3%20s3%2C1.343%2C3%2C3C10%2C8.656%2C8.657%2C10%2C7%2C10z%20M7%2C6C6.448%2C6%2C6%2C6.447%2C6%2C7c0%2C0.553%2C0.448%2C1%2C1%2C1s1-0.447%2C1-1C8%2C6.447%2C7.552%2C6%2C7%2C6z%22%2F%3E%3C%2Fsvg%3E"); -} -.ui-icon-forbidden:after { - background-image: url("data:image/svg+xml;charset=US-ASCII,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22iso-8859-1%22%3F%3E%3C!DOCTYPE%20svg%20PUBLIC%20%22-%2F%2FW3C%2F%2FDTD%20SVG%201.1%2F%2FEN%22%20%22http%3A%2F%2Fwww.w3.org%2FGraphics%2FSVG%2F1.1%2FDTD%2Fsvg11.dtd%22%3E%3Csvg%20version%3D%221.1%22%20id%3D%22Layer_1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20x%3D%220px%22%20y%3D%220px%22%20%20width%3D%2214px%22%20height%3D%2214px%22%20viewBox%3D%220%200%2014%2014%22%20style%3D%22enable-background%3Anew%200%200%2014%2014%3B%22%20xml%3Aspace%3D%22preserve%22%3E%3Cpath%20fill%3D%22%23FFF%22%20d%3D%22M12.601%2C11.187C13.476%2C10.018%2C14%2C8.572%2C14%2C7c0-3.866-3.134-7-7-7C5.428%2C0%2C3.982%2C0.524%2C2.813%2C1.399L2.757%2C1.343L2.053%2C2.048%20L2.048%2C2.053L1.343%2C2.758l0.056%2C0.056C0.524%2C3.982%2C0%2C5.428%2C0%2C7c0%2C3.866%2C3.134%2C7%2C7%2C7c1.572%2C0%2C3.018-0.524%2C4.187-1.399l0.056%2C0.057%20l0.705-0.705l0.005-0.005l0.705-0.705L12.601%2C11.187z%20M7%2C2c2.761%2C0%2C5%2C2.238%2C5%2C5c0%2C1.019-0.308%2C1.964-0.832%2C2.754L4.246%2C2.832%20C5.036%2C2.308%2C5.981%2C2%2C7%2C2z%20M7%2C12c-2.761%2C0-5-2.238-5-5c0-1.019%2C0.308-1.964%2C0.832-2.754l6.922%2C6.922C8.964%2C11.692%2C8.019%2C12%2C7%2C12z%22%2F%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3C%2Fsvg%3E"); -} .ui-icon-forward:after { background-image: url("data:image/svg+xml;charset=US-ASCII,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22iso-8859-1%22%3F%3E%3C!DOCTYPE%20svg%20PUBLIC%20%22-%2F%2FW3C%2F%2FDTD%20SVG%201.1%2F%2FEN%22%20%22http%3A%2F%2Fwww.w3.org%2FGraphics%2FSVG%2F1.1%2FDTD%2Fsvg11.dtd%22%3E%3Csvg%20version%3D%221.1%22%20id%3D%22Layer_1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20x%3D%220px%22%20y%3D%220px%22%20%20width%3D%2214px%22%20height%3D%2214px%22%20viewBox%3D%220%200%2014%2014%22%20style%3D%22enable-background%3Anew%200%200%2014%2014%3B%22%20xml%3Aspace%3D%22preserve%22%3E%3Cpath%20style%3D%22fill%3A%23FFFFFF%3B%22%20d%3D%22M13%2C4L9%2C0v3C6%2C3%2C1%2C4%2C1%2C8c0%2C5%2C7%2C6%2C7%2C6v-2c0%2C0-5-1-5-4s6-3%2C6-3v3L13%2C4z%22%2F%3E%3C%2Fsvg%3E"); } -.ui-icon-gear:after { +a[data-icon="gear"]:after, .ui-icon-gear:after { background-image: url("data:image/svg+xml;charset=US-ASCII,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22iso-8859-1%22%3F%3E%3C!DOCTYPE%20svg%20PUBLIC%20%22-%2F%2FW3C%2F%2FDTD%20SVG%201.1%2F%2FEN%22%20%22http%3A%2F%2Fwww.w3.org%2FGraphics%2FSVG%2F1.1%2FDTD%2Fsvg11.dtd%22%3E%3Csvg%20version%3D%221.1%22%20id%3D%22Layer_1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20x%3D%220px%22%20y%3D%220px%22%20%20width%3D%2214px%22%20height%3D%2214px%22%20viewBox%3D%220%200%2014%2014%22%20style%3D%22enable-background%3Anew%200%200%2014%2014%3B%22%20xml%3Aspace%3D%22preserve%22%3E%3Cpath%20fill%3D%22%23FFF%22%20d%3D%22M13.621%2C5.904l-1.036-0.259c-0.168-0.042-0.303-0.168-0.355-0.332c-0.092-0.284-0.205-0.559-0.339-0.82%20c-0.079-0.153-0.073-0.337%2C0.017-0.486l0.549-0.915c0.118-0.196%2C0.088-0.448-0.075-0.61l-0.862-0.863%20c-0.162-0.163-0.414-0.193-0.611-0.075l-0.916%2C0.55C9.844%2C2.182%2C9.659%2C2.188%2C9.506%2C2.109C9.244%2C1.975%2C8.97%2C1.861%2C8.686%2C1.77%20c-0.165-0.052-0.29-0.187-0.332-0.354L8.095%2C0.379C8.039%2C0.156%2C7.839%2C0%2C7.609%2C0H6.391c-0.229%2C0-0.43%2C0.156-0.485%2C0.379L5.646%2C1.415%20C5.604%2C1.582%2C5.479%2C1.718%2C5.313%2C1.77c-0.284%2C0.092-0.559%2C0.206-0.82%2C0.34C4.339%2C2.188%2C4.155%2C2.182%2C4.007%2C2.093L3.092%2C1.544%20c-0.196-0.118-0.448-0.087-0.61%2C0.075L1.619%2C2.481C1.457%2C2.644%2C1.426%2C2.896%2C1.544%2C3.093l0.549%2C0.914%20c0.089%2C0.148%2C0.095%2C0.332%2C0.017%2C0.486C1.975%2C4.755%2C1.861%2C5.029%2C1.77%2C5.314c-0.053%2C0.164-0.188%2C0.29-0.354%2C0.332L0.379%2C5.905%20C0.156%2C5.961%2C0%2C6.161%2C0%2C6.391v1.219c0%2C0.229%2C0.156%2C0.43%2C0.379%2C0.485l1.036%2C0.26C1.582%2C8.396%2C1.717%2C8.521%2C1.77%2C8.687%20c0.092%2C0.284%2C0.205%2C0.559%2C0.34%2C0.82C2.188%2C9.66%2C2.182%2C9.844%2C2.093%2C9.993l-0.549%2C0.915c-0.118%2C0.195-0.087%2C0.448%2C0.075%2C0.61%20l0.862%2C0.862c0.162%2C0.163%2C0.414%2C0.193%2C0.61%2C0.075l0.915-0.549c0.148-0.089%2C0.332-0.095%2C0.486-0.017%20c0.262%2C0.135%2C0.536%2C0.248%2C0.82%2C0.34c0.165%2C0.053%2C0.291%2C0.187%2C0.332%2C0.354l0.259%2C1.036C5.96%2C13.844%2C6.16%2C14%2C6.39%2C14h1.22%20c0.229%2C0%2C0.43-0.156%2C0.485-0.379l0.259-1.036c0.042-0.167%2C0.168-0.302%2C0.333-0.354c0.284-0.092%2C0.559-0.205%2C0.82-0.34%20c0.154-0.078%2C0.338-0.072%2C0.486%2C0.017l0.914%2C0.549c0.197%2C0.118%2C0.449%2C0.088%2C0.611-0.074l0.862-0.863%20c0.163-0.162%2C0.193-0.415%2C0.075-0.611l-0.549-0.915c-0.089-0.148-0.096-0.332-0.017-0.485c0.134-0.263%2C0.248-0.536%2C0.339-0.82%20c0.053-0.165%2C0.188-0.291%2C0.355-0.333l1.036-0.259C13.844%2C8.039%2C14%2C7.839%2C14%2C7.609V6.39C14%2C6.16%2C13.844%2C5.96%2C13.621%2C5.904z%20M7%2C10%20c-1.657%2C0-3-1.343-3-3s1.343-3%2C3-3s3%2C1.343%2C3%2C3S8.657%2C10%2C7%2C10z%22%2F%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3C%2Fsvg%3E"); } -.ui-icon-grid:after { - background-image: url("data:image/svg+xml;charset=US-ASCII,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22iso-8859-1%22%3F%3E%3C!DOCTYPE%20svg%20PUBLIC%20%22-%2F%2FW3C%2F%2FDTD%20SVG%201.1%2F%2FEN%22%20%22http%3A%2F%2Fwww.w3.org%2FGraphics%2FSVG%2F1.1%2FDTD%2Fsvg11.dtd%22%3E%3Csvg%20version%3D%221.1%22%20id%3D%22Layer_1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20x%3D%220px%22%20y%3D%220px%22%20%20width%3D%2214px%22%20height%3D%2214px%22%20viewBox%3D%220%200%2014%2014%22%20style%3D%22enable-background%3Anew%200%200%2014%2014%3B%22%20xml%3Aspace%3D%22preserve%22%3E%3Cpath%20fill%3D%22%23FFF%22%20d%3D%22M3%2C0H1C0.447%2C0%2C0%2C0.447%2C0%2C1v2c0%2C0.553%2C0.447%2C1%2C1%2C1h2c0.553%2C0%2C1-0.447%2C1-1V1C4%2C0.447%2C3.553%2C0%2C3%2C0z%20M8%2C0H6%20C5.447%2C0%2C5%2C0.447%2C5%2C1v2c0%2C0.553%2C0.447%2C1%2C1%2C1h2c0.553%2C0%2C1-0.447%2C1-1V1C9%2C0.447%2C8.553%2C0%2C8%2C0z%20M13%2C0h-2c-0.553%2C0-1%2C0.447-1%2C1v2%20c0%2C0.553%2C0.447%2C1%2C1%2C1h2c0.553%2C0%2C1-0.447%2C1-1V1C14%2C0.447%2C13.553%2C0%2C13%2C0z%20M3%2C5H1C0.447%2C5%2C0%2C5.447%2C0%2C6v2c0%2C0.553%2C0.447%2C1%2C1%2C1h2%20c0.553%2C0%2C1-0.447%2C1-1V6C4%2C5.447%2C3.553%2C5%2C3%2C5z%20M8%2C5H6C5.447%2C5%2C5%2C5.447%2C5%2C6v2c0%2C0.553%2C0.447%2C1%2C1%2C1h2c0.553%2C0%2C1-0.447%2C1-1V6%20C9%2C5.447%2C8.553%2C5%2C8%2C5z%20M13%2C5h-2c-0.553%2C0-1%2C0.447-1%2C1v2c0%2C0.553%2C0.447%2C1%2C1%2C1h2c0.553%2C0%2C1-0.447%2C1-1V6C14%2C5.447%2C13.553%2C5%2C13%2C5z%20M3%2C10%20H1c-0.553%2C0-1%2C0.447-1%2C1v2c0%2C0.553%2C0.447%2C1%2C1%2C1h2c0.553%2C0%2C1-0.447%2C1-1v-2C4%2C10.447%2C3.553%2C10%2C3%2C10z%20M8%2C10H6c-0.553%2C0-1%2C0.447-1%2C1v2%20c0%2C0.553%2C0.447%2C1%2C1%2C1h2c0.553%2C0%2C1-0.447%2C1-1v-2C9%2C10.447%2C8.553%2C10%2C8%2C10z%20M13%2C10h-2c-0.553%2C0-1%2C0.447-1%2C1v2c0%2C0.553%2C0.447%2C1%2C1%2C1h2%20c0.553%2C0%2C1-0.447%2C1-1v-2C14%2C10.447%2C13.553%2C10%2C13%2C10z%22%2F%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3C%2Fsvg%3E"); -} -.ui-icon-heart:after { - background-image: url("data:image/svg+xml;charset=US-ASCII,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22iso-8859-1%22%3F%3E%3C!DOCTYPE%20svg%20PUBLIC%20%22-%2F%2FW3C%2F%2FDTD%20SVG%201.1%2F%2FEN%22%20%22http%3A%2F%2Fwww.w3.org%2FGraphics%2FSVG%2F1.1%2FDTD%2Fsvg11.dtd%22%3E%3Csvg%20version%3D%221.1%22%20id%3D%22Layer_1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20x%3D%220px%22%20y%3D%220px%22%20%20width%3D%2214px%22%20height%3D%2214px%22%20viewBox%3D%220%200%2014%2014%22%20style%3D%22enable-background%3Anew%200%200%2014%2014%3B%22%20xml%3Aspace%3D%22preserve%22%3E%3Cpath%20style%3D%22fill%3A%23FFFFFF%3B%22%20d%3D%22M7%2C1.872c-2-3-7-2-7%2C2c0%2C3%2C4%2C7%2C4%2C7s2.417%2C2.479%2C3%2C3c0.583-0.521%2C3-3%2C3-3s4-4%2C4-7%20C14-0.128%2C9-1.128%2C7%2C1.872z%22%2F%3E%3C%2Fsvg%3E"); -} -.ui-icon-home:after { +a[data-icon="home"]:after, .ui-icon-home:after { background-image: url("data:image/svg+xml;charset=US-ASCII,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22iso-8859-1%22%3F%3E%3C!DOCTYPE%20svg%20PUBLIC%20%22-%2F%2FW3C%2F%2FDTD%20SVG%201.1%2F%2FEN%22%20%22http%3A%2F%2Fwww.w3.org%2FGraphics%2FSVG%2F1.1%2FDTD%2Fsvg11.dtd%22%3E%3Csvg%20version%3D%221.1%22%20id%3D%22Layer_1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20x%3D%220px%22%20y%3D%220px%22%20%20width%3D%2214px%22%20height%3D%2214px%22%20viewBox%3D%220%200%2014%2014%22%20style%3D%22enable-background%3Anew%200%200%2014%2014%3B%22%20xml%3Aspace%3D%22preserve%22%3E%3Cpolygon%20fill%3D%22%23FFF%22%20points%3D%227%2C0%200%2C7%202%2C7%202%2C14%205%2C14%205%2C9%209%2C9%209%2C14%2012%2C14%2012%2C7%2014%2C7%20%22%2F%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3C%2Fsvg%3E"); } -.ui-icon-info:after { +a[data-icon="info"]:after, .ui-icon-info:after { background-image: url("data:image/svg+xml;charset=US-ASCII,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22iso-8859-1%22%3F%3E%3C!DOCTYPE%20svg%20PUBLIC%20%22-%2F%2FW3C%2F%2FDTD%20SVG%201.1%2F%2FEN%22%20%22http%3A%2F%2Fwww.w3.org%2FGraphics%2FSVG%2F1.1%2FDTD%2Fsvg11.dtd%22%3E%3Csvg%20version%3D%221.1%22%20id%3D%22Layer_1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20x%3D%220px%22%20y%3D%220px%22%20%20width%3D%2214px%22%20height%3D%2214px%22%20viewBox%3D%220%200%2014%2014%22%20style%3D%22enable-background%3Anew%200%200%2014%2014%3B%22%20xml%3Aspace%3D%22preserve%22%3E%3Cpath%20fill%3D%22%23FFF%22%20d%3D%22M7%2C0C3.134%2C0%2C0%2C3.134%2C0%2C7s3.134%2C7%2C7%2C7s7-3.134%2C7-7S10.866%2C0%2C7%2C0z%20M7%2C2c0.552%2C0%2C1%2C0.447%2C1%2C1S7.552%2C4%2C7%2C4S6%2C3.553%2C6%2C3%20S6.448%2C2%2C7%2C2z%20M9%2C11H5v-1h1V6H5V5h3v5h1V11z%22%2F%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3C%2Fsvg%3E"); } -.ui-icon-location:after { - background-image: url("data:image/svg+xml;charset=US-ASCII,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22iso-8859-1%22%3F%3E%3C!DOCTYPE%20svg%20PUBLIC%20%22-%2F%2FW3C%2F%2FDTD%20SVG%201.1%2F%2FEN%22%20%22http%3A%2F%2Fwww.w3.org%2FGraphics%2FSVG%2F1.1%2FDTD%2Fsvg11.dtd%22%3E%3Csvg%20version%3D%221.1%22%20id%3D%22Layer_1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20x%3D%220px%22%20y%3D%220px%22%20%20width%3D%2214px%22%20height%3D%2214px%22%20viewBox%3D%220%200%2014%2014%22%20style%3D%22enable-background%3Anew%200%200%2014%2014%3B%22%20xml%3Aspace%3D%22preserve%22%3E%3Cpath%20style%3D%22fill%3A%23FFFFFF%3B%22%20d%3D%22M7%2C0C4.791%2C0%2C3%2C1.791%2C3%2C4c0%2C2%2C4%2C10%2C4%2C10s4-8%2C4-10C11%2C1.791%2C9.209%2C0%2C7%2C0z%20M7%2C6C5.896%2C6%2C5%2C5.104%2C5%2C4%20s0.896-2%2C2-2c1.104%2C0%2C2%2C0.896%2C2%2C2S8.104%2C6%2C7%2C6z%22%2F%3E%3C%2Fsvg%3E"); -} -.ui-icon-lock:after { - background-image: url("data:image/svg+xml;charset=US-ASCII,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22iso-8859-1%22%3F%3E%3C!DOCTYPE%20svg%20PUBLIC%20%22-%2F%2FW3C%2F%2FDTD%20SVG%201.1%2F%2FEN%22%20%22http%3A%2F%2Fwww.w3.org%2FGraphics%2FSVG%2F1.1%2FDTD%2Fsvg11.dtd%22%3E%3Csvg%20version%3D%221.1%22%20id%3D%22Layer_1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20x%3D%220px%22%20y%3D%220px%22%20%20width%3D%2214px%22%20height%3D%2214px%22%20viewBox%3D%220%200%2014%2014%22%20style%3D%22enable-background%3Anew%200%200%2014%2014%3B%22%20xml%3Aspace%3D%22preserve%22%3E%3Cpath%20style%3D%22fill%3A%23FFFFFF%3B%22%20d%3D%22M12%2C6V5c0-2.762-2.238-5-5-5C4.239%2C0%2C2%2C2.238%2C2%2C5v1H1v8h12V6H12z%20M7.5%2C9.848V12h-1V9.848%20C6.207%2C9.673%2C6%2C9.366%2C6%2C9c0-0.553%2C0.448-1%2C1-1s1%2C0.447%2C1%2C1C8%2C9.366%2C7.793%2C9.673%2C7.5%2C9.848z%20M10%2C6H4V5c0-1.657%2C1.343-3%2C3-3%20s3%2C1.343%2C3%2C3V6z%22%2F%3E%3C%2Fsvg%3E"); -} -.ui-icon-mail:after { - background-image: url("data:image/svg+xml;charset=US-ASCII,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22iso-8859-1%22%3F%3E%3C!DOCTYPE%20svg%20PUBLIC%20%22-%2F%2FW3C%2F%2FDTD%20SVG%201.1%2F%2FEN%22%20%22http%3A%2F%2Fwww.w3.org%2FGraphics%2FSVG%2F1.1%2FDTD%2Fsvg11.dtd%22%3E%3Csvg%20version%3D%221.1%22%20id%3D%22Layer_1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20x%3D%220px%22%20y%3D%220px%22%20%20width%3D%2214px%22%20height%3D%2214px%22%20viewBox%3D%220%200%2014%2014%22%20style%3D%22enable-background%3Anew%200%200%2014%2014%3B%22%20xml%3Aspace%3D%22preserve%22%3E%3Cpath%20style%3D%22fill%3A%23FFFFFF%3B%22%20d%3D%22M0%2C3.75V12h14V3.75L7%2C9L0%2C3.75z%20M14%2C2H0l7%2C5L14%2C2z%22%2F%3E%3C%2Fsvg%3E"); -} -.ui-icon-minus:after { +a[data-icon="minus"]:after, .ui-icon-minus:after { background-image: url("data:image/svg+xml;charset=US-ASCII,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22iso-8859-1%22%3F%3E%3C!DOCTYPE%20svg%20PUBLIC%20%22-%2F%2FW3C%2F%2FDTD%20SVG%201.1%2F%2FEN%22%20%22http%3A%2F%2Fwww.w3.org%2FGraphics%2FSVG%2F1.1%2FDTD%2Fsvg11.dtd%22%3E%3Csvg%20version%3D%221.1%22%20id%3D%22Layer_1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20x%3D%220px%22%20y%3D%220px%22%20%20width%3D%2214px%22%20height%3D%2214px%22%20viewBox%3D%220%200%2014%2014%22%20style%3D%22enable-background%3Anew%200%200%2014%2014%3B%22%20xml%3Aspace%3D%22preserve%22%3E%3Crect%20y%3D%225%22%20style%3D%22fill%3A%23FFFFFF%3B%22%20width%3D%2214%22%20height%3D%224%22%2F%3E%3C%2Fsvg%3E"); } -.ui-icon-navigation:after { - background-image: url("data:image/svg+xml;charset=US-ASCII,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22iso-8859-1%22%3F%3E%3C!DOCTYPE%20svg%20PUBLIC%20%22-%2F%2FW3C%2F%2FDTD%20SVG%201.1%2F%2FEN%22%20%22http%3A%2F%2Fwww.w3.org%2FGraphics%2FSVG%2F1.1%2FDTD%2Fsvg11.dtd%22%3E%3Csvg%20version%3D%221.1%22%20id%3D%22Layer_1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20x%3D%220px%22%20y%3D%220px%22%20%20width%3D%2214px%22%20height%3D%2214px%22%20viewBox%3D%220%200%2014%2014%22%20style%3D%22enable-background%3Anew%200%200%2014%2014%3B%22%20xml%3Aspace%3D%22preserve%22%3E%3Cpolygon%20style%3D%22fill%3A%23FFFFFF%3B%22%20points%3D%2213%2C1%200%2C6%207%2C7%208%2C14%20%22%2F%3E%3C%2Fsvg%3E"); -} -.ui-icon-phone:after { - background-image: url("data:image/svg+xml;charset=US-ASCII,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22iso-8859-1%22%3F%3E%3C!DOCTYPE%20svg%20PUBLIC%20%22-%2F%2FW3C%2F%2FDTD%20SVG%201.1%2F%2FEN%22%20%22http%3A%2F%2Fwww.w3.org%2FGraphics%2FSVG%2F1.1%2FDTD%2Fsvg11.dtd%22%3E%3Csvg%20version%3D%221.1%22%20id%3D%22Layer_1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20x%3D%220px%22%20y%3D%220px%22%20%20width%3D%2214px%22%20height%3D%2214px%22%20viewBox%3D%22-0.01%200.008%2014%2014%22%20style%3D%22enable-background%3Anew%20-0.01%200.008%2014%2014%3B%22%20xml%3Aspace%3D%22preserve%22%3E%3Cpath%20style%3D%22fill%3A%23FFFFFF%3B%22%20d%3D%22M6.939%2C9.189C6.165%2C8.557%2C5.271%2C7.705%2C4.497%2C6.744C3.953%2C6.071%2C3.473%2C5.363%2C3.969%2C4.866l-3.482-3.48%20C-0.021%2C2.02-1.146%2C5.04%2C3.675%2C9.984c5.08%2C5.211%2C8.356%2C4.097%2C8.92%2C3.511l-3.396-3.4C8.725%2C10.568%2C8.113%2C10.146%2C6.939%2C9.189z%20%20M13.82%2C11.519v-0.004c0%2C0-2.648-2.646-2.649-2.647c-0.21-0.211-0.546-0.205-0.754%2C0.002L9.455%2C9.831l3.403%2C3.407%20c0%2C0%2C0.962-0.96%2C0.961-0.961l0.002-0.001C14.043%2C12.056%2C14.021%2C11.721%2C13.82%2C11.519z%20M5.192%2C3.644V3.642%20c0.222-0.222%2C0.2-0.557%2C0-0.758V2.881c0%2C0-2.726-2.725-2.727-2.726C2.255-0.055%2C1.92-0.05%2C1.712%2C0.156L0.751%2C1.121l3.479%2C3.482%20C4.231%2C4.604%2C5.192%2C3.645%2C5.192%2C3.644z%22%2F%3E%3C%2Fsvg%3E"); -} -.ui-icon-plus:after { +a[data-icon="plus"]:after, .ui-icon-plus:after { background-image: url("data:image/svg+xml;charset=US-ASCII,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22iso-8859-1%22%3F%3E%3C!DOCTYPE%20svg%20PUBLIC%20%22-%2F%2FW3C%2F%2FDTD%20SVG%201.1%2F%2FEN%22%20%22http%3A%2F%2Fwww.w3.org%2FGraphics%2FSVG%2F1.1%2FDTD%2Fsvg11.dtd%22%3E%3Csvg%20version%3D%221.1%22%20id%3D%22Layer_1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20x%3D%220px%22%20y%3D%220px%22%20%20width%3D%2214px%22%20height%3D%2214px%22%20viewBox%3D%220%200%2014%2014%22%20style%3D%22enable-background%3Anew%200%200%2014%2014%3B%22%20xml%3Aspace%3D%22preserve%22%3E%3Cpolygon%20fill%3D%22%23FFF%22%20points%3D%2214%2C5%209%2C5%209%2C0%205%2C0%205%2C5%200%2C5%200%2C9%205%2C9%205%2C14%209%2C14%209%2C9%2014%2C9%20%22%2F%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3C%2Fsvg%3E"); } -.ui-icon-power:after { - background-image: url("data:image/svg+xml;charset=US-ASCII,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22iso-8859-1%22%3F%3E%3C!DOCTYPE%20svg%20PUBLIC%20%22-%2F%2FW3C%2F%2FDTD%20SVG%201.1%2F%2FEN%22%20%22http%3A%2F%2Fwww.w3.org%2FGraphics%2FSVG%2F1.1%2FDTD%2Fsvg11.dtd%22%3E%3Csvg%20version%3D%221.1%22%20id%3D%22Layer_1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20x%3D%220px%22%20y%3D%220px%22%20%20width%3D%2214px%22%20height%3D%2214px%22%20viewBox%3D%220%200%2014%2014%22%20style%3D%22enable-background%3Anew%200%200%2014%2014%3B%22%20xml%3Aspace%3D%22preserve%22%3E%3Cpath%20style%3D%22fill%3A%23FFFFFF%3B%22%20d%3D%22M11.243%2C2.408c-0.392-0.401-1.024-0.401-1.415%2C0c-0.391%2C0.401-0.391%2C1.054%2C0%2C1.455%20C10.584%2C4.642%2C11%2C5.675%2C11%2C6.773s-0.416%2C2.133-1.172%2C2.91c-1.512%2C1.558-4.145%2C1.558-5.656%2C0C3.416%2C8.904%2C3%2C7.872%2C3%2C6.773%20C3%2C5.673%2C3.416%2C4.64%2C4.172%2C3.863c0.39-0.401%2C0.39-1.054%2C0-1.455c-0.391-0.401-1.024-0.401-1.415%2C0C1.624%2C3.574%2C1%2C5.125%2C1%2C6.773%20c0%2C1.647%2C0.624%2C3.199%2C1.757%2C4.365c1.134%2C1.166%2C2.64%2C1.809%2C4.243%2C1.809c1.604%2C0%2C3.109-0.645%2C4.243-1.811%20C12.376%2C9.975%2C13%2C8.423%2C13%2C6.773C13%2C5.125%2C12.376%2C3.574%2C11.243%2C2.408z%20M7%2C8.053c0.553%2C0%2C1-0.445%2C1-1v-6c0-0.553-0.447-1-1-1%20c-0.553%2C0-1%2C0.447-1%2C1v6C6%2C7.604%2C6.447%2C8.053%2C7%2C8.053z%22%2F%3E%3C%2Fsvg%3E"); -} -.ui-icon-recycle:after { - background-image: url("data:image/svg+xml;charset=US-ASCII,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22iso-8859-1%22%3F%3E%3C!DOCTYPE%20svg%20PUBLIC%20%22-%2F%2FW3C%2F%2FDTD%20SVG%201.1%2F%2FEN%22%20%22http%3A%2F%2Fwww.w3.org%2FGraphics%2FSVG%2F1.1%2FDTD%2Fsvg11.dtd%22%3E%3Csvg%20version%3D%221.1%22%20id%3D%22Layer_1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20x%3D%220px%22%20y%3D%220px%22%20%20width%3D%2214px%22%20height%3D%2214px%22%20viewBox%3D%220%200%2014%2014%22%20style%3D%22enable-background%3Anew%200%200%2014%2014%3B%22%20xml%3Aspace%3D%22preserve%22%3E%3Cpath%20style%3D%22fill%3A%23FFFFFF%3B%22%20d%3D%22M3%2C7h1L2%2C4L0%2C7h1c0%2C3.313%2C2.687%2C6%2C6%2C6c0.702%2C0%2C1.374-0.127%2C2-0.35v-2.205C8.41%2C10.789%2C7.732%2C11%2C7%2C11%20C4.791%2C11%2C3%2C9.209%2C3%2C7z%20M13%2C7c0-3.313-2.688-6-6-6C6.298%2C1%2C5.626%2C1.127%2C5%2C1.349v2.206C5.59%2C3.211%2C6.268%2C3%2C7%2C3c2.209%2C0%2C4%2C1.791%2C4%2C4%20h-1l2%2C3l2-3H13z%22%2F%3E%3C%2Fsvg%3E"); -} -.ui-icon-refresh:after { +a[data-icon="refresh"]:after, .ui-icon-refresh:after { background-image: url("data:image/svg+xml;charset=US-ASCII,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22iso-8859-1%22%3F%3E%3C!DOCTYPE%20svg%20PUBLIC%20%22-%2F%2FW3C%2F%2FDTD%20SVG%201.1%2F%2FEN%22%20%22http%3A%2F%2Fwww.w3.org%2FGraphics%2FSVG%2F1.1%2FDTD%2Fsvg11.dtd%22%3E%3Csvg%20version%3D%221.1%22%20id%3D%22Layer_1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20x%3D%220px%22%20y%3D%220px%22%20%20width%3D%2214.001px%22%20height%3D%2214.002px%22%20viewBox%3D%220%200%2014.001%2014.002%22%20style%3D%22enable-background%3Anew%200%200%2014.001%2014.002%3B%22%20%20xml%3Aspace%3D%22preserve%22%3E%3Cpath%20fill%3D%22%23FFF%22%20d%3D%22M14.001%2C6.001v-6l-2.06%2C2.06c-0.423-0.424-0.897-0.809-1.44-1.122C7.153-0.994%2C2.872%2C0.153%2C0.939%2C3.501%20c-1.933%2C3.348-0.786%2C7.629%2C2.562%2C9.562c3.348%2C1.933%2C7.629%2C0.785%2C9.562-2.562l-1.732-1c-1.381%2C2.392-4.438%2C3.211-6.83%2C1.83%20s-3.211-4.438-1.83-6.83s4.438-3.211%2C6.83-1.83c0.389%2C0.225%2C0.718%2C0.506%2C1.02%2C0.81l-2.52%2C2.52H14.001z%22%2F%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3C%2Fsvg%3E"); } -.ui-icon-search:after { +a[data-icon="search"]:after, .ui-icon-search:after { background-image: url("data:image/svg+xml;charset=US-ASCII,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22iso-8859-1%22%3F%3E%3C!DOCTYPE%20svg%20PUBLIC%20%22-%2F%2FW3C%2F%2FDTD%20SVG%201.1%2F%2FEN%22%20%22http%3A%2F%2Fwww.w3.org%2FGraphics%2FSVG%2F1.1%2FDTD%2Fsvg11.dtd%22%3E%3Csvg%20version%3D%221.1%22%20id%3D%22Layer_1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20x%3D%220px%22%20y%3D%220px%22%20%20width%3D%2214px%22%20height%3D%2214px%22%20viewBox%3D%220%200%2014%2014%22%20style%3D%22enable-background%3Anew%200%200%2014%2014%3B%22%20xml%3Aspace%3D%22preserve%22%3E%3Cpath%20style%3D%22fill%3A%23FFFFFF%3B%22%20d%3D%22M10.171%2C8.766c0.617-0.888%2C0.979-1.964%2C0.979-3.126c0-3.037-2.463-5.5-5.5-5.5s-5.5%2C2.463-5.5%2C5.5%20s2.463%2C5.5%2C5.5%2C5.5c1.152%2C0%2C2.223-0.355%2C3.104-0.962l3.684%2C3.683l1.414-1.414L10.171%2C8.766z%20M5.649%2C9.14c-1.933%2C0-3.5-1.567-3.5-3.5%20c0-1.933%2C1.567-3.5%2C3.5-3.5c1.933%2C0%2C3.5%2C1.567%2C3.5%2C3.5C9.149%2C7.572%2C7.582%2C9.14%2C5.649%2C9.14z%22%2F%3E%3C%2Fsvg%3E"); -} -.ui-icon-shop:after { - background-image: url("data:image/svg+xml;charset=US-ASCII,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22iso-8859-1%22%3F%3E%3C!DOCTYPE%20svg%20PUBLIC%20%22-%2F%2FW3C%2F%2FDTD%20SVG%201.1%2F%2FEN%22%20%22http%3A%2F%2Fwww.w3.org%2FGraphics%2FSVG%2F1.1%2FDTD%2Fsvg11.dtd%22%3E%3Csvg%20version%3D%221.1%22%20id%3D%22Layer_1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20x%3D%220px%22%20y%3D%220px%22%20%20width%3D%2214px%22%20height%3D%2214px%22%20viewBox%3D%220%200%2014%2014%22%20style%3D%22enable-background%3Anew%200%200%2014%2014%3B%22%20xml%3Aspace%3D%22preserve%22%3E%3Cpath%20style%3D%22fill%3A%23FFFFFF%3B%22%20d%3D%22M10%2C4V3c0-1.657-1.343-3-3-3S4%2C1.343%2C4%2C3v1H1v10h12V4H10z%20M4.5%2C6C4.224%2C6%2C4%2C5.776%2C4%2C5.5%20S4.224%2C5%2C4.5%2C5S5%2C5.224%2C5%2C5.5S4.776%2C6%2C4.5%2C6z%20M5%2C3c0-1.104%2C0.896-2%2C2-2c1.104%2C0%2C2%2C0.896%2C2%2C2v1H5V3z%20M9.5%2C6C9.225%2C6%2C9%2C5.776%2C9%2C5.5%20S9.225%2C5%2C9.5%2C5S10%2C5.224%2C10%2C5.5S9.775%2C6%2C9.5%2C6z%22%2F%3E%3C%2Fsvg%3E"); -} -.ui-icon-star:after { - background-image: url("data:image/svg+xml;charset=US-ASCII,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22iso-8859-1%22%3F%3E%3C!DOCTYPE%20svg%20PUBLIC%20%22-%2F%2FW3C%2F%2FDTD%20SVG%201.1%2F%2FEN%22%20%22http%3A%2F%2Fwww.w3.org%2FGraphics%2FSVG%2F1.1%2FDTD%2Fsvg11.dtd%22%3E%3Csvg%20version%3D%221.1%22%20id%3D%22Layer_1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20x%3D%220px%22%20y%3D%220px%22%20%20width%3D%2214px%22%20height%3D%2214px%22%20viewBox%3D%220%200%2014%2014%22%20style%3D%22enable-background%3Anew%200%200%2014%2014%3B%22%20xml%3Aspace%3D%22preserve%22%3E%3Cpolygon%20style%3D%22fill%3A%23FFFFFF%3B%22%20points%3D%2214%2C5%209%2C5%207%2C0%205%2C5%200%2C5%204%2C8%202.625%2C13%207%2C10%2011.375%2C13%2010%2C8%20%22%2F%3E%3C%2Fsvg%3E"); -} -.ui-icon-tag:after { - background-image: url("data:image/svg+xml;charset=US-ASCII,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22iso-8859-1%22%3F%3E%3C!DOCTYPE%20svg%20PUBLIC%20%22-%2F%2FW3C%2F%2FDTD%20SVG%201.1%2F%2FEN%22%20%22http%3A%2F%2Fwww.w3.org%2FGraphics%2FSVG%2F1.1%2FDTD%2Fsvg11.dtd%22%3E%3Csvg%20version%3D%221.1%22%20id%3D%22Layer_1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20x%3D%220px%22%20y%3D%220px%22%20%20width%3D%2214px%22%20height%3D%2214px%22%20viewBox%3D%220%200%2014%2014%22%20style%3D%22enable-background%3Anew%200%200%2014%2014%3B%22%20xml%3Aspace%3D%22preserve%22%3E%3Cpath%20fill%3D%22%23FFF%22%20d%3D%22M5%2C0H0v5l9%2C9l5-5L5%2C0z%20M3%2C4C2.447%2C4%2C2%2C3.553%2C2%2C3s0.447-1%2C1-1s1%2C0.447%2C1%2C1S3.553%2C4%2C3%2C4z%22%2F%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3C%2Fsvg%3E"); -} -.ui-icon-user:after { - background-image: url("data:image/svg+xml;charset=US-ASCII,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22iso-8859-1%22%3F%3E%3C!DOCTYPE%20svg%20PUBLIC%20%22-%2F%2FW3C%2F%2FDTD%20SVG%201.1%2F%2FEN%22%20%22http%3A%2F%2Fwww.w3.org%2FGraphics%2FSVG%2F1.1%2FDTD%2Fsvg11.dtd%22%3E%3Csvg%20version%3D%221.1%22%20id%3D%22Layer_1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20x%3D%220px%22%20y%3D%220px%22%20%20width%3D%2214px%22%20height%3D%2214px%22%20viewBox%3D%220%200%2014%2014%22%20style%3D%22enable-background%3Anew%200%200%2014%2014%3B%22%20xml%3Aspace%3D%22preserve%22%3E%3Cpath%20fill%3D%22%23FFF%22%20d%3D%22M8.851%2C10.101c-0.18-0.399-0.2-0.763-0.153-1.104C9.383%2C8.49%2C9.738%2C7.621%2C9.891%2C6.465C10.493%2C6.355%2C10.5%2C5.967%2C10.5%2C5.5%20c0-0.437-0.008-0.804-0.502-0.94C9.999%2C4.539%2C10%2C4.521%2C10%2C4.5c0-2.103-1-4-2-4C8%2C0.5%2C7.5%2C0%2C6.5%2C0C5%2C0%2C4%2C1.877%2C4%2C4.5%20c0%2C0.021%2C0.001%2C0.039%2C0.002%2C0.06C3.508%2C4.696%2C3.5%2C5.063%2C3.5%2C5.5c0%2C0.467%2C0.007%2C0.855%2C0.609%2C0.965%20C4.262%2C7.621%2C4.617%2C8.49%2C5.303%2C8.997c0.047%2C0.341%2C0.026%2C0.704-0.153%2C1.104C1.503%2C10.503%2C0%2C12%2C0%2C12v2h14v-2%20C14%2C12%2C12.497%2C10.503%2C8.851%2C10.101z%22%2F%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3C%2Fsvg%3E"); -} -.ui-icon-video:after { - background-image: url("data:image/svg+xml;charset=US-ASCII,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22iso-8859-1%22%3F%3E%3C!DOCTYPE%20svg%20PUBLIC%20%22-%2F%2FW3C%2F%2FDTD%20SVG%201.1%2F%2FEN%22%20%22http%3A%2F%2Fwww.w3.org%2FGraphics%2FSVG%2F1.1%2FDTD%2Fsvg11.dtd%22%3E%3Csvg%20version%3D%221.1%22%20id%3D%22Layer_1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20x%3D%220px%22%20y%3D%220px%22%20%20width%3D%2214px%22%20height%3D%2214px%22%20viewBox%3D%220%20-2%2014%2014%22%20style%3D%22enable-background%3Anew%200%20-2%2014%2014%3B%22%20xml%3Aspace%3D%22preserve%22%3E%3Cpath%20style%3D%22fill%3A%23FFFFFF%3B%22%20d%3D%22M8%2C0H2C0.896%2C0%2C0%2C0.896%2C0%2C2v6c0%2C1.104%2C0.896%2C2%2C2%2C2h6c1.104%2C0%2C2-0.896%2C2-2V5V2C10%2C0.896%2C9.104%2C0%2C8%2C0z%20%20M10%2C5l4%2C4V1L10%2C5z%22%2F%3E%3C%2Fsvg%3E"); } \ No newline at end of file diff --git a/dashboard-ui/thirdparty/jquerymobile-1.4.5/jquery.mobile.custom.theme.css b/dashboard-ui/thirdparty/jquerymobile-1.4.5/jquery.mobile.custom.theme.css index bf53fbe867..941d935903 100644 --- a/dashboard-ui/thirdparty/jquerymobile-1.4.5/jquery.mobile.custom.theme.css +++ b/dashboard-ui/thirdparty/jquerymobile-1.4.5/jquery.mobile.custom.theme.css @@ -13,10 +13,6 @@ /* Font -----------------------------------------------------------------------------------------------------------*/ -html { - font-size: 100%; -} - body, button, .ui-btn { @@ -37,13 +33,13 @@ div.ui-controlgroup-label { -----------------------------------------------------------------------------------------------------------*/ .ui-btn, -label.ui-btn { +label.ui-btn, ul[data-role="listview"] a + a { font-weight: bold; border-width: 1px; border-style: solid; } -.ui-btn { +.ui-btn, ul[data-role="listview"] a + a { text-decoration: none !important; } @@ -89,7 +85,8 @@ label.ui-btn { .ui-btn-icon-right:after, .ui-btn-icon-top:after, .ui-btn-icon-bottom:after, -.ui-btn-icon-notext:after { +.ui-btn-icon-notext:after, +ul[data-role="listview"] a + a:after { background-color: #666 /*{global-icon-color}*/; background-color: rgba(0,0,0,.3) /*{global-icon-disc}*/; background-position: center center; @@ -238,7 +235,8 @@ html head + body .ui-btn.ui-btn-a, html .ui-bar-a .ui-btn:visited, html .ui-body-a .ui-btn:visited, html body .ui-group-theme-a .ui-btn:visited, -html head + body .ui-btn.ui-btn-a:visited { +html head + body .ui-btn.ui-btn-a:visited, +ul[data-role="listview"] a + a { background-color: #f6f6f6 /*{a-bup-background-color}*/; border-color: #ddd /*{a-bup-border}*/; color: #333 /*{a-bup-color}*/; @@ -523,7 +521,7 @@ div.ui-mobile-viewport { } /* Buttons and icons */ -.ui-btn { +.ui-btn, ul[data-role="listview"] a + a { font-size: 16px; margin: .5em 0; padding: .7em 1em; @@ -540,7 +538,7 @@ div.ui-mobile-viewport { user-select: none; } -.ui-btn-icon-notext { +.ui-btn-icon-notext, ul[data-role="listview"] a + a { padding: 0; width: 1.75em; height: 1.75em; @@ -588,7 +586,8 @@ div.ui-mobile-viewport { .ui-btn-icon-right:after, .ui-btn-icon-top:after, .ui-btn-icon-bottom:after, - .ui-btn-icon-notext:after { + .ui-btn-icon-notext:after, + ul[data-role="listview"] a + a:after { content: ""; position: absolute; display: block; @@ -598,7 +597,8 @@ div.ui-mobile-viewport { .ui-btn-icon-notext:after, .ui-btn-icon-left:after, -.ui-btn-icon-right:after { +.ui-btn-icon-right:after, +ul[data-role="listview"] a + a:after { top: 50%; margin-top: -11px; } @@ -623,7 +623,8 @@ div.ui-mobile-viewport { .ui-btn-icon-notext:after, .ui-btn-icon-top:after, -.ui-btn-icon-bottom:after { +.ui-btn-icon-bottom:after, +ul[data-role="listview"] a + a:after { left: 50%; margin-left: -11px; } From b7d63574a350ab8ebc985cb9294b7ae15550746e Mon Sep 17 00:00:00 2001 From: Luke Pulverenti Date: Mon, 8 Feb 2016 13:05:29 -0500 Subject: [PATCH 16/18] update metadata editor --- .../bower_components/iron-meta/.bower.json | 6 +- .../iron-selector/.bower.json | 4 +- .../paper-behaviors/.bower.json | 4 +- .../bower_components/paper-ripple/.bower.json | 6 +- .../bower_components/polymer/.bower.json | 2 +- .../metadataeditor/metadataeditor.js | 83 +++++++++++++++---- .../metadataeditor.template.html | 20 ++--- dashboard-ui/librarypathmapping.html | 13 +-- dashboard-ui/scripts/dlnaprofile.js | 4 +- dashboard-ui/scripts/librarybrowser.js | 2 +- dashboard-ui/scripts/librarypathmapping.js | 42 +++++----- dashboard-ui/scripts/metadataimagespage.js | 10 --- dashboard-ui/scripts/queryfilters.js | 2 +- .../strings/javascript/javascript.json | 1 + .../jquery.mobile.custom.icons.css | 7 +- 15 files changed, 121 insertions(+), 85 deletions(-) diff --git a/dashboard-ui/bower_components/iron-meta/.bower.json b/dashboard-ui/bower_components/iron-meta/.bower.json index e1304d174b..f4bfef4a7c 100644 --- a/dashboard-ui/bower_components/iron-meta/.bower.json +++ b/dashboard-ui/bower_components/iron-meta/.bower.json @@ -26,14 +26,14 @@ "webcomponentsjs": "webcomponents/webcomponentsjs#^0.7.0" }, "main": "iron-meta.html", - "homepage": "https://github.com/PolymerElements/iron-meta", + "homepage": "https://github.com/polymerelements/iron-meta", "_release": "1.1.1", "_resolution": { "type": "version", "tag": "v1.1.1", "commit": "e171ee234b482219c9514e6f9551df48ef48bd9f" }, - "_source": "git://github.com/PolymerElements/iron-meta.git", + "_source": "git://github.com/polymerelements/iron-meta.git", "_target": "^1.0.0", - "_originalSource": "PolymerElements/iron-meta" + "_originalSource": "polymerelements/iron-meta" } \ No newline at end of file diff --git a/dashboard-ui/bower_components/iron-selector/.bower.json b/dashboard-ui/bower_components/iron-selector/.bower.json index 2b3357dcb1..d749e70dcc 100644 --- a/dashboard-ui/bower_components/iron-selector/.bower.json +++ b/dashboard-ui/bower_components/iron-selector/.bower.json @@ -36,7 +36,7 @@ "tag": "v1.2.1", "commit": "1e6a7ee05e5ff350472ffc1ee780f145a7606b7b" }, - "_source": "git://github.com/PolymerElements/iron-selector.git", + "_source": "git://github.com/polymerelements/iron-selector.git", "_target": "^1.0.0", - "_originalSource": "PolymerElements/iron-selector" + "_originalSource": "polymerelements/iron-selector" } \ No newline at end of file diff --git a/dashboard-ui/bower_components/paper-behaviors/.bower.json b/dashboard-ui/bower_components/paper-behaviors/.bower.json index 2b04bf9f8a..a6b333d335 100644 --- a/dashboard-ui/bower_components/paper-behaviors/.bower.json +++ b/dashboard-ui/bower_components/paper-behaviors/.bower.json @@ -45,7 +45,7 @@ "tag": "v1.0.11", "commit": "e3c1ab0c72905b58fb4d9adc2921ea73b5c085a5" }, - "_source": "git://github.com/PolymerElements/paper-behaviors.git", + "_source": "git://github.com/polymerelements/paper-behaviors.git", "_target": "^1.0.0", - "_originalSource": "PolymerElements/paper-behaviors" + "_originalSource": "polymerelements/paper-behaviors" } \ No newline at end of file diff --git a/dashboard-ui/bower_components/paper-ripple/.bower.json b/dashboard-ui/bower_components/paper-ripple/.bower.json index 157225ee71..2f654d71c6 100644 --- a/dashboard-ui/bower_components/paper-ripple/.bower.json +++ b/dashboard-ui/bower_components/paper-ripple/.bower.json @@ -32,14 +32,14 @@ "iron-test-helpers": "PolymerElements/iron-test-helpers#^1.0.0" }, "ignore": [], - "homepage": "https://github.com/PolymerElements/paper-ripple", + "homepage": "https://github.com/polymerelements/paper-ripple", "_release": "1.0.5", "_resolution": { "type": "version", "tag": "v1.0.5", "commit": "d72e7a9a8ab518b901ed18dde492df3b87a93be5" }, - "_source": "git://github.com/PolymerElements/paper-ripple.git", + "_source": "git://github.com/polymerelements/paper-ripple.git", "_target": "^1.0.0", - "_originalSource": "PolymerElements/paper-ripple" + "_originalSource": "polymerelements/paper-ripple" } \ No newline at end of file diff --git a/dashboard-ui/bower_components/polymer/.bower.json b/dashboard-ui/bower_components/polymer/.bower.json index c99a3ee735..01365c0ce5 100644 --- a/dashboard-ui/bower_components/polymer/.bower.json +++ b/dashboard-ui/bower_components/polymer/.bower.json @@ -34,6 +34,6 @@ "commit": "284332a905ddd60eab11901a82ac037976175cf8" }, "_source": "git://github.com/Polymer/polymer.git", - "_target": "^1.1.0", + "_target": "^1.0.0", "_originalSource": "Polymer/polymer" } \ No newline at end of file diff --git a/dashboard-ui/components/metadataeditor/metadataeditor.js b/dashboard-ui/components/metadataeditor/metadataeditor.js index 39692a6152..9329a2df9f 100644 --- a/dashboard-ui/components/metadataeditor/metadataeditor.js +++ b/dashboard-ui/components/metadataeditor/metadataeditor.js @@ -65,15 +65,12 @@ require(['prompt'], function (prompt) { prompt({ - text: 'Value:', - callback: function (text) { - if (text == '') return; - var parent = $(source).parents('.editableListviewContainer'); - var list = parent.find('.paperList'); - var items = editableListViewValues(list); - items.push(text); - populateListView(list[0], items, sortCallback); - } + title: 'Value:' + }).then(function (text) { + var list = $(source).parents('.editableListviewContainer').find('.paperList'); + var items = editableListViewValues(list); + items.push(text); + populateListView(list[0], items, sortCallback); }); }); } @@ -82,6 +79,52 @@ $(source).parents('paper-icon-item').remove(); } + function editPerson(context, person, index) { + + $('#popupEditPerson', context).popup("open"); + + $('#txtPersonName', context).val(person.Name || ''); + $('#selectPersonType', context).val(person.Type || ''); + $('#txtPersonRole', context).val(person.Role || ''); + + if (index == null) { + index = ''; + } + + $("#fldPersonIndex", context).val(index); + } + + function savePersonInfo(page) { + + $('#popupEditPerson', page).popup("close"); + + var index = $("#fldPersonIndex", page).val(); + var person; + + var isNew = true; + + if (index) { + + isNew = false; + index = parseInt(index); + + person = currentItem.People[index]; + + } else { + person = {}; + } + + person.Name = $('#txtPersonName', page).val(); + person.Type = $('#selectPersonType', page).val(); + person.Role = $('#txtPersonRole', page).val(); + + if (isNew) { + currentItem.People.push(person); + } + + populatePeople(page, currentItem.People); + } + function init(context) { $('.btnCancel', context).on('click', function () { @@ -89,6 +132,15 @@ closeDialog(false); }); + context.querySelector('#chkLockData').addEventListener('click', function (e) { + + if (!e.target.checked) { + $('.providerSettingsContainer').show(); + } else { + $('.providerSettingsContainer').hide(); + } + }); + context.addEventListener('click', function (e) { var btnRemoveFromEditorList = parentWithClass(e.target, 'btnRemoveFromEditorList'); @@ -104,6 +156,11 @@ }); $('form', context).off('submit', onSubmit).on('submit', onSubmit); + + $("#btnAddPerson", context).on('click', function (event, data) { + + editPerson(context, {}); + }); } function getItem(itemId) { @@ -505,9 +562,9 @@ var chkLockData = context.querySelector("#chkLockData"); chkLockData.checked = lockData; if (chkLockData.checked) { - $('#providerSettingsContainer', context).hide(); + $('.providerSettingsContainer', context).hide(); } else { - $('#providerSettingsContainer', context).show(); + $('.providerSettingsContainer', context).show(); } populateInternetProviderSettings(context, item, item.LockedFields); @@ -690,8 +747,6 @@ html += ''; html += ''; - - //html += '
  • ' + items[i] + '
  • '; } list.innerHTML = html; @@ -762,7 +817,7 @@ } function populateInternetProviderSettings(context, item, lockedFields) { - var container = $('#providerSettingsContainer', context); + var container = $('.providerSettingsContainer', context); lockedFields = lockedFields || new Array(); var metadatafields = [ diff --git a/dashboard-ui/components/metadataeditor/metadataeditor.template.html b/dashboard-ui/components/metadataeditor/metadataeditor.template.html index 8867d0dab3..073feaa129 100644 --- a/dashboard-ui/components/metadataeditor/metadataeditor.template.html +++ b/dashboard-ui/components/metadataeditor/metadataeditor.template.html @@ -10,7 +10,7 @@
    @@ -26,7 +26,7 @@
    @@ -274,23 +274,23 @@

    ${HeaderMetadataSettings}

    - +
    ${MessageLeaveEmptyToInherit}

    - +
    ${MessageLeaveEmptyToInherit}


    - ${LabelLockItemToPreventChanges} + ${LabelLockItemToPreventChanges}

    -
    diff --git a/dashboard-ui/librarypathmapping.html b/dashboard-ui/librarypathmapping.html index 77b953c7ca..f6c501ca53 100644 --- a/dashboard-ui/librarypathmapping.html +++ b/dashboard-ui/librarypathmapping.html @@ -4,7 +4,7 @@ ${TitleMediaLibrary} -
    +
    @@ -17,16 +17,7 @@

    ${PathSubstitutionHelp}

    - - - - - - - - - -
    ${HeaderFrom}${HeaderTo}
    +

    diff --git a/dashboard-ui/scripts/dlnaprofile.js b/dashboard-ui/scripts/dlnaprofile.js index 8b2b367b06..f549b71cae 100644 --- a/dashboard-ui/scripts/dlnaprofile.js +++ b/dashboard-ui/scripts/dlnaprofile.js @@ -189,7 +189,7 @@ li += ''; - li += ''; + li += ''; li += ''; @@ -256,7 +256,7 @@ li += ''; - li += ''; + li += ''; li += ''; diff --git a/dashboard-ui/scripts/librarybrowser.js b/dashboard-ui/scripts/librarybrowser.js index 99e7713264..d0cbfbc862 100644 --- a/dashboard-ui/scripts/librarybrowser.js +++ b/dashboard-ui/scripts/librarybrowser.js @@ -902,7 +902,7 @@ editMetadata: function (itemId) { - Dashboard.navigate('edititemmetadata.html?id=' + itemId); + Dashboard.navigate('edititemmetadata.html?id=' + itemId); //require(['components/metadataeditor/metadataeditor'], function (metadataeditor) { diff --git a/dashboard-ui/scripts/librarypathmapping.js b/dashboard-ui/scripts/librarypathmapping.js index 127c4a2920..d4d128a9da 100644 --- a/dashboard-ui/scripts/librarypathmapping.js +++ b/dashboard-ui/scripts/librarypathmapping.js @@ -39,47 +39,49 @@ var html = config.PathSubstitutions.map(function (map) { - var mapHtml = ''; + var mapHtml = ''; + mapHtml += ''; - mapHtml += ''; - mapHtml += map.From; - mapHtml += ''; + mapHtml += ''; - mapHtml += ''; - mapHtml += map.To; - mapHtml += ''; + mapHtml += ''; + + mapHtml += "
    " + map.From + "
    "; + mapHtml += "
    " + Globalize.translate('HeaderTo') + "
    "; + mapHtml += "
    " + map.To + "
    "; + + mapHtml += '
    '; - mapHtml += ''; mapHtml += ''; - mapHtml += ''; - mapHtml += ''; + mapHtml += '
    '; index++; return mapHtml; - }); - var elem = $('.tbodyPathSubstitutions', page).html(html.join('')).parents('table').table('refresh').trigger('create'); + }).join(''); + + if (config.PathSubstitutions.length) { + html = '
    ' + html + '
    '; + } + + var elem = $('.pathSubstitutions', page).html(html); $('.btnDeletePath', elem).on('click', function () { remove(page, parseInt(this.getAttribute('data-index'))); }); - - if (config.PathSubstitutions.length) { - $('#tblPaths', page).show(); - } else { - $('#tblPaths', page).hide(); - } } function loadPage(page, config) { currentConfig = config; - reloadPathMappings(page, config); - Dashboard.hideLoadingMsg(); + require(['paper-fab', 'paper-item-body', 'paper-icon-item'], function () { + reloadPathMappings(page, config); + Dashboard.hideLoadingMsg(); + }); } function reload(page) { diff --git a/dashboard-ui/scripts/metadataimagespage.js b/dashboard-ui/scripts/metadataimagespage.js index 2e34b1a1d2..6aa1e54ee7 100644 --- a/dashboard-ui/scripts/metadataimagespage.js +++ b/dashboard-ui/scripts/metadataimagespage.js @@ -206,8 +206,6 @@ elemToMove.parentNode.removeChild(elemToMove); $(elemToMove).insertAfter(insertAfter); - - $('.imageFetcherGroup', page).controlgroup('destroy').controlgroup(); }); $('.btnUp', elem).on('click', function () { @@ -220,8 +218,6 @@ elemToMove.parentNode.removeChild(elemToMove); $(elemToMove).insertBefore(insertBefore); - - $('.imageFetcherGroup', page).controlgroup('destroy').controlgroup(); }); } @@ -330,8 +326,6 @@ elemToMove.parentNode.removeChild(elemToMove); $(elemToMove).insertAfter(insertAfter); - - $('.metadataFetcherGroup', page).controlgroup('destroy').controlgroup(); }); $('.btnUp', elem).on('click', function () { @@ -344,8 +338,6 @@ elemToMove.parentNode.removeChild(elemToMove); $(elemToMove).insertBefore(insertBefore); - - $('.metadataFetcherGroup', page).controlgroup('destroy').controlgroup(); }); } @@ -551,8 +543,6 @@ } }); - - ul.listview('destroy').listview({}); }); $('#selectItemType', page).on('change', function () { diff --git a/dashboard-ui/scripts/queryfilters.js b/dashboard-ui/scripts/queryfilters.js index 02ee87a553..2131ac258b 100644 --- a/dashboard-ui/scripts/queryfilters.js +++ b/dashboard-ui/scripts/queryfilters.js @@ -15,7 +15,7 @@ var html = ''; // style="margin: -.2em -.8em;" - html += '
    '; + html += '
    '; var index = 0; var idPrefix = 'chk' + selector.substring(1); diff --git a/dashboard-ui/strings/javascript/javascript.json b/dashboard-ui/strings/javascript/javascript.json index 5ed06e5539..abf43cd5a3 100644 --- a/dashboard-ui/strings/javascript/javascript.json +++ b/dashboard-ui/strings/javascript/javascript.json @@ -133,6 +133,7 @@ "LabelVersionInstalled": "{0} installed", "LabelNumberReviews": "{0} Reviews", "LabelFree": "Free", + "HeaderTo": "To", "HeaderPlaybackError": "Playback Error", "MessagePlaybackErrorNotAllowed": "You're currently not authorized to play this content. Please contact your system administrator for details.", "MessagePlaybackErrorNoCompatibleStream": "No compatible streams are currently available. Please try again later or contact your system administrator for details.", diff --git a/dashboard-ui/thirdparty/jquerymobile-1.4.5/jquery.mobile.custom.icons.css b/dashboard-ui/thirdparty/jquerymobile-1.4.5/jquery.mobile.custom.icons.css index 81a7f9da43..1dd6c6458b 100644 --- a/dashboard-ui/thirdparty/jquerymobile-1.4.5/jquery.mobile.custom.icons.css +++ b/dashboard-ui/thirdparty/jquerymobile-1.4.5/jquery.mobile.custom.icons.css @@ -20,10 +20,7 @@ a[data-icon="alert"]:after { .ui-icon-arrow-d-l:after { background-image: url("data:image/svg+xml;charset=US-ASCII,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22iso-8859-1%22%3F%3E%3C!DOCTYPE%20svg%20PUBLIC%20%22-%2F%2FW3C%2F%2FDTD%20SVG%201.1%2F%2FEN%22%20%22http%3A%2F%2Fwww.w3.org%2FGraphics%2FSVG%2F1.1%2FDTD%2Fsvg11.dtd%22%3E%3Csvg%20version%3D%221.1%22%20id%3D%22Layer_1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20x%3D%220px%22%20y%3D%220px%22%20%20width%3D%2214px%22%20height%3D%2214px%22%20viewBox%3D%220%200%2014%2014%22%20style%3D%22enable-background%3Anew%200%200%2014%2014%3B%22%20xml%3Aspace%3D%22preserve%22%3E%3Cpolygon%20fill%3D%22%23FFF%22%20points%3D%2214%2C3%2011%2C0%203.5%2C7.5%200%2C4%200%2C14%2010%2C14%206.5%2C10.5%20%22%2F%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3C%2Fsvg%3E"); } -.ui-icon-arrow-d-r:after { - background-image: url("data:image/svg+xml;charset=US-ASCII,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22iso-8859-1%22%3F%3E%3C!DOCTYPE%20svg%20PUBLIC%20%22-%2F%2FW3C%2F%2FDTD%20SVG%201.1%2F%2FEN%22%20%22http%3A%2F%2Fwww.w3.org%2FGraphics%2FSVG%2F1.1%2FDTD%2Fsvg11.dtd%22%3E%3Csvg%20version%3D%221.1%22%20id%3D%22Layer_1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20x%3D%220px%22%20y%3D%220px%22%20%20width%3D%2214px%22%20height%3D%2214px%22%20viewBox%3D%220%200%2014%2014%22%20style%3D%22enable-background%3Anew%200%200%2014%2014%3B%22%20xml%3Aspace%3D%22preserve%22%3E%3Cpolygon%20fill%3D%22%23FFF%22%20points%3D%2210.5%2C7.5%203%2C0%200%2C3%207.5%2C10.5%204%2C14%2014%2C14%2014%2C4%20%22%2F%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3C%2Fsvg%3E"); -} -a[data-icon="arrow-d"]:after { +a[data-icon="arrow-d"]:after, .ui-icon-arrow-d:after { background-image: url("data:image/svg+xml;charset=US-ASCII,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22iso-8859-1%22%3F%3E%3C!DOCTYPE%20svg%20PUBLIC%20%22-%2F%2FW3C%2F%2FDTD%20SVG%201.1%2F%2FEN%22%20%22http%3A%2F%2Fwww.w3.org%2FGraphics%2FSVG%2F1.1%2FDTD%2Fsvg11.dtd%22%3E%3Csvg%20version%3D%221.1%22%20id%3D%22Layer_1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20x%3D%220px%22%20y%3D%220px%22%20%20width%3D%2214px%22%20height%3D%2214px%22%20viewBox%3D%220%200%2014%2014%22%20style%3D%22enable-background%3Anew%200%200%2014%2014%3B%22%20xml%3Aspace%3D%22preserve%22%3E%3Cpolygon%20fill%3D%22%23FFF%22%20points%3D%229%2C7%209%2C0%205%2C0%205%2C7%200%2C7%207%2C14%2014%2C7%20%22%2F%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3C%2Fsvg%3E"); } .ui-icon-arrow-l:after { @@ -38,7 +35,7 @@ a[data-icon="arrow-d"]:after { .ui-icon-arrow-u-r:after { background-image: url("data:image/svg+xml;charset=US-ASCII,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22iso-8859-1%22%3F%3E%3C!DOCTYPE%20svg%20PUBLIC%20%22-%2F%2FW3C%2F%2FDTD%20SVG%201.1%2F%2FEN%22%20%22http%3A%2F%2Fwww.w3.org%2FGraphics%2FSVG%2F1.1%2FDTD%2Fsvg11.dtd%22%3E%3Csvg%20version%3D%221.1%22%20id%3D%22Layer_1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20x%3D%220px%22%20y%3D%220px%22%20%20width%3D%2214px%22%20height%3D%2214px%22%20viewBox%3D%220%200%2014%2014%22%20style%3D%22enable-background%3Anew%200%200%2014%2014%3B%22%20xml%3Aspace%3D%22preserve%22%3E%3Cpolygon%20fill%3D%22%23FFF%22%20points%3D%2214%2C0%204%2C0%207.5%2C3.5%200%2C11%203%2C14%2010.5%2C6.5%2014%2C10%20%22%2F%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3C%2Fsvg%3E"); } -.ui-icon-arrow-u:after { +a[data-icon="arrow-u"]:after, .ui-icon-arrow-u:after { background-image: url("data:image/svg+xml;charset=US-ASCII,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22iso-8859-1%22%3F%3E%3C!DOCTYPE%20svg%20PUBLIC%20%22-%2F%2FW3C%2F%2FDTD%20SVG%201.1%2F%2FEN%22%20%22http%3A%2F%2Fwww.w3.org%2FGraphics%2FSVG%2F1.1%2FDTD%2Fsvg11.dtd%22%3E%3Csvg%20version%3D%221.1%22%20id%3D%22Layer_1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20x%3D%220px%22%20y%3D%220px%22%20%20width%3D%2214px%22%20height%3D%2214px%22%20viewBox%3D%220%200%2014%2014%22%20style%3D%22enable-background%3Anew%200%200%2014%2014%3B%22%20xml%3Aspace%3D%22preserve%22%3E%3Cpolygon%20fill%3D%22%23FFF%22%20points%3D%227%2C0%200%2C7%205%2C7%205%2C14%209%2C14%209%2C7%2014%2C7%20%22%2F%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3C%2Fsvg%3E"); } .ui-icon-audio:after { From 630f3e910072f93a431c4603948f835f4b3cb7fc Mon Sep 17 00:00:00 2001 From: Luke Pulverenti Date: Mon, 8 Feb 2016 13:13:05 -0500 Subject: [PATCH 17/18] update translations --- dashboard-ui/strings/html/ar.json | 6 +++++- dashboard-ui/strings/html/bg-BG.json | 6 +++++- dashboard-ui/strings/html/ca.json | 6 +++++- dashboard-ui/strings/html/cs.json | 6 +++++- dashboard-ui/strings/html/da.json | 6 +++++- dashboard-ui/strings/html/de.json | 8 ++++++-- dashboard-ui/strings/html/el.json | 6 +++++- dashboard-ui/strings/html/en-GB.json | 6 +++++- dashboard-ui/strings/html/en-US.json | 9 +++++---- dashboard-ui/strings/html/es-AR.json | 6 +++++- dashboard-ui/strings/html/es-MX.json | 6 +++++- dashboard-ui/strings/html/es.json | 6 +++++- dashboard-ui/strings/html/fi.json | 6 +++++- dashboard-ui/strings/html/fr.json | 6 +++++- dashboard-ui/strings/html/gsw.json | 6 +++++- dashboard-ui/strings/html/he.json | 6 +++++- dashboard-ui/strings/html/hr.json | 6 +++++- dashboard-ui/strings/html/hu.json | 6 +++++- dashboard-ui/strings/html/id.json | 6 +++++- dashboard-ui/strings/html/it.json | 6 +++++- dashboard-ui/strings/html/kk.json | 4 ++++ dashboard-ui/strings/html/ko.json | 6 +++++- dashboard-ui/strings/html/ms.json | 6 +++++- dashboard-ui/strings/html/nb.json | 6 +++++- dashboard-ui/strings/html/nl.json | 6 +++++- dashboard-ui/strings/html/pl.json | 6 +++++- dashboard-ui/strings/html/pt-BR.json | 8 ++++++-- dashboard-ui/strings/html/pt-PT.json | 6 +++++- dashboard-ui/strings/html/ro.json | 6 +++++- dashboard-ui/strings/html/ru.json | 16 ++++++++++------ dashboard-ui/strings/html/server.json | 2 +- dashboard-ui/strings/html/sl-SI.json | 6 +++++- dashboard-ui/strings/html/sv.json | 6 +++++- dashboard-ui/strings/html/tr.json | 6 +++++- dashboard-ui/strings/html/uk.json | 6 +++++- dashboard-ui/strings/html/vi.json | 6 +++++- dashboard-ui/strings/html/zh-CN.json | 6 +++++- dashboard-ui/strings/html/zh-HK.json | 6 +++++- dashboard-ui/strings/html/zh-TW.json | 6 +++++- dashboard-ui/strings/javascript/ar.json | 2 ++ dashboard-ui/strings/javascript/bg-BG.json | 2 ++ dashboard-ui/strings/javascript/ca.json | 2 ++ dashboard-ui/strings/javascript/cs.json | 2 ++ dashboard-ui/strings/javascript/da.json | 2 ++ dashboard-ui/strings/javascript/de.json | 8 +++++--- dashboard-ui/strings/javascript/el.json | 2 ++ dashboard-ui/strings/javascript/en-GB.json | 2 ++ dashboard-ui/strings/javascript/en-US.json | 2 ++ dashboard-ui/strings/javascript/es-AR.json | 2 ++ dashboard-ui/strings/javascript/es-MX.json | 2 ++ dashboard-ui/strings/javascript/es.json | 2 ++ dashboard-ui/strings/javascript/fi.json | 2 ++ dashboard-ui/strings/javascript/fr.json | 2 ++ dashboard-ui/strings/javascript/gsw.json | 2 ++ dashboard-ui/strings/javascript/he.json | 2 ++ dashboard-ui/strings/javascript/hr.json | 2 ++ dashboard-ui/strings/javascript/it.json | 2 ++ dashboard-ui/strings/javascript/kk.json | 2 ++ dashboard-ui/strings/javascript/ko.json | 2 ++ dashboard-ui/strings/javascript/ms.json | 2 ++ dashboard-ui/strings/javascript/nb.json | 2 ++ dashboard-ui/strings/javascript/nl.json | 2 ++ dashboard-ui/strings/javascript/pl.json | 2 ++ dashboard-ui/strings/javascript/pt-BR.json | 8 +++++--- dashboard-ui/strings/javascript/pt-PT.json | 2 ++ dashboard-ui/strings/javascript/ro.json | 2 ++ dashboard-ui/strings/javascript/ru.json | 2 ++ dashboard-ui/strings/javascript/sl-SI.json | 2 ++ dashboard-ui/strings/javascript/sv.json | 2 ++ dashboard-ui/strings/javascript/tr.json | 2 ++ dashboard-ui/strings/javascript/uk.json | 2 ++ dashboard-ui/strings/javascript/vi.json | 2 ++ dashboard-ui/strings/javascript/zh-CN.json | 2 ++ dashboard-ui/strings/javascript/zh-HK.json | 2 ++ dashboard-ui/strings/javascript/zh-TW.json | 2 ++ 75 files changed, 275 insertions(+), 54 deletions(-) diff --git a/dashboard-ui/strings/html/ar.json b/dashboard-ui/strings/html/ar.json index 0660c35a3c..0d8e756b00 100644 --- a/dashboard-ui/strings/html/ar.json +++ b/dashboard-ui/strings/html/ar.json @@ -1,4 +1,8 @@ { + "HeaderTaskTriggers": "Task Triggers", + "TabSmartMatches": "Smart Matches", + "LabelOrganizeSmartMatchOption": "In the future, organize all files into the selected series if the name contains", + "TabSmartMatchInfo": "Manage your smart matches that were added using the Auto-Organize correction dialog", "LabelExit": "\u062e\u0631\u0648\u062c", "LabelVisitCommunity": "\u0632\u064a\u0627\u0631\u0629 \u0627\u0644\u0645\u062c\u062a\u0645\u0639", "LabelGithub": "\u062c\u064a\u062a \u0647\u0628", @@ -1528,5 +1532,5 @@ "HeaderNewRecording": "New Recording", "ButtonAdvanced": "Advanced", "LabelCodecIntrosPath": "Codec intros path:", - "LabelCodecIntrosPathHelp": "A folder containing video files. If an intro video file name matches the video codec, audio codec, or audio profile, then it will be played prior to the main feature." + "LabelCodecIntrosPathHelp": "A folder containing video files. If an intro video file name matches the video codec, audio codec, audio profile, or a tag, then it will be played prior to the main feature." } \ No newline at end of file diff --git a/dashboard-ui/strings/html/bg-BG.json b/dashboard-ui/strings/html/bg-BG.json index e371db25cc..bad9f3ac27 100644 --- a/dashboard-ui/strings/html/bg-BG.json +++ b/dashboard-ui/strings/html/bg-BG.json @@ -1,4 +1,8 @@ { + "HeaderTaskTriggers": "Task Triggers", + "TabSmartMatches": "Smart Matches", + "LabelOrganizeSmartMatchOption": "In the future, organize all files into the selected series if the name contains", + "TabSmartMatchInfo": "Manage your smart matches that were added using the Auto-Organize correction dialog", "LabelExit": "\u0418\u0437\u0445\u043e\u0434", "LabelVisitCommunity": "\u041f\u043e\u0441\u0435\u0442\u0438 \u043e\u0431\u0449\u0435\u0441\u0442\u0432\u043e\u0442\u043e", "LabelGithub": "Github", @@ -1528,5 +1532,5 @@ "HeaderNewRecording": "New Recording", "ButtonAdvanced": "Advanced", "LabelCodecIntrosPath": "Codec intros path:", - "LabelCodecIntrosPathHelp": "A folder containing video files. If an intro video file name matches the video codec, audio codec, or audio profile, then it will be played prior to the main feature." + "LabelCodecIntrosPathHelp": "A folder containing video files. If an intro video file name matches the video codec, audio codec, audio profile, or a tag, then it will be played prior to the main feature." } \ No newline at end of file diff --git a/dashboard-ui/strings/html/ca.json b/dashboard-ui/strings/html/ca.json index 024ad5ef7f..99aebe3d7e 100644 --- a/dashboard-ui/strings/html/ca.json +++ b/dashboard-ui/strings/html/ca.json @@ -1,4 +1,8 @@ { + "HeaderTaskTriggers": "Task Triggers", + "TabSmartMatches": "Smart Matches", + "LabelOrganizeSmartMatchOption": "In the future, organize all files into the selected series if the name contains", + "TabSmartMatchInfo": "Manage your smart matches that were added using the Auto-Organize correction dialog", "LabelExit": "Sortir", "LabelVisitCommunity": "Visita la comunitat", "LabelGithub": "Github", @@ -1528,5 +1532,5 @@ "HeaderNewRecording": "New Recording", "ButtonAdvanced": "Advanced", "LabelCodecIntrosPath": "Codec intros path:", - "LabelCodecIntrosPathHelp": "A folder containing video files. If an intro video file name matches the video codec, audio codec, or audio profile, then it will be played prior to the main feature." + "LabelCodecIntrosPathHelp": "A folder containing video files. If an intro video file name matches the video codec, audio codec, audio profile, or a tag, then it will be played prior to the main feature." } \ No newline at end of file diff --git a/dashboard-ui/strings/html/cs.json b/dashboard-ui/strings/html/cs.json index 3023b1b569..b3620df5c0 100644 --- a/dashboard-ui/strings/html/cs.json +++ b/dashboard-ui/strings/html/cs.json @@ -1,4 +1,8 @@ { + "HeaderTaskTriggers": "Spou\u0161t\u011b\u010de \u00faloh", + "TabSmartMatches": "Smart Matches", + "LabelOrganizeSmartMatchOption": "In the future, organize all files into the selected series if the name contains", + "TabSmartMatchInfo": "Manage your smart matches that were added using the Auto-Organize correction dialog", "LabelExit": "Zav\u0159\u00edt", "LabelVisitCommunity": "Nav\u0161t\u00edvit komunitu", "LabelGithub": "Github", @@ -1528,5 +1532,5 @@ "HeaderNewRecording": "New Recording", "ButtonAdvanced": "Advanced", "LabelCodecIntrosPath": "Codec intros path:", - "LabelCodecIntrosPathHelp": "A folder containing video files. If an intro video file name matches the video codec, audio codec, or audio profile, then it will be played prior to the main feature." + "LabelCodecIntrosPathHelp": "A folder containing video files. If an intro video file name matches the video codec, audio codec, audio profile, or a tag, then it will be played prior to the main feature." } \ No newline at end of file diff --git a/dashboard-ui/strings/html/da.json b/dashboard-ui/strings/html/da.json index 7f47223986..b05c98cedb 100644 --- a/dashboard-ui/strings/html/da.json +++ b/dashboard-ui/strings/html/da.json @@ -1,4 +1,8 @@ { + "HeaderTaskTriggers": "Task Triggers", + "TabSmartMatches": "Smart Matches", + "LabelOrganizeSmartMatchOption": "In the future, organize all files into the selected series if the name contains", + "TabSmartMatchInfo": "Manage your smart matches that were added using the Auto-Organize correction dialog", "LabelExit": "Afslut", "LabelVisitCommunity": "Bes\u00f8g F\u00e6lleskab", "LabelGithub": "Github", @@ -1528,5 +1532,5 @@ "HeaderNewRecording": "New Recording", "ButtonAdvanced": "Advanced", "LabelCodecIntrosPath": "Codec intros path:", - "LabelCodecIntrosPathHelp": "A folder containing video files. If an intro video file name matches the video codec, audio codec, or audio profile, then it will be played prior to the main feature." + "LabelCodecIntrosPathHelp": "A folder containing video files. If an intro video file name matches the video codec, audio codec, audio profile, or a tag, then it will be played prior to the main feature." } \ No newline at end of file diff --git a/dashboard-ui/strings/html/de.json b/dashboard-ui/strings/html/de.json index f78094c213..6720325214 100644 --- a/dashboard-ui/strings/html/de.json +++ b/dashboard-ui/strings/html/de.json @@ -1,4 +1,8 @@ { + "HeaderTaskTriggers": "Aufgabenausl\u00f6ser", + "TabSmartMatches": "Smart Matches", + "LabelOrganizeSmartMatchOption": "Organisiere alle zuk\u00fcnftigen Dateien in die ausgew\u00e4hlten Serien deren Name enth\u00e4lt", + "TabSmartMatchInfo": "Verwalten Sie Ihre Smart Matches die wir w\u00e4hrend im Berichtigungsdialog der Autoorganisation hinzugef\u00fcgt haben", "LabelExit": "Beenden", "LabelVisitCommunity": "Besuche die Community", "LabelGithub": "Github", @@ -1527,6 +1531,6 @@ "LabelDisplayName": "Anzeige Name:", "HeaderNewRecording": "Neue Aufnahme", "ButtonAdvanced": "Erweitert", - "LabelCodecIntrosPath": "Codec intros path:", - "LabelCodecIntrosPathHelp": "A folder containing video files. If an intro video file name matches the video codec, audio codec, or audio profile, then it will be played prior to the main feature." + "LabelCodecIntrosPath": "Codec Intros Verzeichnis:", + "LabelCodecIntrosPathHelp": "Ein Verzeichnis welches Video Dateien beinhaltet. Wenn ein Intro Video einem Video codec, audio codec, audio profil oder einem Tag zugeordnet werden kann, so wird es vor dem Hauptfilm gezeigt." } \ No newline at end of file diff --git a/dashboard-ui/strings/html/el.json b/dashboard-ui/strings/html/el.json index fca18cbd6d..8769a7854f 100644 --- a/dashboard-ui/strings/html/el.json +++ b/dashboard-ui/strings/html/el.json @@ -1,4 +1,8 @@ { + "HeaderTaskTriggers": "Task Triggers", + "TabSmartMatches": "Smart Matches", + "LabelOrganizeSmartMatchOption": "In the future, organize all files into the selected series if the name contains", + "TabSmartMatchInfo": "Manage your smart matches that were added using the Auto-Organize correction dialog", "LabelExit": "\u0388\u03be\u03bf\u03b4\u03bf\u03c2", "LabelVisitCommunity": "\u039a\u03bf\u03b9\u03bd\u03cc\u03c4\u03b7\u03c4\u03b1", "LabelGithub": "Github", @@ -1528,5 +1532,5 @@ "HeaderNewRecording": "New Recording", "ButtonAdvanced": "Advanced", "LabelCodecIntrosPath": "Codec intros path:", - "LabelCodecIntrosPathHelp": "A folder containing video files. If an intro video file name matches the video codec, audio codec, or audio profile, then it will be played prior to the main feature." + "LabelCodecIntrosPathHelp": "A folder containing video files. If an intro video file name matches the video codec, audio codec, audio profile, or a tag, then it will be played prior to the main feature." } \ No newline at end of file diff --git a/dashboard-ui/strings/html/en-GB.json b/dashboard-ui/strings/html/en-GB.json index 4b82c97a14..3d35880830 100644 --- a/dashboard-ui/strings/html/en-GB.json +++ b/dashboard-ui/strings/html/en-GB.json @@ -1,4 +1,8 @@ { + "HeaderTaskTriggers": "Task Triggers", + "TabSmartMatches": "Smart Matches", + "LabelOrganizeSmartMatchOption": "In the future, organize all files into the selected series if the name contains", + "TabSmartMatchInfo": "Manage your smart matches that were added using the Auto-Organize correction dialog", "LabelExit": "Exit", "LabelVisitCommunity": "Visit Community", "LabelGithub": "Github", @@ -1528,5 +1532,5 @@ "HeaderNewRecording": "New Recording", "ButtonAdvanced": "Advanced", "LabelCodecIntrosPath": "Codec intros path:", - "LabelCodecIntrosPathHelp": "A folder containing video files. If an intro video file name matches the video codec, audio codec, or audio profile, then it will be played prior to the main feature." + "LabelCodecIntrosPathHelp": "A folder containing video files. If an intro video file name matches the video codec, audio codec, audio profile, or a tag, then it will be played prior to the main feature." } \ No newline at end of file diff --git a/dashboard-ui/strings/html/en-US.json b/dashboard-ui/strings/html/en-US.json index d3e9d506cf..1d878737ec 100644 --- a/dashboard-ui/strings/html/en-US.json +++ b/dashboard-ui/strings/html/en-US.json @@ -1,4 +1,8 @@ { + "HeaderTaskTriggers": "Task Triggers", + "TabSmartMatches": "Smart Matches", + "LabelOrganizeSmartMatchOption": "In the future, organize all files into the selected series if the name contains", + "TabSmartMatchInfo": "Manage your smart matches that were added using the Auto-Organize correction dialog", "LabelExit": "Exit", "LabelVisitCommunity": "Visit Community", "LabelGithub": "Github", @@ -574,8 +578,6 @@ "LabelMinResumeDurationHelp": "Titles shorter than this will not be resumable", "TitleAutoOrganize": "Auto-Organize", "TabActivityLog": "Activity Log", - "TabSmartMatches": "Smart Matches", - "TabSmartMatchInfo": "Manage your smart matches that were added using the Auto-Organize correction dialog", "HeaderName": "Name", "HeaderDate": "Date", "HeaderSource": "Source", @@ -591,7 +593,6 @@ "LabelEpisodeNumber": "Episode number", "LabelEndingEpisodeNumber": "Ending episode number:", "LabelEndingEpisodeNumberHelp": "Only required for multi-episode files", - "LabelOrganizeSmartMatchOption": "In the future, organize all files into the selected series if the name contains", "HeaderSupportTheTeam": "Support the Emby Team", "LabelSupportAmount": "Amount (USD)", "HeaderSupportTheTeamHelp": "Help ensure the continued development of this project by purchasing Emby Premiere. A portion of all income will be contributed to other free tools we depend on.", @@ -1531,5 +1532,5 @@ "HeaderNewRecording": "New Recording", "ButtonAdvanced": "Advanced", "LabelCodecIntrosPath": "Codec intros path:", - "LabelCodecIntrosPathHelp": "A folder containing video files. If an intro video file name matches the video codec, audio codec, or audio profile, then it will be played prior to the main feature." + "LabelCodecIntrosPathHelp": "A folder containing video files. If an intro video file name matches the video codec, audio codec, audio profile, or a tag, then it will be played prior to the main feature." } \ No newline at end of file diff --git a/dashboard-ui/strings/html/es-AR.json b/dashboard-ui/strings/html/es-AR.json index df238b956b..fc7874c034 100644 --- a/dashboard-ui/strings/html/es-AR.json +++ b/dashboard-ui/strings/html/es-AR.json @@ -1,4 +1,8 @@ { + "HeaderTaskTriggers": "Task Triggers", + "TabSmartMatches": "Smart Matches", + "LabelOrganizeSmartMatchOption": "In the future, organize all files into the selected series if the name contains", + "TabSmartMatchInfo": "Manage your smart matches that were added using the Auto-Organize correction dialog", "LabelExit": "Salir", "LabelVisitCommunity": "Visit Community", "LabelGithub": "Github", @@ -1528,5 +1532,5 @@ "HeaderNewRecording": "New Recording", "ButtonAdvanced": "Advanced", "LabelCodecIntrosPath": "Codec intros path:", - "LabelCodecIntrosPathHelp": "A folder containing video files. If an intro video file name matches the video codec, audio codec, or audio profile, then it will be played prior to the main feature." + "LabelCodecIntrosPathHelp": "A folder containing video files. If an intro video file name matches the video codec, audio codec, audio profile, or a tag, then it will be played prior to the main feature." } \ No newline at end of file diff --git a/dashboard-ui/strings/html/es-MX.json b/dashboard-ui/strings/html/es-MX.json index e82723bb01..0240ca9f46 100644 --- a/dashboard-ui/strings/html/es-MX.json +++ b/dashboard-ui/strings/html/es-MX.json @@ -1,4 +1,8 @@ { + "HeaderTaskTriggers": "Disparadores de Tarea", + "TabSmartMatches": "Smart Matches", + "LabelOrganizeSmartMatchOption": "In the future, organize all files into the selected series if the name contains", + "TabSmartMatchInfo": "Manage your smart matches that were added using the Auto-Organize correction dialog", "LabelExit": "Salir", "LabelVisitCommunity": "Visitar la Comunidad", "LabelGithub": "Github", @@ -1528,5 +1532,5 @@ "HeaderNewRecording": "Nueva Grabaci\u00f3n", "ButtonAdvanced": "Avanzado", "LabelCodecIntrosPath": "Codec intros path:", - "LabelCodecIntrosPathHelp": "A folder containing video files. If an intro video file name matches the video codec, audio codec, or audio profile, then it will be played prior to the main feature." + "LabelCodecIntrosPathHelp": "A folder containing video files. If an intro video file name matches the video codec, audio codec, audio profile, or a tag, then it will be played prior to the main feature." } \ No newline at end of file diff --git a/dashboard-ui/strings/html/es.json b/dashboard-ui/strings/html/es.json index 466562adab..bcdea5c751 100644 --- a/dashboard-ui/strings/html/es.json +++ b/dashboard-ui/strings/html/es.json @@ -1,4 +1,8 @@ { + "HeaderTaskTriggers": "Tareas de activaci\u00f3n", + "TabSmartMatches": "Smart Matches", + "LabelOrganizeSmartMatchOption": "In the future, organize all files into the selected series if the name contains", + "TabSmartMatchInfo": "Manage your smart matches that were added using the Auto-Organize correction dialog", "LabelExit": "Salir", "LabelVisitCommunity": "Visitar la comunidad", "LabelGithub": "Github", @@ -1528,5 +1532,5 @@ "HeaderNewRecording": "New Recording", "ButtonAdvanced": "Advanced", "LabelCodecIntrosPath": "Codec intros path:", - "LabelCodecIntrosPathHelp": "A folder containing video files. If an intro video file name matches the video codec, audio codec, or audio profile, then it will be played prior to the main feature." + "LabelCodecIntrosPathHelp": "A folder containing video files. If an intro video file name matches the video codec, audio codec, audio profile, or a tag, then it will be played prior to the main feature." } \ No newline at end of file diff --git a/dashboard-ui/strings/html/fi.json b/dashboard-ui/strings/html/fi.json index fe453d1396..85b2a91a7f 100644 --- a/dashboard-ui/strings/html/fi.json +++ b/dashboard-ui/strings/html/fi.json @@ -1,4 +1,8 @@ { + "HeaderTaskTriggers": "Task Triggers", + "TabSmartMatches": "Smart Matches", + "LabelOrganizeSmartMatchOption": "In the future, organize all files into the selected series if the name contains", + "TabSmartMatchInfo": "Manage your smart matches that were added using the Auto-Organize correction dialog", "LabelExit": "Poistu", "LabelVisitCommunity": "K\u00e4y Yhteis\u00f6ss\u00e4", "LabelGithub": "Github", @@ -1528,5 +1532,5 @@ "HeaderNewRecording": "New Recording", "ButtonAdvanced": "Advanced", "LabelCodecIntrosPath": "Codec intros path:", - "LabelCodecIntrosPathHelp": "A folder containing video files. If an intro video file name matches the video codec, audio codec, or audio profile, then it will be played prior to the main feature." + "LabelCodecIntrosPathHelp": "A folder containing video files. If an intro video file name matches the video codec, audio codec, audio profile, or a tag, then it will be played prior to the main feature." } \ No newline at end of file diff --git a/dashboard-ui/strings/html/fr.json b/dashboard-ui/strings/html/fr.json index 34c778f883..9307f664ce 100644 --- a/dashboard-ui/strings/html/fr.json +++ b/dashboard-ui/strings/html/fr.json @@ -1,4 +1,8 @@ { + "HeaderTaskTriggers": "D\u00e9clencheurs de t\u00e2ches", + "TabSmartMatches": "Smart Matches", + "LabelOrganizeSmartMatchOption": "In the future, organize all files into the selected series if the name contains", + "TabSmartMatchInfo": "Manage your smart matches that were added using the Auto-Organize correction dialog", "LabelExit": "Quitter", "LabelVisitCommunity": "Visiter la Communaut\u00e9", "LabelGithub": "Github", @@ -1528,5 +1532,5 @@ "HeaderNewRecording": "Nouvel enregistrement", "ButtonAdvanced": "Avanc\u00e9", "LabelCodecIntrosPath": "Codec intros path:", - "LabelCodecIntrosPathHelp": "A folder containing video files. If an intro video file name matches the video codec, audio codec, or audio profile, then it will be played prior to the main feature." + "LabelCodecIntrosPathHelp": "A folder containing video files. If an intro video file name matches the video codec, audio codec, audio profile, or a tag, then it will be played prior to the main feature." } \ No newline at end of file diff --git a/dashboard-ui/strings/html/gsw.json b/dashboard-ui/strings/html/gsw.json index 7aa9d7e651..546a5d076e 100644 --- a/dashboard-ui/strings/html/gsw.json +++ b/dashboard-ui/strings/html/gsw.json @@ -1,4 +1,8 @@ { + "HeaderTaskTriggers": "Task Triggers", + "TabSmartMatches": "Smart Matches", + "LabelOrganizeSmartMatchOption": "In the future, organize all files into the selected series if the name contains", + "TabSmartMatchInfo": "Manage your smart matches that were added using the Auto-Organize correction dialog", "LabelExit": "Verlasse", "LabelVisitCommunity": "Bsuech d'Community", "LabelGithub": "Github", @@ -1528,5 +1532,5 @@ "HeaderNewRecording": "New Recording", "ButtonAdvanced": "Advanced", "LabelCodecIntrosPath": "Codec intros path:", - "LabelCodecIntrosPathHelp": "A folder containing video files. If an intro video file name matches the video codec, audio codec, or audio profile, then it will be played prior to the main feature." + "LabelCodecIntrosPathHelp": "A folder containing video files. If an intro video file name matches the video codec, audio codec, audio profile, or a tag, then it will be played prior to the main feature." } \ No newline at end of file diff --git a/dashboard-ui/strings/html/he.json b/dashboard-ui/strings/html/he.json index 6a84d6972b..b30efda4c6 100644 --- a/dashboard-ui/strings/html/he.json +++ b/dashboard-ui/strings/html/he.json @@ -1,4 +1,8 @@ { + "HeaderTaskTriggers": "Task Triggers", + "TabSmartMatches": "Smart Matches", + "LabelOrganizeSmartMatchOption": "In the future, organize all files into the selected series if the name contains", + "TabSmartMatchInfo": "Manage your smart matches that were added using the Auto-Organize correction dialog", "LabelExit": "\u05d9\u05e6\u05d9\u05d0\u05d4", "LabelVisitCommunity": "\u05d1\u05e7\u05e8 \u05d1\u05e7\u05d4\u05d9\u05dc\u05d4", "LabelGithub": "Github", @@ -1528,5 +1532,5 @@ "HeaderNewRecording": "New Recording", "ButtonAdvanced": "Advanced", "LabelCodecIntrosPath": "Codec intros path:", - "LabelCodecIntrosPathHelp": "A folder containing video files. If an intro video file name matches the video codec, audio codec, or audio profile, then it will be played prior to the main feature." + "LabelCodecIntrosPathHelp": "A folder containing video files. If an intro video file name matches the video codec, audio codec, audio profile, or a tag, then it will be played prior to the main feature." } \ No newline at end of file diff --git a/dashboard-ui/strings/html/hr.json b/dashboard-ui/strings/html/hr.json index bec7fd0438..a6eda04e91 100644 --- a/dashboard-ui/strings/html/hr.json +++ b/dashboard-ui/strings/html/hr.json @@ -1,4 +1,8 @@ { + "HeaderTaskTriggers": "Task Triggers", + "TabSmartMatches": "Smart Matches", + "LabelOrganizeSmartMatchOption": "In the future, organize all files into the selected series if the name contains", + "TabSmartMatchInfo": "Manage your smart matches that were added using the Auto-Organize correction dialog", "LabelExit": "Izlaz", "LabelVisitCommunity": "Posjeti zajednicu", "LabelGithub": "Github", @@ -1528,5 +1532,5 @@ "HeaderNewRecording": "New Recording", "ButtonAdvanced": "Advanced", "LabelCodecIntrosPath": "Codec intros path:", - "LabelCodecIntrosPathHelp": "A folder containing video files. If an intro video file name matches the video codec, audio codec, or audio profile, then it will be played prior to the main feature." + "LabelCodecIntrosPathHelp": "A folder containing video files. If an intro video file name matches the video codec, audio codec, audio profile, or a tag, then it will be played prior to the main feature." } \ No newline at end of file diff --git a/dashboard-ui/strings/html/hu.json b/dashboard-ui/strings/html/hu.json index 9c4907ecee..d60908b154 100644 --- a/dashboard-ui/strings/html/hu.json +++ b/dashboard-ui/strings/html/hu.json @@ -1,4 +1,8 @@ { + "HeaderTaskTriggers": "Task Triggers", + "TabSmartMatches": "Smart Matches", + "LabelOrganizeSmartMatchOption": "In the future, organize all files into the selected series if the name contains", + "TabSmartMatchInfo": "Manage your smart matches that were added using the Auto-Organize correction dialog", "LabelExit": "Kil\u00e9p\u00e9s", "LabelVisitCommunity": "K\u00f6z\u00f6ss\u00e9g", "LabelGithub": "Github", @@ -1528,5 +1532,5 @@ "HeaderNewRecording": "New Recording", "ButtonAdvanced": "Advanced", "LabelCodecIntrosPath": "Codec intros path:", - "LabelCodecIntrosPathHelp": "A folder containing video files. If an intro video file name matches the video codec, audio codec, or audio profile, then it will be played prior to the main feature." + "LabelCodecIntrosPathHelp": "A folder containing video files. If an intro video file name matches the video codec, audio codec, audio profile, or a tag, then it will be played prior to the main feature." } \ No newline at end of file diff --git a/dashboard-ui/strings/html/id.json b/dashboard-ui/strings/html/id.json index 97ce451555..ac5aeff824 100644 --- a/dashboard-ui/strings/html/id.json +++ b/dashboard-ui/strings/html/id.json @@ -1,4 +1,8 @@ { + "HeaderTaskTriggers": "Task Triggers", + "TabSmartMatches": "Smart Matches", + "LabelOrganizeSmartMatchOption": "In the future, organize all files into the selected series if the name contains", + "TabSmartMatchInfo": "Manage your smart matches that were added using the Auto-Organize correction dialog", "LabelExit": "Keluar", "LabelVisitCommunity": "Kunjungi Komunitas", "LabelGithub": "Github", @@ -1528,5 +1532,5 @@ "HeaderNewRecording": "New Recording", "ButtonAdvanced": "Advanced", "LabelCodecIntrosPath": "Codec intros path:", - "LabelCodecIntrosPathHelp": "A folder containing video files. If an intro video file name matches the video codec, audio codec, or audio profile, then it will be played prior to the main feature." + "LabelCodecIntrosPathHelp": "A folder containing video files. If an intro video file name matches the video codec, audio codec, audio profile, or a tag, then it will be played prior to the main feature." } \ No newline at end of file diff --git a/dashboard-ui/strings/html/it.json b/dashboard-ui/strings/html/it.json index a4cc4efd95..434bd71154 100644 --- a/dashboard-ui/strings/html/it.json +++ b/dashboard-ui/strings/html/it.json @@ -1,4 +1,8 @@ { + "HeaderTaskTriggers": "Operazione Pianificata", + "TabSmartMatches": "Smart Matches", + "LabelOrganizeSmartMatchOption": "In the future, organize all files into the selected series if the name contains", + "TabSmartMatchInfo": "Manage your smart matches that were added using the Auto-Organize correction dialog", "LabelExit": "Esci", "LabelVisitCommunity": "Visita la Community", "LabelGithub": "Github", @@ -1528,5 +1532,5 @@ "HeaderNewRecording": "New Recording", "ButtonAdvanced": "Advanced", "LabelCodecIntrosPath": "Codec intros path:", - "LabelCodecIntrosPathHelp": "A folder containing video files. If an intro video file name matches the video codec, audio codec, or audio profile, then it will be played prior to the main feature." + "LabelCodecIntrosPathHelp": "A folder containing video files. If an intro video file name matches the video codec, audio codec, audio profile, or a tag, then it will be played prior to the main feature." } \ No newline at end of file diff --git a/dashboard-ui/strings/html/kk.json b/dashboard-ui/strings/html/kk.json index 291b605d9f..3005736608 100644 --- a/dashboard-ui/strings/html/kk.json +++ b/dashboard-ui/strings/html/kk.json @@ -1,4 +1,8 @@ { + "HeaderTaskTriggers": "\u0422\u0430\u043f\u0441\u044b\u0440\u043c\u0430 \u0442\u0440\u0438\u0433\u0433\u0435\u0440\u043b\u0435\u0440\u0456", + "TabSmartMatches": "Smart Matches", + "LabelOrganizeSmartMatchOption": "In the future, organize all files into the selected series if the name contains", + "TabSmartMatchInfo": "Manage your smart matches that were added using the Auto-Organize correction dialog", "LabelExit": "\u0428\u044b\u0493\u0443", "LabelVisitCommunity": "\u049a\u0430\u0443\u044b\u043c\u0434\u0430\u0441\u0442\u044b\u049b\u049b\u0430 \u0431\u0430\u0440\u0443", "LabelGithub": "GitHub \u0440\u0435\u043f\u043e\u0437\u0438\u0442\u043e\u0440\u0438\u0439\u0456", diff --git a/dashboard-ui/strings/html/ko.json b/dashboard-ui/strings/html/ko.json index 8c1c81946a..f17972c860 100644 --- a/dashboard-ui/strings/html/ko.json +++ b/dashboard-ui/strings/html/ko.json @@ -1,4 +1,8 @@ { + "HeaderTaskTriggers": "\uc791\uc5c5 \ud2b8\ub9ac\uac70", + "TabSmartMatches": "Smart Matches", + "LabelOrganizeSmartMatchOption": "In the future, organize all files into the selected series if the name contains", + "TabSmartMatchInfo": "Manage your smart matches that were added using the Auto-Organize correction dialog", "LabelExit": "\uc885\ub8cc", "LabelVisitCommunity": "\ucee4\ubba4\ub2c8\ud2f0 \ubc29\ubb38", "LabelGithub": "Github", @@ -1528,5 +1532,5 @@ "HeaderNewRecording": "New Recording", "ButtonAdvanced": "Advanced", "LabelCodecIntrosPath": "Codec intros path:", - "LabelCodecIntrosPathHelp": "A folder containing video files. If an intro video file name matches the video codec, audio codec, or audio profile, then it will be played prior to the main feature." + "LabelCodecIntrosPathHelp": "A folder containing video files. If an intro video file name matches the video codec, audio codec, audio profile, or a tag, then it will be played prior to the main feature." } \ No newline at end of file diff --git a/dashboard-ui/strings/html/ms.json b/dashboard-ui/strings/html/ms.json index 8f9ad31746..6aa5de3943 100644 --- a/dashboard-ui/strings/html/ms.json +++ b/dashboard-ui/strings/html/ms.json @@ -1,4 +1,8 @@ { + "HeaderTaskTriggers": "Task Triggers", + "TabSmartMatches": "Smart Matches", + "LabelOrganizeSmartMatchOption": "In the future, organize all files into the selected series if the name contains", + "TabSmartMatchInfo": "Manage your smart matches that were added using the Auto-Organize correction dialog", "LabelExit": "Tutup", "LabelVisitCommunity": "Melawat Masyarakat", "LabelGithub": "Github", @@ -1528,5 +1532,5 @@ "HeaderNewRecording": "New Recording", "ButtonAdvanced": "Advanced", "LabelCodecIntrosPath": "Codec intros path:", - "LabelCodecIntrosPathHelp": "A folder containing video files. If an intro video file name matches the video codec, audio codec, or audio profile, then it will be played prior to the main feature." + "LabelCodecIntrosPathHelp": "A folder containing video files. If an intro video file name matches the video codec, audio codec, audio profile, or a tag, then it will be played prior to the main feature." } \ No newline at end of file diff --git a/dashboard-ui/strings/html/nb.json b/dashboard-ui/strings/html/nb.json index a0fb312b2c..f0fc8b70e4 100644 --- a/dashboard-ui/strings/html/nb.json +++ b/dashboard-ui/strings/html/nb.json @@ -1,4 +1,8 @@ { + "HeaderTaskTriggers": "Oppgave Triggers", + "TabSmartMatches": "Smart Matches", + "LabelOrganizeSmartMatchOption": "In the future, organize all files into the selected series if the name contains", + "TabSmartMatchInfo": "Manage your smart matches that were added using the Auto-Organize correction dialog", "LabelExit": "Avslutt", "LabelVisitCommunity": "Bes\u00f8k oss", "LabelGithub": "Github", @@ -1528,5 +1532,5 @@ "HeaderNewRecording": "New Recording", "ButtonAdvanced": "Advanced", "LabelCodecIntrosPath": "Codec intros path:", - "LabelCodecIntrosPathHelp": "A folder containing video files. If an intro video file name matches the video codec, audio codec, or audio profile, then it will be played prior to the main feature." + "LabelCodecIntrosPathHelp": "A folder containing video files. If an intro video file name matches the video codec, audio codec, audio profile, or a tag, then it will be played prior to the main feature." } \ No newline at end of file diff --git a/dashboard-ui/strings/html/nl.json b/dashboard-ui/strings/html/nl.json index 2f8f9171a7..ce29a3e737 100644 --- a/dashboard-ui/strings/html/nl.json +++ b/dashboard-ui/strings/html/nl.json @@ -1,4 +1,8 @@ { + "HeaderTaskTriggers": "Taak Triggers", + "TabSmartMatches": "Smart Matches", + "LabelOrganizeSmartMatchOption": "Organiseer alle bestanden voortaan in de geselecteerde serie wanneer het de naam bevat", + "TabSmartMatchInfo": "Manage your smart matches that were added using the Auto-Organize correction dialog", "LabelExit": "Afsluiten", "LabelVisitCommunity": "Bezoek Gemeenschap", "LabelGithub": "Github", @@ -1528,5 +1532,5 @@ "HeaderNewRecording": "Nieuwe opname", "ButtonAdvanced": "Geavanceerd", "LabelCodecIntrosPath": "Codec intro's pad:", - "LabelCodecIntrosPathHelp": "Een map met video bestanden. Als de bestandsnaam van een video bestand overeenkomt met de video-, audiocodec of een audio profiel dan zal deze afgespeeld worden voor de hoofd film." + "LabelCodecIntrosPathHelp": "Een map met video bestanden. Als de bestandsnaam van een video bestand overeenkomt met de video-, audiocodec ,audio profiel of een Tag dan zal deze afgespeeld worden voor de hoofd film." } \ No newline at end of file diff --git a/dashboard-ui/strings/html/pl.json b/dashboard-ui/strings/html/pl.json index 6703b02899..252985e7fd 100644 --- a/dashboard-ui/strings/html/pl.json +++ b/dashboard-ui/strings/html/pl.json @@ -1,4 +1,8 @@ { + "HeaderTaskTriggers": "Wyzwalacze Zada\u0144", + "TabSmartMatches": "Smart Matches", + "LabelOrganizeSmartMatchOption": "In the future, organize all files into the selected series if the name contains", + "TabSmartMatchInfo": "Manage your smart matches that were added using the Auto-Organize correction dialog", "LabelExit": "Wyj\u015bcie", "LabelVisitCommunity": "Odwied\u017a spo\u0142eczno\u015b\u0107", "LabelGithub": "Github", @@ -1528,5 +1532,5 @@ "HeaderNewRecording": "Nowe nagranie", "ButtonAdvanced": "Zaawansowane", "LabelCodecIntrosPath": "Codec intros path:", - "LabelCodecIntrosPathHelp": "A folder containing video files. If an intro video file name matches the video codec, audio codec, or audio profile, then it will be played prior to the main feature." + "LabelCodecIntrosPathHelp": "A folder containing video files. If an intro video file name matches the video codec, audio codec, audio profile, or a tag, then it will be played prior to the main feature." } \ No newline at end of file diff --git a/dashboard-ui/strings/html/pt-BR.json b/dashboard-ui/strings/html/pt-BR.json index 11a1ac8773..020478a3ee 100644 --- a/dashboard-ui/strings/html/pt-BR.json +++ b/dashboard-ui/strings/html/pt-BR.json @@ -1,4 +1,8 @@ { + "HeaderTaskTriggers": "Disparadores de Tarefa", + "TabSmartMatches": "Smart Matches", + "LabelOrganizeSmartMatchOption": "In the future, organize all files into the selected series if the name contains", + "TabSmartMatchInfo": "Manage your smart matches that were added using the Auto-Organize correction dialog", "LabelExit": "Sair", "LabelVisitCommunity": "Visitar a Comunidade", "LabelGithub": "Github", @@ -1527,6 +1531,6 @@ "LabelDisplayName": "Nome para exibi\u00e7\u00e3o:", "HeaderNewRecording": "Nova Grava\u00e7\u00e3o", "ButtonAdvanced": "Avan\u00e7ado", - "LabelCodecIntrosPath": "Codec intros path:", - "LabelCodecIntrosPathHelp": "A folder containing video files. If an intro video file name matches the video codec, audio codec, or audio profile, then it will be played prior to the main feature." + "LabelCodecIntrosPath": "Caminho dos codecs das introdu\u00e7\u00f5es:", + "LabelCodecIntrosPathHelp": "Uma pasta contendo arquivos de v\u00eddeo. Se um nome de arquivo de v\u00eddeo de introdu\u00e7\u00e3o bater com o codec de v\u00eddeo, codec de \u00e1udio ou perfil de \u00e1udio, ser\u00e1 reproduzido antes do filme principal." } \ No newline at end of file diff --git a/dashboard-ui/strings/html/pt-PT.json b/dashboard-ui/strings/html/pt-PT.json index a8091954da..3b741deff3 100644 --- a/dashboard-ui/strings/html/pt-PT.json +++ b/dashboard-ui/strings/html/pt-PT.json @@ -1,4 +1,8 @@ { + "HeaderTaskTriggers": "Task Triggers", + "TabSmartMatches": "Smart Matches", + "LabelOrganizeSmartMatchOption": "In the future, organize all files into the selected series if the name contains", + "TabSmartMatchInfo": "Manage your smart matches that were added using the Auto-Organize correction dialog", "LabelExit": "Sair", "LabelVisitCommunity": "Visitar a Comunidade", "LabelGithub": "Github", @@ -1528,5 +1532,5 @@ "HeaderNewRecording": "New Recording", "ButtonAdvanced": "Advanced", "LabelCodecIntrosPath": "Codec intros path:", - "LabelCodecIntrosPathHelp": "A folder containing video files. If an intro video file name matches the video codec, audio codec, or audio profile, then it will be played prior to the main feature." + "LabelCodecIntrosPathHelp": "A folder containing video files. If an intro video file name matches the video codec, audio codec, audio profile, or a tag, then it will be played prior to the main feature." } \ No newline at end of file diff --git a/dashboard-ui/strings/html/ro.json b/dashboard-ui/strings/html/ro.json index c659b1dcd8..2d9f9cfa47 100644 --- a/dashboard-ui/strings/html/ro.json +++ b/dashboard-ui/strings/html/ro.json @@ -1,4 +1,8 @@ { + "HeaderTaskTriggers": "Task Triggers", + "TabSmartMatches": "Smart Matches", + "LabelOrganizeSmartMatchOption": "In the future, organize all files into the selected series if the name contains", + "TabSmartMatchInfo": "Manage your smart matches that were added using the Auto-Organize correction dialog", "LabelExit": "Iesire", "LabelVisitCommunity": "Viziteaza comunitatea", "LabelGithub": "Github", @@ -1528,5 +1532,5 @@ "HeaderNewRecording": "New Recording", "ButtonAdvanced": "Advanced", "LabelCodecIntrosPath": "Codec intros path:", - "LabelCodecIntrosPathHelp": "A folder containing video files. If an intro video file name matches the video codec, audio codec, or audio profile, then it will be played prior to the main feature." + "LabelCodecIntrosPathHelp": "A folder containing video files. If an intro video file name matches the video codec, audio codec, audio profile, or a tag, then it will be played prior to the main feature." } \ No newline at end of file diff --git a/dashboard-ui/strings/html/ru.json b/dashboard-ui/strings/html/ru.json index 1421d97876..f1fb7e5064 100644 --- a/dashboard-ui/strings/html/ru.json +++ b/dashboard-ui/strings/html/ru.json @@ -1,4 +1,8 @@ { + "HeaderTaskTriggers": "\u0422\u0440\u0438\u0433\u0433\u0435\u0440\u044b \u0437\u0430\u0434\u0430\u0447\u0438", + "TabSmartMatches": "Smart Matches", + "LabelOrganizeSmartMatchOption": "In the future, organize all files into the selected series if the name contains", + "TabSmartMatchInfo": "Manage your smart matches that were added using the Auto-Organize correction dialog", "LabelExit": "\u0412\u044b\u0445\u043e\u0434", "LabelVisitCommunity": "\u041f\u043e\u0441\u0435\u0449\u0435\u043d\u0438\u0435 \u0421\u043e\u043e\u0431\u0449\u0435\u0441\u0442\u0432\u0430", "LabelGithub": "GitHub", @@ -391,7 +395,7 @@ "TabCollections": "\u041a\u043e\u043b\u043b\u0435\u043a\u0446\u0438\u0438", "HeaderChannels": "\u041a\u0430\u043d\u0430\u043b\u044b", "TabRecordings": "\u0417\u0430\u043f\u0438\u0441\u0438", - "TabScheduled": "\u0417\u0430\u043f\u043b\u0430\u043d\u0438\u0440\u043e\u0432\u0430\u043d\u043d\u043e\u0435", + "TabScheduled": "\u041d\u0430\u0437\u043d\u0430\u0447\u0435\u043d\u043d\u043e\u0435", "TabSeries": "\u0421\u0435\u0440\u0438\u0430\u043b\u044b", "TabFavorites": "\u0418\u0437\u0431\u0440\u0430\u043d\u043d\u043e\u0435", "TabMyLibrary": "\u041c\u043e\u044f \u043c\u0435\u0434\u0438\u0430\u0442\u0435\u043a\u0430", @@ -448,8 +452,8 @@ "LabelMaxScreenshotsPerItem": "\u041c\u0430\u043a\u0441. \u0447\u0438\u0441\u043b\u043e \u0441\u043a\u0440\u0438\u043d\u0448\u043e\u0442\u043e\u0432:", "LabelMinBackdropDownloadWidth": "\u041c\u0438\u043d. \u0448\u0438\u0440\u0438\u043d\u0430 \u0437\u0430\u0433\u0440\u0443\u0436\u0430\u0435\u043c\u043e\u0433\u043e \u0437\u0430\u0434\u043d\u0438\u043a\u0430:", "LabelMinScreenshotDownloadWidth": "\u041c\u0438\u043d. \u0448\u0438\u0440\u0438\u043d\u0430 \u0437\u0430\u0433\u0440\u0443\u0436\u0430\u0435\u043c\u043e\u0433\u043e \u0441\u0430\u043a\u0440\u0438\u043d\u0448\u043e\u0442\u0430:", - "ButtonAddScheduledTaskTrigger": "\u0414\u043e\u0431\u0430\u0432\u0438\u0442\u044c \u0437\u0430\u0434\u0430\u0447\u0443", - "HeaderAddScheduledTaskTrigger": "\u0414\u043e\u0431\u0430\u0432\u043b\u0435\u043d\u0438\u0435 \u0437\u0430\u0434\u0430\u0447\u0438", + "ButtonAddScheduledTaskTrigger": "\u0414\u043e\u0431\u0430\u0432\u0438\u0442\u044c \u0442\u0440\u0438\u0433\u0433\u0435\u0440", + "HeaderAddScheduledTaskTrigger": "\u0414\u043e\u0431\u0430\u0432\u043b\u0435\u043d\u0438\u0435 \u0442\u0440\u0438\u0433\u0433\u0435\u0440\u0430", "ButtonAdd": "\u0414\u043e\u0431\u0430\u0432\u0438\u0442\u044c", "LabelTriggerType": "\u0422\u0438\u043f \u0437\u0430\u0434\u0430\u0447\u0438:", "OptionDaily": "\u0415\u0436\u0435\u0434\u043d\u0435\u0432\u043d\u043e", @@ -638,7 +642,7 @@ "MessagePleaseRestartServerToFinishUpdating": "\u041f\u0435\u0440\u0435\u0437\u0430\u043f\u0443\u0441\u0442\u0438\u0442\u0435 \u0441\u0435\u0440\u0432\u0435\u0440, \u0447\u0442\u043e\u0431\u044b \u0437\u0430\u0432\u0435\u0440\u0448\u0438\u0442\u044c \u043f\u0440\u0438\u043c\u0435\u043d\u0435\u043d\u0438\u0435 \u043e\u0431\u043d\u043e\u0432\u043b\u0435\u043d\u0438\u0439.", "LabelDownMixAudioScale": "\u041a\u043e\u043c\u043f\u0435\u043d\u0441\u0430\u0446\u0438\u044f \u043f\u0440\u0438 \u043f\u043e\u043d\u0438\u0436\u0430\u044e\u0449\u0435\u043c \u043c\u0438\u043a\u0448\u0438\u0440\u043e\u0432\u0430\u043d\u0438\u0438:", "LabelDownMixAudioScaleHelp": "\u041a\u043e\u043c\u043f\u0435\u043d\u0441\u0438\u0440\u0443\u0435\u0442\u0441\u044f \u0443\u0440\u043e\u0432\u0435\u043d\u044c \u0437\u0432\u0443\u043a\u0430 \u043f\u0440\u0438 \u043f\u043e\u043d\u0438\u0436\u0430\u044e\u0449\u0435\u043c \u043c\u0438\u043a\u0448\u0438\u0440\u043e\u0432\u0430\u043d\u0438\u0438. \u0417\u0430\u0434\u0430\u0439\u0442\u0435 1, \u0447\u0442\u043e\u0431\u044b \u043d\u0435 \u043c\u0435\u043d\u044f\u0442\u044c \u0438\u0441\u0445\u043e\u0434\u043d\u043e\u0435 \u0437\u043d\u0430\u0447\u0435\u043d\u0438\u0435 \u0443\u0440\u043e\u0432\u043d\u044f.", - "ButtonLinkKeys": "\u041f\u0435\u0440\u0435\u0432\u043e\u0434 \u043a\u043b\u044e\u0447\u0430", + "ButtonLinkKeys": "\u041f\u0435\u0440\u0435\u043d\u0435\u0441\u0442\u0438 \u043a\u043b\u044e\u0447", "LabelOldSupporterKey": "\u0421\u0442\u0430\u0440\u044b\u0439 \u043a\u043b\u044e\u0447 Emby Premiere", "LabelNewSupporterKey": "\u041d\u043e\u0432\u044b\u0439 \u043a\u043b\u044e\u0447 Emby Premiere", "HeaderMultipleKeyLinking": "\u041f\u0435\u0440\u0435\u0445\u043e\u0434 \u043a \u043d\u043e\u0432\u043e\u043c\u0443 \u043a\u043b\u044e\u0447\u0443", @@ -801,13 +805,13 @@ "LabelMaxBitrateHelp": "\u0423\u043a\u0430\u0436\u0438\u0442\u0435 \u043c\u0430\u043a\u0441\u0438\u043c\u0430\u043b\u044c\u043d\u0443\u044e \u043f\u043e\u0442\u043e\u043a\u043e\u0432\u0443\u044e \u0441\u043a\u043e\u0440\u043e\u0441\u0442\u044c \u0432 \u0441\u0440\u0435\u0434\u0430\u0445 \u0441 \u043e\u0433\u0440\u0430\u043d\u0438\u0447\u0435\u043d\u043d\u043e\u0439 \u043f\u0440\u043e\u043f\u0443\u0441\u043a\u043d\u043e\u0439 \u0441\u043f\u043e\u0441\u043e\u0431\u043d\u043e\u0441\u0442\u044c\u044e, \u043b\u0438\u0431\u043e, \u0435\u0441\u043b\u0438 \u0442\u0440\u0435\u0431\u0443\u0435\u0442\u0441\u044f \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432\u0443 - \u0435\u0433\u043e \u0441\u043e\u0431\u0441\u0442\u0432\u0435\u043d\u043d\u043e\u0435 \u043e\u0433\u0440\u0430\u043d\u0438\u0447\u0435\u043d\u0438\u0435.", "LabelMaxStreamingBitrate": "\u041c\u0430\u043a\u0441. \u043f\u043e\u0442\u043e\u043a\u043e\u0432\u0430\u044f \u0441\u043a\u043e\u0440\u043e\u0441\u0442\u044c \u0442\u0440\u0430\u043d\u0441\u043b\u044f\u0446\u0438\u0438:", "LabelMaxStreamingBitrateHelp": "\u0423\u043a\u0430\u0436\u0438\u0442\u0435 \u043c\u0430\u043a\u0441\u0438\u043c\u0430\u043b\u044c\u043d\u0443\u044e \u043f\u043e\u0442\u043e\u043a\u043e\u0432\u0443\u044e \u0441\u043a\u043e\u0440\u043e\u0441\u0442\u044c \u043f\u0440\u0438 \u0442\u0440\u0430\u043d\u0441\u043b\u044f\u0446\u0438\u0438.", - "LabelMaxChromecastBitrate": "\u041c\u0430\u043a\u0441. \u0431\u0438\u0442\u0440\u0435\u0439\u0442 \u0434\u043b\u044f Chromecast:", + "LabelMaxChromecastBitrate": "\u041c\u0430\u043a\u0441. \u043f\u043e\u0442\u043e\u043a. \u0441\u043a\u043e\u0440\u043e\u0441\u0442\u044c \u0434\u043b\u044f Chromecast:", "LabelMaxStaticBitrate": "\u041c\u0430\u043a\u0441. \u043f\u043e\u0442\u043e\u043a. \u0441\u043a\u043e\u0440\u043e\u0441\u0442\u044c \u0441\u0438\u043d\u0445\u0440-\u0438\u0438:", "LabelMaxStaticBitrateHelp": "\u0423\u043a\u0430\u0436\u0438\u0442\u0435 \u043c\u0430\u043a\u0441\u0438\u043c\u0430\u043b\u044c\u043d\u0443\u044e \u043f\u043e\u0442\u043e\u043a\u043e\u0432\u0443\u044e \u0441\u043a\u043e\u0440\u043e\u0441\u0442\u044c \u043f\u0440\u0438 \u0441\u0438\u043d\u0445\u0440\u043e\u043d\u0438\u0437\u0430\u0446\u0438\u0438 \u0441\u043e\u0434\u0435\u0440\u0436\u0430\u043d\u0438\u044f \u0432\u043e \u0432\u044b\u0441\u043e\u043a\u043e\u043c \u043a\u0430\u0447\u0435\u0441\u0442\u0432\u0435.", "LabelMusicStaticBitrate": "\u041f\u043e\u0442\u043e\u043a. \u0441\u043a\u043e\u0440\u043e\u0441\u0442\u044c \u0441\u0438\u043d\u0445\u0440-\u0438\u0438 \u043c\u0443\u0437\u044b\u043a\u0438:", "LabelMusicStaticBitrateHelp": "\u0423\u043a\u0430\u0436\u0438\u0442\u0435 \u043c\u0430\u043a\u0441\u0438\u043c\u0430\u043b\u044c\u043d\u0443\u044e \u043f\u043e\u0442\u043e\u043a\u043e\u0432\u0443\u044e \u0441\u043a\u043e\u0440\u043e\u0441\u0442\u044c \u043f\u0440\u0438 \u0441\u0438\u043d\u0445\u0440\u043e\u043d\u0438\u0437\u0430\u0446\u0438\u0438 \u043c\u0443\u0437\u044b\u043a\u0438", "LabelMusicStreamingTranscodingBitrate": "\u041f\u043e\u0442\u043e\u043a. \u0441\u043a\u043e\u0440\u043e\u0441\u0442\u044c \u043f\u0435\u0440\u0435\u043a\u043e\u0434\u0438\u0440\u043e\u0432\u043a\u0438 \u043c\u0443\u0437\u044b\u043a\u0438:", - "LabelMusicStreamingTranscodingBitrateHelp": "\u0423\u043a\u0430\u0436\u0438\u0442\u0435 \u043c\u0430\u043a\u0441\u0438\u043c\u0430\u043b\u044c\u043d\u0443\u044e \u0441\u043a\u043e\u0440\u043e\u0441\u0442\u044c \u043f\u0440\u0438 \u0442\u0440\u0430\u043d\u0441\u043b\u044f\u0446\u0438\u0438 \u043c\u0443\u0437\u044b\u043a\u0438", + "LabelMusicStreamingTranscodingBitrateHelp": "\u0423\u043a\u0430\u0436\u0438\u0442\u0435 \u043c\u0430\u043a\u0441\u0438\u043c\u0430\u043b\u044c\u043d\u0443\u044e \u043f\u043e\u0442\u043e\u043a\u043e\u0432\u0443\u044e \u0441\u043a\u043e\u0440\u043e\u0441\u0442\u044c \u043f\u0440\u0438 \u0442\u0440\u0430\u043d\u0441\u043b\u044f\u0446\u0438\u0438 \u043c\u0443\u0437\u044b\u043a\u0438", "OptionIgnoreTranscodeByteRangeRequests": "\u0418\u0433\u043d\u043e\u0440\u0438\u0440\u043e\u0432\u0430\u0442\u044c \u0437\u0430\u043f\u0440\u043e\u0441\u044b \u0434\u0438\u0430\u043f\u0430\u0437\u043e\u043d\u0430 \u0431\u0430\u0439\u0442\u043e\u0432 \u043f\u0435\u0440\u0435\u043a\u043e\u0434\u0438\u0440\u043e\u0432\u043a\u0438", "OptionIgnoreTranscodeByteRangeRequestsHelp": "\u041f\u0440\u0438 \u0432\u043a\u043b\u044e\u0447\u0435\u043d\u0438\u0438, \u044d\u0442\u0438 \u0437\u0430\u043f\u0440\u043e\u0441\u044b \u0431\u0443\u0434\u0443\u0442 \u0443\u0447\u0442\u0435\u043d\u044b, \u043d\u043e \u0437\u0430\u0433\u043e\u043b\u043e\u0432\u043e\u043a \u0434\u0438\u0430\u043f\u0430\u0437\u043e\u043d\u0430 \u0431\u0430\u0439\u0442\u043e\u0432 \u0431\u0443\u0434\u0435\u0442 \u043f\u0440\u043e\u0438\u0433\u043d\u043e\u0440\u0438\u0440\u043e\u0432\u0430\u043d.", "LabelFriendlyName": "\u041f\u043e\u043d\u044f\u0442\u043d\u043e\u0435 \u0438\u043c\u044f", diff --git a/dashboard-ui/strings/html/server.json b/dashboard-ui/strings/html/server.json index 1967f054d0..cbf942b24b 100644 --- a/dashboard-ui/strings/html/server.json +++ b/dashboard-ui/strings/html/server.json @@ -1270,7 +1270,7 @@ "LabelExtractChaptersDuringLibraryScan": "Extract chapter images during the library scan", "LabelExtractChaptersDuringLibraryScanHelp": "If enabled, chapter images will be extracted when videos are imported during the library scan. If disabled they will be extracted during the chapter images scheduled task, allowing the regular library scan to complete faster.", "LabelConnectGuestUserName": "Their Emby username or email address:", - "LabelConnectUserName": "Emby username/email:", + "LabelConnectUserName": "Emby username or email address:", "LabelConnectUserNameHelp": "Connect this local user to an online Emby account to enable easy sign-in access from any Emby app without having to know the server ip address.", "ButtonLearnMoreAboutEmbyConnect": "Learn more about Emby Connect", "LabelExternalPlayers": "External players:", diff --git a/dashboard-ui/strings/html/sl-SI.json b/dashboard-ui/strings/html/sl-SI.json index ce21998e42..bfff6bdad5 100644 --- a/dashboard-ui/strings/html/sl-SI.json +++ b/dashboard-ui/strings/html/sl-SI.json @@ -1,4 +1,8 @@ { + "HeaderTaskTriggers": "Task Triggers", + "TabSmartMatches": "Smart Matches", + "LabelOrganizeSmartMatchOption": "In the future, organize all files into the selected series if the name contains", + "TabSmartMatchInfo": "Manage your smart matches that were added using the Auto-Organize correction dialog", "LabelExit": "Exit", "LabelVisitCommunity": "Visit Community", "LabelGithub": "Github", @@ -1528,5 +1532,5 @@ "HeaderNewRecording": "New Recording", "ButtonAdvanced": "Advanced", "LabelCodecIntrosPath": "Codec intros path:", - "LabelCodecIntrosPathHelp": "A folder containing video files. If an intro video file name matches the video codec, audio codec, or audio profile, then it will be played prior to the main feature." + "LabelCodecIntrosPathHelp": "A folder containing video files. If an intro video file name matches the video codec, audio codec, audio profile, or a tag, then it will be played prior to the main feature." } \ No newline at end of file diff --git a/dashboard-ui/strings/html/sv.json b/dashboard-ui/strings/html/sv.json index 8813ec11e8..707d93c41d 100644 --- a/dashboard-ui/strings/html/sv.json +++ b/dashboard-ui/strings/html/sv.json @@ -1,4 +1,8 @@ { + "HeaderTaskTriggers": "Aktivitetsutl\u00f6sare", + "TabSmartMatches": "Smart Matches", + "LabelOrganizeSmartMatchOption": "In the future, organize all files into the selected series if the name contains", + "TabSmartMatchInfo": "Manage your smart matches that were added using the Auto-Organize correction dialog", "LabelExit": "Avsluta", "LabelVisitCommunity": "Bes\u00f6k v\u00e5rt diskussionsforum", "LabelGithub": "Github", @@ -1528,5 +1532,5 @@ "HeaderNewRecording": "New Recording", "ButtonAdvanced": "Advanced", "LabelCodecIntrosPath": "Codec intros path:", - "LabelCodecIntrosPathHelp": "A folder containing video files. If an intro video file name matches the video codec, audio codec, or audio profile, then it will be played prior to the main feature." + "LabelCodecIntrosPathHelp": "A folder containing video files. If an intro video file name matches the video codec, audio codec, audio profile, or a tag, then it will be played prior to the main feature." } \ No newline at end of file diff --git a/dashboard-ui/strings/html/tr.json b/dashboard-ui/strings/html/tr.json index 5ea3eb9bf5..166616ab0b 100644 --- a/dashboard-ui/strings/html/tr.json +++ b/dashboard-ui/strings/html/tr.json @@ -1,4 +1,8 @@ { + "HeaderTaskTriggers": "Task Triggers", + "TabSmartMatches": "Smart Matches", + "LabelOrganizeSmartMatchOption": "In the future, organize all files into the selected series if the name contains", + "TabSmartMatchInfo": "Manage your smart matches that were added using the Auto-Organize correction dialog", "LabelExit": "Cikis", "LabelVisitCommunity": "Bizi Ziyaret Edin", "LabelGithub": "Github", @@ -1528,5 +1532,5 @@ "HeaderNewRecording": "New Recording", "ButtonAdvanced": "Advanced", "LabelCodecIntrosPath": "Codec intros path:", - "LabelCodecIntrosPathHelp": "A folder containing video files. If an intro video file name matches the video codec, audio codec, or audio profile, then it will be played prior to the main feature." + "LabelCodecIntrosPathHelp": "A folder containing video files. If an intro video file name matches the video codec, audio codec, audio profile, or a tag, then it will be played prior to the main feature." } \ No newline at end of file diff --git a/dashboard-ui/strings/html/uk.json b/dashboard-ui/strings/html/uk.json index 987e4000d2..21451bb761 100644 --- a/dashboard-ui/strings/html/uk.json +++ b/dashboard-ui/strings/html/uk.json @@ -1,4 +1,8 @@ { + "HeaderTaskTriggers": "Task Triggers", + "TabSmartMatches": "Smart Matches", + "LabelOrganizeSmartMatchOption": "In the future, organize all files into the selected series if the name contains", + "TabSmartMatchInfo": "Manage your smart matches that were added using the Auto-Organize correction dialog", "LabelExit": "\u0412\u0438\u0439\u0442\u0438", "LabelVisitCommunity": "Visit Community", "LabelGithub": "Github", @@ -1528,5 +1532,5 @@ "HeaderNewRecording": "New Recording", "ButtonAdvanced": "Advanced", "LabelCodecIntrosPath": "Codec intros path:", - "LabelCodecIntrosPathHelp": "A folder containing video files. If an intro video file name matches the video codec, audio codec, or audio profile, then it will be played prior to the main feature." + "LabelCodecIntrosPathHelp": "A folder containing video files. If an intro video file name matches the video codec, audio codec, audio profile, or a tag, then it will be played prior to the main feature." } \ No newline at end of file diff --git a/dashboard-ui/strings/html/vi.json b/dashboard-ui/strings/html/vi.json index 016ed3d242..650872e5a0 100644 --- a/dashboard-ui/strings/html/vi.json +++ b/dashboard-ui/strings/html/vi.json @@ -1,4 +1,8 @@ { + "HeaderTaskTriggers": "Task Triggers", + "TabSmartMatches": "Smart Matches", + "LabelOrganizeSmartMatchOption": "In the future, organize all files into the selected series if the name contains", + "TabSmartMatchInfo": "Manage your smart matches that were added using the Auto-Organize correction dialog", "LabelExit": "Tho\u00e1t", "LabelVisitCommunity": "Gh\u00e9 th\u0103m trang C\u1ed9ng \u0111\u1ed3ng", "LabelGithub": "Github", @@ -1528,5 +1532,5 @@ "HeaderNewRecording": "New Recording", "ButtonAdvanced": "Advanced", "LabelCodecIntrosPath": "Codec intros path:", - "LabelCodecIntrosPathHelp": "A folder containing video files. If an intro video file name matches the video codec, audio codec, or audio profile, then it will be played prior to the main feature." + "LabelCodecIntrosPathHelp": "A folder containing video files. If an intro video file name matches the video codec, audio codec, audio profile, or a tag, then it will be played prior to the main feature." } \ No newline at end of file diff --git a/dashboard-ui/strings/html/zh-CN.json b/dashboard-ui/strings/html/zh-CN.json index fce7eb850b..1b4cee113a 100644 --- a/dashboard-ui/strings/html/zh-CN.json +++ b/dashboard-ui/strings/html/zh-CN.json @@ -1,4 +1,8 @@ { + "HeaderTaskTriggers": "\u4efb\u52a1\u89e6\u53d1\u6761\u4ef6", + "TabSmartMatches": "Smart Matches", + "LabelOrganizeSmartMatchOption": "In the future, organize all files into the selected series if the name contains", + "TabSmartMatchInfo": "Manage your smart matches that were added using the Auto-Organize correction dialog", "LabelExit": "\u9000\u51fa", "LabelVisitCommunity": "\u8bbf\u95ee\u793e\u533a", "LabelGithub": "Github", @@ -1528,5 +1532,5 @@ "HeaderNewRecording": "New Recording", "ButtonAdvanced": "Advanced", "LabelCodecIntrosPath": "Codec intros path:", - "LabelCodecIntrosPathHelp": "A folder containing video files. If an intro video file name matches the video codec, audio codec, or audio profile, then it will be played prior to the main feature." + "LabelCodecIntrosPathHelp": "A folder containing video files. If an intro video file name matches the video codec, audio codec, audio profile, or a tag, then it will be played prior to the main feature." } \ No newline at end of file diff --git a/dashboard-ui/strings/html/zh-HK.json b/dashboard-ui/strings/html/zh-HK.json index f128d020aa..c9f39005f2 100644 --- a/dashboard-ui/strings/html/zh-HK.json +++ b/dashboard-ui/strings/html/zh-HK.json @@ -1,4 +1,8 @@ { + "HeaderTaskTriggers": "Task Triggers", + "TabSmartMatches": "Smart Matches", + "LabelOrganizeSmartMatchOption": "In the future, organize all files into the selected series if the name contains", + "TabSmartMatchInfo": "Manage your smart matches that were added using the Auto-Organize correction dialog", "LabelExit": "\u96e2\u958b", "LabelVisitCommunity": "\u8a2a\u554f\u8a0e\u8ad6\u5340", "LabelGithub": "Github", @@ -1528,5 +1532,5 @@ "HeaderNewRecording": "New Recording", "ButtonAdvanced": "Advanced", "LabelCodecIntrosPath": "Codec intros path:", - "LabelCodecIntrosPathHelp": "A folder containing video files. If an intro video file name matches the video codec, audio codec, or audio profile, then it will be played prior to the main feature." + "LabelCodecIntrosPathHelp": "A folder containing video files. If an intro video file name matches the video codec, audio codec, audio profile, or a tag, then it will be played prior to the main feature." } \ No newline at end of file diff --git a/dashboard-ui/strings/html/zh-TW.json b/dashboard-ui/strings/html/zh-TW.json index 1cbf4ee5fa..173329ca49 100644 --- a/dashboard-ui/strings/html/zh-TW.json +++ b/dashboard-ui/strings/html/zh-TW.json @@ -1,4 +1,8 @@ { + "HeaderTaskTriggers": "Task Triggers", + "TabSmartMatches": "Smart Matches", + "LabelOrganizeSmartMatchOption": "In the future, organize all files into the selected series if the name contains", + "TabSmartMatchInfo": "Manage your smart matches that were added using the Auto-Organize correction dialog", "LabelExit": "\u96e2\u958b", "LabelVisitCommunity": "\u8a2a\u554f\u793e\u5340", "LabelGithub": "Github", @@ -1528,5 +1532,5 @@ "HeaderNewRecording": "New Recording", "ButtonAdvanced": "Advanced", "LabelCodecIntrosPath": "Codec intros path:", - "LabelCodecIntrosPathHelp": "A folder containing video files. If an intro video file name matches the video codec, audio codec, or audio profile, then it will be played prior to the main feature." + "LabelCodecIntrosPathHelp": "A folder containing video files. If an intro video file name matches the video codec, audio codec, audio profile, or a tag, then it will be played prior to the main feature." } \ No newline at end of file diff --git a/dashboard-ui/strings/javascript/ar.json b/dashboard-ui/strings/javascript/ar.json index 62de8b36b5..c4e92ca6b4 100644 --- a/dashboard-ui/strings/javascript/ar.json +++ b/dashboard-ui/strings/javascript/ar.json @@ -1,4 +1,6 @@ { + "HeaderTo": "To", + "MessageNoPluginsDueToAppStore": "To manage plugins, please use the Emby web app.", "SettingsSaved": "\u062a\u0645 \u062d\u0641\u0638 \u0627\u0644\u0627\u0639\u062f\u0627\u062f\u0627\u062a.", "AddUser": "\u0627\u0636\u0627\u0641\u0629 \u0645\u0633\u062a\u062e\u062f\u0645", "Users": "\u0627\u0644\u0645\u0633\u062a\u062e\u062f\u0645\u064a\u0646", diff --git a/dashboard-ui/strings/javascript/bg-BG.json b/dashboard-ui/strings/javascript/bg-BG.json index 5da9807c78..94cf235252 100644 --- a/dashboard-ui/strings/javascript/bg-BG.json +++ b/dashboard-ui/strings/javascript/bg-BG.json @@ -1,4 +1,6 @@ { + "HeaderTo": "To", + "MessageNoPluginsDueToAppStore": "To manage plugins, please use the Emby web app.", "SettingsSaved": "Settings saved.", "AddUser": "Add User", "Users": "Users", diff --git a/dashboard-ui/strings/javascript/ca.json b/dashboard-ui/strings/javascript/ca.json index 90bb8b0e1d..9b9733f442 100644 --- a/dashboard-ui/strings/javascript/ca.json +++ b/dashboard-ui/strings/javascript/ca.json @@ -1,4 +1,6 @@ { + "HeaderTo": "A", + "MessageNoPluginsDueToAppStore": "To manage plugins, please use the Emby web app.", "SettingsSaved": "Configuraci\u00f3 guardada.", "AddUser": "Afegir Usuari", "Users": "Usuaris", diff --git a/dashboard-ui/strings/javascript/cs.json b/dashboard-ui/strings/javascript/cs.json index 5f07cc50d4..4f15c036c9 100644 --- a/dashboard-ui/strings/javascript/cs.json +++ b/dashboard-ui/strings/javascript/cs.json @@ -1,4 +1,6 @@ { + "HeaderTo": "Do", + "MessageNoPluginsDueToAppStore": "To manage plugins, please use the Emby web app.", "SettingsSaved": "Nastaven\u00ed ulo\u017eeno.", "AddUser": "P\u0159idat u\u017eivatele", "Users": "U\u017eivatel\u00e9", diff --git a/dashboard-ui/strings/javascript/da.json b/dashboard-ui/strings/javascript/da.json index 8c4a1567ab..fcda08ee3c 100644 --- a/dashboard-ui/strings/javascript/da.json +++ b/dashboard-ui/strings/javascript/da.json @@ -1,4 +1,6 @@ { + "HeaderTo": "Til", + "MessageNoPluginsDueToAppStore": "To manage plugins, please use the Emby web app.", "SettingsSaved": "Indstillinger er gemt", "AddUser": "Tilf\u00f8j bruger", "Users": "Brugere", diff --git a/dashboard-ui/strings/javascript/de.json b/dashboard-ui/strings/javascript/de.json index 99e128008b..c1006b98dd 100644 --- a/dashboard-ui/strings/javascript/de.json +++ b/dashboard-ui/strings/javascript/de.json @@ -1,4 +1,6 @@ { + "HeaderTo": "Nach", + "MessageNoPluginsDueToAppStore": "Um plugins zu verwalten verwenden Sie bitte die Emby Web App.", "SettingsSaved": "Einstellungen gespeichert.", "AddUser": "Benutzer anlegen", "Users": "Benutzer", @@ -946,7 +948,7 @@ "CinemaModeFeatureDescription": "Der Cinema Mode bringt das richtige Kinogef\u00fchl mit Trailern und eigenen Intros vor dem Hauptfilm.", "CoverArt": "Cover Art", "ButtonOff": "Ausschalten", - "TitleHardwareAcceleration": "Hardware Acceleration", - "HardwareAccelerationWarning": "Enabling hardware acceleration may cause instability in some environments. If you have difficulty playing video after enabling this, you'll need to change the setting back to Auto.", - "HeaderSelectCodecIntrosPath": "Select Codec Intros Path" + "TitleHardwareAcceleration": "Hardware Beschleunigung", + "HardwareAccelerationWarning": "Das Aktivieren der Hardwarebeschleunigung kann auf einigen Systemen zu Problemen f\u00fchren. Wenn Sie probleme w\u00e4hrend der Videowiedergabe feststellen, sollten Sie diese Einstellung zur\u00fcck auf \"Automatik\" stellen.", + "HeaderSelectCodecIntrosPath": "W\u00e4hlen Sie ein Codec Intro Verzeichnis" } \ No newline at end of file diff --git a/dashboard-ui/strings/javascript/el.json b/dashboard-ui/strings/javascript/el.json index 603e8b178e..1c43b54a4c 100644 --- a/dashboard-ui/strings/javascript/el.json +++ b/dashboard-ui/strings/javascript/el.json @@ -1,4 +1,6 @@ { + "HeaderTo": "To", + "MessageNoPluginsDueToAppStore": "To manage plugins, please use the Emby web app.", "SettingsSaved": "\u039f\u03b9 \u03c1\u03c5\u03b8\u03bc\u03af\u03c3\u03b5\u03b9\u03c2 \u03b1\u03c0\u03bf\u03b8\u03b7\u03ba\u03b5\u03cd\u03c4\u03b7\u03ba\u03b1\u03bd", "AddUser": "\u03a0\u03c1\u03bf\u03c3\u03b8\u03ae\u03ba\u03b7 \u03c7\u03c1\u03ae\u03c3\u03c4\u03b7", "Users": "\u039f\u03b9 \u03c7\u03c1\u03ae\u03c3\u03c4\u03b5\u03c2", diff --git a/dashboard-ui/strings/javascript/en-GB.json b/dashboard-ui/strings/javascript/en-GB.json index c9c4b31e92..29cf04be35 100644 --- a/dashboard-ui/strings/javascript/en-GB.json +++ b/dashboard-ui/strings/javascript/en-GB.json @@ -1,4 +1,6 @@ { + "HeaderTo": "To", + "MessageNoPluginsDueToAppStore": "To manage plugins, please use the Emby web app.", "SettingsSaved": "Settings saved.", "AddUser": "Add User", "Users": "Users", diff --git a/dashboard-ui/strings/javascript/en-US.json b/dashboard-ui/strings/javascript/en-US.json index 78fa75e93b..0c0db199e9 100644 --- a/dashboard-ui/strings/javascript/en-US.json +++ b/dashboard-ui/strings/javascript/en-US.json @@ -1,4 +1,6 @@ { + "HeaderTo": "To", + "MessageNoPluginsDueToAppStore": "To manage plugins, please use the Emby web app.", "SettingsSaved": "Settings saved.", "AddUser": "Add User", "Users": "Users", diff --git a/dashboard-ui/strings/javascript/es-AR.json b/dashboard-ui/strings/javascript/es-AR.json index fc3b34e3e1..352ca8045c 100644 --- a/dashboard-ui/strings/javascript/es-AR.json +++ b/dashboard-ui/strings/javascript/es-AR.json @@ -1,4 +1,6 @@ { + "HeaderTo": "To", + "MessageNoPluginsDueToAppStore": "To manage plugins, please use the Emby web app.", "SettingsSaved": "Settings saved.", "AddUser": "Add User", "Users": "Users", diff --git a/dashboard-ui/strings/javascript/es-MX.json b/dashboard-ui/strings/javascript/es-MX.json index afb86504f2..1f8b854419 100644 --- a/dashboard-ui/strings/javascript/es-MX.json +++ b/dashboard-ui/strings/javascript/es-MX.json @@ -1,4 +1,6 @@ { + "HeaderTo": "Hasta", + "MessageNoPluginsDueToAppStore": "To manage plugins, please use the Emby web app.", "SettingsSaved": "Configuraci\u00f3n guardada.", "AddUser": "Agregar usuario", "Users": "Usuarios", diff --git a/dashboard-ui/strings/javascript/es.json b/dashboard-ui/strings/javascript/es.json index ca7ef55f7f..aeafc35544 100644 --- a/dashboard-ui/strings/javascript/es.json +++ b/dashboard-ui/strings/javascript/es.json @@ -1,4 +1,6 @@ { + "HeaderTo": "Hasta", + "MessageNoPluginsDueToAppStore": "To manage plugins, please use the Emby web app.", "SettingsSaved": "Configuraci\u00f3n guardada", "AddUser": "Agregar usuario", "Users": "Usuarios", diff --git a/dashboard-ui/strings/javascript/fi.json b/dashboard-ui/strings/javascript/fi.json index 8ce9c72e21..e4ab6ce9a8 100644 --- a/dashboard-ui/strings/javascript/fi.json +++ b/dashboard-ui/strings/javascript/fi.json @@ -1,4 +1,6 @@ { + "HeaderTo": "To", + "MessageNoPluginsDueToAppStore": "To manage plugins, please use the Emby web app.", "SettingsSaved": "Asetukset tallennettu.", "AddUser": "Lis\u00e4\u00e4 K\u00e4ytt\u00e4j\u00e4", "Users": "K\u00e4ytt\u00e4j\u00e4t", diff --git a/dashboard-ui/strings/javascript/fr.json b/dashboard-ui/strings/javascript/fr.json index b68bb628a9..34c0744b85 100644 --- a/dashboard-ui/strings/javascript/fr.json +++ b/dashboard-ui/strings/javascript/fr.json @@ -1,4 +1,6 @@ { + "HeaderTo": "\u00c0", + "MessageNoPluginsDueToAppStore": "To manage plugins, please use the Emby web app.", "SettingsSaved": "Param\u00e8tres sauvegard\u00e9s.", "AddUser": "Ajouter un utilisateur", "Users": "Utilisateurs", diff --git a/dashboard-ui/strings/javascript/gsw.json b/dashboard-ui/strings/javascript/gsw.json index 332f24cdb3..4d862d4a7a 100644 --- a/dashboard-ui/strings/javascript/gsw.json +++ b/dashboard-ui/strings/javascript/gsw.json @@ -1,4 +1,6 @@ { + "HeaderTo": "To", + "MessageNoPluginsDueToAppStore": "To manage plugins, please use the Emby web app.", "SettingsSaved": "Settings saved.", "AddUser": "Add User", "Users": "Users", diff --git a/dashboard-ui/strings/javascript/he.json b/dashboard-ui/strings/javascript/he.json index ee0106dac5..16fae2d753 100644 --- a/dashboard-ui/strings/javascript/he.json +++ b/dashboard-ui/strings/javascript/he.json @@ -1,4 +1,6 @@ { + "HeaderTo": "\u05dc-", + "MessageNoPluginsDueToAppStore": "To manage plugins, please use the Emby web app.", "SettingsSaved": "\u05d4\u05d4\u05d2\u05d3\u05e8\u05d5\u05ea \u05e0\u05e9\u05de\u05e8\u05d5.", "AddUser": "\u05d4\u05d5\u05e1\u05e3 \u05de\u05e9\u05ea\u05de\u05e9", "Users": "\u05de\u05e9\u05ea\u05de\u05e9\u05d9\u05dd", diff --git a/dashboard-ui/strings/javascript/hr.json b/dashboard-ui/strings/javascript/hr.json index 40997646d0..bce379aa23 100644 --- a/dashboard-ui/strings/javascript/hr.json +++ b/dashboard-ui/strings/javascript/hr.json @@ -1,4 +1,6 @@ { + "HeaderTo": "Za", + "MessageNoPluginsDueToAppStore": "To manage plugins, please use the Emby web app.", "SettingsSaved": "Postavke snimljene", "AddUser": "Dodaj korisnika", "Users": "Korisnici", diff --git a/dashboard-ui/strings/javascript/it.json b/dashboard-ui/strings/javascript/it.json index c751df1084..0c96111410 100644 --- a/dashboard-ui/strings/javascript/it.json +++ b/dashboard-ui/strings/javascript/it.json @@ -1,4 +1,6 @@ { + "HeaderTo": "A", + "MessageNoPluginsDueToAppStore": "To manage plugins, please use the Emby web app.", "SettingsSaved": "Settaggi salvati.", "AddUser": "Aggiungi utente", "Users": "Utenti", diff --git a/dashboard-ui/strings/javascript/kk.json b/dashboard-ui/strings/javascript/kk.json index 2bc6540d89..ccea6dec67 100644 --- a/dashboard-ui/strings/javascript/kk.json +++ b/dashboard-ui/strings/javascript/kk.json @@ -1,4 +1,6 @@ { + "HeaderTo": "\u049a\u0430\u0439\u0434\u0430", + "MessageNoPluginsDueToAppStore": "To manage plugins, please use the Emby web app.", "SettingsSaved": "\u041f\u0430\u0440\u0430\u043c\u0435\u0442\u0440\u043b\u0435\u0440 \u0441\u0430\u049b\u0442\u0430\u043b\u0434\u044b.", "AddUser": "\u041f\u0430\u0439\u0434\u0430\u043b\u0430\u043d\u0443\u0448\u044b\u043d\u044b \u04af\u0441\u0442\u0435\u0443", "Users": "\u041f\u0430\u0439\u0434\u0430\u043b\u0430\u043d\u0443\u0448\u044b\u043b\u0430\u0440", diff --git a/dashboard-ui/strings/javascript/ko.json b/dashboard-ui/strings/javascript/ko.json index b76aced732..bb2d268805 100644 --- a/dashboard-ui/strings/javascript/ko.json +++ b/dashboard-ui/strings/javascript/ko.json @@ -1,4 +1,6 @@ { + "HeaderTo": "To", + "MessageNoPluginsDueToAppStore": "To manage plugins, please use the Emby web app.", "SettingsSaved": "\uc124\uc815\uc774 \uc800\uc7a5\ub418\uc5c8\uc2b5\ub2c8\ub2e4.", "AddUser": "\uc0ac\uc6a9\uc790 \ucd94\uac00", "Users": "\uc0ac\uc6a9\uc790", diff --git a/dashboard-ui/strings/javascript/ms.json b/dashboard-ui/strings/javascript/ms.json index 64c87bfda9..a104f9e090 100644 --- a/dashboard-ui/strings/javascript/ms.json +++ b/dashboard-ui/strings/javascript/ms.json @@ -1,4 +1,6 @@ { + "HeaderTo": "To", + "MessageNoPluginsDueToAppStore": "To manage plugins, please use the Emby web app.", "SettingsSaved": "Seting Disimpan", "AddUser": "Tambah Pengguna", "Users": "Para Pengguna", diff --git a/dashboard-ui/strings/javascript/nb.json b/dashboard-ui/strings/javascript/nb.json index 3c08b065f4..2903179f51 100644 --- a/dashboard-ui/strings/javascript/nb.json +++ b/dashboard-ui/strings/javascript/nb.json @@ -1,4 +1,6 @@ { + "HeaderTo": "Til", + "MessageNoPluginsDueToAppStore": "To manage plugins, please use the Emby web app.", "SettingsSaved": "Innstillinger lagret", "AddUser": "Legg til bruker", "Users": "Brukere", diff --git a/dashboard-ui/strings/javascript/nl.json b/dashboard-ui/strings/javascript/nl.json index 5db48c369e..8605422bb4 100644 --- a/dashboard-ui/strings/javascript/nl.json +++ b/dashboard-ui/strings/javascript/nl.json @@ -1,4 +1,6 @@ { + "HeaderTo": "Naar", + "MessageNoPluginsDueToAppStore": "Om plugins te beheren, gebruik dan de Emby web app.", "SettingsSaved": "Instellingen opgeslagen.", "AddUser": "Gebruiker toevoegen", "Users": "Gebruikers", diff --git a/dashboard-ui/strings/javascript/pl.json b/dashboard-ui/strings/javascript/pl.json index 98ac1454d8..8a6238bd31 100644 --- a/dashboard-ui/strings/javascript/pl.json +++ b/dashboard-ui/strings/javascript/pl.json @@ -1,4 +1,6 @@ { + "HeaderTo": "Do", + "MessageNoPluginsDueToAppStore": "To manage plugins, please use the Emby web app.", "SettingsSaved": "Ustawienia zapisane.", "AddUser": "Dodaj u\u017cytkownika", "Users": "U\u017cytkownicy", diff --git a/dashboard-ui/strings/javascript/pt-BR.json b/dashboard-ui/strings/javascript/pt-BR.json index fdad4c8a1c..f218bf411f 100644 --- a/dashboard-ui/strings/javascript/pt-BR.json +++ b/dashboard-ui/strings/javascript/pt-BR.json @@ -1,4 +1,6 @@ { + "HeaderTo": "Para", + "MessageNoPluginsDueToAppStore": "To manage plugins, please use the Emby web app.", "SettingsSaved": "Ajustes salvos.", "AddUser": "Adicionar Usu\u00e1rio", "Users": "Usu\u00e1rios", @@ -946,7 +948,7 @@ "CinemaModeFeatureDescription": "Cinema Mode oferece uma verdadeira experi\u00eancia de cinema com trailers e introdu\u00e7\u00f5es personalizadas antes do filme.", "CoverArt": "Covert Art", "ButtonOff": "Desligado", - "TitleHardwareAcceleration": "Hardware Acceleration", - "HardwareAccelerationWarning": "Enabling hardware acceleration may cause instability in some environments. If you have difficulty playing video after enabling this, you'll need to change the setting back to Auto.", - "HeaderSelectCodecIntrosPath": "Select Codec Intros Path" + "TitleHardwareAcceleration": "Acelera\u00e7\u00e3o de Hardware", + "HardwareAccelerationWarning": "Ativar a acelera\u00e7\u00e3o de hardware pode causar instabilidade em alguns casos. Se tiver dificuldades para reproduzir v\u00eddeos depois de ativar isto, ser\u00e1 necess\u00e1rio retornar a op\u00e7\u00e3o para Auto.", + "HeaderSelectCodecIntrosPath": "Selecionar o Caminho dos Codecs das Introdu\u00e7\u00f5es" } \ No newline at end of file diff --git a/dashboard-ui/strings/javascript/pt-PT.json b/dashboard-ui/strings/javascript/pt-PT.json index af05ed258b..2533ce7a81 100644 --- a/dashboard-ui/strings/javascript/pt-PT.json +++ b/dashboard-ui/strings/javascript/pt-PT.json @@ -1,4 +1,6 @@ { + "HeaderTo": "Para", + "MessageNoPluginsDueToAppStore": "To manage plugins, please use the Emby web app.", "SettingsSaved": "Configura\u00e7\u00f5es guardadas.", "AddUser": "Adicionar Utilizador", "Users": "Utilizadores", diff --git a/dashboard-ui/strings/javascript/ro.json b/dashboard-ui/strings/javascript/ro.json index 22631c7e67..a026aac5ca 100644 --- a/dashboard-ui/strings/javascript/ro.json +++ b/dashboard-ui/strings/javascript/ro.json @@ -1,4 +1,6 @@ { + "HeaderTo": "To", + "MessageNoPluginsDueToAppStore": "To manage plugins, please use the Emby web app.", "SettingsSaved": "Settings saved.", "AddUser": "Add User", "Users": "Users", diff --git a/dashboard-ui/strings/javascript/ru.json b/dashboard-ui/strings/javascript/ru.json index 30a37eeff3..5a4e0ad29c 100644 --- a/dashboard-ui/strings/javascript/ru.json +++ b/dashboard-ui/strings/javascript/ru.json @@ -1,4 +1,6 @@ { + "HeaderTo": "\u041a\u043e\u043d\u0435\u0447\u043d\u043e\u0435", + "MessageNoPluginsDueToAppStore": "To manage plugins, please use the Emby web app.", "SettingsSaved": "\u041f\u0430\u0440\u0430\u043c\u0435\u0442\u0440\u044b \u0441\u043e\u0445\u0440\u0430\u043d\u0435\u043d\u044b.", "AddUser": "\u0414\u043e\u0431\u0430\u0432\u0438\u0442\u044c \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044f", "Users": "\u041f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u0438", diff --git a/dashboard-ui/strings/javascript/sl-SI.json b/dashboard-ui/strings/javascript/sl-SI.json index 6b7489eb6a..5fb1ae89a0 100644 --- a/dashboard-ui/strings/javascript/sl-SI.json +++ b/dashboard-ui/strings/javascript/sl-SI.json @@ -1,4 +1,6 @@ { + "HeaderTo": "To", + "MessageNoPluginsDueToAppStore": "To manage plugins, please use the Emby web app.", "SettingsSaved": "Settings saved.", "AddUser": "Add User", "Users": "Users", diff --git a/dashboard-ui/strings/javascript/sv.json b/dashboard-ui/strings/javascript/sv.json index 0c481bb796..2e0f0657f8 100644 --- a/dashboard-ui/strings/javascript/sv.json +++ b/dashboard-ui/strings/javascript/sv.json @@ -1,4 +1,6 @@ { + "HeaderTo": "Till", + "MessageNoPluginsDueToAppStore": "To manage plugins, please use the Emby web app.", "SettingsSaved": "Inst\u00e4llningarna sparade.", "AddUser": "Skapa anv\u00e4ndare", "Users": "Anv\u00e4ndare", diff --git a/dashboard-ui/strings/javascript/tr.json b/dashboard-ui/strings/javascript/tr.json index a33193c01f..e0fe3c2995 100644 --- a/dashboard-ui/strings/javascript/tr.json +++ b/dashboard-ui/strings/javascript/tr.json @@ -1,4 +1,6 @@ { + "HeaderTo": "Buraya", + "MessageNoPluginsDueToAppStore": "To manage plugins, please use the Emby web app.", "SettingsSaved": "Ayarlar Kaydedildi", "AddUser": "Kullan\u0131c\u0131 Ekle", "Users": "Kullan\u0131c\u0131lar", diff --git a/dashboard-ui/strings/javascript/uk.json b/dashboard-ui/strings/javascript/uk.json index 4a5ab2e3dc..37b87e3a16 100644 --- a/dashboard-ui/strings/javascript/uk.json +++ b/dashboard-ui/strings/javascript/uk.json @@ -1,4 +1,6 @@ { + "HeaderTo": "To", + "MessageNoPluginsDueToAppStore": "To manage plugins, please use the Emby web app.", "SettingsSaved": "Settings saved.", "AddUser": "Add User", "Users": "Users", diff --git a/dashboard-ui/strings/javascript/vi.json b/dashboard-ui/strings/javascript/vi.json index e49c7b36ea..f520104f93 100644 --- a/dashboard-ui/strings/javascript/vi.json +++ b/dashboard-ui/strings/javascript/vi.json @@ -1,4 +1,6 @@ { + "HeaderTo": "\u0110\u1ebfn", + "MessageNoPluginsDueToAppStore": "To manage plugins, please use the Emby web app.", "SettingsSaved": "L\u01b0u c\u00e1c c\u00e0i \u0111\u1eb7t.", "AddUser": "Th\u00eam ng\u01b0\u1eddi d\u00f9ng", "Users": "Ng\u01b0\u1eddi d\u00f9ng", diff --git a/dashboard-ui/strings/javascript/zh-CN.json b/dashboard-ui/strings/javascript/zh-CN.json index f5ca9aa125..72d5926250 100644 --- a/dashboard-ui/strings/javascript/zh-CN.json +++ b/dashboard-ui/strings/javascript/zh-CN.json @@ -1,4 +1,6 @@ { + "HeaderTo": "\u5230", + "MessageNoPluginsDueToAppStore": "To manage plugins, please use the Emby web app.", "SettingsSaved": "\u8bbe\u7f6e\u5df2\u4fdd\u5b58", "AddUser": "\u6dfb\u52a0\u7528\u6237", "Users": "\u7528\u6237", diff --git a/dashboard-ui/strings/javascript/zh-HK.json b/dashboard-ui/strings/javascript/zh-HK.json index e8dd267e15..2e646dc564 100644 --- a/dashboard-ui/strings/javascript/zh-HK.json +++ b/dashboard-ui/strings/javascript/zh-HK.json @@ -1,4 +1,6 @@ { + "HeaderTo": "\u5230", + "MessageNoPluginsDueToAppStore": "To manage plugins, please use the Emby web app.", "SettingsSaved": "Settings saved.", "AddUser": "Add User", "Users": "\u7528\u6236", diff --git a/dashboard-ui/strings/javascript/zh-TW.json b/dashboard-ui/strings/javascript/zh-TW.json index 0c34f30c8a..ba50ec1f6e 100644 --- a/dashboard-ui/strings/javascript/zh-TW.json +++ b/dashboard-ui/strings/javascript/zh-TW.json @@ -1,4 +1,6 @@ { + "HeaderTo": "\u5230", + "MessageNoPluginsDueToAppStore": "To manage plugins, please use the Emby web app.", "SettingsSaved": "\u8a2d\u7f6e\u5df2\u4fdd\u5b58\u3002", "AddUser": "\u6dfb\u52a0\u7528\u6236", "Users": "\u7528\u6236", From a4220131dd0357c92de9d0cc9c22f53cf5fbcce7 Mon Sep 17 00:00:00 2001 From: Luke Pulverenti Date: Mon, 8 Feb 2016 13:24:01 -0500 Subject: [PATCH 18/18] update jqm styles --- .../tvproviders/schedulesdirect.template.html | 4 +- dashboard-ui/css/site.css | 253 +++++++++++++++++- dashboard-ui/livetvsettings.html | 2 +- dashboard-ui/scripts/scheduledtaskpage.js | 2 +- .../jquery.mobile.custom.theme.css | 252 ----------------- dashboard-ui/wizardlivetvguide.html | 2 +- dashboard-ui/wizardlivetvtuner.html | 2 +- dashboard-ui/wizardsettings.html | 4 +- dashboard-ui/wizardstart.html | 2 +- 9 files changed, 261 insertions(+), 262 deletions(-) diff --git a/dashboard-ui/components/tvproviders/schedulesdirect.template.html b/dashboard-ui/components/tvproviders/schedulesdirect.template.html index b79e13cfc4..8c810e2d90 100644 --- a/dashboard-ui/components/tvproviders/schedulesdirect.template.html +++ b/dashboard-ui/components/tvproviders/schedulesdirect.template.html @@ -41,7 +41,7 @@

    - +
    @@ -49,7 +49,7 @@

    - +
    diff --git a/dashboard-ui/css/site.css b/dashboard-ui/css/site.css index c98afb3907..2bc3af3e25 100644 --- a/dashboard-ui/css/site.css +++ b/dashboard-ui/css/site.css @@ -1,4 +1,255 @@ -/* cyrillic-ext */ +/* Swatches */ + +/* A +-----------------------------------------------------------------------------------------------------------*/ + +/* Bar: Toolbars, dividers, slider track */ +.ui-bar-a, +.ui-page-theme-a .ui-bar-inherit, +html .ui-bar-a .ui-bar-inherit, +html .ui-body-a .ui-bar-inherit, +html body .ui-group-theme-a .ui-bar-inherit { + background-color: #e9e9e9 /*{a-bar-background-color}*/; + border-color: #ddd /*{a-bar-border}*/; + color: #333 /*{a-bar-color}*/; + font-weight: bold; +} + +.ui-bar-a { + border-width: 1px; + border-style: solid; +} + +/* Page and overlay */ +.ui-page-theme-a .ui-panel-wrapper { + background-color: #f9f9f9 /*{a-page-background-color}*/; + border-color: #bbb /*{a-page-border}*/; + color: #333 /*{a-page-color}*/; +} + +/* Body: Read-only lists, text inputs, collapsible content */ +.ui-page-theme-a .ui-body-inherit, +html .ui-bar-a .ui-body-inherit, +html .ui-body-a .ui-body-inherit, +html body .ui-group-theme-a .ui-body-inherit, +html .ui-panel-page-container-a { + background-color: #fff /*{a-body-background-color}*/; + border-color: #ddd /*{a-body-border}*/; + color: #333 /*{a-body-color}*/; +} + +/* Links */ +.ui-page-theme-a a, +html .ui-bar-a a, +html .ui-body-a a, +html body .ui-group-theme-a a { + color: #3388cc /*{a-link-color}*/; + font-weight: bold; +} + + .ui-page-theme-a a:visited, + html .ui-bar-a a:visited, + html .ui-body-a a:visited, + html body .ui-group-theme-a a:visited { + color: #3388cc /*{a-link-visited}*/; + } + + .ui-page-theme-a a:hover, + html .ui-bar-a a:hover, + html .ui-body-a a:hover, + html body .ui-group-theme-a a:hover { + color: #005599 /*{a-link-hover}*/; + } + + .ui-page-theme-a a:active, + html .ui-bar-a a:active, + html .ui-body-a a:active, + html body .ui-group-theme-a a:active { + color: #005599 /*{a-link-active}*/; + } + +/* Button up */ +.ui-page-theme-a .ui-btn, +html .ui-bar-a .ui-btn, +html .ui-body-a .ui-btn, +html body .ui-group-theme-a .ui-btn, +html head + body .ui-btn.ui-btn-a, +/* Button visited */ +.ui-page-theme-a .ui-btn:visited, +html .ui-bar-a .ui-btn:visited, +html .ui-body-a .ui-btn:visited, +html body .ui-group-theme-a .ui-btn:visited, +html head + body .ui-btn.ui-btn-a:visited, +ul[data-role="listview"] a + a { + background-color: #f6f6f6 /*{a-bup-background-color}*/; + border-color: #ddd /*{a-bup-border}*/; + color: #333 /*{a-bup-color}*/; +} + /* Button hover */ + .ui-page-theme-a .ui-btn:hover, + html .ui-bar-a .ui-btn:hover, + html .ui-body-a .ui-btn:hover, + html body .ui-group-theme-a .ui-btn:hover, + html head + body .ui-btn.ui-btn-a:hover { + background-color: #ededed /*{a-bhover-background-color}*/; + border-color: #ddd /*{a-bhover-border}*/; + color: #333 /*{a-bhover-color}*/; + } + /* Button down */ + .ui-page-theme-a .ui-btn:active, + html .ui-bar-a .ui-btn:active, + html .ui-body-a .ui-btn:active, + html body .ui-group-theme-a .ui-btn:active, + html head + body .ui-btn.ui-btn-a:active { + background-color: #e8e8e8 /*{a-bdown-background-color}*/; + border-color: #ddd /*{a-bdown-border}*/; + color: #333 /*{a-bdown-color}*/; + } + + /* Active button */ + .ui-page-theme-a .ui-btn.ui-btn-active, + html .ui-bar-a .ui-btn.ui-btn-active, + html .ui-body-a .ui-btn.ui-btn-active, + html body .ui-group-theme-a .ui-btn.ui-btn-active, + html head + body .ui-btn.ui-btn-a.ui-btn-active, + /* Active checkbox icon */ + .ui-page-theme-a .ui-checkbox-on:after, + html .ui-bar-a .ui-checkbox-on:after, + html .ui-body-a .ui-checkbox-on:after, + html body .ui-group-theme-a .ui-checkbox-on:after, + .ui-btn.ui-checkbox-on.ui-btn-a:after { + background-color: #3388cc /*{a-active-background-color}*/; + border-color: #3388cc /*{a-active-border}*/; + color: #fff /*{a-active-color}*/; + } +/* Active radio button icon */ +.ui-page-theme-a .ui-radio-on:after, +html .ui-bar-a .ui-radio-on:after, +html .ui-body-a .ui-radio-on:after, +html body .ui-group-theme-a .ui-radio-on:after, +.ui-btn.ui-radio-on.ui-btn-a:after { + border-color: #3388cc /*{a-active-background-color}*/; +} + +/* B +-----------------------------------------------------------------------------------------------------------*/ + +/* Bar: Toolbars, dividers, slider track */ +.ui-bar-b, +.ui-page-theme-b .ui-bar-inherit, +html .ui-bar-b .ui-bar-inherit, +html .ui-body-b .ui-bar-inherit, +html body .ui-group-theme-b .ui-bar-inherit { + background-color: #1d1d1d /*{b-bar-background-color}*/; + border-color: #1b1b1b /*{b-bar-border}*/; + color: #fff /*{b-bar-color}*/; + font-weight: bold; +} + +.ui-bar-b { + border-width: 1px; + border-style: solid; +} + +/* Page and overlay */ +.ui-page-theme-b .ui-panel-wrapper { + background-color: #252525 /*{b-page-background-color}*/; + border-color: #454545 /*{b-page-border}*/; + color: #fff /*{b-page-color}*/; +} + +/* Body: Read-only lists, text inputs, collapsible content */ +.ui-page-theme-b .ui-body-inherit, +html .ui-bar-b .ui-body-inherit, +html .ui-body-b .ui-body-inherit, +html body .ui-group-theme-b .ui-body-inherit, +html .ui-panel-page-container-b { + background-color: #2a2a2a /*{b-body-background-color}*/; + border-color: #1d1d1d /*{b-body-border}*/; + color: #fff /*{b-body-color}*/; +} + +/* Links */ +.ui-body-b a { + color: #22aadd /*{b-link-color}*/; + font-weight: bold; +} + + .ui-body-b a:visited { + color: #22aadd /*{b-link-visited}*/; + } + + .ui-body-b a:hover { + color: #0088bb /*{b-link-hover}*/; + } + + .ui-body-b a:active { + color: #0088bb /*{b-link-active}*/; + } + +/* Button up */ +.ui-page-theme-b .ui-btn, +html .ui-bar-b .ui-btn, +html .ui-body-b .ui-btn, +html body .ui-group-theme-b .ui-btn, +html head + body .ui-btn.ui-btn-b, +/* Button visited */ +.ui-page-theme-b .ui-btn:visited, +html .ui-bar-b .ui-btn:visited, +html .ui-body-b .ui-btn:visited, +html body .ui-group-theme-b .ui-btn:visited, +html head + body .ui-btn.ui-btn-b:visited { + background-color: #333 /*{b-bup-background-color}*/; + border-color: #1f1f1f /*{b-bup-border}*/; + color: #fff /*{b-bup-color}*/; +} + /* Button hover */ + .ui-page-theme-b .ui-btn:hover, + html .ui-bar-b .ui-btn:hover, + html .ui-body-b .ui-btn:hover, + html body .ui-group-theme-b .ui-btn:hover, + html head + body .ui-btn.ui-btn-b:hover { + background-color: #373737 /*{b-bhover-background-color}*/; + border-color: #1f1f1f /*{b-bhover-border}*/; + color: #fff /*{b-bhover-color}*/; + } + /* Button down */ + .ui-page-theme-b .ui-btn:active, + html .ui-bar-b .ui-btn:active, + html .ui-body-b .ui-btn:active, + html body .ui-group-theme-b .ui-btn:active, + html head + body .ui-btn.ui-btn-b:active { + background-color: #404040 /*{b-bdown-background-color}*/; + border-color: #1f1f1f /*{b-bdown-border}*/; + color: #fff /*{b-bdown-color}*/; + } + + /* Active button */ + .ui-page-theme-b .ui-btn.ui-btn-active, + html .ui-bar-b .ui-btn.ui-btn-active, + html .ui-body-b .ui-btn.ui-btn-active, + html body .ui-group-theme-b .ui-btn.ui-btn-active, + html head + body .ui-btn.ui-btn-b.ui-btn-active, + /* Active checkbox icon */ + .ui-page-theme-b .ui-checkbox-on:after, + html .ui-bar-b .ui-checkbox-on:after, + html .ui-body-b .ui-checkbox-on:after, + html body .ui-group-theme-b .ui-checkbox-on:after, + .ui-btn.ui-checkbox-on.ui-btn-b:after { + background-color: #22aadd /*{b-active-background-color}*/; + border-color: #22aadd /*{b-active-border}*/; + color: #fff /*{b-active-color}*/; + } +/* Active radio button icon */ +.ui-page-theme-b .ui-radio-on:after, +html .ui-bar-b .ui-radio-on:after, +html .ui-body-b .ui-radio-on:after, +html body .ui-group-theme-b .ui-radio-on:after, +.ui-btn.ui-radio-on.ui-btn-b:after { + border-color: #22aadd /*{b-active-background-color}*/; +} + +/* cyrillic-ext */ @font-face { font-family: 'Roboto'; font-style: normal; diff --git a/dashboard-ui/livetvsettings.html b/dashboard-ui/livetvsettings.html index cf4e470c6e..2636cb361a 100644 --- a/dashboard-ui/livetvsettings.html +++ b/dashboard-ui/livetvsettings.html @@ -19,7 +19,7 @@
    • - + diff --git a/dashboard-ui/wizardlivetvtuner.html b/dashboard-ui/wizardlivetvtuner.html index 91af452acb..f6d662d476 100644 --- a/dashboard-ui/wizardlivetvtuner.html +++ b/dashboard-ui/wizardlivetvtuner.html @@ -20,7 +20,7 @@
      - + diff --git a/dashboard-ui/wizardsettings.html b/dashboard-ui/wizardsettings.html index 343ce2fe44..5622bd20c1 100644 --- a/dashboard-ui/wizardsettings.html +++ b/dashboard-ui/wizardsettings.html @@ -25,12 +25,12 @@

      ${HeaderPreferredMetadataLanguage}

      - +
      - +
      diff --git a/dashboard-ui/wizardstart.html b/dashboard-ui/wizardstart.html index 78f48de69b..5d27f92583 100644 --- a/dashboard-ui/wizardstart.html +++ b/dashboard-ui/wizardstart.html @@ -22,7 +22,7 @@

      ${ThisWizardWillGuideYou}


      - +