diff --git a/dashboard-ui/bower_components/emby-apiclient/.bower.json b/dashboard-ui/bower_components/emby-apiclient/.bower.json
index 257ccdae1e..ce2d9e43cc 100644
--- a/dashboard-ui/bower_components/emby-apiclient/.bower.json
+++ b/dashboard-ui/bower_components/emby-apiclient/.bower.json
@@ -16,12 +16,12 @@
},
"devDependencies": {},
"ignore": [],
- "version": "1.0.21",
- "_release": "1.0.21",
+ "version": "1.0.22",
+ "_release": "1.0.22",
"_resolution": {
"type": "version",
- "tag": "1.0.21",
- "commit": "e341b097c05c31ec012e04dfbd0455ae9dfc4929"
+ "tag": "1.0.22",
+ "commit": "2b5f83fc8011106b3b97f34a893f47e9a991830d"
},
"_source": "git://github.com/MediaBrowser/Emby.ApiClient.Javascript.git",
"_target": "~1.0.3",
diff --git a/dashboard-ui/bower_components/emby-apiclient/connectionmanager.js b/dashboard-ui/bower_components/emby-apiclient/connectionmanager.js
index 7f2e84ecaf..03937779c5 100644
--- a/dashboard-ui/bower_components/emby-apiclient/connectionmanager.js
+++ b/dashboard-ui/bower_components/emby-apiclient/connectionmanager.js
@@ -1123,7 +1123,7 @@
if (options.updateDateLastAccessed !== false) {
server.DateLastAccessed = new Date().getTime();
- if (server.LastConnectionMode == ConnectionMode.Local) {
+ if (connectionMode == ConnectionMode.Local) {
server.DateLastLocalConnection = new Date().getTime();
}
}
diff --git a/dashboard-ui/bower_components/emby-webcomponents/.bower.json b/dashboard-ui/bower_components/emby-webcomponents/.bower.json
index 3fb667849b..f0fa20a704 100644
--- a/dashboard-ui/bower_components/emby-webcomponents/.bower.json
+++ b/dashboard-ui/bower_components/emby-webcomponents/.bower.json
@@ -15,12 +15,12 @@
},
"devDependencies": {},
"ignore": [],
- "version": "1.0.14",
- "_release": "1.0.14",
+ "version": "1.0.15",
+ "_release": "1.0.15",
"_resolution": {
"type": "version",
- "tag": "1.0.14",
- "commit": "a7a8baf260ab509c5f9b1750cbf6fe921883141c"
+ "tag": "1.0.15",
+ "commit": "a87cc9a074a449a96302923191bf232ec7cc2911"
},
"_source": "git://github.com/MediaBrowser/emby-webcomponents.git",
"_target": "~1.0.0",
diff --git a/dashboard-ui/bower_components/emby-webcomponents/browserdeviceprofile.js b/dashboard-ui/bower_components/emby-webcomponents/browserdeviceprofile.js
index a7b6658b30..d922bb0bb2 100644
--- a/dashboard-ui/bower_components/emby-webcomponents/browserdeviceprofile.js
+++ b/dashboard-ui/bower_components/emby-webcomponents/browserdeviceprofile.js
@@ -103,12 +103,23 @@
profile.DirectPlayProfiles = [];
+ var videoAudioCodecs = [];
+ if (canPlayMp3) {
+ videoAudioCodecs.push('mp3');
+ }
+ if (canPlayAac) {
+ videoAudioCodecs.push('aac');
+ }
+ if (canPlayAc3) {
+ videoAudioCodecs.push('ac3');
+ }
+
if (supportedFormats.indexOf('h264') != -1) {
profile.DirectPlayProfiles.push({
Container: 'mp4,m4v',
Type: 'Video',
VideoCodec: 'h264',
- AudioCodec: 'aac' + (canPlayMp3 ? ',mp3' : '') + (canPlayAc3 ? ',ac3' : '')
+ AudioCodec: videoAudioCodecs.join(',')
});
}
@@ -117,7 +128,7 @@
Container: 'mkv,mov',
Type: 'Video',
VideoCodec: 'h264',
- AudioCodec: 'aac' + (canPlayMp3 ? ',mp3' : '') + (canPlayAc3 ? ',ac3' : '')
+ AudioCodec: videoAudioCodecs.join(',')
});
}
@@ -160,17 +171,6 @@
}
});
- var videoAudioCodecs = [];
- if (canPlayMp3) {
- videoAudioCodecs.push('mp3');
- }
- if (canPlayAac) {
- videoAudioCodecs.push('aac');
- }
- if (canPlayAc3) {
- videoAudioCodecs.push('ac3');
- }
-
// Can't use mkv on mobile because we have to use the native player controls and they won't be able to seek it
if (canPlayMkv && !browser.mobile) {
profile.TranscodingProfiles.push({
@@ -268,24 +268,6 @@
]
});
- profile.CodecProfiles.push({
- Type: 'VideoAudio',
- Codec: 'aac,mp3',
- Conditions: [
- {
- Condition: 'LessThanEqual',
- Property: 'AudioChannels',
- Value: videoAudioChannels
- },
- {
- Condition: 'Equals',
- Property: 'IsSecondaryAudio',
- Value: 'false',
- IsRequired: 'false'
- }
- ]
- });
-
profile.CodecProfiles.push({
Type: 'VideoAudio',
Conditions: [
diff --git a/dashboard-ui/bower_components/iron-icons/.bower.json b/dashboard-ui/bower_components/iron-icons/.bower.json
index 6ac4cbc7f5..34ce317a74 100644
--- a/dashboard-ui/bower_components/iron-icons/.bower.json
+++ b/dashboard-ui/bower_components/iron-icons/.bower.json
@@ -1,6 +1,6 @@
{
"name": "iron-icons",
- "version": "1.1.0",
+ "version": "1.1.1",
"description": "A set of icons for use with iron-icon",
"authors": [
"The Polymer Authors"
@@ -34,11 +34,11 @@
"util",
"update-icons.sh"
],
- "_release": "1.1.0",
+ "_release": "1.1.1",
"_resolution": {
"type": "version",
- "tag": "v1.1.0",
- "commit": "623d8dae77cd8658ce1f6834b30a4f3f6e2100ea"
+ "tag": "v1.1.1",
+ "commit": "77a8e0190d6c481d8b5df0495fa484928880ea53"
},
"_source": "git://github.com/PolymerElements/iron-icons.git",
"_target": "^1.0.0",
diff --git a/dashboard-ui/bower_components/iron-icons/bower.json b/dashboard-ui/bower_components/iron-icons/bower.json
index f408676a28..cd678f1a5e 100644
--- a/dashboard-ui/bower_components/iron-icons/bower.json
+++ b/dashboard-ui/bower_components/iron-icons/bower.json
@@ -1,6 +1,6 @@
{
"name": "iron-icons",
- "version": "1.1.0",
+ "version": "1.1.1",
"description": "A set of icons for use with iron-icon",
"authors": [
"The Polymer Authors"
diff --git a/dashboard-ui/bower_components/iron-icons/demo/index.html b/dashboard-ui/bower_components/iron-icons/demo/index.html
index 8e0df6ce17..acfbf36cc7 100644
--- a/dashboard-ui/bower_components/iron-icons/demo/index.html
+++ b/dashboard-ui/bower_components/iron-icons/demo/index.html
@@ -30,6 +30,7 @@ subject to an additional IP rights grant found at http://polymer.github.io/PATEN
+
-
+
-
-
-
-
-
+
Choose a subject
-
-
+
POLYMER
ANGULAR
-
-
-
+
-
-
-
+
BACK
@@ -108,14 +112,11 @@ subject to an additional IP rights grant found at http://polymer.github.io/PATEN
cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non
proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
-
-
+
-
-
-
+
BACK
@@ -128,12 +129,10 @@ subject to an additional IP rights grant found at http://polymer.github.io/PATEN
cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non
proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
-
-
-
+
-
+
+
+
-
-
-
-
+
@@ -75,7 +78,7 @@ subject to an additional IP rights grant found at http://polymer.github.io/PATEN
-
+ 123
diff --git a/dashboard-ui/bower_components/neon-animation/demo/doc/basic.html b/dashboard-ui/bower_components/neon-animation/demo/doc/basic.html
deleted file mode 100644
index 9e79151eea..0000000000
--- a/dashboard-ui/bower_components/neon-animation/demo/doc/basic.html
+++ /dev/null
@@ -1,47 +0,0 @@
-
-
-
-
- neon-animation demo: basic
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/dashboard-ui/bower_components/neon-animation/demo/doc/types.html b/dashboard-ui/bower_components/neon-animation/demo/doc/index.html
similarity index 72%
rename from dashboard-ui/bower_components/neon-animation/demo/doc/types.html
rename to dashboard-ui/bower_components/neon-animation/demo/doc/index.html
index 3995b6c931..e794d1fee8 100644
--- a/dashboard-ui/bower_components/neon-animation/demo/doc/types.html
+++ b/dashboard-ui/bower_components/neon-animation/demo/doc/index.html
@@ -17,26 +17,42 @@ subject to an additional IP rights grant found at http://polymer.github.io/PATEN
+
+
-
+
+
Hello World!
+
+
-
diff --git a/dashboard-ui/bower_components/neon-animation/demo/grid/animated-grid.html b/dashboard-ui/bower_components/neon-animation/demo/grid/animated-grid.html
index af976754c1..c05db68506 100644
--- a/dashboard-ui/bower_components/neon-animation/demo/grid/animated-grid.html
+++ b/dashboard-ui/bower_components/neon-animation/demo/grid/animated-grid.html
@@ -7,70 +7,68 @@ Code distributed by Google as part of the polymer project is also
subject to an additional IP rights grant found at http://polymer.github.io/PATENTS.txt
-->
-
+
+
+
-
-
-
-
-
+
+
@@ -79,7 +77,6 @@ subject to an additional IP rights grant found at http://polymer.github.io/PATEN
-
-
-
-
+
-
-
-
-
-
+
+
+
+
+
+
+
+
diff --git a/dashboard-ui/bower_components/neon-animation/demo/list/full-view.html b/dashboard-ui/bower_components/neon-animation/demo/list/full-view.html
index 817acfab9f..5e65e1e5c0 100644
--- a/dashboard-ui/bower_components/neon-animation/demo/list/full-view.html
+++ b/dashboard-ui/bower_components/neon-animation/demo/list/full-view.html
@@ -7,47 +7,43 @@ Code distributed by Google as part of the polymer project is also
subject to an additional IP rights grant found at http://polymer.github.io/PATENTS.txt
-->
-
+
+
-
-
-
+
@@ -58,9 +54,8 @@ subject to an additional IP rights grant found at http://polymer.github.io/PATEN
-
+
-
-
-
+
-
-
-
+
+
+
diff --git a/dashboard-ui/bower_components/neon-animation/demo/list/list-demo.html b/dashboard-ui/bower_components/neon-animation/demo/list/list-demo.html
index 6658ebfd01..9b234b1911 100644
--- a/dashboard-ui/bower_components/neon-animation/demo/list/list-demo.html
+++ b/dashboard-ui/bower_components/neon-animation/demo/list/list-demo.html
@@ -7,7 +7,6 @@ Code distributed by Google as part of the polymer project is also
subject to an additional IP rights grant found at http://polymer.github.io/PATENTS.txt
-->
-
@@ -15,29 +14,19 @@ subject to an additional IP rights grant found at http://polymer.github.io/PATEN
-
-
-
-
+
-
-
-
-
diff --git a/dashboard-ui/bower_components/neon-animation/demo/list/list-view.html b/dashboard-ui/bower_components/neon-animation/demo/list/list-view.html
index b23b00d4d0..34d2a77c06 100644
--- a/dashboard-ui/bower_components/neon-animation/demo/list/list-view.html
+++ b/dashboard-ui/bower_components/neon-animation/demo/list/list-view.html
@@ -9,33 +9,29 @@ subject to an additional IP rights grant found at http://polymer.github.io/PATEN
+
-
+
-
-
-
+
diff --git a/dashboard-ui/bower_components/neon-animation/demo/load/animated-grid.html b/dashboard-ui/bower_components/neon-animation/demo/load/animated-grid.html
index f43851b45b..57212d641e 100644
--- a/dashboard-ui/bower_components/neon-animation/demo/load/animated-grid.html
+++ b/dashboard-ui/bower_components/neon-animation/demo/load/animated-grid.html
@@ -7,70 +7,68 @@ Code distributed by Google as part of the polymer project is also
subject to an additional IP rights grant found at http://polymer.github.io/PATENTS.txt
-->
-
+
+
+
+
-
-
-
-
-
+
+
diff --git a/dashboard-ui/bower_components/neon-animation/demo/load/full-page.html b/dashboard-ui/bower_components/neon-animation/demo/load/full-page.html
index 1488de19c2..1fbe1849f0 100644
--- a/dashboard-ui/bower_components/neon-animation/demo/load/full-page.html
+++ b/dashboard-ui/bower_components/neon-animation/demo/load/full-page.html
@@ -7,43 +7,38 @@ Code distributed by Google as part of the polymer project is also
subject to an additional IP rights grant found at http://polymer.github.io/PATENTS.txt
-->
-
+
+
-
-
-
+
-
-
-
-
+
-
-
-
+
-
+
-
-
+
-
-
-
-
+
-
-
-
diff --git a/dashboard-ui/bower_components/neon-animation/demo/reprojection/reprojected-pages.html b/dashboard-ui/bower_components/neon-animation/demo/reprojection/reprojected-pages.html
index 647289dc15..91193fd824 100644
--- a/dashboard-ui/bower_components/neon-animation/demo/reprojection/reprojected-pages.html
+++ b/dashboard-ui/bower_components/neon-animation/demo/reprojection/reprojected-pages.html
@@ -11,15 +11,17 @@ subject to an additional IP rights grant found at http://polymer.github.io/PATEN
-
-
+
-
-
+
+
-
-
-
-
+
-
-
-
diff --git a/dashboard-ui/bower_components/neon-animation/demo/tiles/squares-page.html b/dashboard-ui/bower_components/neon-animation/demo/tiles/squares-page.html
index f417e6b9c5..9185121a66 100644
--- a/dashboard-ui/bower_components/neon-animation/demo/tiles/squares-page.html
+++ b/dashboard-ui/bower_components/neon-animation/demo/tiles/squares-page.html
@@ -7,35 +7,30 @@ Code distributed by Google as part of the polymer project is also
subject to an additional IP rights grant found at http://polymer.github.io/PATENTS.txt
-->
-
-
-
-
+
+
diff --git a/dashboard-ui/bower_components/neon-animation/neon-animatable-behavior.html b/dashboard-ui/bower_components/neon-animation/neon-animatable-behavior.html
index fac56f8081..c5d75cabf4 100644
--- a/dashboard-ui/bower_components/neon-animation/neon-animatable-behavior.html
+++ b/dashboard-ui/bower_components/neon-animation/neon-animatable-behavior.html
@@ -141,7 +141,7 @@ subject to an additional IP rights grant found at http://polymer.github.io/PATEN
* or a map of animation type to array of configuration objects.
*/
getAnimationConfig: function(type) {
- var map = [];
+ var map = {};
var allConfigs = [];
this._getAnimationConfigRecursive(type, map, allConfigs);
// append the configurations saved in the map to the array
diff --git a/dashboard-ui/bower_components/neon-animation/test/test-resizable-pages.html b/dashboard-ui/bower_components/neon-animation/test/test-resizable-pages.html
index 973a03a51d..7330a1ffd1 100644
--- a/dashboard-ui/bower_components/neon-animation/test/test-resizable-pages.html
+++ b/dashboard-ui/bower_components/neon-animation/test/test-resizable-pages.html
@@ -9,7 +9,6 @@ subject to an additional IP rights grant found at http://polymer.github.io/PATEN
-->
-
diff --git a/dashboard-ui/bower_components/paper-input/.bower.json b/dashboard-ui/bower_components/paper-input/.bower.json
index b59e0b67c3..99d82dd61d 100644
--- a/dashboard-ui/bower_components/paper-input/.bower.json
+++ b/dashboard-ui/bower_components/paper-input/.bower.json
@@ -1,6 +1,6 @@
{
"name": "paper-input",
- "version": "1.1.3",
+ "version": "1.1.4",
"description": "Material design text fields",
"authors": [
"The Polymer Authors"
@@ -16,6 +16,7 @@
"paper-input-behavior.html",
"paper-input-container.html",
"paper-input-error.html",
+ "paper-input-addon-behavior.html",
"paper-input-char-counter.html"
],
"private": true,
@@ -27,7 +28,7 @@
"homepage": "https://github.com/PolymerElements/paper-input",
"ignore": [],
"dependencies": {
- "polymer": "Polymer/polymer#^1.1.0",
+ "polymer": "Polymer/polymer#^1.2.0",
"iron-autogrow-textarea": "PolymerElements/iron-autogrow-textarea#^1.0.0",
"iron-behaviors": "PolymerElements/iron-behaviors#^1.0.0",
"iron-form-element-behavior": "PolymerElements/iron-form-element-behavior#^1.0.0",
@@ -46,13 +47,13 @@
"web-component-tester": "Polymer/web-component-tester#^3.4.0",
"webcomponentsjs": "webcomponents/webcomponentsjs#^0.7.0"
},
- "_release": "1.1.3",
+ "_release": "1.1.4",
"_resolution": {
"type": "version",
- "tag": "v1.1.3",
- "commit": "f070288446f9e78fbe16b032ddb429a8e8015ee7"
+ "tag": "v1.1.4",
+ "commit": "8ca01ac3cafc61abd980d262875ffca0c79640fa"
},
- "_source": "git://github.com/PolymerElements/paper-input.git",
- "_target": "^1.0.0",
- "_originalSource": "PolymerElements/paper-input"
+ "_source": "git://github.com/polymerelements/paper-input.git",
+ "_target": "^1.0.9",
+ "_originalSource": "polymerelements/paper-input"
}
\ No newline at end of file
diff --git a/dashboard-ui/bower_components/paper-input/bower.json b/dashboard-ui/bower_components/paper-input/bower.json
index 4b1c8fe6ae..22775b8851 100644
--- a/dashboard-ui/bower_components/paper-input/bower.json
+++ b/dashboard-ui/bower_components/paper-input/bower.json
@@ -1,6 +1,6 @@
{
"name": "paper-input",
- "version": "1.1.3",
+ "version": "1.1.4",
"description": "Material design text fields",
"authors": [
"The Polymer Authors"
@@ -16,6 +16,7 @@
"paper-input-behavior.html",
"paper-input-container.html",
"paper-input-error.html",
+ "paper-input-addon-behavior.html",
"paper-input-char-counter.html"
],
"private": true,
@@ -27,7 +28,7 @@
"homepage": "https://github.com/PolymerElements/paper-input",
"ignore": [],
"dependencies": {
- "polymer": "Polymer/polymer#^1.1.0",
+ "polymer": "Polymer/polymer#^1.2.0",
"iron-autogrow-textarea": "PolymerElements/iron-autogrow-textarea#^1.0.0",
"iron-behaviors": "PolymerElements/iron-behaviors#^1.0.0",
"iron-form-element-behavior": "PolymerElements/iron-form-element-behavior#^1.0.0",
diff --git a/dashboard-ui/bower_components/paper-input/demo/index.html b/dashboard-ui/bower_components/paper-input/demo/index.html
index b0d02e789c..f84799de75 100644
--- a/dashboard-ui/bower_components/paper-input/demo/index.html
+++ b/dashboard-ui/bower_components/paper-input/demo/index.html
@@ -117,10 +117,10 @@ subject to an additional IP rights grant found at http://polymer.github.io/PATEN
Inputs can have prefixes and suffixes
-
+
$
-
+
@email.com
`'s
* and the input's `invalid` property.
+ *
+ * If `autoValidate` is true, the `invalid` attribute is managed automatically,
+ * which can clobber attempts to manage it manually.
*/
invalid: {
type: Boolean,
diff --git a/dashboard-ui/bower_components/paper-input/paper-input-container.html b/dashboard-ui/bower_components/paper-input/paper-input-container.html
index 1a981f34a8..d4c71f9ab4 100644
--- a/dashboard-ui/bower_components/paper-input/paper-input-container.html
+++ b/dashboard-ui/bower_components/paper-input/paper-input-container.html
@@ -172,8 +172,10 @@ This element is `display:block` by default, but you can set the `inline` attribu
}
.label-and-input-container {
- @apply(--layout-flex);
+ @apply(--layout-flex-auto);
@apply(--layout-relative);
+ width: 100%;
+ max-width: 100%;
}
.input-content {
@@ -189,6 +191,7 @@ This element is `display:block` by default, but you can set the `inline` attribu
top: 0;
right: 0;
left: 0;
+ width: 100%;
font: inherit;
color: var(--paper-input-container-color, --secondary-text-color);
@@ -201,8 +204,8 @@ This element is `display:block` by default, but you can set the `inline` attribu
.input-content.label-is-floating ::content .paper-input-label {
-webkit-transform: translateY(-75%) scale(0.75);
transform: translateY(-75%) scale(0.75);
- -webkit-transition: -webkit-transform 0.25s;
- transition: transform 0.25s;
+ -webkit-transition: -webkit-transform 0.25s, width 0.25s;
+ transition: transform 0.25s, width 0.25s;
-webkit-transform-origin: left top;
transform-origin: left top;
@@ -250,6 +253,7 @@ This element is `display:block` by default, but you can set the `inline` attribu
box-shadow: none;
padding: 0;
width: 100%;
+ max-width: 100%;
background: transparent;
border: none;
color: var(--paper-input-container-input-color, --primary-text-color);
@@ -263,11 +267,13 @@ This element is `display:block` by default, but you can set the `inline` attribu
::content [prefix] {
@apply(--paper-font-subhead);
@apply(--paper-input-prefix);
+ @apply(--layout-flex-none);
}
::content [suffix] {
@apply(--paper-font-subhead);
@apply(--paper-input-suffix);
+ @apply(--layout-flex-none);
}
/* Firefox sets a min-width on the input, which can cause layout issues */
diff --git a/dashboard-ui/bower_components/paper-styles/.bower.json b/dashboard-ui/bower_components/paper-styles/.bower.json
index bedc908515..91bf38a61a 100644
--- a/dashboard-ui/bower_components/paper-styles/.bower.json
+++ b/dashboard-ui/bower_components/paper-styles/.bower.json
@@ -1,6 +1,6 @@
{
"name": "paper-styles",
- "version": "1.1.1",
+ "version": "1.1.2",
"description": "Common (global) styles for Material Design elements.",
"authors": [
"The Polymer Authors"
@@ -29,11 +29,11 @@
"webcomponentsjs": "webcomponents/webcomponentsjs#^0.7.0",
"iron-component-page": "polymerelements/iron-component-page#^1.0.0"
},
- "_release": "1.1.1",
+ "_release": "1.1.2",
"_resolution": {
"type": "version",
- "tag": "v1.1.1",
- "commit": "fc3ca8dcfc69b9c7a7261e51eefc9741d0f113f8"
+ "tag": "v1.1.2",
+ "commit": "7b97fa9d2c190bec9ef2d771d91f47b40a27f3be"
},
"_source": "git://github.com/PolymerElements/paper-styles.git",
"_target": "^1.0.0",
diff --git a/dashboard-ui/bower_components/paper-styles/bower.json b/dashboard-ui/bower_components/paper-styles/bower.json
index 8b36dc4769..61b31a9ab0 100644
--- a/dashboard-ui/bower_components/paper-styles/bower.json
+++ b/dashboard-ui/bower_components/paper-styles/bower.json
@@ -1,6 +1,6 @@
{
"name": "paper-styles",
- "version": "1.1.1",
+ "version": "1.1.2",
"description": "Common (global) styles for Material Design elements.",
"authors": [
"The Polymer Authors"
diff --git a/dashboard-ui/bower_components/paper-styles/default-theme.html b/dashboard-ui/bower_components/paper-styles/default-theme.html
index 7524ecd1d5..478d087f90 100644
--- a/dashboard-ui/bower_components/paper-styles/default-theme.html
+++ b/dashboard-ui/bower_components/paper-styles/default-theme.html
@@ -16,24 +16,16 @@ subject to an additional IP rights grant found at http://polymer.github.io/PATEN
:root {
/*
- * Light background theme
+ * You can use these generic variables in your elements for easy theming.
+ * For example, if all your elements use `--primary-text-color` as its main
+ * color, then switching from a light to a dark theme is just a matter of
+ * changing the value of `--primary-text-color` in your application.
*/
- --light-theme-background-color: #ffffff;
- --light-theme-base-color: #000000;
- --light-theme-text-color: #212121;
- --light-theme-secondary-color: #737373; /* for secondary text and icons */
- --light-theme-disabled-color: #9b9b9b; /* disabled/hint text */
- --light-theme-divider-color: #dbdbdb;
-
- /*
- * Dark background theme
- */
- --dark-theme-background-color: #212121;
- --dark-theme-base-color: #ffffff;
- --dark-theme-text-color: #ffffff;
- --dark-theme-secondary-color: #bcbcbc; /* for secondary text and icons */
- --dark-theme-disabled-color: #646464; /* disabled/hint text */
- --dark-theme-divider-color: #3c3c3c;
+ --primary-text-color: var(--light-theme-text-color);
+ --primary-background-color: var(--light-theme-background-color);
+ --secondary-text-color: var(--light-theme-secondary-color);
+ --disabled-text-color: var(--light-theme-disabled-color);
+ --divider-color: var(--light-theme-divider-color);
/*
* Primary and accent colors. Also see color.html for more colors.
@@ -46,16 +38,32 @@ subject to an additional IP rights grant found at http://polymer.github.io/PATEN
--light-accent-color: #ff80ab; /* --paper-pink-a100 */
--dark-accent-color: #f50057; /* --paper-pink-a400 */
+ /*
+ * Material Design Light background theme
+ */
+ --light-theme-background-color: #ffffff;
+ --light-theme-base-color: #000000;
+ --light-theme-text-color: #212121;
+ --light-theme-secondary-color: #737373; /* for secondary text and icons */
+ --light-theme-disabled-color: #9b9b9b; /* disabled/hint text */
+ --light-theme-divider-color: #dbdbdb;
+
+ /*
+ * Material Design Dark background theme
+ */
+ --dark-theme-background-color: #212121;
+ --dark-theme-base-color: #ffffff;
+ --dark-theme-text-color: #ffffff;
+ --dark-theme-secondary-color: #bcbcbc; /* for secondary text and icons */
+ --dark-theme-disabled-color: #646464; /* disabled/hint text */
+ --dark-theme-divider-color: #3c3c3c;
+
/*
* Deprecated values because of their confusing names.
*/
- --primary-text-color: var(--light-theme-text-color);
--text-primary-color: var(--dark-theme-text-color);
- --primary-background-color: var(--light-theme-background-color);
- --secondary-text-color: var(--light-theme-secondary-color);
- --disabled-text-color:var(--light-theme-disabled-color);
- --divider-color: var(--light-theme-divider-color);
--default-primary-color: var(--primary-color);
+
}
diff --git a/dashboard-ui/bower_components/paper-toggle-button/.bower.json b/dashboard-ui/bower_components/paper-toggle-button/.bower.json
index 997b1214a3..d3bb5bf44e 100644
--- a/dashboard-ui/bower_components/paper-toggle-button/.bower.json
+++ b/dashboard-ui/bower_components/paper-toggle-button/.bower.json
@@ -1,6 +1,6 @@
{
"name": "paper-toggle-button",
- "version": "1.0.13",
+ "version": "1.0.14",
"description": "A material design toggle button control",
"authors": [
"The Polymer Authors"
@@ -36,11 +36,11 @@
"webcomponentsjs": "webcomponents/webcomponentsjs#^0.7.0"
},
"main": "paper-toggle-button.html",
- "_release": "1.0.13",
+ "_release": "1.0.14",
"_resolution": {
"type": "version",
- "tag": "1.0.13",
- "commit": "dbc3924b8d9c16ee6376704dd80c39d12aee72c8"
+ "tag": "v1.0.14",
+ "commit": "131f32adf5ce831f94be7f80c436865b44d7cd95"
},
"_source": "git://github.com/PolymerElements/paper-toggle-button.git",
"_target": "~1.0.5",
diff --git a/dashboard-ui/bower_components/paper-toggle-button/bower.json b/dashboard-ui/bower_components/paper-toggle-button/bower.json
index 09fd85b5bc..c6d1723a89 100644
--- a/dashboard-ui/bower_components/paper-toggle-button/bower.json
+++ b/dashboard-ui/bower_components/paper-toggle-button/bower.json
@@ -1,6 +1,6 @@
{
"name": "paper-toggle-button",
- "version": "1.0.13",
+ "version": "1.0.14",
"description": "A material design toggle button control",
"authors": [
"The Polymer Authors"
diff --git a/dashboard-ui/bower_components/paper-toggle-button/paper-toggle-button.html b/dashboard-ui/bower_components/paper-toggle-button/paper-toggle-button.html
index 46d98c432a..3c3752170e 100644
--- a/dashboard-ui/bower_components/paper-toggle-button/paper-toggle-button.html
+++ b/dashboard-ui/bower_components/paper-toggle-button/paper-toggle-button.html
@@ -9,6 +9,7 @@ subject to an additional IP rights grant found at http://polymer.github.io/PATEN
-->
+
@@ -55,6 +56,8 @@ Custom property | Description | Default