| Index: dashboard/dashboard/elements/primary-button.html
|
| diff --git a/dashboard/dashboard/elements/primary-button.html b/dashboard/dashboard/elements/primary-button.html
|
| deleted file mode 100644
|
| index 58581ef5dd1fe6d9b718a80c0922968bc5f5d963..0000000000000000000000000000000000000000
|
| --- a/dashboard/dashboard/elements/primary-button.html
|
| +++ /dev/null
|
| @@ -1,47 +0,0 @@
|
| -<!DOCTYPE html>
|
| -<!--
|
| -Copyright 2016 The Chromium Authors. All rights reserved.
|
| -Use of this source code is governed by a BSD-style license that can be
|
| -found in the LICENSE file.
|
| --->
|
| -
|
| -<link rel="import" href="/components/paper-button/paper-button.html">
|
| -
|
| -<dom-module id="primary-button">
|
| - <template>
|
| - <style>
|
| - :host {
|
| - border: 0;
|
| - padding: 0;
|
| - background: transparent;
|
| - font-size: inherit;
|
| - }
|
| -
|
| - :host(.mini) {
|
| - height: 22px;
|
| - line-height: 0.5em;
|
| - margin-left: 5px;
|
| - padding-top: 0;
|
| - }
|
| -
|
| - paper-button {
|
| - background-color: #4285f4;
|
| - color: white;
|
| - }
|
| - </style>
|
| -
|
| - <paper-button raised disabled$="{{disabled}}">
|
| - <content></content>
|
| - </paper-button>
|
| -
|
| - </template>
|
| -
|
| - <script>
|
| - 'use strict';
|
| -
|
| - Polymer({
|
| - is: 'primary-button',
|
| - extends: 'button'
|
| - });
|
| - </script>
|
| -</dom-module>
|
|
|