diff --git a/dashboard-ui/bower_components/iron-behaviors/.bower.json b/dashboard-ui/bower_components/iron-behaviors/.bower.json index 38c0ca9e4f..96f7c46513 100644 --- a/dashboard-ui/bower_components/iron-behaviors/.bower.json +++ b/dashboard-ui/bower_components/iron-behaviors/.bower.json @@ -27,14 +27,14 @@ "web-component-tester": "*", "webcomponentsjs": "webcomponents/webcomponentsjs#^0.7.0" }, - "homepage": "https://github.com/polymerelements/iron-behaviors", + "homepage": "https://github.com/PolymerElements/iron-behaviors", "_release": "1.0.5", "_resolution": { "type": "version", "tag": "v1.0.5", "commit": "bdae66f398838eda78c203b3ae979dcb5cd2a60e" }, - "_source": "git://github.com/polymerelements/iron-behaviors.git", + "_source": "git://github.com/PolymerElements/iron-behaviors.git", "_target": "^1.0.0", - "_originalSource": "polymerelements/iron-behaviors" + "_originalSource": "PolymerElements/iron-behaviors" } \ No newline at end of file diff --git a/dashboard-ui/bower_components/iron-flex-layout/.bower.json b/dashboard-ui/bower_components/iron-flex-layout/.bower.json index cfb5824840..98650a2547 100644 --- a/dashboard-ui/bower_components/iron-flex-layout/.bower.json +++ b/dashboard-ui/bower_components/iron-flex-layout/.bower.json @@ -23,14 +23,14 @@ "paper-styles": "polymerelements/paper-styles#^1.0.0", "webcomponentsjs": "webcomponents/webcomponentsjs#^0.7.0" }, - "homepage": "https://github.com/polymerelements/iron-flex-layout", + "homepage": "https://github.com/PolymerElements/iron-flex-layout", "_release": "1.0.2", "_resolution": { "type": "version", "tag": "v1.0.2", "commit": "50bcecf40ab23caa7c2cd90030555e00c5ba7154" }, - "_source": "git://github.com/polymerelements/iron-flex-layout.git", + "_source": "git://github.com/PolymerElements/iron-flex-layout.git", "_target": "^1.0.0", - "_originalSource": "polymerelements/iron-flex-layout" + "_originalSource": "PolymerElements/iron-flex-layout" } \ 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 f8608fd7f4..a9c80b86f2 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.0.8", + "version": "1.0.9", "description": "Material design text fields", "authors": [ "The Polymer Authors" @@ -44,11 +44,11 @@ "iron-icon": "PolymerElements/iron-icon#^1.0.0", "paper-icon-button": "PolymerElements/paper-icon-button#^1.0.0" }, - "_release": "1.0.8", + "_release": "1.0.9", "_resolution": { "type": "version", - "tag": "v1.0.8", - "commit": "558a5637b544cca69a272a3dd1eb99e03284c396" + "tag": "v1.0.9", + "commit": "39ab833e7597fabfac9ff98d4825a6ae7b3c89c4" }, "_source": "git://github.com/PolymerElements/paper-input.git", "_target": "^1.0.0", diff --git a/dashboard-ui/bower_components/paper-input/bower.json b/dashboard-ui/bower_components/paper-input/bower.json index ddc696c29a..66084e20a6 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.0.8", + "version": "1.0.9", "description": "Material design text fields", "authors": [ "The Polymer Authors" 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 87660cd326..c9458ae95c 100644 --- a/dashboard-ui/bower_components/paper-input/paper-input-container.html +++ b/dashboard-ui/bower_components/paper-input/paper-input-container.html @@ -78,6 +78,8 @@ Custom property | Description | Default `--paper-input-container-label` | Mixin applied to the label | `{}` `--paper-input-container-label-focus` | Mixin applied to the label when the input is focused | `{}` `--paper-input-container-input` | Mixin applied to the input | `{}` +`--paper-input-container-prefix` | Mixin applied to the input prefix | `{}` +`--paper-input-container-suffix` | Mixin applied to the input suffix | `{}` `--paper-input-container-underline` | Mixin applied to the underline | `{}` `--paper-input-container-underline-focus` | Mixin applied to the underline when the input is focued | `{}` `--paper-input-container-underline-disabled` | Mixin applied to the underline when the input is disabled | `{}` @@ -231,10 +233,14 @@ This element is `display:block` by default, but you can set the `inline` attribu @apply(--paper-input-container-input); } - ::content [prefix], + ::content [prefix] { + @apply(--paper-font-subhead); + @apply(--paper-input-prefix); + } + ::content [suffix] { @apply(--paper-font-subhead); - @apply(--paper-input-container-input); + @apply(--paper-input-suffix); } /* Firefox sets a min-width on the input, which can cause layout issues */ diff --git a/dashboard-ui/nowplaying.html b/dashboard-ui/nowplaying.html index 226eaf340a..354a29f3f2 100644 --- a/dashboard-ui/nowplaying.html +++ b/dashboard-ui/nowplaying.html @@ -52,7 +52,7 @@ -
+
diff --git a/dashboard-ui/scripts/nowplayingpage.js b/dashboard-ui/scripts/nowplayingpage.js index fc8e12f8a3..cd52e961f2 100644 --- a/dashboard-ui/scripts/nowplayingpage.js +++ b/dashboard-ui/scripts/nowplayingpage.js @@ -513,10 +513,8 @@ if (playerInfo.isLocalPlayer && AppInfo.hasPhysicalVolumeButtons) { $('.volumeButton', page).css('visibility', 'hidden'); - $('.nowPlayingPageVolumeControl', page).hide(); } else { $('.volumeButton', page).css('visibility', 'visible'); - $('.nowPlayingPageVolumeControl', page).show(); } if (item && item.MediaType == 'Audio') {