Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(71)

Unified Diff: dashboard/dashboard/elements/primary-button.html

Issue 2162963002: [polymer] Merge of master into polymer10-migration (Closed) Base URL: git@github.com:catapult-project/catapult.git@polymer10-migration
Patch Set: Merge polymer10-migration int polymer10-merge Created 4 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « dashboard/dashboard/delete_test_data.py ('k') | dashboard/dashboard/issue_tracker_service.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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>
« no previous file with comments | « dashboard/dashboard/delete_test_data.py ('k') | dashboard/dashboard/issue_tracker_service.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698