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

Side by Side 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 unified diff | 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 »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 <!DOCTYPE html>
2 <!--
3 Copyright 2016 The Chromium Authors. All rights reserved.
4 Use of this source code is governed by a BSD-style license that can be
5 found in the LICENSE file.
6 -->
7
8 <link rel="import" href="/components/paper-button/paper-button.html">
9
10 <dom-module id="primary-button">
11 <template>
12 <style>
13 :host {
14 border: 0;
15 padding: 0;
16 background: transparent;
17 font-size: inherit;
18 }
19
20 :host(.mini) {
21 height: 22px;
22 line-height: 0.5em;
23 margin-left: 5px;
24 padding-top: 0;
25 }
26
27 paper-button {
28 background-color: #4285f4;
29 color: white;
30 }
31 </style>
32
33 <paper-button raised disabled$="{{disabled}}">
34 <content></content>
35 </paper-button>
36
37 </template>
38
39 <script>
40 'use strict';
41
42 Polymer({
43 is: 'primary-button',
44 extends: 'button'
45 });
46 </script>
47 </dom-module>
OLDNEW
« 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