diff --git a/.gitignore b/.gitignore
index fc7e301a093..a82763e1b6d 100644
--- a/.gitignore
+++ b/.gitignore
@@ -1,6 +1,6 @@
config/*
!config/home-assistant.conf.default
-homeassistant/components/http/www_static/polymer/bower_components/*
+homeassistant/components/frontend/www_static/polymer/bower_components/*
# There is not a better solution afaik..
!config/custom_components
diff --git a/homeassistant/components/frontend/www_static/polymer/bower_components/color-picker-element/.bower.json b/homeassistant/components/frontend/www_static/polymer/bower_components/color-picker-element/.bower.json
deleted file mode 100644
index f0f0c7f00a7..00000000000
--- a/homeassistant/components/frontend/www_static/polymer/bower_components/color-picker-element/.bower.json
+++ /dev/null
@@ -1,38 +0,0 @@
-{
- "name": "color-picker-element",
- "main": "/dist/color-picker.html",
- "version": "0.0.2",
- "authors": [
- "bbrewer97202@gmail.com"
- ],
- "description": "Custom HTML color picker element",
- "keywords": [
- "custom-element",
- "web-components",
- "color",
- "colorpicker",
- "color-picker"
- ],
- "license": "MIT",
- "homepage": "https://github.com/bbrewer97202/color-picker-element",
- "ignore": [
- "**/.*",
- "node_modules",
- "bower_components",
- "src/bower_components",
- "test",
- "tests"
- ],
- "dependencies": {
- "polymer-platform": "~0.3.4"
- },
- "_release": "0.0.2",
- "_resolution": {
- "type": "version",
- "tag": "0.0.2",
- "commit": "d62a9cdbcee182a82906eb995731205c1b011884"
- },
- "_source": "git://github.com/bbrewer97202/color-picker-element.git",
- "_target": "~0.0.2",
- "_originalSource": "color-picker-element"
-}
\ No newline at end of file
diff --git a/homeassistant/components/frontend/www_static/polymer/bower_components/color-picker-element/README.md b/homeassistant/components/frontend/www_static/polymer/bower_components/color-picker-element/README.md
deleted file mode 100644
index e65992afeef..00000000000
--- a/homeassistant/components/frontend/www_static/polymer/bower_components/color-picker-element/README.md
+++ /dev/null
@@ -1,55 +0,0 @@
-# <color-picker>
-
-A custom HTML element that provides a color picker.
-
-## Demo
-[See demo](http://bbrewer97202.github.io/color-picker-element/demo/index.html)
-
-## Requirements
-No extra requirements if run in a browser that supports custom elements, shadow DOM and HTML imports. Otherwise, use the platform.js polyfill provided.
-
-## Install
-
-Install the component using [Bower](http://bower.io/):
-
-```sh
-$ bower install color-picker-element --save
-```
-
-## Usage
-
-1. Import Web Components' polyfill:
-
- ```html
-
- ```
-
-2. Import Custom Element:
-
- ```html
-
- ```
-
-3. Embed on page, optionally providing width and height attributes
-
- ```html
-
- ```
-
-## Development
-
-1. Install local dependencies (requires [Bower](http://bower.io/)):
-
- ```sh
- $ bower install && npm install
- ```
-
-3. Start the watch task and development server, then open `http://localhost:8000/demo` in your browser.
-
- ```sh
- $ gulp
- ```
-
-## License
-
-[MIT License](http://opensource.org/licenses/MIT)
diff --git a/homeassistant/components/frontend/www_static/polymer/bower_components/color-picker-element/bower.json b/homeassistant/components/frontend/www_static/polymer/bower_components/color-picker-element/bower.json
deleted file mode 100644
index d21d3f6f872..00000000000
--- a/homeassistant/components/frontend/www_static/polymer/bower_components/color-picker-element/bower.json
+++ /dev/null
@@ -1,29 +0,0 @@
-{
- "name": "color-picker-element",
- "main": "/dist/color-picker.html",
- "version": "0.0.2",
- "authors": [
- "bbrewer97202@gmail.com"
- ],
- "description": "Custom HTML color picker element",
- "keywords": [
- "custom-element",
- "web-components",
- "color",
- "colorpicker",
- "color-picker"
- ],
- "license": "MIT",
- "homepage": "https://github.com/bbrewer97202/color-picker-element",
- "ignore": [
- "**/.*",
- "node_modules",
- "bower_components",
- "src/bower_components",
- "test",
- "tests"
- ],
- "dependencies": {
- "polymer-platform": "~0.3.4"
- }
-}
\ No newline at end of file
diff --git a/homeassistant/components/frontend/www_static/polymer/bower_components/color-picker-element/gulpfile.js b/homeassistant/components/frontend/www_static/polymer/bower_components/color-picker-element/gulpfile.js
deleted file mode 100644
index 425afd8a81f..00000000000
--- a/homeassistant/components/frontend/www_static/polymer/bower_components/color-picker-element/gulpfile.js
+++ /dev/null
@@ -1,34 +0,0 @@
-var gulp = require('gulp');
-var watch = require('gulp-watch');
-var vulcanize = require('gulp-vulcanize');
-var connect = require('gulp-connect');
-
-//dist
-gulp.task('dist', function() {
- return gulp.src(['./src/*.html'])
- .pipe(vulcanize({dest: 'dist'}))
- .pipe(gulp.dest('./dist'));
-});
-
-//vendor javascript
-gulp.task('vendor-scripts', function() {
- return gulp.src(['./src/bower_components/polymer-platform/platform.js'])
- .pipe(gulp.dest('./dist/demo'));
-});
-
-//dev server
-gulp.task('server', function() {
- connect.server({
- root: './dist'
- });
-});
-
-//watch task
-gulp.task('watch', function() {
- gulp.watch('src/*.html', ['dist']);
-});
-
-//default
-gulp.task('default', ['dist', 'vendor-scripts', 'watch', 'server']);
-
-
diff --git a/homeassistant/components/frontend/www_static/polymer/bower_components/color-picker-element/package.json b/homeassistant/components/frontend/www_static/polymer/bower_components/color-picker-element/package.json
deleted file mode 100644
index 373f5e5cd8b..00000000000
--- a/homeassistant/components/frontend/www_static/polymer/bower_components/color-picker-element/package.json
+++ /dev/null
@@ -1,30 +0,0 @@
-{
- "name": "color-picker-element",
- "version": "0.0.1",
- "description": "Custom HTML color picker element",
- "main": "dist/demo/index.html",
- "scripts": {
- "test": "echo \"Error: no test specified\" && exit 1"
- },
- "repository": {
- "type": "git",
- "url": "git@github.com:bbrewer97202/color-picker-element.git"
- },
- "keywords": [
- "colorpicker",
- "color",
- "web-components",
- "custom-element"
- ],
- "author": "bbrewer97202@gmail.com",
- "license": "MIT",
- "bugs": {
- "url": "https://github.com/bbrewer97202/color-picker-element/issues"
- },
- "devDependencies": {
- "gulp": "~3.8.7",
- "gulp-vulcanize": "~0.2.1",
- "gulp-connect": "~2.0.6",
- "gulp-watch": "~0.6.9"
- }
-}
diff --git a/homeassistant/components/frontend/www_static/polymer/bower_components/color-picker-element/src/color-picker.html b/homeassistant/components/frontend/www_static/polymer/bower_components/color-picker-element/src/color-picker.html
deleted file mode 100644
index f96ab026085..00000000000
--- a/homeassistant/components/frontend/www_static/polymer/bower_components/color-picker-element/src/color-picker.html
+++ /dev/null
@@ -1,160 +0,0 @@
-
diff --git a/homeassistant/components/frontend/www_static/polymer/bower_components/core-a11y-keys/.bower.json b/homeassistant/components/frontend/www_static/polymer/bower_components/core-a11y-keys/.bower.json
deleted file mode 100644
index e4e57e56be8..00000000000
--- a/homeassistant/components/frontend/www_static/polymer/bower_components/core-a11y-keys/.bower.json
+++ /dev/null
@@ -1,28 +0,0 @@
-{
- "name": "core-a11y-keys",
- "private": true,
- "dependencies": {
- "polymer": "Polymer/polymer#^0.5"
- },
- "devDependencies": {
- "web-component-tester": "Polymer/web-component-tester#^1"
- },
- "ignore": [
- "**/.*",
- "node_modules",
- "bower_components",
- "test",
- "tests"
- ],
- "version": "0.5.4",
- "homepage": "https://github.com/Polymer/core-a11y-keys",
- "_release": "0.5.4",
- "_resolution": {
- "type": "version",
- "tag": "0.5.4",
- "commit": "4b08c5f2d180b3ca05c113185f5d8b4f5a6a3511"
- },
- "_source": "git://github.com/Polymer/core-a11y-keys.git",
- "_target": "^0.5",
- "_originalSource": "Polymer/core-a11y-keys"
-}
\ No newline at end of file
diff --git a/homeassistant/components/frontend/www_static/polymer/bower_components/core-a11y-keys/README.md b/homeassistant/components/frontend/www_static/polymer/bower_components/core-a11y-keys/README.md
deleted file mode 100644
index 0fa587dca6a..00000000000
--- a/homeassistant/components/frontend/www_static/polymer/bower_components/core-a11y-keys/README.md
+++ /dev/null
@@ -1,4 +0,0 @@
-core-a11y-keys
-==============
-
-See the [component page](http://polymer-project.org/docs/elements/core-elements.html#core-a11y-keys) for more information.
diff --git a/homeassistant/components/frontend/www_static/polymer/bower_components/core-a11y-keys/bower.json b/homeassistant/components/frontend/www_static/polymer/bower_components/core-a11y-keys/bower.json
deleted file mode 100644
index 536ca1d0803..00000000000
--- a/homeassistant/components/frontend/www_static/polymer/bower_components/core-a11y-keys/bower.json
+++ /dev/null
@@ -1,18 +0,0 @@
-{
- "name": "core-a11y-keys",
- "private": true,
- "dependencies": {
- "polymer": "Polymer/polymer#^0.5"
- },
- "devDependencies": {
- "web-component-tester": "Polymer/web-component-tester#^1"
- },
- "ignore": [
- "**/.*",
- "node_modules",
- "bower_components",
- "test",
- "tests"
- ],
- "version": "0.5.4"
-}
\ No newline at end of file
diff --git a/homeassistant/components/frontend/www_static/polymer/bower_components/core-a11y-keys/core-a11y-keys.html b/homeassistant/components/frontend/www_static/polymer/bower_components/core-a11y-keys/core-a11y-keys.html
deleted file mode 100644
index 8c4e4b79fab..00000000000
--- a/homeassistant/components/frontend/www_static/polymer/bower_components/core-a11y-keys/core-a11y-keys.html
+++ /dev/null
@@ -1,335 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
diff --git a/homeassistant/components/frontend/www_static/polymer/bower_components/core-a11y-keys/demo.html b/homeassistant/components/frontend/www_static/polymer/bower_components/core-a11y-keys/demo.html
deleted file mode 100644
index 27e68e3132c..00000000000
--- a/homeassistant/components/frontend/www_static/polymer/bower_components/core-a11y-keys/demo.html
+++ /dev/null
@@ -1,41 +0,0 @@
-
-
-
-
-
- Core A11y Keys demo
-
-
-
-
-
-
- Press any of these keys: {{keys}}
-
-
-
-
-
-
diff --git a/homeassistant/components/frontend/www_static/polymer/bower_components/core-a11y-keys/index.html b/homeassistant/components/frontend/www_static/polymer/bower_components/core-a11y-keys/index.html
deleted file mode 100644
index 294215a738b..00000000000
--- a/homeassistant/components/frontend/www_static/polymer/bower_components/core-a11y-keys/index.html
+++ /dev/null
@@ -1,22 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/homeassistant/components/frontend/www_static/polymer/bower_components/core-animation/.bower.json b/homeassistant/components/frontend/www_static/polymer/bower_components/core-animation/.bower.json
deleted file mode 100644
index a876f9ff140..00000000000
--- a/homeassistant/components/frontend/www_static/polymer/bower_components/core-animation/.bower.json
+++ /dev/null
@@ -1,19 +0,0 @@
-{
- "name": "core-animation",
- "private": true,
- "dependencies": {
- "polymer": "Polymer/polymer#^0.5",
- "web-animations-js": "web-animations/web-animations-js#1.0.5"
- },
- "version": "0.5.4",
- "homepage": "https://github.com/Polymer/core-animation",
- "_release": "0.5.4",
- "_resolution": {
- "type": "version",
- "tag": "0.5.4",
- "commit": "5063fb5efb55806f6d1f7c74471f4cdf96f974ce"
- },
- "_source": "git://github.com/Polymer/core-animation.git",
- "_target": "^0.5",
- "_originalSource": "Polymer/core-animation"
-}
\ No newline at end of file
diff --git a/homeassistant/components/frontend/www_static/polymer/bower_components/core-animation/README.md b/homeassistant/components/frontend/www_static/polymer/bower_components/core-animation/README.md
deleted file mode 100644
index 809db5ec53f..00000000000
--- a/homeassistant/components/frontend/www_static/polymer/bower_components/core-animation/README.md
+++ /dev/null
@@ -1,4 +0,0 @@
-core-animation
-==============
-
-See the [component page](http://polymer-project.org/docs/elements/core-elements.html#core-animation) for more information.
diff --git a/homeassistant/components/frontend/www_static/polymer/bower_components/core-animation/bower.json b/homeassistant/components/frontend/www_static/polymer/bower_components/core-animation/bower.json
deleted file mode 100644
index f22db19c02d..00000000000
--- a/homeassistant/components/frontend/www_static/polymer/bower_components/core-animation/bower.json
+++ /dev/null
@@ -1,9 +0,0 @@
-{
- "name": "core-animation",
- "private": true,
- "dependencies": {
- "polymer": "Polymer/polymer#^0.5",
- "web-animations-js": "web-animations/web-animations-js#1.0.5"
- },
- "version": "0.5.4"
-}
\ No newline at end of file
diff --git a/homeassistant/components/frontend/www_static/polymer/bower_components/core-animation/core-animation-group.html b/homeassistant/components/frontend/www_static/polymer/bower_components/core-animation/core-animation-group.html
deleted file mode 100644
index 773cffd9119..00000000000
--- a/homeassistant/components/frontend/www_static/polymer/bower_components/core-animation/core-animation-group.html
+++ /dev/null
@@ -1,169 +0,0 @@
-
-
-
-
-
-
-
-
-
diff --git a/homeassistant/components/frontend/www_static/polymer/bower_components/core-animation/core-animation.html b/homeassistant/components/frontend/www_static/polymer/bower_components/core-animation/core-animation.html
deleted file mode 100644
index 9a958c9eafa..00000000000
--- a/homeassistant/components/frontend/www_static/polymer/bower_components/core-animation/core-animation.html
+++ /dev/null
@@ -1,525 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/homeassistant/components/frontend/www_static/polymer/bower_components/core-animation/demo.html b/homeassistant/components/frontend/www_static/polymer/bower_components/core-animation/demo.html
deleted file mode 100644
index ddbbc75658c..00000000000
--- a/homeassistant/components/frontend/www_static/polymer/bower_components/core-animation/demo.html
+++ /dev/null
@@ -1,193 +0,0 @@
-
-
-
-
-
-
-
-
-
- core-animation
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- opacity
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- group: opacity + scale
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- infinite duration
-
-
-
-
-
-
-
-
-
-
-
-
-
- custom effect
-
-
-
-
-
-
-
-
diff --git a/homeassistant/components/frontend/www_static/polymer/bower_components/core-animation/index.html b/homeassistant/components/frontend/www_static/polymer/bower_components/core-animation/index.html
deleted file mode 100644
index 2a20dcc3874..00000000000
--- a/homeassistant/components/frontend/www_static/polymer/bower_components/core-animation/index.html
+++ /dev/null
@@ -1,22 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/homeassistant/components/frontend/www_static/polymer/bower_components/core-animation/test/index.html b/homeassistant/components/frontend/www_static/polymer/bower_components/core-animation/test/index.html
deleted file mode 100644
index b13e4699dfe..00000000000
--- a/homeassistant/components/frontend/www_static/polymer/bower_components/core-animation/test/index.html
+++ /dev/null
@@ -1,24 +0,0 @@
-
-
-
-
-
-
- core-animation tests
-
-
-
-
-
-
diff --git a/homeassistant/components/frontend/www_static/polymer/bower_components/core-animation/web-animations.html b/homeassistant/components/frontend/www_static/polymer/bower_components/core-animation/web-animations.html
deleted file mode 100644
index dde84912a3a..00000000000
--- a/homeassistant/components/frontend/www_static/polymer/bower_components/core-animation/web-animations.html
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
diff --git a/homeassistant/components/frontend/www_static/polymer/bower_components/core-collapse/.bower.json b/homeassistant/components/frontend/www_static/polymer/bower_components/core-collapse/.bower.json
deleted file mode 100644
index d8871f66d3f..00000000000
--- a/homeassistant/components/frontend/www_static/polymer/bower_components/core-collapse/.bower.json
+++ /dev/null
@@ -1,21 +0,0 @@
-{
- "name": "core-collapse",
- "private": true,
- "dependencies": {
- "polymer": "Polymer/polymer#^0.5"
- },
- "devDependencies": {
- "web-component-tester": "Polymer/web-component-tester#^1.1.0"
- },
- "version": "0.5.4",
- "homepage": "https://github.com/Polymer/core-collapse",
- "_release": "0.5.4",
- "_resolution": {
- "type": "version",
- "tag": "0.5.4",
- "commit": "19ca0e59a48804f7cc05cae80b44bc2678a8bf57"
- },
- "_source": "git://github.com/Polymer/core-collapse.git",
- "_target": "^0.5",
- "_originalSource": "Polymer/core-collapse"
-}
\ No newline at end of file
diff --git a/homeassistant/components/frontend/www_static/polymer/bower_components/core-collapse/README.md b/homeassistant/components/frontend/www_static/polymer/bower_components/core-collapse/README.md
deleted file mode 100644
index bf0a159bb85..00000000000
--- a/homeassistant/components/frontend/www_static/polymer/bower_components/core-collapse/README.md
+++ /dev/null
@@ -1,4 +0,0 @@
-core-collapse
-=============
-
-See the [component page](http://polymer-project.org/docs/elements/core-elements.html#core-collapse) for more information.
diff --git a/homeassistant/components/frontend/www_static/polymer/bower_components/core-collapse/bower.json b/homeassistant/components/frontend/www_static/polymer/bower_components/core-collapse/bower.json
deleted file mode 100644
index 0882075b521..00000000000
--- a/homeassistant/components/frontend/www_static/polymer/bower_components/core-collapse/bower.json
+++ /dev/null
@@ -1,11 +0,0 @@
-{
- "name": "core-collapse",
- "private": true,
- "dependencies": {
- "polymer": "Polymer/polymer#^0.5"
- },
- "devDependencies": {
- "web-component-tester": "Polymer/web-component-tester#^1.1.0"
- },
- "version": "0.5.4"
-}
\ No newline at end of file
diff --git a/homeassistant/components/frontend/www_static/polymer/bower_components/core-collapse/core-collapse.css b/homeassistant/components/frontend/www_static/polymer/bower_components/core-collapse/core-collapse.css
deleted file mode 100644
index 5e946ff74b8..00000000000
--- a/homeassistant/components/frontend/www_static/polymer/bower_components/core-collapse/core-collapse.css
+++ /dev/null
@@ -1,16 +0,0 @@
-/*
-Copyright (c) 2014 The Polymer Project Authors. All rights reserved.
-This code may only be used under the BSD style license found at http://polymer.github.io/LICENSE.txt
-The complete set of authors may be found at http://polymer.github.io/AUTHORS.txt
-The complete set of contributors may be found at http://polymer.github.io/CONTRIBUTORS.txt
-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
-*/
-
-html /deep/ core-collapse {
- display: block;
-}
-
-html /deep/ .core-collapse-closed {
- display: none;
-}
diff --git a/homeassistant/components/frontend/www_static/polymer/bower_components/core-collapse/core-collapse.html b/homeassistant/components/frontend/www_static/polymer/bower_components/core-collapse/core-collapse.html
deleted file mode 100644
index 6d7f5b0b119..00000000000
--- a/homeassistant/components/frontend/www_static/polymer/bower_components/core-collapse/core-collapse.html
+++ /dev/null
@@ -1,298 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/homeassistant/components/frontend/www_static/polymer/bower_components/core-collapse/demo.html b/homeassistant/components/frontend/www_static/polymer/bower_components/core-collapse/demo.html
deleted file mode 100644
index 75bb7617587..00000000000
--- a/homeassistant/components/frontend/www_static/polymer/bower_components/core-collapse/demo.html
+++ /dev/null
@@ -1,75 +0,0 @@
-
-
-
-
-
- core-collapse
-
-
-
-
-
-
-
-
-
-
- Collapse #1
-
-
-
Lorem ipsum dolor sit amet, per in nusquam nominavi periculis, sit elit oportere ea, id minim maiestatis incorrupte duo. Dolorum verterem ad ius, his et nullam verterem. Eu alia debet usu, an doming tritani est. Vix ad ponderum petentium suavitate, eum eu tempor populo, graece sententiae constituam vim ex. Cu torquatos reprimique neglegentur nec, voluptua periculis has ut, at eos discere deleniti sensibus. Lorem ipsum dolor sit amet, per in nusquam nominavi periculis, sit elit oportere ea, id minim maiestatis incorrupte duo. Dolorum verterem ad ius, his et nullam verterem. Eu alia debet usu, an doming tritani est. Vix ad ponderum petentium suavitate, eum eu tempor populo, graece sententiae constituam vim ex. Cu torquatos reprimique neglegentur nec, voluptua periculis has ut, at eos discere deleniti sensibus.
-
-
-
-
-
- Collapse #2
-
-
-
Pro saepe pertinax ei, ad pri animal labores suscipiantur. Modus commodo minimum eum te, vero utinam assueverit per eu, zril oportere suscipiantur pri te. Partem percipitur deterruisset ad sea, at eam suas luptatum dissentiunt. No error alienum pro, erant senserit ex mei, pri semper alterum no. Ut habemus menandri vulputate mea. Feugiat verterem ut sed. Dolores maiestatis id per. Pro saepe pertinax ei, ad pri animal labores suscipiantur. Modus commodo minimum eum te, vero utinam assueverit per eu, zril oportere suscipiantur pri te. Partem percipitur deterruisset ad sea, at eam suas luptatum dissentiunt. No error alienum pro, erant senserit ex mei, pri semper alterum no. Ut habemus menandri vulputate mea. Feugiat verterem ut sed. Dolores maiestatis id per.
-
-
Collapse #3
-
-
-
Iisque perfecto dissentiet cum et, sit ut quot mandamus, ut vim tibique splendide instructior. Id nam odio natum malorum, tibique copiosae expetenda mel ea. Mea melius malorum ut. Ut nec tollit vocent timeam. Facer nonumy numquam id his, munere salutatus consequuntur eum et, eum cotidieque definitionem signiferumque id. Ei oblique graecis patrioque vis, et probatus dignissim inciderint vel. Sed id paulo erroribus, autem semper accusamus in mel. Iisque perfecto dissentiet cum et, sit ut quot mandamus, ut vim tibique splendide instructior. Id nam odio natum malorum, tibique copiosae expetenda mel ea. Mea melius malorum ut. Ut nec tollit vocent timeam. Facer nonumy numquam id his, munere salutatus consequuntur eum et, eum cotidieque definitionem signiferumque id. Ei oblique graecis patrioque vis, et probatus dignissim inciderint vel. Sed id paulo erroribus, autem semper accusamus in mel.
-
-
-
-
-
-
-
diff --git a/homeassistant/components/frontend/www_static/polymer/bower_components/core-collapse/index.html b/homeassistant/components/frontend/www_static/polymer/bower_components/core-collapse/index.html
deleted file mode 100644
index 294215a738b..00000000000
--- a/homeassistant/components/frontend/www_static/polymer/bower_components/core-collapse/index.html
+++ /dev/null
@@ -1,22 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/homeassistant/components/frontend/www_static/polymer/bower_components/core-collapse/test/basic.html b/homeassistant/components/frontend/www_static/polymer/bower_components/core-collapse/test/basic.html
deleted file mode 100644
index b1642e980c0..00000000000
--- a/homeassistant/components/frontend/www_static/polymer/bower_components/core-collapse/test/basic.html
+++ /dev/null
@@ -1,85 +0,0 @@
-
-
-
-
-
- core-collapse-basic
-
-
-
-
-
-
-
-
-
-
-
-
- Forma temperiemque cornua sidera dissociata cornua recessit innabilis ligavit: solidumque coeptis nullus caelum sponte phoebe di regat mentisque tanta austro capacius amphitrite sui quin postquam semina fossae liquidum umor galeae coeptis caligine liberioris quin liquidum matutinis invasit posset: flexi glomeravit radiis certis invasit oppida postquam onerosior inclusum dominari opifex terris pace finxit quam aquae nunc sine altae auroram quam habentem homo totidemque scythiam in pondus ensis tegit caecoque poena lapidosos humanas coeperunt poena aetas totidem nec natura aethera locavit caelumque distinxit animalibus phoebe cingebant moderantum porrexerat terrae possedit sua sole diu summaque obliquis melioris orbem
-
-
-
-
-
-
-
diff --git a/homeassistant/components/frontend/www_static/polymer/bower_components/core-collapse/test/index.html b/homeassistant/components/frontend/www_static/polymer/bower_components/core-collapse/test/index.html
deleted file mode 100644
index b57af2a06cf..00000000000
--- a/homeassistant/components/frontend/www_static/polymer/bower_components/core-collapse/test/index.html
+++ /dev/null
@@ -1,24 +0,0 @@
-
-
-
-
-
-
- Tests
-
-
-
-
-
-
diff --git a/homeassistant/components/frontend/www_static/polymer/bower_components/core-component-page/.bower.json b/homeassistant/components/frontend/www_static/polymer/bower_components/core-component-page/.bower.json
deleted file mode 100644
index f7c5d108dc6..00000000000
--- a/homeassistant/components/frontend/www_static/polymer/bower_components/core-component-page/.bower.json
+++ /dev/null
@@ -1,19 +0,0 @@
-{
- "name": "core-component-page",
- "private": true,
- "dependencies": {
- "webcomponentsjs": "Polymer/webcomponentsjs#^0.5",
- "polymer": "Polymer/polymer#^0.5"
- },
- "version": "0.5.4",
- "homepage": "https://github.com/Polymer/core-component-page",
- "_release": "0.5.4",
- "_resolution": {
- "type": "version",
- "tag": "0.5.4",
- "commit": "a69d738a104271b497f50c2dfc449ec54d3e01b5"
- },
- "_source": "git://github.com/Polymer/core-component-page.git",
- "_target": "^0.5",
- "_originalSource": "Polymer/core-component-page"
-}
\ No newline at end of file
diff --git a/homeassistant/components/frontend/www_static/polymer/bower_components/core-component-page/README.md b/homeassistant/components/frontend/www_static/polymer/bower_components/core-component-page/README.md
deleted file mode 100644
index 7cb18ec7fef..00000000000
--- a/homeassistant/components/frontend/www_static/polymer/bower_components/core-component-page/README.md
+++ /dev/null
@@ -1,6 +0,0 @@
-core-component-page
-===================
-
-See the [component page](http://polymer-project.org/docs/elements/core-elements.html#core-component-page) for more information.
-
-Note: this is the vulcanized version of [`core-component-page-dev`](https://github.com/Polymer/core-component-page-dev) (the source).
diff --git a/homeassistant/components/frontend/www_static/polymer/bower_components/core-component-page/bowager-logo.png b/homeassistant/components/frontend/www_static/polymer/bower_components/core-component-page/bowager-logo.png
deleted file mode 100644
index 76be9fb04c1..00000000000
Binary files a/homeassistant/components/frontend/www_static/polymer/bower_components/core-component-page/bowager-logo.png and /dev/null differ
diff --git a/homeassistant/components/frontend/www_static/polymer/bower_components/core-component-page/bower.json b/homeassistant/components/frontend/www_static/polymer/bower_components/core-component-page/bower.json
deleted file mode 100644
index c73cd81e8c8..00000000000
--- a/homeassistant/components/frontend/www_static/polymer/bower_components/core-component-page/bower.json
+++ /dev/null
@@ -1,9 +0,0 @@
-{
- "name": "core-component-page",
- "private": true,
- "dependencies": {
- "webcomponentsjs": "Polymer/webcomponentsjs#^0.5",
- "polymer": "Polymer/polymer#^0.5"
- },
- "version": "0.5.4"
-}
\ No newline at end of file
diff --git a/homeassistant/components/frontend/www_static/polymer/bower_components/core-component-page/core-component-page.html b/homeassistant/components/frontend/www_static/polymer/bower_components/core-component-page/core-component-page.html
deleted file mode 100644
index 5c642c77667..00000000000
--- a/homeassistant/components/frontend/www_static/polymer/bower_components/core-component-page/core-component-page.html
+++ /dev/null
@@ -1,37 +0,0 @@
-
-
-
-
-
{{data.name}} Home Page Version: {{data.version}}
Attributes <{{attribute.type}} >
default: {{attribute.default}}
Properties <{{property.type}} >
default: {{property.default}}
Events Event details:
<{{param.type}} > {{param.name}}
{{param.description}}
Methods Method parameters:
<{{param.type}} > {{param.name}}
{{param.description}}
{{label}}
{{name}}
-undefined
-
-
-
-{{moduleName}} demo
diff --git a/homeassistant/components/frontend/www_static/polymer/bower_components/core-component-page/demo.html b/homeassistant/components/frontend/www_static/polymer/bower_components/core-component-page/demo.html
deleted file mode 100644
index 3c414d85229..00000000000
--- a/homeassistant/components/frontend/www_static/polymer/bower_components/core-component-page/demo.html
+++ /dev/null
@@ -1,23 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/homeassistant/components/frontend/www_static/polymer/bower_components/core-component-page/index.html b/homeassistant/components/frontend/www_static/polymer/bower_components/core-component-page/index.html
deleted file mode 100644
index 294215a738b..00000000000
--- a/homeassistant/components/frontend/www_static/polymer/bower_components/core-component-page/index.html
+++ /dev/null
@@ -1,22 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/homeassistant/components/frontend/www_static/polymer/bower_components/core-dropdown/.bower.json b/homeassistant/components/frontend/www_static/polymer/bower_components/core-dropdown/.bower.json
deleted file mode 100644
index e89546a580b..00000000000
--- a/homeassistant/components/frontend/www_static/polymer/bower_components/core-dropdown/.bower.json
+++ /dev/null
@@ -1,25 +0,0 @@
-{
- "name": "core-dropdown",
- "private": false,
- "dependencies": {
- "polymer": "Polymer/polymer#^0.5",
- "core-collapse": "Polymer/core-collapse#^0.5",
- "core-icon-button": "Polymer/core-icon-button#^0.5",
- "core-icons": "Polymer/core-icons#^0.5",
- "core-overlay": "Polymer/core-overlay#^0.5"
- },
- "devDependencies": {
- "web-component-tester": "*"
- },
- "version": "0.5.4",
- "homepage": "https://github.com/Polymer/core-dropdown",
- "_release": "0.5.4",
- "_resolution": {
- "type": "version",
- "tag": "0.5.4",
- "commit": "97a17fdd9a307048ace59d368fa6caf19cf85ff1"
- },
- "_source": "git://github.com/Polymer/core-dropdown.git",
- "_target": "^0.5",
- "_originalSource": "Polymer/core-dropdown"
-}
\ No newline at end of file
diff --git a/homeassistant/components/frontend/www_static/polymer/bower_components/core-dropdown/README.md b/homeassistant/components/frontend/www_static/polymer/bower_components/core-dropdown/README.md
deleted file mode 100644
index 1ff24d1e156..00000000000
--- a/homeassistant/components/frontend/www_static/polymer/bower_components/core-dropdown/README.md
+++ /dev/null
@@ -1,6 +0,0 @@
-core-dropdown
-=============
-
-owner: [@morethanreal](http://github.com/morethanreal)
-
-See the [component page](http://polymer-project.org/docs/elements/core-elements.html#core-dropdown) for more information.
diff --git a/homeassistant/components/frontend/www_static/polymer/bower_components/core-dropdown/bower.json b/homeassistant/components/frontend/www_static/polymer/bower_components/core-dropdown/bower.json
deleted file mode 100644
index 95e3965bf7c..00000000000
--- a/homeassistant/components/frontend/www_static/polymer/bower_components/core-dropdown/bower.json
+++ /dev/null
@@ -1,15 +0,0 @@
-{
- "name": "core-dropdown",
- "private": false,
- "dependencies": {
- "polymer": "Polymer/polymer#^0.5",
- "core-collapse": "Polymer/core-collapse#^0.5",
- "core-icon-button": "Polymer/core-icon-button#^0.5",
- "core-icons": "Polymer/core-icons#^0.5",
- "core-overlay": "Polymer/core-overlay#^0.5"
- },
- "devDependencies": {
- "web-component-tester": "*"
- },
- "version": "0.5.4"
-}
\ No newline at end of file
diff --git a/homeassistant/components/frontend/www_static/polymer/bower_components/core-dropdown/core-dropdown-base.html b/homeassistant/components/frontend/www_static/polymer/bower_components/core-dropdown/core-dropdown-base.html
deleted file mode 100644
index f54abd4cc44..00000000000
--- a/homeassistant/components/frontend/www_static/polymer/bower_components/core-dropdown/core-dropdown-base.html
+++ /dev/null
@@ -1,117 +0,0 @@
-
-
-
-
-
-
-
-
-
diff --git a/homeassistant/components/frontend/www_static/polymer/bower_components/core-dropdown/core-dropdown.html b/homeassistant/components/frontend/www_static/polymer/bower_components/core-dropdown/core-dropdown.html
deleted file mode 100644
index d05c1b9717a..00000000000
--- a/homeassistant/components/frontend/www_static/polymer/bower_components/core-dropdown/core-dropdown.html
+++ /dev/null
@@ -1,311 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
diff --git a/homeassistant/components/frontend/www_static/polymer/bower_components/core-dropdown/demo.html b/homeassistant/components/frontend/www_static/polymer/bower_components/core-dropdown/demo.html
deleted file mode 100644
index 1d42ac75bd8..00000000000
--- a/homeassistant/components/frontend/www_static/polymer/bower_components/core-dropdown/demo.html
+++ /dev/null
@@ -1,440 +0,0 @@
-
-
-
-
-
-
-
-
-
-
- core-dropdown
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- Absolutely positioned dropdowns
-
-
-
- halign = left
-
- valign = top
-
-
-
-
-
- halign = left
-
- valign = bottom
-
-
-
-
-
- halign = right
-
- valign = top
-
-
-
-
-
-
-
- Layered dropdowns
-
- toggle core-collapse
-
-
-
-
-
-
-
- halign = left
-
- valign = top
-
-
-
-
-
-
-
-
-
- Scrolling and margin
-
-
-
- no margin
-
-
- {{name}}
-
-
-
-
-
-
- with margin
-
-
- {{name}}
-
-
-
-
-
-
-
-
- Custom position
-
-
-
- top: 38px
-
-
-
-
-
-
-
-
-
-
-
diff --git a/homeassistant/components/frontend/www_static/polymer/bower_components/core-dropdown/index.html b/homeassistant/components/frontend/www_static/polymer/bower_components/core-dropdown/index.html
deleted file mode 100644
index 53448378668..00000000000
--- a/homeassistant/components/frontend/www_static/polymer/bower_components/core-dropdown/index.html
+++ /dev/null
@@ -1,22 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/homeassistant/components/frontend/www_static/polymer/bower_components/core-dropdown/test/basic.html b/homeassistant/components/frontend/www_static/polymer/bower_components/core-dropdown/test/basic.html
deleted file mode 100644
index 1f9a114042a..00000000000
--- a/homeassistant/components/frontend/www_static/polymer/bower_components/core-dropdown/test/basic.html
+++ /dev/null
@@ -1,162 +0,0 @@
-
-
-
-
-
- core-dropdown basic tests
-
-
-
-
-
-
-
-
-
-
-
-
-
- tap
- Hello World!
-
-
-
- tap
- Hello World!
-
-
-
- tap
- Hello World!
-
-
-
- tap
- Hello World!
-
-
-
- tap
- Hello World!
-
-
-
- tap
- Hello World!
-
-
-
-
-
-
diff --git a/homeassistant/components/frontend/www_static/polymer/bower_components/core-dropdown/test/index.html b/homeassistant/components/frontend/www_static/polymer/bower_components/core-dropdown/test/index.html
deleted file mode 100644
index bacf4a0ae34..00000000000
--- a/homeassistant/components/frontend/www_static/polymer/bower_components/core-dropdown/test/index.html
+++ /dev/null
@@ -1,24 +0,0 @@
-
-
-
-
-
-
- core-dropdown tests
-
-
-
-
-
-
diff --git a/homeassistant/components/frontend/www_static/polymer/bower_components/core-focusable/.bower.json b/homeassistant/components/frontend/www_static/polymer/bower_components/core-focusable/.bower.json
deleted file mode 100644
index 2e6a96a3457..00000000000
--- a/homeassistant/components/frontend/www_static/polymer/bower_components/core-focusable/.bower.json
+++ /dev/null
@@ -1,18 +0,0 @@
-{
- "name": "core-focusable",
- "private": false,
- "dependencies": {
- "polymer": "Polymer/polymer#^0.5"
- },
- "version": "0.5.4",
- "homepage": "https://github.com/Polymer/core-focusable",
- "_release": "0.5.4",
- "_resolution": {
- "type": "version",
- "tag": "0.5.4",
- "commit": "aee0d72d5865507f620e23342d9bfcccdb72f420"
- },
- "_source": "git://github.com/Polymer/core-focusable.git",
- "_target": "^0.5",
- "_originalSource": "Polymer/core-focusable"
-}
\ No newline at end of file
diff --git a/homeassistant/components/frontend/www_static/polymer/bower_components/core-focusable/README.md b/homeassistant/components/frontend/www_static/polymer/bower_components/core-focusable/README.md
deleted file mode 100644
index ca3d87c1c32..00000000000
--- a/homeassistant/components/frontend/www_static/polymer/bower_components/core-focusable/README.md
+++ /dev/null
@@ -1,6 +0,0 @@
-core-focusable
-==============
-
-owner: @morethanreal
-
-See the [component page](http://polymer-project.org/docs/elements/core-elements.html#core-focusable) for more information.
diff --git a/homeassistant/components/frontend/www_static/polymer/bower_components/core-focusable/bower.json b/homeassistant/components/frontend/www_static/polymer/bower_components/core-focusable/bower.json
deleted file mode 100644
index 77481297978..00000000000
--- a/homeassistant/components/frontend/www_static/polymer/bower_components/core-focusable/bower.json
+++ /dev/null
@@ -1,8 +0,0 @@
-{
- "name": "core-focusable",
- "private": false,
- "dependencies": {
- "polymer": "Polymer/polymer#^0.5"
- },
- "version": "0.5.4"
-}
\ No newline at end of file
diff --git a/homeassistant/components/frontend/www_static/polymer/bower_components/core-focusable/core-focusable.html b/homeassistant/components/frontend/www_static/polymer/bower_components/core-focusable/core-focusable.html
deleted file mode 100644
index c3e1519d00c..00000000000
--- a/homeassistant/components/frontend/www_static/polymer/bower_components/core-focusable/core-focusable.html
+++ /dev/null
@@ -1,4 +0,0 @@
-
-
-
-
diff --git a/homeassistant/components/frontend/www_static/polymer/bower_components/core-focusable/core-focusable.js b/homeassistant/components/frontend/www_static/polymer/bower_components/core-focusable/core-focusable.js
deleted file mode 100644
index 6633b5f9443..00000000000
--- a/homeassistant/components/frontend/www_static/polymer/bower_components/core-focusable/core-focusable.js
+++ /dev/null
@@ -1,134 +0,0 @@
-/**
- * @group Polymer Mixins
- *
- * `Polymer.CoreFocusable` is a mixin for elements that the user can interact with.
- * Elements using this mixin will receive attributes reflecting the focus, pressed
- * and disabled states.
- *
- * @element Polymer.CoreFocusable
- * @status unstable
- */
-
-Polymer.CoreFocusable = {
-
- mixinPublish: {
-
- /**
- * If true, the element is currently active either because the
- * user is touching it, or the button is a toggle
- * and is currently in the active state.
- *
- * @attribute active
- * @type boolean
- * @default false
- */
- active: {value: false, reflect: true},
-
- /**
- * If true, the element currently has focus due to keyboard
- * navigation.
- *
- * @attribute focused
- * @type boolean
- * @default false
- */
- focused: {value: false, reflect: true},
-
- /**
- * If true, the user is currently holding down the button.
- *
- * @attribute pressed
- * @type boolean
- * @default false
- */
- pressed: {value: false, reflect: true},
-
- /**
- * If true, the user cannot interact with this element.
- *
- * @attribute disabled
- * @type boolean
- * @default false
- */
- disabled: {value: false, reflect: true},
-
- /**
- * If true, the button toggles the active state with each tap.
- * Otherwise, the button becomes active when the user is holding
- * it down.
- *
- * @attribute toggle
- * @type boolean
- * @default false
- */
- toggle: false
-
- },
-
- mixinDelegates: {
- contextMenu: '_contextMenuAction',
- down: '_downAction',
- up: '_upAction',
- focus: '_focusAction',
- blur: '_blurAction'
- },
-
- mixinObserve: {
- disabled: '_disabledChanged'
- },
-
- _disabledChanged: function() {
- if (this.disabled) {
- this.style.pointerEvents = 'none';
- this.removeAttribute('tabindex');
- this.setAttribute('aria-disabled', '');
- } else {
- this.style.pointerEvents = '';
- this.setAttribute('tabindex', 0);
- this.removeAttribute('aria-disabled');
- }
- },
-
- _downAction: function() {
- this.pressed = true;
-
- if (this.toggle) {
- this.active = !this.active;
- } else {
- this.active = true;
- }
- },
-
- // Pulling up the context menu for an item should focus it; but we need to
- // be careful about how we deal with down/up events surrounding context
- // menus. The up event typically does not fire until the context menu
- // closes: so we focus immediately.
- //
- // This fires _after_ downAction.
- _contextMenuAction: function(e) {
- // Note that upAction may fire _again_ on the actual up event.
- this._upAction(e);
- this._focusAction();
- },
-
- _upAction: function() {
- this.pressed = false;
-
- if (!this.toggle) {
- this.active = false;
- }
- },
-
- _focusAction: function() {
- if (!this.pressed) {
- // Only render the "focused" state if the element gains focus due to
- // keyboard navigation.
- this.focused = true;
- }
- },
-
- _blurAction: function() {
- this.focused = false;
- }
-
-}
diff --git a/homeassistant/components/frontend/www_static/polymer/bower_components/core-focusable/demo.html b/homeassistant/components/frontend/www_static/polymer/bower_components/core-focusable/demo.html
deleted file mode 100644
index 70db68d1e2a..00000000000
--- a/homeassistant/components/frontend/www_static/polymer/bower_components/core-focusable/demo.html
+++ /dev/null
@@ -1,109 +0,0 @@
-
-
-
-
-
-
-
-
-
- core-focusable
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- button
-
- toggle
-
- disabled
-
-
-
-
-
diff --git a/homeassistant/components/frontend/www_static/polymer/bower_components/core-focusable/polymer-mixin.js b/homeassistant/components/frontend/www_static/polymer/bower_components/core-focusable/polymer-mixin.js
deleted file mode 100644
index 2ee1d668bed..00000000000
--- a/homeassistant/components/frontend/www_static/polymer/bower_components/core-focusable/polymer-mixin.js
+++ /dev/null
@@ -1,35 +0,0 @@
-Polymer.mixin2 = function(prototype, mixin) {
-
- // adds a single mixin to prototype
-
- if (mixin.mixinPublish) {
- prototype.publish = prototype.publish || {};
- Polymer.mixin(prototype.publish, mixin.mixinPublish);
- }
-
- if (mixin.mixinDelegates) {
- prototype.eventDelegates = prototype.eventDelegates || {};
- for (var e in mixin.mixinDelegates) {
- if (!prototype.eventDelegates[e]) {
- prototype.eventDelegates[e] = mixin.mixinDelegates[e];
- }
- }
- }
-
- if (mixin.mixinObserve) {
- prototype.observe = prototype.observe || {};
- for (var o in mixin.mixinObserve) {
- if (!prototype.observe[o] && !prototype[o + 'Changed']) {
- prototype.observe[o] = mixin.mixinObserve[o];
- }
- }
- }
-
- Polymer.mixin(prototype, mixin);
-
- delete prototype.mixinPublish;
- delete prototype.mixinDelegates;
- delete prototype.mixinObserve;
-
- return prototype;
-};
\ No newline at end of file
diff --git a/homeassistant/components/frontend/www_static/polymer/bower_components/core-header-panel/.bower.json b/homeassistant/components/frontend/www_static/polymer/bower_components/core-header-panel/.bower.json
deleted file mode 100644
index 3070db688e5..00000000000
--- a/homeassistant/components/frontend/www_static/polymer/bower_components/core-header-panel/.bower.json
+++ /dev/null
@@ -1,18 +0,0 @@
-{
- "name": "core-header-panel",
- "private": true,
- "dependencies": {
- "polymer": "Polymer/polymer#^0.5"
- },
- "version": "0.5.4",
- "homepage": "https://github.com/Polymer/core-header-panel",
- "_release": "0.5.4",
- "_resolution": {
- "type": "version",
- "tag": "0.5.4",
- "commit": "fc39158870bfa737690443719d5220d4821129d4"
- },
- "_source": "git://github.com/Polymer/core-header-panel.git",
- "_target": "~0.5.4",
- "_originalSource": "Polymer/core-header-panel"
-}
\ No newline at end of file
diff --git a/homeassistant/components/frontend/www_static/polymer/bower_components/core-header-panel/README.md b/homeassistant/components/frontend/www_static/polymer/bower_components/core-header-panel/README.md
deleted file mode 100644
index 8bc73e9c5b4..00000000000
--- a/homeassistant/components/frontend/www_static/polymer/bower_components/core-header-panel/README.md
+++ /dev/null
@@ -1,4 +0,0 @@
-core-header-panel
-===================
-
-See the [component page](http://polymer-project.org/docs/elements/core-elements.html#core-header-panel) for more information.
diff --git a/homeassistant/components/frontend/www_static/polymer/bower_components/core-header-panel/bower.json b/homeassistant/components/frontend/www_static/polymer/bower_components/core-header-panel/bower.json
deleted file mode 100644
index 963c5d21828..00000000000
--- a/homeassistant/components/frontend/www_static/polymer/bower_components/core-header-panel/bower.json
+++ /dev/null
@@ -1,8 +0,0 @@
-{
- "name": "core-header-panel",
- "private": true,
- "dependencies": {
- "polymer": "Polymer/polymer#^0.5"
- },
- "version": "0.5.4"
-}
\ No newline at end of file
diff --git a/homeassistant/components/frontend/www_static/polymer/bower_components/core-header-panel/core-header-panel.css b/homeassistant/components/frontend/www_static/polymer/bower_components/core-header-panel/core-header-panel.css
deleted file mode 100644
index c13006c76ec..00000000000
--- a/homeassistant/components/frontend/www_static/polymer/bower_components/core-header-panel/core-header-panel.css
+++ /dev/null
@@ -1,78 +0,0 @@
-/*
-Copyright (c) 2014 The Polymer Project Authors. All rights reserved.
-This code may only be used under the BSD style license found at http://polymer.github.io/LICENSE.txt
-The complete set of authors may be found at http://polymer.github.io/AUTHORS.txt
-The complete set of contributors may be found at http://polymer.github.io/CONTRIBUTORS.txt
-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
-*/
-
-:host {
- display: block;
- position: relative;
-}
-
-#outerContainer {
- position: absolute;
- top: 0;
- right: 0;
- bottom: 0;
- left: 0;
-}
-
-#mainPanel {
- position: relative;
-}
-
-#mainContainer {
- position: relative;
- overflow-y: auto;
- overflow-x: hidden;
- -webkit-overflow-scrolling: touch;
-}
-
-#dropShadow {
- position: absolute;
- top: 0;
- left: 0;
- right: 0;
- height: 6px;
- box-shadow: inset 0px 5px 6px -3px rgba(0, 0, 0, 0.4);
-}
-
-#dropShadow.hidden {
- display: none;
-}
-
-/*
-mode: scroll
-*/
-:host([mode=scroll]) #mainContainer {
- overflow: visible;
-}
-
-:host([mode=scroll]) #outerContainer {
- overflow-y: auto;
- overflow-x: hidden;
- -webkit-overflow-scrolling: touch;
-}
-
-/*
-mode: cover
-*/
-:host([mode=cover]) #mainPanel {
- position: static;
-}
-
-:host([mode=cover]) #mainContainer {
- position: absolute;
- top: 0;
- right: 0;
- bottom: 0;
- left: 0;
-}
-
-:host([mode=cover]) #dropShadow {
- position: static;
- width: 100%;
-}
diff --git a/homeassistant/components/frontend/www_static/polymer/bower_components/core-header-panel/core-header-panel.html b/homeassistant/components/frontend/www_static/polymer/bower_components/core-header-panel/core-header-panel.html
deleted file mode 100644
index 50b69865dff..00000000000
--- a/homeassistant/components/frontend/www_static/polymer/bower_components/core-header-panel/core-header-panel.html
+++ /dev/null
@@ -1,277 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/homeassistant/components/frontend/www_static/polymer/bower_components/core-header-panel/demo.html b/homeassistant/components/frontend/www_static/polymer/bower_components/core-header-panel/demo.html
deleted file mode 100644
index 321f3ef6d37..00000000000
--- a/homeassistant/components/frontend/www_static/polymer/bower_components/core-header-panel/demo.html
+++ /dev/null
@@ -1,100 +0,0 @@
-
-
-
-
- core-header-panel
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/homeassistant/components/frontend/www_static/polymer/bower_components/core-header-panel/index.html b/homeassistant/components/frontend/www_static/polymer/bower_components/core-header-panel/index.html
deleted file mode 100644
index f873a098aa4..00000000000
--- a/homeassistant/components/frontend/www_static/polymer/bower_components/core-header-panel/index.html
+++ /dev/null
@@ -1,23 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/homeassistant/components/frontend/www_static/polymer/bower_components/core-header-panel/metadata.html b/homeassistant/components/frontend/www_static/polymer/bower_components/core-header-panel/metadata.html
deleted file mode 100644
index 58e94757489..00000000000
--- a/homeassistant/components/frontend/www_static/polymer/bower_components/core-header-panel/metadata.html
+++ /dev/null
@@ -1,37 +0,0 @@
-
-
diff --git a/homeassistant/components/frontend/www_static/polymer/bower_components/core-icon-button/.bower.json b/homeassistant/components/frontend/www_static/polymer/bower_components/core-icon-button/.bower.json
deleted file mode 100644
index 93e544b3c05..00000000000
--- a/homeassistant/components/frontend/www_static/polymer/bower_components/core-icon-button/.bower.json
+++ /dev/null
@@ -1,18 +0,0 @@
-{
- "name": "core-icon-button",
- "private": true,
- "dependencies": {
- "core-icons": "Polymer/core-icons#^0.5"
- },
- "version": "0.5.4",
- "homepage": "https://github.com/Polymer/core-icon-button",
- "_release": "0.5.4",
- "_resolution": {
- "type": "version",
- "tag": "0.5.4",
- "commit": "6e6bb56218dbbc0678cfd7bb09f73043aaf1af03"
- },
- "_source": "git://github.com/Polymer/core-icon-button.git",
- "_target": "^0.5",
- "_originalSource": "Polymer/core-icon-button"
-}
\ No newline at end of file
diff --git a/homeassistant/components/frontend/www_static/polymer/bower_components/core-icon-button/README.md b/homeassistant/components/frontend/www_static/polymer/bower_components/core-icon-button/README.md
deleted file mode 100644
index 25e957f0ed1..00000000000
--- a/homeassistant/components/frontend/www_static/polymer/bower_components/core-icon-button/README.md
+++ /dev/null
@@ -1,4 +0,0 @@
-core-icon-button
-================
-
-See the [component page](http://polymer-project.org/docs/elements/core-elements.html#core-icon-button) for more information.
diff --git a/homeassistant/components/frontend/www_static/polymer/bower_components/core-icon-button/bower.json b/homeassistant/components/frontend/www_static/polymer/bower_components/core-icon-button/bower.json
deleted file mode 100644
index 1ba514e9e9d..00000000000
--- a/homeassistant/components/frontend/www_static/polymer/bower_components/core-icon-button/bower.json
+++ /dev/null
@@ -1,8 +0,0 @@
-{
- "name": "core-icon-button",
- "private": true,
- "dependencies": {
- "core-icons": "Polymer/core-icons#^0.5"
- },
- "version": "0.5.4"
-}
\ No newline at end of file
diff --git a/homeassistant/components/frontend/www_static/polymer/bower_components/core-icon-button/core-icon-button.css b/homeassistant/components/frontend/www_static/polymer/bower_components/core-icon-button/core-icon-button.css
deleted file mode 100644
index 60202c36465..00000000000
--- a/homeassistant/components/frontend/www_static/polymer/bower_components/core-icon-button/core-icon-button.css
+++ /dev/null
@@ -1,75 +0,0 @@
-/*
-Copyright (c) 2014 The Polymer Project Authors. All rights reserved.
-This code may only be used under the BSD style license found at http://polymer.github.io/LICENSE
-The complete set of authors may be found at http://polymer.github.io/AUTHORS
-The complete set of contributors may be found at http://polymer.github.io/CONTRIBUTORS
-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
-*/
-
-:host {
- display: inline-block;
- box-sizing: border-box;
- -moz-box-sizing: border-box;
- user-select: none;
- -moz-user-select: none;
- -webkit-user-select: none;
- border-radius: 2px;
- padding: 7px;
- margin: 2px;
- vertical-align: middle;
- font-size: 1rem;
- cursor: pointer;
-}
-
-:host([disabled]) {
- opacity: 0.6;
- pointer-events: none;
-}
-
-:host(.outline) {
- box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.1);
-}
-
-:host(:hover:not([disabled])) {
- box-shadow: 0 1px 0 0 rgba(0, 0, 0, 0.12), 0 0 0 1px rgba(0, 0, 0, 0.1);
-}
-
-:host(.selected:not([disabled])) {
- background-color: rgba(0, 0, 0, 0.05);
- box-shadow: inset 0 1px 0 0 rgba(0, 0, 0, 0.05), 0 0 0 1px rgba(0, 0, 0, 0.12);
-}
-
-:host(:active:not([disabled]), .selected:active:not([disabled])) {
- background-color: rgba(0, 0, 0, 0.05);
- box-shadow: inset 0 1px 0 0 rgba(0, 0, 0, 0.1), 0 0 0 1px rgba(0, 0, 0, 0.12);
-}
-
-:host(.core-dark-theme.outline) {
- background-color: rgba(200, 200, 200, 0.05);
- box-shadow: 0 0 0 1px rgba(200, 200, 200, 0.1);
-}
-
-:host(.core-dark-theme:hover) {
- background-color: rgba(200, 200, 200, 0.05);
- box-shadow: 0 1px 0 0 rgba(200, 200, 200, 0.12), 0 0 0 1px rgba(200, 200, 200, 0.1);
-}
-
-:host(.core-dark-theme.selected) {
- background-color: rgba(220, 220, 220, 0.05);
- box-shadow: inset 0 1px 0 0 rgba(200, 200, 200, 0.05), 0 0 0 1px rgba(200, 200, 200, 0.12);
-}
-
-:host(.core-dark-theme:active, .core-dark-theme.selected:active) {
- background-color: rgba(200, 200, 200, 0.05);
- box-shadow: inset 0 1px 0 0 rgba(200, 200, 200, 0.1), 0 0 0 1px rgba(200, 200, 200, 0.12);
-}
-
-core-icon {
- pointer-events: none;
-}
-
-/* note: this is a polyfill aware selector */
-:host ::content > :not(core-icon) {
- margin-left: 4px;
-}
diff --git a/homeassistant/components/frontend/www_static/polymer/bower_components/core-icon-button/core-icon-button.html b/homeassistant/components/frontend/www_static/polymer/bower_components/core-icon-button/core-icon-button.html
deleted file mode 100644
index 18e49717065..00000000000
--- a/homeassistant/components/frontend/www_static/polymer/bower_components/core-icon-button/core-icon-button.html
+++ /dev/null
@@ -1,81 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/homeassistant/components/frontend/www_static/polymer/bower_components/core-icon-button/demo.html b/homeassistant/components/frontend/www_static/polymer/bower_components/core-icon-button/demo.html
deleted file mode 100644
index 5eefb41632d..00000000000
--- a/homeassistant/components/frontend/www_static/polymer/bower_components/core-icon-button/demo.html
+++ /dev/null
@@ -1,35 +0,0 @@
-
-
-
-
- core-icon-button
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- label
-
-
-
-
-
-
diff --git a/homeassistant/components/frontend/www_static/polymer/bower_components/core-icon-button/index.html b/homeassistant/components/frontend/www_static/polymer/bower_components/core-icon-button/index.html
deleted file mode 100644
index 294215a738b..00000000000
--- a/homeassistant/components/frontend/www_static/polymer/bower_components/core-icon-button/index.html
+++ /dev/null
@@ -1,22 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/homeassistant/components/frontend/www_static/polymer/bower_components/core-icon-button/metadata.html b/homeassistant/components/frontend/www_static/polymer/bower_components/core-icon-button/metadata.html
deleted file mode 100644
index 35c87dccb9f..00000000000
--- a/homeassistant/components/frontend/www_static/polymer/bower_components/core-icon-button/metadata.html
+++ /dev/null
@@ -1,20 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/homeassistant/components/frontend/www_static/polymer/bower_components/core-icon/.bower.json b/homeassistant/components/frontend/www_static/polymer/bower_components/core-icon/.bower.json
deleted file mode 100644
index 840a07d21ce..00000000000
--- a/homeassistant/components/frontend/www_static/polymer/bower_components/core-icon/.bower.json
+++ /dev/null
@@ -1,19 +0,0 @@
-{
- "name": "core-icon",
- "private": true,
- "dependencies": {
- "core-iconset": "Polymer/core-iconset#^0.5",
- "core-icons": "Polymer/core-icons#^0.5"
- },
- "version": "0.5.4",
- "homepage": "https://github.com/Polymer/core-icon",
- "_release": "0.5.4",
- "_resolution": {
- "type": "version",
- "tag": "0.5.4",
- "commit": "d2a59dca7eddf7db13d4c063432da1ae31edbaa2"
- },
- "_source": "git://github.com/Polymer/core-icon.git",
- "_target": "^0.5",
- "_originalSource": "Polymer/core-icon"
-}
\ No newline at end of file
diff --git a/homeassistant/components/frontend/www_static/polymer/bower_components/core-icon/README.md b/homeassistant/components/frontend/www_static/polymer/bower_components/core-icon/README.md
deleted file mode 100644
index 65d93fb6bcc..00000000000
--- a/homeassistant/components/frontend/www_static/polymer/bower_components/core-icon/README.md
+++ /dev/null
@@ -1,4 +0,0 @@
-core-icon
-=========
-
-See the [component page](http://polymer-project.org/docs/elements/core-elements.html#core-icon) for more information.
diff --git a/homeassistant/components/frontend/www_static/polymer/bower_components/core-icon/bower.json b/homeassistant/components/frontend/www_static/polymer/bower_components/core-icon/bower.json
deleted file mode 100644
index 1044a13fd12..00000000000
--- a/homeassistant/components/frontend/www_static/polymer/bower_components/core-icon/bower.json
+++ /dev/null
@@ -1,9 +0,0 @@
-{
- "name": "core-icon",
- "private": true,
- "dependencies": {
- "core-iconset": "Polymer/core-iconset#^0.5",
- "core-icons": "Polymer/core-icons#^0.5"
- },
- "version": "0.5.4"
-}
\ No newline at end of file
diff --git a/homeassistant/components/frontend/www_static/polymer/bower_components/core-icon/core-icon.css b/homeassistant/components/frontend/www_static/polymer/bower_components/core-icon/core-icon.css
deleted file mode 100644
index 168a5b5cc29..00000000000
--- a/homeassistant/components/frontend/www_static/polymer/bower_components/core-icon/core-icon.css
+++ /dev/null
@@ -1,16 +0,0 @@
-/* Copyright (c) 2014 The Polymer Project Authors. All rights reserved.
-This code may only be used under the BSD style license found at http://polymer.github.io/LICENSE.txt
-The complete set of authors may be found at http://polymer.github.io/AUTHORS.txt
-The complete set of contributors may be found at http://polymer.github.io/CONTRIBUTORS.txt
-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 */
-
-html /deep/ core-icon {
- display: inline-block;
- vertical-align: middle;
- background-repeat: no-repeat;
- fill: currentcolor;
- position: relative;
- height: 24px;
- width: 24px;
-}
\ No newline at end of file
diff --git a/homeassistant/components/frontend/www_static/polymer/bower_components/core-icon/core-icon.html b/homeassistant/components/frontend/www_static/polymer/bower_components/core-icon/core-icon.html
deleted file mode 100644
index c889d580fee..00000000000
--- a/homeassistant/components/frontend/www_static/polymer/bower_components/core-icon/core-icon.html
+++ /dev/null
@@ -1,203 +0,0 @@
-
-
-
-
-
-
-
-
-
-
diff --git a/homeassistant/components/frontend/www_static/polymer/bower_components/core-icon/demo.html b/homeassistant/components/frontend/www_static/polymer/bower_components/core-icon/demo.html
deleted file mode 100644
index 995cf1d0253..00000000000
--- a/homeassistant/components/frontend/www_static/polymer/bower_components/core-icon/demo.html
+++ /dev/null
@@ -1,44 +0,0 @@
-
-
-
-
- core-icon
-
-
-
-
-
-
-
-
-
-
-
- {{icon}}
-
-
-
-
- Sized icon:
-
-
-
-
-
-
diff --git a/homeassistant/components/frontend/www_static/polymer/bower_components/core-icon/index.html b/homeassistant/components/frontend/www_static/polymer/bower_components/core-icon/index.html
deleted file mode 100644
index 294215a738b..00000000000
--- a/homeassistant/components/frontend/www_static/polymer/bower_components/core-icon/index.html
+++ /dev/null
@@ -1,22 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/homeassistant/components/frontend/www_static/polymer/bower_components/core-icon/metadata.html b/homeassistant/components/frontend/www_static/polymer/bower_components/core-icon/metadata.html
deleted file mode 100644
index 08726e9e80b..00000000000
--- a/homeassistant/components/frontend/www_static/polymer/bower_components/core-icon/metadata.html
+++ /dev/null
@@ -1,21 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/homeassistant/components/frontend/www_static/polymer/bower_components/core-icons/.bower.json b/homeassistant/components/frontend/www_static/polymer/bower_components/core-icons/.bower.json
deleted file mode 100644
index 1804849aba3..00000000000
--- a/homeassistant/components/frontend/www_static/polymer/bower_components/core-icons/.bower.json
+++ /dev/null
@@ -1,24 +0,0 @@
-{
- "name": "core-icons",
- "private": true,
- "dependencies": {
- "core-icon": "Polymer/core-icon#^0.5",
- "core-iconset-svg": "Polymer/core-iconset-svg#^0.5",
- "polymer": "Polymer/polymer#^0.5"
- },
- "ignore": [
- "util",
- "update-icons.sh"
- ],
- "version": "0.5.4",
- "homepage": "https://github.com/polymer/core-icons",
- "_release": "0.5.4",
- "_resolution": {
- "type": "version",
- "tag": "0.5.4",
- "commit": "20f9d9665af6a1556d0fb44cd45e3b46e4a15efa"
- },
- "_source": "git://github.com/polymer/core-icons.git",
- "_target": "~0.5.4",
- "_originalSource": "polymer/core-icons"
-}
\ No newline at end of file
diff --git a/homeassistant/components/frontend/www_static/polymer/bower_components/core-icons/.gitignore b/homeassistant/components/frontend/www_static/polymer/bower_components/core-icons/.gitignore
deleted file mode 100644
index e21a66b2d0b..00000000000
--- a/homeassistant/components/frontend/www_static/polymer/bower_components/core-icons/.gitignore
+++ /dev/null
@@ -1,2 +0,0 @@
-util/node_modules
-material-design-icons
diff --git a/homeassistant/components/frontend/www_static/polymer/bower_components/core-icons/README.md b/homeassistant/components/frontend/www_static/polymer/bower_components/core-icons/README.md
deleted file mode 100644
index 964ac80cdf7..00000000000
--- a/homeassistant/components/frontend/www_static/polymer/bower_components/core-icons/README.md
+++ /dev/null
@@ -1,8 +0,0 @@
-core-icons
-=========
-
-See the [component page](http://polymer-project.org/docs/elements/core-elements.html#core-icons) for more information.
-
-## Building
-Running `update-icons.sh` will checkout [material-design-icons](https://github.com/google/material-design-icons), reduce
-the fileset to 24px svgs, and compile the iconsets.
diff --git a/homeassistant/components/frontend/www_static/polymer/bower_components/core-icons/av-icons.html b/homeassistant/components/frontend/www_static/polymer/bower_components/core-icons/av-icons.html
deleted file mode 100644
index 02bcf177810..00000000000
--- a/homeassistant/components/frontend/www_static/polymer/bower_components/core-icons/av-icons.html
+++ /dev/null
@@ -1,65 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/homeassistant/components/frontend/www_static/polymer/bower_components/core-icons/bower.json b/homeassistant/components/frontend/www_static/polymer/bower_components/core-icons/bower.json
deleted file mode 100644
index 421fe9b210d..00000000000
--- a/homeassistant/components/frontend/www_static/polymer/bower_components/core-icons/bower.json
+++ /dev/null
@@ -1,14 +0,0 @@
-{
- "name": "core-icons",
- "private": true,
- "dependencies": {
- "core-icon": "Polymer/core-icon#^0.5",
- "core-iconset-svg": "Polymer/core-iconset-svg#^0.5",
- "polymer": "Polymer/polymer#^0.5"
- },
- "ignore": [
- "util",
- "update-icons.sh"
- ],
- "version": "0.5.4"
-}
\ No newline at end of file
diff --git a/homeassistant/components/frontend/www_static/polymer/bower_components/core-icons/communication-icons.html b/homeassistant/components/frontend/www_static/polymer/bower_components/core-icons/communication-icons.html
deleted file mode 100644
index 72ef096fbc1..00000000000
--- a/homeassistant/components/frontend/www_static/polymer/bower_components/core-icons/communication-icons.html
+++ /dev/null
@@ -1,54 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/homeassistant/components/frontend/www_static/polymer/bower_components/core-icons/core-icons.html b/homeassistant/components/frontend/www_static/polymer/bower_components/core-icons/core-icons.html
deleted file mode 100644
index 9e6b9dd3e30..00000000000
--- a/homeassistant/components/frontend/www_static/polymer/bower_components/core-icons/core-icons.html
+++ /dev/null
@@ -1,278 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/homeassistant/components/frontend/www_static/polymer/bower_components/core-icons/demo.html b/homeassistant/components/frontend/www_static/polymer/bower_components/core-icons/demo.html
deleted file mode 100644
index 25747cfcd15..00000000000
--- a/homeassistant/components/frontend/www_static/polymer/bower_components/core-icons/demo.html
+++ /dev/null
@@ -1,98 +0,0 @@
-
-
-
-
-
-
- core-icons
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- {{iconset.id}}
- {{iconset.id === 'icons' ? 'The Default Set' : 'Import ' + iconset.id + '-icons.html'}}
-
-
-
-
-
-
-
diff --git a/homeassistant/components/frontend/www_static/polymer/bower_components/core-icons/device-icons.html b/homeassistant/components/frontend/www_static/polymer/bower_components/core-icons/device-icons.html
deleted file mode 100644
index 5185659c805..00000000000
--- a/homeassistant/components/frontend/www_static/polymer/bower_components/core-icons/device-icons.html
+++ /dev/null
@@ -1,90 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/homeassistant/components/frontend/www_static/polymer/bower_components/core-icons/editor-icons.html b/homeassistant/components/frontend/www_static/polymer/bower_components/core-icons/editor-icons.html
deleted file mode 100644
index 723655ba6ea..00000000000
--- a/homeassistant/components/frontend/www_static/polymer/bower_components/core-icons/editor-icons.html
+++ /dev/null
@@ -1,67 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/homeassistant/components/frontend/www_static/polymer/bower_components/core-icons/hardware-icons.html b/homeassistant/components/frontend/www_static/polymer/bower_components/core-icons/hardware-icons.html
deleted file mode 100644
index 07f7ec64771..00000000000
--- a/homeassistant/components/frontend/www_static/polymer/bower_components/core-icons/hardware-icons.html
+++ /dev/null
@@ -1,56 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/homeassistant/components/frontend/www_static/polymer/bower_components/core-icons/image-icons.html b/homeassistant/components/frontend/www_static/polymer/bower_components/core-icons/image-icons.html
deleted file mode 100644
index 1fbb1391ae0..00000000000
--- a/homeassistant/components/frontend/www_static/polymer/bower_components/core-icons/image-icons.html
+++ /dev/null
@@ -1,152 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/homeassistant/components/frontend/www_static/polymer/bower_components/core-icons/index.html b/homeassistant/components/frontend/www_static/polymer/bower_components/core-icons/index.html
deleted file mode 100644
index 294215a738b..00000000000
--- a/homeassistant/components/frontend/www_static/polymer/bower_components/core-icons/index.html
+++ /dev/null
@@ -1,22 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/homeassistant/components/frontend/www_static/polymer/bower_components/core-icons/maps-icons.html b/homeassistant/components/frontend/www_static/polymer/bower_components/core-icons/maps-icons.html
deleted file mode 100644
index 34d6430e0a2..00000000000
--- a/homeassistant/components/frontend/www_static/polymer/bower_components/core-icons/maps-icons.html
+++ /dev/null
@@ -1,70 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/homeassistant/components/frontend/www_static/polymer/bower_components/core-icons/notification-icons.html b/homeassistant/components/frontend/www_static/polymer/bower_components/core-icons/notification-icons.html
deleted file mode 100644
index 34b39aa9675..00000000000
--- a/homeassistant/components/frontend/www_static/polymer/bower_components/core-icons/notification-icons.html
+++ /dev/null
@@ -1,49 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/homeassistant/components/frontend/www_static/polymer/bower_components/core-icons/social-icons.html b/homeassistant/components/frontend/www_static/polymer/bower_components/core-icons/social-icons.html
deleted file mode 100644
index 708c5c73733..00000000000
--- a/homeassistant/components/frontend/www_static/polymer/bower_components/core-icons/social-icons.html
+++ /dev/null
@@ -1,39 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/homeassistant/components/frontend/www_static/polymer/bower_components/core-iconset-svg/.bower.json b/homeassistant/components/frontend/www_static/polymer/bower_components/core-iconset-svg/.bower.json
deleted file mode 100644
index ae6947a786e..00000000000
--- a/homeassistant/components/frontend/www_static/polymer/bower_components/core-iconset-svg/.bower.json
+++ /dev/null
@@ -1,19 +0,0 @@
-{
- "name": "core-iconset-svg",
- "private": true,
- "dependencies": {
- "polymer": "Polymer/polymer#^0.5",
- "core-iconset": "Polymer/core-iconset#^0.5"
- },
- "version": "0.5.4",
- "homepage": "https://github.com/Polymer/core-iconset-svg",
- "_release": "0.5.4",
- "_resolution": {
- "type": "version",
- "tag": "0.5.4",
- "commit": "5f0a16c3313caa2fd9dc6a1128fcaf6898d195b2"
- },
- "_source": "git://github.com/Polymer/core-iconset-svg.git",
- "_target": "^0.5",
- "_originalSource": "Polymer/core-iconset-svg"
-}
\ No newline at end of file
diff --git a/homeassistant/components/frontend/www_static/polymer/bower_components/core-iconset-svg/README.md b/homeassistant/components/frontend/www_static/polymer/bower_components/core-iconset-svg/README.md
deleted file mode 100644
index 5e4b048ed33..00000000000
--- a/homeassistant/components/frontend/www_static/polymer/bower_components/core-iconset-svg/README.md
+++ /dev/null
@@ -1,4 +0,0 @@
-core-iconset-svg
-=========
-
-See the [component page](http://polymer-project.org/docs/elements/core-elements.html#core-iconset-svg) for more information.
diff --git a/homeassistant/components/frontend/www_static/polymer/bower_components/core-iconset-svg/bower.json b/homeassistant/components/frontend/www_static/polymer/bower_components/core-iconset-svg/bower.json
deleted file mode 100644
index 8b4227b5a7c..00000000000
--- a/homeassistant/components/frontend/www_static/polymer/bower_components/core-iconset-svg/bower.json
+++ /dev/null
@@ -1,9 +0,0 @@
-{
- "name": "core-iconset-svg",
- "private": true,
- "dependencies": {
- "polymer": "Polymer/polymer#^0.5",
- "core-iconset": "Polymer/core-iconset#^0.5"
- },
- "version": "0.5.4"
-}
\ No newline at end of file
diff --git a/homeassistant/components/frontend/www_static/polymer/bower_components/core-iconset-svg/core-iconset-svg.html b/homeassistant/components/frontend/www_static/polymer/bower_components/core-iconset-svg/core-iconset-svg.html
deleted file mode 100644
index edf33c425c3..00000000000
--- a/homeassistant/components/frontend/www_static/polymer/bower_components/core-iconset-svg/core-iconset-svg.html
+++ /dev/null
@@ -1,168 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
diff --git a/homeassistant/components/frontend/www_static/polymer/bower_components/core-iconset-svg/demo.html b/homeassistant/components/frontend/www_static/polymer/bower_components/core-iconset-svg/demo.html
deleted file mode 100644
index b4a4f7ea2d4..00000000000
--- a/homeassistant/components/frontend/www_static/polymer/bower_components/core-iconset-svg/demo.html
+++ /dev/null
@@ -1,66 +0,0 @@
-
-
-
-
-
-
- core-iconset-svg
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/homeassistant/components/frontend/www_static/polymer/bower_components/core-iconset-svg/index.html b/homeassistant/components/frontend/www_static/polymer/bower_components/core-iconset-svg/index.html
deleted file mode 100644
index 294215a738b..00000000000
--- a/homeassistant/components/frontend/www_static/polymer/bower_components/core-iconset-svg/index.html
+++ /dev/null
@@ -1,22 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/homeassistant/components/frontend/www_static/polymer/bower_components/core-iconset-svg/svg-sample-icons.html b/homeassistant/components/frontend/www_static/polymer/bower_components/core-iconset-svg/svg-sample-icons.html
deleted file mode 100644
index 9f5ef3de339..00000000000
--- a/homeassistant/components/frontend/www_static/polymer/bower_components/core-iconset-svg/svg-sample-icons.html
+++ /dev/null
@@ -1,68 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/homeassistant/components/frontend/www_static/polymer/bower_components/core-iconset/.bower.json b/homeassistant/components/frontend/www_static/polymer/bower_components/core-iconset/.bower.json
deleted file mode 100644
index 2ef0edf6618..00000000000
--- a/homeassistant/components/frontend/www_static/polymer/bower_components/core-iconset/.bower.json
+++ /dev/null
@@ -1,20 +0,0 @@
-{
- "name": "core-iconset",
- "private": true,
- "dependencies": {
- "polymer": "Polymer/polymer#^0.5",
- "core-meta": "Polymer/core-meta#^0.5",
- "core-icon": "Polymer/core-icon#^0.5"
- },
- "version": "0.5.4",
- "homepage": "https://github.com/Polymer/core-iconset",
- "_release": "0.5.4",
- "_resolution": {
- "type": "version",
- "tag": "0.5.4",
- "commit": "2813443ab3ddbc2cd67df6d0610abd6d08eae8cb"
- },
- "_source": "git://github.com/Polymer/core-iconset.git",
- "_target": "^0.5",
- "_originalSource": "Polymer/core-iconset"
-}
\ No newline at end of file
diff --git a/homeassistant/components/frontend/www_static/polymer/bower_components/core-iconset/README.md b/homeassistant/components/frontend/www_static/polymer/bower_components/core-iconset/README.md
deleted file mode 100644
index 7a3a217ae1d..00000000000
--- a/homeassistant/components/frontend/www_static/polymer/bower_components/core-iconset/README.md
+++ /dev/null
@@ -1,4 +0,0 @@
-core-iconset
-============
-
-See the [component page](http://polymer-project.org/docs/elements/core-elements.html#core-iconset) for more information.
diff --git a/homeassistant/components/frontend/www_static/polymer/bower_components/core-iconset/bower.json b/homeassistant/components/frontend/www_static/polymer/bower_components/core-iconset/bower.json
deleted file mode 100644
index 95658f68f92..00000000000
--- a/homeassistant/components/frontend/www_static/polymer/bower_components/core-iconset/bower.json
+++ /dev/null
@@ -1,10 +0,0 @@
-{
- "name": "core-iconset",
- "private": true,
- "dependencies": {
- "polymer": "Polymer/polymer#^0.5",
- "core-meta": "Polymer/core-meta#^0.5",
- "core-icon": "Polymer/core-icon#^0.5"
- },
- "version": "0.5.4"
-}
\ No newline at end of file
diff --git a/homeassistant/components/frontend/www_static/polymer/bower_components/core-iconset/core-iconset.html b/homeassistant/components/frontend/www_static/polymer/bower_components/core-iconset/core-iconset.html
deleted file mode 100644
index 7ab2d34011c..00000000000
--- a/homeassistant/components/frontend/www_static/polymer/bower_components/core-iconset/core-iconset.html
+++ /dev/null
@@ -1,241 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
diff --git a/homeassistant/components/frontend/www_static/polymer/bower_components/core-iconset/demo.html b/homeassistant/components/frontend/www_static/polymer/bower_components/core-iconset/demo.html
deleted file mode 100644
index 8732965da3e..00000000000
--- a/homeassistant/components/frontend/www_static/polymer/bower_components/core-iconset/demo.html
+++ /dev/null
@@ -1,62 +0,0 @@
-
-
-
-
-
-
- core-iconset
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/homeassistant/components/frontend/www_static/polymer/bower_components/core-iconset/index.html b/homeassistant/components/frontend/www_static/polymer/bower_components/core-iconset/index.html
deleted file mode 100644
index 294215a738b..00000000000
--- a/homeassistant/components/frontend/www_static/polymer/bower_components/core-iconset/index.html
+++ /dev/null
@@ -1,22 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/homeassistant/components/frontend/www_static/polymer/bower_components/core-iconset/my-icons-big.png b/homeassistant/components/frontend/www_static/polymer/bower_components/core-iconset/my-icons-big.png
deleted file mode 100644
index f019f3fc7f7..00000000000
Binary files a/homeassistant/components/frontend/www_static/polymer/bower_components/core-iconset/my-icons-big.png and /dev/null differ
diff --git a/homeassistant/components/frontend/www_static/polymer/bower_components/core-iconset/my-icons.png b/homeassistant/components/frontend/www_static/polymer/bower_components/core-iconset/my-icons.png
deleted file mode 100644
index a7d223b2824..00000000000
Binary files a/homeassistant/components/frontend/www_static/polymer/bower_components/core-iconset/my-icons.png and /dev/null differ
diff --git a/homeassistant/components/frontend/www_static/polymer/bower_components/core-image/.bower.json b/homeassistant/components/frontend/www_static/polymer/bower_components/core-image/.bower.json
deleted file mode 100644
index c10d0628b48..00000000000
--- a/homeassistant/components/frontend/www_static/polymer/bower_components/core-image/.bower.json
+++ /dev/null
@@ -1,18 +0,0 @@
-{
- "name": "core-image",
- "private": true,
- "dependencies": {
- "polymer": "Polymer/polymer#^0.5"
- },
- "version": "0.5.4",
- "homepage": "https://github.com/polymer/core-image",
- "_release": "0.5.4",
- "_resolution": {
- "type": "version",
- "tag": "0.5.4",
- "commit": "7d344a803f8da1d524aac231d46c8631cd3a973f"
- },
- "_source": "git://github.com/polymer/core-image.git",
- "_target": "~0.5.4",
- "_originalSource": "polymer/core-image"
-}
\ No newline at end of file
diff --git a/homeassistant/components/frontend/www_static/polymer/bower_components/core-image/README.md b/homeassistant/components/frontend/www_static/polymer/bower_components/core-image/README.md
deleted file mode 100644
index 146af03bf8e..00000000000
--- a/homeassistant/components/frontend/www_static/polymer/bower_components/core-image/README.md
+++ /dev/null
@@ -1,4 +0,0 @@
-core-image
-=========
-
-See the [component page](http://polymer-project.org/docs/elements/core-elements.html#core-image) for more information.
diff --git a/homeassistant/components/frontend/www_static/polymer/bower_components/core-image/bower.json b/homeassistant/components/frontend/www_static/polymer/bower_components/core-image/bower.json
deleted file mode 100644
index 2002e00c4ae..00000000000
--- a/homeassistant/components/frontend/www_static/polymer/bower_components/core-image/bower.json
+++ /dev/null
@@ -1,8 +0,0 @@
-{
- "name": "core-image",
- "private": true,
- "dependencies": {
- "polymer": "Polymer/polymer#^0.5"
- },
- "version": "0.5.4"
-}
\ No newline at end of file
diff --git a/homeassistant/components/frontend/www_static/polymer/bower_components/core-image/core-image.css b/homeassistant/components/frontend/www_static/polymer/bower_components/core-image/core-image.css
deleted file mode 100644
index 00616bda2d6..00000000000
--- a/homeassistant/components/frontend/www_static/polymer/bower_components/core-image/core-image.css
+++ /dev/null
@@ -1,23 +0,0 @@
-/*
-Copyright (c) 2014 The Polymer Project Authors. All rights reserved.
-This code may only be used under the BSD style license found at http://polymer.github.io/LICENSE.txt
-The complete set of authors may be found at http://polymer.github.io/AUTHORS.txt
-The complete set of contributors may be found at http://polymer.github.io/CONTRIBUTORS.txt
-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
-*/
-
-:host {
- display: inline-block;
- overflow: hidden;
- position: relative;
-}
-
-#placeholder {
- background-color: inherit;
- opacity: 1;
-}
-#placeholder.fadein {
- transition: opacity 0.5s linear;
- opacity: 0;
-}
\ No newline at end of file
diff --git a/homeassistant/components/frontend/www_static/polymer/bower_components/core-image/core-image.html b/homeassistant/components/frontend/www_static/polymer/bower_components/core-image/core-image.html
deleted file mode 100644
index f992c3152bd..00000000000
--- a/homeassistant/components/frontend/www_static/polymer/bower_components/core-image/core-image.html
+++ /dev/null
@@ -1,243 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/homeassistant/components/frontend/www_static/polymer/bower_components/core-image/demo.html b/homeassistant/components/frontend/www_static/polymer/bower_components/core-image/demo.html
deleted file mode 100644
index 72c18e06dea..00000000000
--- a/homeassistant/components/frontend/www_static/polymer/bower_components/core-image/demo.html
+++ /dev/null
@@ -1,175 +0,0 @@
-
-
-
-
-
- core-image
-
-
-
-
-
-
-
-
-
-
-
- Sizing: none (naturally sized)
-
-
- Sizing: cover
-
-
-
- Sizing: contain
-
-
-
- Preload: none
-
-
No sizing
-
Load image
-
-
-
-
-
Contain
-
Load image
-
-
-
- Preload: color as placeholder
-
-
No sizing
-
Load image
-
Loading...
-
-
-
-
-
Cover
-
Load image
-
Loading...
-
-
-
-
-
Contain
-
Load image
-
Loading...
-
-
-
-
- Preload: image as placeholder
-
-
No sizing
-
Load image
-
Loading...
-
-
-
-
-
Cover
-
Load image
-
Loading...
-
-
-
-
-
Contain
-
Load image
-
Loading...
-
-
-
-
- Preload: color as placeholder, with Fade-in
-
-
No sizing
-
Load image
-
Loading...
-
-
-
-
-
Cover
-
Load image
-
Loading...
-
-
-
-
-
Contain
-
Load image
-
Loading...
-
-
-
-
- Preload: image as placeholder, with Fade-in
-
-
No sizing
-
Load image
-
Loading...
-
-
-
-
-
Cover
-
Load image
-
Loading...
-
-
-
-
-
Contain
-
Load image
-
Loading...
-
-
-
-
-
-
-
-
-
-
diff --git a/homeassistant/components/frontend/www_static/polymer/bower_components/core-image/index.html b/homeassistant/components/frontend/www_static/polymer/bower_components/core-image/index.html
deleted file mode 100644
index 294215a738b..00000000000
--- a/homeassistant/components/frontend/www_static/polymer/bower_components/core-image/index.html
+++ /dev/null
@@ -1,22 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/homeassistant/components/frontend/www_static/polymer/bower_components/core-image/metadata.html b/homeassistant/components/frontend/www_static/polymer/bower_components/core-image/metadata.html
deleted file mode 100644
index 5d524325325..00000000000
--- a/homeassistant/components/frontend/www_static/polymer/bower_components/core-image/metadata.html
+++ /dev/null
@@ -1,24 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/homeassistant/components/frontend/www_static/polymer/bower_components/core-input/.bower.json b/homeassistant/components/frontend/www_static/polymer/bower_components/core-input/.bower.json
deleted file mode 100644
index e13920d5780..00000000000
--- a/homeassistant/components/frontend/www_static/polymer/bower_components/core-input/.bower.json
+++ /dev/null
@@ -1,20 +0,0 @@
-{
- "name": "core-input",
- "dependencies": {
- "polymer": "Polymer/polymer#^0.5"
- },
- "devDependencies": {
- "web-component-tester": "Polymer/web-component-tester#^1.1.4"
- },
- "version": "0.5.4",
- "homepage": "https://github.com/Polymer/core-input",
- "_release": "0.5.4",
- "_resolution": {
- "type": "version",
- "tag": "0.5.4",
- "commit": "655564c7c5f777147751307cd605a16beabfdae7"
- },
- "_source": "git://github.com/Polymer/core-input.git",
- "_target": "^0.5",
- "_originalSource": "Polymer/core-input"
-}
\ No newline at end of file
diff --git a/homeassistant/components/frontend/www_static/polymer/bower_components/core-input/README.md b/homeassistant/components/frontend/www_static/polymer/bower_components/core-input/README.md
deleted file mode 100644
index ca86fcbc20c..00000000000
--- a/homeassistant/components/frontend/www_static/polymer/bower_components/core-input/README.md
+++ /dev/null
@@ -1,2 +0,0 @@
-core-input
-==========
diff --git a/homeassistant/components/frontend/www_static/polymer/bower_components/core-input/bower.json b/homeassistant/components/frontend/www_static/polymer/bower_components/core-input/bower.json
deleted file mode 100644
index 2ccc432597d..00000000000
--- a/homeassistant/components/frontend/www_static/polymer/bower_components/core-input/bower.json
+++ /dev/null
@@ -1,10 +0,0 @@
-{
- "name": "core-input",
- "dependencies": {
- "polymer": "Polymer/polymer#^0.5"
- },
- "devDependencies": {
- "web-component-tester": "Polymer/web-component-tester#^1.1.4"
- },
- "version": "0.5.4"
-}
\ No newline at end of file
diff --git a/homeassistant/components/frontend/www_static/polymer/bower_components/core-input/core-input.css b/homeassistant/components/frontend/www_static/polymer/bower_components/core-input/core-input.css
deleted file mode 100644
index d58da9934e4..00000000000
--- a/homeassistant/components/frontend/www_static/polymer/bower_components/core-input/core-input.css
+++ /dev/null
@@ -1,41 +0,0 @@
-/*
- * @license
- * Copyright (c) 2014 The Polymer Project Authors. All rights reserved.
- * This code may only be used under the BSD style license found at http://polymer.github.io/LICENSE.txt
- * The complete set of authors may be found at http://polymer.github.io/AUTHORS.txt
- * The complete set of contributors may be found at http://polymer.github.io/CONTRIBUTORS.txt
- * 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
- */
-
-:host {
- display: inline-block;
- text-align: inherit;
- position: relative;
- width: 20em;
-}
-
-:host:hover {
- cursor: text;
-}
-
-input,
-textarea {
- font: inherit;
- color: inherit;
- width: 100%;
- margin: 0;
- padding: 0;
- background-color: transparent;
- border: none;
- outline: none;
- width: 100%;
-}
-
-textarea {
- resize: none;
-}
-
-textarea[rows=fit] {
- height: 100%;
-}
\ No newline at end of file
diff --git a/homeassistant/components/frontend/www_static/polymer/bower_components/core-input/core-input.html b/homeassistant/components/frontend/www_static/polymer/bower_components/core-input/core-input.html
deleted file mode 100644
index 04805bb4268..00000000000
--- a/homeassistant/components/frontend/www_static/polymer/bower_components/core-input/core-input.html
+++ /dev/null
@@ -1,148 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/homeassistant/components/frontend/www_static/polymer/bower_components/core-input/demo.html b/homeassistant/components/frontend/www_static/polymer/bower_components/core-input/demo.html
deleted file mode 100644
index 26b9ece13fe..00000000000
--- a/homeassistant/components/frontend/www_static/polymer/bower_components/core-input/demo.html
+++ /dev/null
@@ -1,62 +0,0 @@
-
-
-
-
-
-
- core-input
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/homeassistant/components/frontend/www_static/polymer/bower_components/core-input/index.html b/homeassistant/components/frontend/www_static/polymer/bower_components/core-input/index.html
deleted file mode 100644
index 294215a738b..00000000000
--- a/homeassistant/components/frontend/www_static/polymer/bower_components/core-input/index.html
+++ /dev/null
@@ -1,22 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/homeassistant/components/frontend/www_static/polymer/bower_components/core-input/metadata.html b/homeassistant/components/frontend/www_static/polymer/bower_components/core-input/metadata.html
deleted file mode 100644
index feb930d3a92..00000000000
--- a/homeassistant/components/frontend/www_static/polymer/bower_components/core-input/metadata.html
+++ /dev/null
@@ -1,23 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/homeassistant/components/frontend/www_static/polymer/bower_components/core-input/test/a11y.html b/homeassistant/components/frontend/www_static/polymer/bower_components/core-input/test/a11y.html
deleted file mode 100644
index 95655597c00..00000000000
--- a/homeassistant/components/frontend/www_static/polymer/bower_components/core-input/test/a11y.html
+++ /dev/null
@@ -1,55 +0,0 @@
-
-
-
-
-
- core-input a11y tests
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/homeassistant/components/frontend/www_static/polymer/bower_components/core-input/test/basic.html b/homeassistant/components/frontend/www_static/polymer/bower_components/core-input/test/basic.html
deleted file mode 100644
index f16510e9657..00000000000
--- a/homeassistant/components/frontend/www_static/polymer/bower_components/core-input/test/basic.html
+++ /dev/null
@@ -1,60 +0,0 @@
-
-
-
-
-
- core-input basic tests
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/homeassistant/components/frontend/www_static/polymer/bower_components/core-input/test/index.html b/homeassistant/components/frontend/www_static/polymer/bower_components/core-input/test/index.html
deleted file mode 100644
index f692b478710..00000000000
--- a/homeassistant/components/frontend/www_static/polymer/bower_components/core-input/test/index.html
+++ /dev/null
@@ -1,25 +0,0 @@
-
-
-
-
-
-
- core-input tests
-
-
-
-
-
-
diff --git a/homeassistant/components/frontend/www_static/polymer/bower_components/core-item/.bower.json b/homeassistant/components/frontend/www_static/polymer/bower_components/core-item/.bower.json
deleted file mode 100644
index eecc5005343..00000000000
--- a/homeassistant/components/frontend/www_static/polymer/bower_components/core-item/.bower.json
+++ /dev/null
@@ -1,19 +0,0 @@
-{
- "name": "core-item",
- "private": true,
- "dependencies": {
- "core-icon": "Polymer/core-icon#^0.5",
- "core-icons": "Polymer/core-icons#^0.5"
- },
- "version": "0.5.4",
- "homepage": "https://github.com/Polymer/core-item",
- "_release": "0.5.4",
- "_resolution": {
- "type": "version",
- "tag": "0.5.4",
- "commit": "bda0b8eb32bd090031a5616823f533f130d9258a"
- },
- "_source": "git://github.com/Polymer/core-item.git",
- "_target": "^0.5",
- "_originalSource": "Polymer/core-item"
-}
\ No newline at end of file
diff --git a/homeassistant/components/frontend/www_static/polymer/bower_components/core-item/README.md b/homeassistant/components/frontend/www_static/polymer/bower_components/core-item/README.md
deleted file mode 100644
index ab1d0cde42e..00000000000
--- a/homeassistant/components/frontend/www_static/polymer/bower_components/core-item/README.md
+++ /dev/null
@@ -1,4 +0,0 @@
-core-item
-=========
-
-See the [component page](http://polymer-project.org/docs/elements/core-elements.html#core-item) for more information.
diff --git a/homeassistant/components/frontend/www_static/polymer/bower_components/core-item/bower.json b/homeassistant/components/frontend/www_static/polymer/bower_components/core-item/bower.json
deleted file mode 100644
index 699cd4b5533..00000000000
--- a/homeassistant/components/frontend/www_static/polymer/bower_components/core-item/bower.json
+++ /dev/null
@@ -1,9 +0,0 @@
-{
- "name": "core-item",
- "private": true,
- "dependencies": {
- "core-icon": "Polymer/core-icon#^0.5",
- "core-icons": "Polymer/core-icons#^0.5"
- },
- "version": "0.5.4"
-}
\ No newline at end of file
diff --git a/homeassistant/components/frontend/www_static/polymer/bower_components/core-item/core-item.css b/homeassistant/components/frontend/www_static/polymer/bower_components/core-item/core-item.css
deleted file mode 100644
index 31f8ed141f0..00000000000
--- a/homeassistant/components/frontend/www_static/polymer/bower_components/core-item/core-item.css
+++ /dev/null
@@ -1,45 +0,0 @@
-/*
-Copyright (c) 2014 The Polymer Project Authors. All rights reserved.
-This code may only be used under the BSD style license found at http://polymer.github.io/LICENSE.txt
-The complete set of authors may be found at http://polymer.github.io/AUTHORS.txt
-The complete set of contributors may be found at http://polymer.github.io/CONTRIBUTORS.txt
-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
-*/
-
-:host {
- display: block;
- position: relative;
- min-height: 40px;
- white-space: nowrap;
-}
-
-:host(.font-scalable) {
- min-height: 2.5em;
-}
-
-:host(.core-selected) {
- font-weight: bold;
-}
-
-#icon {
- margin: 0 16px 0 4px;
-}
-
-:host(.font-scalable) #icon {
- margin: 0 1em 0 0.25em;
- height: 1.5em;
- width: 1.5em;
-}
-
-polyfill-next-selector { content: ':host > a'; }
-::content > a {
- position: absolute;
- top: 0;
- right: 0;
- bottom: 0;
- left: 0;
- /* IE10 styling to ensure link is clickable. Cannot be completely
- transparent or minifiers change it to `transparent` which does not work. */
- background-color: rgba(0, 0, 0, 0.000001);
-}
diff --git a/homeassistant/components/frontend/www_static/polymer/bower_components/core-item/core-item.html b/homeassistant/components/frontend/www_static/polymer/bower_components/core-item/core-item.html
deleted file mode 100644
index 66892da2f9f..00000000000
--- a/homeassistant/components/frontend/www_static/polymer/bower_components/core-item/core-item.html
+++ /dev/null
@@ -1,73 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
- {{label}}
-
-
-
-
diff --git a/homeassistant/components/frontend/www_static/polymer/bower_components/core-item/demo.html b/homeassistant/components/frontend/www_static/polymer/bower_components/core-item/demo.html
deleted file mode 100644
index d0ad68b5e3e..00000000000
--- a/homeassistant/components/frontend/www_static/polymer/bower_components/core-item/demo.html
+++ /dev/null
@@ -1,92 +0,0 @@
-
-
-
-
-
- core-item
-
-
-
-
-
-
-
-
-
-
-
- items with icon and label:
-
-
-
-
- items with label only:
-
-
-
-
- links (via <a>):
-
-
-
-
- items sized with CSS:
-
-
-
-
-
- custom item:
-
-
-
-
John Doe
-
123 A Street, San Francisco, CA
-
-
-
-
-
-
diff --git a/homeassistant/components/frontend/www_static/polymer/bower_components/core-item/index.html b/homeassistant/components/frontend/www_static/polymer/bower_components/core-item/index.html
deleted file mode 100644
index 294215a738b..00000000000
--- a/homeassistant/components/frontend/www_static/polymer/bower_components/core-item/index.html
+++ /dev/null
@@ -1,22 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/homeassistant/components/frontend/www_static/polymer/bower_components/core-item/metadata.html b/homeassistant/components/frontend/www_static/polymer/bower_components/core-item/metadata.html
deleted file mode 100644
index 334d59d14fd..00000000000
--- a/homeassistant/components/frontend/www_static/polymer/bower_components/core-item/metadata.html
+++ /dev/null
@@ -1,24 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/homeassistant/components/frontend/www_static/polymer/bower_components/core-media-query/.bower.json b/homeassistant/components/frontend/www_static/polymer/bower_components/core-media-query/.bower.json
deleted file mode 100644
index b213fb49728..00000000000
--- a/homeassistant/components/frontend/www_static/polymer/bower_components/core-media-query/.bower.json
+++ /dev/null
@@ -1,18 +0,0 @@
-{
- "name": "core-media-query",
- "private": true,
- "dependencies": {
- "polymer": "Polymer/polymer#^0.5"
- },
- "version": "0.5.4",
- "homepage": "https://github.com/Polymer/core-media-query",
- "_release": "0.5.4",
- "_resolution": {
- "type": "version",
- "tag": "0.5.4",
- "commit": "1100a2d1428cf94583f1e7a969b2f45f06f8d911"
- },
- "_source": "git://github.com/Polymer/core-media-query.git",
- "_target": "^0.5",
- "_originalSource": "Polymer/core-media-query"
-}
\ No newline at end of file
diff --git a/homeassistant/components/frontend/www_static/polymer/bower_components/core-media-query/README.md b/homeassistant/components/frontend/www_static/polymer/bower_components/core-media-query/README.md
deleted file mode 100644
index 2eeb93eb6ff..00000000000
--- a/homeassistant/components/frontend/www_static/polymer/bower_components/core-media-query/README.md
+++ /dev/null
@@ -1,4 +0,0 @@
-core-media-query
-================
-
-See the [component page](http://polymer-project.org/docs/elements/core-elements.html#core-media-query) for more information.
diff --git a/homeassistant/components/frontend/www_static/polymer/bower_components/core-media-query/bower.json b/homeassistant/components/frontend/www_static/polymer/bower_components/core-media-query/bower.json
deleted file mode 100644
index 425dcc17463..00000000000
--- a/homeassistant/components/frontend/www_static/polymer/bower_components/core-media-query/bower.json
+++ /dev/null
@@ -1,8 +0,0 @@
-{
- "name": "core-media-query",
- "private": true,
- "dependencies": {
- "polymer": "Polymer/polymer#^0.5"
- },
- "version": "0.5.4"
-}
\ No newline at end of file
diff --git a/homeassistant/components/frontend/www_static/polymer/bower_components/core-media-query/core-media-query.html b/homeassistant/components/frontend/www_static/polymer/bower_components/core-media-query/core-media-query.html
deleted file mode 100644
index 20cfd09ef30..00000000000
--- a/homeassistant/components/frontend/www_static/polymer/bower_components/core-media-query/core-media-query.html
+++ /dev/null
@@ -1,87 +0,0 @@
-
-
-
-
-
-
-
-
-
-
diff --git a/homeassistant/components/frontend/www_static/polymer/bower_components/core-media-query/demo.html b/homeassistant/components/frontend/www_static/polymer/bower_components/core-media-query/demo.html
deleted file mode 100644
index 8c1d6397610..00000000000
--- a/homeassistant/components/frontend/www_static/polymer/bower_components/core-media-query/demo.html
+++ /dev/null
@@ -1,44 +0,0 @@
-
-
-
-
-
- Polymer match media
-
-
-
-
-
-
-
-
- My query of "{{query}}" {{qMatches ? "matches" : "doesn't match"}}
-
-
-
-
-
-
- Log of 'mediachange' events on document, from polymer-match-media:
-
-
-
-
-
diff --git a/homeassistant/components/frontend/www_static/polymer/bower_components/core-media-query/index.html b/homeassistant/components/frontend/www_static/polymer/bower_components/core-media-query/index.html
deleted file mode 100644
index 294215a738b..00000000000
--- a/homeassistant/components/frontend/www_static/polymer/bower_components/core-media-query/index.html
+++ /dev/null
@@ -1,22 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/homeassistant/components/frontend/www_static/polymer/bower_components/core-menu/.bower.json b/homeassistant/components/frontend/www_static/polymer/bower_components/core-menu/.bower.json
deleted file mode 100644
index 2ffbae7ac1a..00000000000
--- a/homeassistant/components/frontend/www_static/polymer/bower_components/core-menu/.bower.json
+++ /dev/null
@@ -1,21 +0,0 @@
-{
- "name": "core-menu",
- "private": true,
- "dependencies": {
- "core-selector": "Polymer/core-selector#^0.5",
- "core-collapse": "Polymer/core-collapse#^0.5",
- "core-a11y-keys": "Polymer/core-a11y-keys#^0.5",
- "core-item": "Polymer/core-item#^0.5"
- },
- "version": "0.5.4",
- "homepage": "https://github.com/Polymer/core-menu",
- "_release": "0.5.4",
- "_resolution": {
- "type": "version",
- "tag": "0.5.4",
- "commit": "4c49696ff63a0fd55b6cb49a7301024ceaa6cc37"
- },
- "_source": "git://github.com/Polymer/core-menu.git",
- "_target": "~0.5.4",
- "_originalSource": "Polymer/core-menu"
-}
\ No newline at end of file
diff --git a/homeassistant/components/frontend/www_static/polymer/bower_components/core-menu/README.md b/homeassistant/components/frontend/www_static/polymer/bower_components/core-menu/README.md
deleted file mode 100644
index a6b2cfd2eda..00000000000
--- a/homeassistant/components/frontend/www_static/polymer/bower_components/core-menu/README.md
+++ /dev/null
@@ -1,4 +0,0 @@
-core-menu
-=========
-
-See the [component page](http://polymer-project.org/docs/elements/core-elements.html#core-menu) for more information.
diff --git a/homeassistant/components/frontend/www_static/polymer/bower_components/core-menu/bower.json b/homeassistant/components/frontend/www_static/polymer/bower_components/core-menu/bower.json
deleted file mode 100644
index 0b15b8e00e4..00000000000
--- a/homeassistant/components/frontend/www_static/polymer/bower_components/core-menu/bower.json
+++ /dev/null
@@ -1,11 +0,0 @@
-{
- "name": "core-menu",
- "private": true,
- "dependencies": {
- "core-selector": "Polymer/core-selector#^0.5",
- "core-collapse": "Polymer/core-collapse#^0.5",
- "core-a11y-keys": "Polymer/core-a11y-keys#^0.5",
- "core-item": "Polymer/core-item#^0.5"
- },
- "version": "0.5.4"
-}
\ No newline at end of file
diff --git a/homeassistant/components/frontend/www_static/polymer/bower_components/core-menu/core-menu.css b/homeassistant/components/frontend/www_static/polymer/bower_components/core-menu/core-menu.css
deleted file mode 100644
index a710c4f6109..00000000000
--- a/homeassistant/components/frontend/www_static/polymer/bower_components/core-menu/core-menu.css
+++ /dev/null
@@ -1,18 +0,0 @@
-/*
-Copyright (c) 2014 The Polymer Project Authors. All rights reserved.
-This code may only be used under the BSD style license found at http://polymer.github.io/LICENSE.txt
-The complete set of authors may be found at http://polymer.github.io/AUTHORS.txt
-The complete set of contributors may be found at http://polymer.github.io/CONTRIBUTORS.txt
-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
-*/
-
-:host {
- display: block;
- margin: 12px;
-}
-
-polyfill-next-selector { content: ':host > core-item'; }
-::content > core-item {
- cursor: default;
-}
diff --git a/homeassistant/components/frontend/www_static/polymer/bower_components/core-menu/core-menu.html b/homeassistant/components/frontend/www_static/polymer/bower_components/core-menu/core-menu.html
deleted file mode 100644
index cba11c77730..00000000000
--- a/homeassistant/components/frontend/www_static/polymer/bower_components/core-menu/core-menu.html
+++ /dev/null
@@ -1,73 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/homeassistant/components/frontend/www_static/polymer/bower_components/core-menu/core-submenu.css b/homeassistant/components/frontend/www_static/polymer/bower_components/core-menu/core-submenu.css
deleted file mode 100644
index 36557682ea7..00000000000
--- a/homeassistant/components/frontend/www_static/polymer/bower_components/core-menu/core-submenu.css
+++ /dev/null
@@ -1,43 +0,0 @@
-/*
-Copyright (c) 2014 The Polymer Project Authors. All rights reserved.
-This code may only be used under the BSD style license found at http://polymer.github.io/LICENSE
-The complete set of authors may be found at http://polymer.github.io/AUTHORS
-The complete set of contributors may be found at http://polymer.github.io/CONTRIBUTORS
-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
-*/
-
-:host {
- display: block;
- height: auto;
-}
-
-:host(.core-selected, [active]) {
- font-weight: initial;
-}
-
-core-item {
- cursor: default;
-}
-
-::content > core-item {
- cursor: default;
-}
-
-:host(.font-scalable) > core-item {
- min-height: 2.5em;
-}
-
-:host(.font-scalable) > core-item::shadow core-icon {
- margin: 0 1em 0 0.25em;
- height: 1.5em;
- width: 1.5em;
-}
-
-#submenu {
- margin: 0 0 0 44px;
-}
-
-:host(.font-scalable) > #submenu {
- margin: 0 0 0 2.75em;
-}
diff --git a/homeassistant/components/frontend/www_static/polymer/bower_components/core-menu/core-submenu.html b/homeassistant/components/frontend/www_static/polymer/bower_components/core-menu/core-submenu.html
deleted file mode 100644
index 57bd7ac3e16..00000000000
--- a/homeassistant/components/frontend/www_static/polymer/bower_components/core-menu/core-submenu.html
+++ /dev/null
@@ -1,126 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/homeassistant/components/frontend/www_static/polymer/bower_components/core-menu/demo.html b/homeassistant/components/frontend/www_static/polymer/bower_components/core-menu/demo.html
deleted file mode 100644
index 4a1adfa9a07..00000000000
--- a/homeassistant/components/frontend/www_static/polymer/bower_components/core-menu/demo.html
+++ /dev/null
@@ -1,101 +0,0 @@
-
-
-
-
-
- core-menu
-
-
-
-
-
-
-
-
-
-
-
-
-
- simple menu:
-
-
-
- simple menu:
-
-
-
- submenu:
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/homeassistant/components/frontend/www_static/polymer/bower_components/core-menu/index.html b/homeassistant/components/frontend/www_static/polymer/bower_components/core-menu/index.html
deleted file mode 100644
index 93c3a4ec7be..00000000000
--- a/homeassistant/components/frontend/www_static/polymer/bower_components/core-menu/index.html
+++ /dev/null
@@ -1,22 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/homeassistant/components/frontend/www_static/polymer/bower_components/core-menu/metadata.html b/homeassistant/components/frontend/www_static/polymer/bower_components/core-menu/metadata.html
deleted file mode 100644
index 03c042bdc71..00000000000
--- a/homeassistant/components/frontend/www_static/polymer/bower_components/core-menu/metadata.html
+++ /dev/null
@@ -1,62 +0,0 @@
-
-
-
-
diff --git a/homeassistant/components/frontend/www_static/polymer/bower_components/core-meta/.bower.json b/homeassistant/components/frontend/www_static/polymer/bower_components/core-meta/.bower.json
deleted file mode 100644
index f4bf8940e1e..00000000000
--- a/homeassistant/components/frontend/www_static/polymer/bower_components/core-meta/.bower.json
+++ /dev/null
@@ -1,18 +0,0 @@
-{
- "name": "core-meta",
- "private": true,
- "dependencies": {
- "polymer": "Polymer/polymer#^0.5"
- },
- "version": "0.5.4",
- "homepage": "https://github.com/Polymer/core-meta",
- "_release": "0.5.4",
- "_resolution": {
- "type": "version",
- "tag": "0.5.4",
- "commit": "031761d2b38840586c4c2fbc293fb044493f540d"
- },
- "_source": "git://github.com/Polymer/core-meta.git",
- "_target": "^0.5",
- "_originalSource": "Polymer/core-meta"
-}
\ No newline at end of file
diff --git a/homeassistant/components/frontend/www_static/polymer/bower_components/core-meta/README.md b/homeassistant/components/frontend/www_static/polymer/bower_components/core-meta/README.md
deleted file mode 100644
index d8da644adef..00000000000
--- a/homeassistant/components/frontend/www_static/polymer/bower_components/core-meta/README.md
+++ /dev/null
@@ -1,4 +0,0 @@
-core-meta
-=========
-
-See the [component page](http://polymer-project.org/docs/elements/core-elements.html#core-meta) for more information.
diff --git a/homeassistant/components/frontend/www_static/polymer/bower_components/core-meta/bower.json b/homeassistant/components/frontend/www_static/polymer/bower_components/core-meta/bower.json
deleted file mode 100644
index 655538c53f4..00000000000
--- a/homeassistant/components/frontend/www_static/polymer/bower_components/core-meta/bower.json
+++ /dev/null
@@ -1,8 +0,0 @@
-{
- "name": "core-meta",
- "private": true,
- "dependencies": {
- "polymer": "Polymer/polymer#^0.5"
- },
- "version": "0.5.4"
-}
\ No newline at end of file
diff --git a/homeassistant/components/frontend/www_static/polymer/bower_components/core-meta/core-meta.html b/homeassistant/components/frontend/www_static/polymer/bower_components/core-meta/core-meta.html
deleted file mode 100644
index c008dd5691a..00000000000
--- a/homeassistant/components/frontend/www_static/polymer/bower_components/core-meta/core-meta.html
+++ /dev/null
@@ -1,145 +0,0 @@
-
-
-
-
-
-
-
-
-
diff --git a/homeassistant/components/frontend/www_static/polymer/bower_components/core-meta/demo.html b/homeassistant/components/frontend/www_static/polymer/bower_components/core-meta/demo.html
deleted file mode 100644
index 8bd875614e2..00000000000
--- a/homeassistant/components/frontend/www_static/polymer/bower_components/core-meta/demo.html
+++ /dev/null
@@ -1,58 +0,0 @@
-
-
-
-
- core-meta
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- meta-data
-
-
- {{label}}
-
-
- meta-data (type: fruit)
-
-
- {{label}}
-
-
-
-
-
-
diff --git a/homeassistant/components/frontend/www_static/polymer/bower_components/core-meta/index.html b/homeassistant/components/frontend/www_static/polymer/bower_components/core-meta/index.html
deleted file mode 100644
index 294215a738b..00000000000
--- a/homeassistant/components/frontend/www_static/polymer/bower_components/core-meta/index.html
+++ /dev/null
@@ -1,22 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/homeassistant/components/frontend/www_static/polymer/bower_components/core-overlay/.bower.json b/homeassistant/components/frontend/www_static/polymer/bower_components/core-overlay/.bower.json
deleted file mode 100644
index e5365303045..00000000000
--- a/homeassistant/components/frontend/www_static/polymer/bower_components/core-overlay/.bower.json
+++ /dev/null
@@ -1,20 +0,0 @@
-{
- "name": "core-overlay",
- "private": true,
- "dependencies": {
- "polymer": "Polymer/polymer#^0.5",
- "core-transition": "Polymer/core-transition#^0.5",
- "core-resizable": "Polymer/core-resizable#^0.5"
- },
- "version": "0.5.4",
- "homepage": "https://github.com/Polymer/core-overlay",
- "_release": "0.5.4",
- "_resolution": {
- "type": "version",
- "tag": "0.5.4",
- "commit": "79cc347b84525349d5089c15526a2414cf90dc6f"
- },
- "_source": "git://github.com/Polymer/core-overlay.git",
- "_target": "^0.5",
- "_originalSource": "Polymer/core-overlay"
-}
\ No newline at end of file
diff --git a/homeassistant/components/frontend/www_static/polymer/bower_components/core-overlay/README.md b/homeassistant/components/frontend/www_static/polymer/bower_components/core-overlay/README.md
deleted file mode 100644
index 54713e0047b..00000000000
--- a/homeassistant/components/frontend/www_static/polymer/bower_components/core-overlay/README.md
+++ /dev/null
@@ -1,4 +0,0 @@
-core-overlay
-============
-
-See the [component page](http://polymer-project.org/docs/elements/core-elements.html#core-overlay) for more information.
diff --git a/homeassistant/components/frontend/www_static/polymer/bower_components/core-overlay/bower.json b/homeassistant/components/frontend/www_static/polymer/bower_components/core-overlay/bower.json
deleted file mode 100644
index 0623a356047..00000000000
--- a/homeassistant/components/frontend/www_static/polymer/bower_components/core-overlay/bower.json
+++ /dev/null
@@ -1,10 +0,0 @@
-{
- "name": "core-overlay",
- "private": true,
- "dependencies": {
- "polymer": "Polymer/polymer#^0.5",
- "core-transition": "Polymer/core-transition#^0.5",
- "core-resizable": "Polymer/core-resizable#^0.5"
- },
- "version": "0.5.4"
-}
\ No newline at end of file
diff --git a/homeassistant/components/frontend/www_static/polymer/bower_components/core-overlay/core-key-helper.html b/homeassistant/components/frontend/www_static/polymer/bower_components/core-overlay/core-key-helper.html
deleted file mode 100644
index 1c9e4843884..00000000000
--- a/homeassistant/components/frontend/www_static/polymer/bower_components/core-overlay/core-key-helper.html
+++ /dev/null
@@ -1,22 +0,0 @@
-
-
-
-
-
-
-
-
diff --git a/homeassistant/components/frontend/www_static/polymer/bower_components/core-overlay/core-overlay-layer.html b/homeassistant/components/frontend/www_static/polymer/bower_components/core-overlay/core-overlay-layer.html
deleted file mode 100644
index 58a5bb58a40..00000000000
--- a/homeassistant/components/frontend/www_static/polymer/bower_components/core-overlay/core-overlay-layer.html
+++ /dev/null
@@ -1,116 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
diff --git a/homeassistant/components/frontend/www_static/polymer/bower_components/core-overlay/core-overlay.html b/homeassistant/components/frontend/www_static/polymer/bower_components/core-overlay/core-overlay.html
deleted file mode 100644
index 2c7c3d81d59..00000000000
--- a/homeassistant/components/frontend/www_static/polymer/bower_components/core-overlay/core-overlay.html
+++ /dev/null
@@ -1,776 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/homeassistant/components/frontend/www_static/polymer/bower_components/core-overlay/demo.html b/homeassistant/components/frontend/www_static/polymer/bower_components/core-overlay/demo.html
deleted file mode 100644
index 70331329366..00000000000
--- a/homeassistant/components/frontend/www_static/polymer/bower_components/core-overlay/demo.html
+++ /dev/null
@@ -1,155 +0,0 @@
-
-
-
-
- core-overlay
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- Dialog
- Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed fringilla sapien sed enim sollicitudin laoreet. Suspendisse suscipit, metus ac volutpat sodales, libero magna semper lacus, molestie fringilla massa orci ut arcu. Nullam sodales urna sit amet odio vehicula mattis.
- Ut aliquam vulputate congue. Vestibulum pretium pretium nulla quis sollicitudin. Praesent lacinia congue erat nec mattis. Fusce commodo lacus est. Duis turpis eros, ultrices sed aliquet non, blandit egestas velit. Integer a augue nec lorem tristique hendrerit. Curabitur imperdiet risus id enim bibendum vestibulum. Integer id magna at arcu faucibus fermentum vel a augue. Sed fringilla venenatis dolor, in blandit magna molestie luctus. Vestibulum dignissim posuere ultrices. Aenean urna nisl, tincidunt vitae iaculis ut, pharetra nec eros.
-
-
-
- I agree with this wholeheartedly.
-
-
-
- Thank you.
-
-
- OK
-
-
- Toggle Dialog
-
-
-
-
-
-
diff --git a/homeassistant/components/frontend/www_static/polymer/bower_components/core-overlay/gulpfile.js b/homeassistant/components/frontend/www_static/polymer/bower_components/core-overlay/gulpfile.js
deleted file mode 100644
index 354f251dc38..00000000000
--- a/homeassistant/components/frontend/www_static/polymer/bower_components/core-overlay/gulpfile.js
+++ /dev/null
@@ -1,2 +0,0 @@
-var gulp = require('gulp');
-require('gulp-web-component-tester').init(gulp);
diff --git a/homeassistant/components/frontend/www_static/polymer/bower_components/core-overlay/index.html b/homeassistant/components/frontend/www_static/polymer/bower_components/core-overlay/index.html
deleted file mode 100644
index a115ee79a45..00000000000
--- a/homeassistant/components/frontend/www_static/polymer/bower_components/core-overlay/index.html
+++ /dev/null
@@ -1,22 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/homeassistant/components/frontend/www_static/polymer/bower_components/core-overlay/tests/html/core-overlay-basic.html b/homeassistant/components/frontend/www_static/polymer/bower_components/core-overlay/tests/html/core-overlay-basic.html
deleted file mode 100644
index 2d0a71fd579..00000000000
--- a/homeassistant/components/frontend/www_static/polymer/bower_components/core-overlay/tests/html/core-overlay-basic.html
+++ /dev/null
@@ -1,127 +0,0 @@
-
-
-
-
- core-overlay
-
-
-
-
-
-
-
-
-
-
-
- Basic Overlay
-
-
-Targeted Overlay
-
-
-
-
- Layered Overlay
-
-
-
-
- Layered backdrop Overlay
-
-
-
-
-
-
diff --git a/homeassistant/components/frontend/www_static/polymer/bower_components/core-overlay/tests/html/core-overlay-positioning-margin.html b/homeassistant/components/frontend/www_static/polymer/bower_components/core-overlay/tests/html/core-overlay-positioning-margin.html
deleted file mode 100644
index 3bce082eb7a..00000000000
--- a/homeassistant/components/frontend/www_static/polymer/bower_components/core-overlay/tests/html/core-overlay-positioning-margin.html
+++ /dev/null
@@ -1,153 +0,0 @@
-
-
-
-
- core-overlay
-
-
-
-
-
-
-
-
-
-
-
- Sized Overlay
-
-
-
- Positioned Overlay
-
-
-
- "Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia consequuntur magni dolores eos qui ratione voluptatem sequi nesciunt. Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam, quis nostrum exercitationem ullam corporis suscipit laboriosam, nisi ut aliquid ex ea commodi consequatur? Quis autem vel eum iure reprehenderit qui in ea voluptate velit esse quam nihil molestiae consequatur, vel illum qui dolorem eum fugiat quo voluptas nulla pariatur?"
-
-
-
-
-
-
diff --git a/homeassistant/components/frontend/www_static/polymer/bower_components/core-overlay/tests/html/core-overlay-positioning.html b/homeassistant/components/frontend/www_static/polymer/bower_components/core-overlay/tests/html/core-overlay-positioning.html
deleted file mode 100644
index 26b5168336d..00000000000
--- a/homeassistant/components/frontend/www_static/polymer/bower_components/core-overlay/tests/html/core-overlay-positioning.html
+++ /dev/null
@@ -1,167 +0,0 @@
-
-
-
-
- core-overlay
-
-
-
-
-
-
-
-
-
-
-
- Sized Overlay
-
-
-
- Positioned Overlay
-
-
-
- "Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia consequuntur magni dolores eos qui ratione voluptatem sequi nesciunt. Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam, quis nostrum exercitationem ullam corporis suscipit laboriosam, nisi ut aliquid ex ea commodi consequatur? Quis autem vel eum iure reprehenderit qui in ea voluptate velit esse quam nihil molestiae consequatur, vel illum qui dolorem eum fugiat quo voluptas nulla pariatur?"
-
-
-
-
-
-
diff --git a/homeassistant/components/frontend/www_static/polymer/bower_components/core-overlay/tests/html/core-overlay-quick-close.html b/homeassistant/components/frontend/www_static/polymer/bower_components/core-overlay/tests/html/core-overlay-quick-close.html
deleted file mode 100644
index bcd5376a915..00000000000
--- a/homeassistant/components/frontend/www_static/polymer/bower_components/core-overlay/tests/html/core-overlay-quick-close.html
+++ /dev/null
@@ -1,45 +0,0 @@
-
-
-
-
- core-overlay
-
-
-
-
-
-
-
-
-
-my overlay
-
-
-
-
-
diff --git a/homeassistant/components/frontend/www_static/polymer/bower_components/core-overlay/tests/html/core-overlay-scroll.html b/homeassistant/components/frontend/www_static/polymer/bower_components/core-overlay/tests/html/core-overlay-scroll.html
deleted file mode 100644
index e9ff40a1886..00000000000
--- a/homeassistant/components/frontend/www_static/polymer/bower_components/core-overlay/tests/html/core-overlay-scroll.html
+++ /dev/null
@@ -1,130 +0,0 @@
-
-
-
-
- core-overlay
-
-
-
-
-
-
-
-
-
-
-
- Lots of Content that might overflow the overlay!
- Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
- Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
- Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
- Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
- Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
- Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
- Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
- Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
- Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
- Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
-
-
-
-
-
- Lots of Content that might overflow the overlay!
- Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
- Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
- Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
- Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
- Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
- Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
- Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
- Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
- Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
- Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
-
-
-
-
-
-
-
-
-
-