| OLD | NEW |
| 1 <!-- | 1 <!-- |
| 2 @license | 2 @license |
| 3 Copyright (c) 2015 The Polymer Project Authors. All rights reserved. | 3 Copyright (c) 2015 The Polymer Project Authors. All rights reserved. |
| 4 This code may only be used under the BSD style license found at http://polymer.g
ithub.io/LICENSE.txt | 4 This code may only be used under the BSD style license found at http://polymer.g
ithub.io/LICENSE.txt |
| 5 The complete set of authors may be found at http://polymer.github.io/AUTHORS.txt | 5 The complete set of authors may be found at http://polymer.github.io/AUTHORS.txt |
| 6 The complete set of contributors may be found at http://polymer.github.io/CONTRI
BUTORS.txt | 6 The complete set of contributors may be found at http://polymer.github.io/CONTRI
BUTORS.txt |
| 7 Code distributed by Google as part of the polymer project is also | 7 Code distributed by Google as part of the polymer project is also |
| 8 subject to an additional IP rights grant found at http://polymer.github.io/PATEN
TS.txt | 8 subject to an additional IP rights grant found at http://polymer.github.io/PATEN
TS.txt |
| 9 --><html><head><link rel="import" href="../polymer/polymer.html"> | 9 --><html><head><link rel="import" href="../polymer/polymer.html"> |
| 10 <link rel="import" href="../paper-material/paper-material.html"> | 10 <link rel="import" href="../paper-material/paper-material.html"> |
| (...skipping 70 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 81 position: relative; | 81 position: relative; |
| 82 box-sizing: border-box; | 82 box-sizing: border-box; |
| 83 min-width: 5.14em; | 83 min-width: 5.14em; |
| 84 margin: 0 0.29em; | 84 margin: 0 0.29em; |
| 85 background: transparent; | 85 background: transparent; |
| 86 text-align: center; | 86 text-align: center; |
| 87 font: inherit; | 87 font: inherit; |
| 88 text-transform: uppercase; | 88 text-transform: uppercase; |
| 89 outline-width: 0; | 89 outline-width: 0; |
| 90 border-radius: 3px; | 90 border-radius: 3px; |
| 91 -moz-user-select: none; | |
| 92 -ms-user-select: none; | |
| 93 -webkit-user-select: none; | |
| 94 user-select: none; | 91 user-select: none; |
| 95 cursor: pointer; | 92 cursor: pointer; |
| 96 z-index: 0; | 93 z-index: 0; |
| 97 padding: 0.7em 0.57em; | 94 padding: 0.7em 0.57em; |
| 98 | 95 |
| 99 @apply(--paper-button); | 96 @apply(--paper-button); |
| 100 } | 97 } |
| 101 | 98 |
| 102 :host([raised].keyboard-focus) { | 99 :host([raised].keyboard-focus) { |
| 103 font-weight: bold; | 100 font-weight: bold; |
| (...skipping 20 matching lines...) Expand all Loading... |
| 124 | 121 |
| 125 :host > ::content * { | 122 :host > ::content * { |
| 126 text-transform: inherit; | 123 text-transform: inherit; |
| 127 } | 124 } |
| 128 </style> | 125 </style> |
| 129 <content></content> | 126 <content></content> |
| 130 </template> | 127 </template> |
| 131 </dom-module> | 128 </dom-module> |
| 132 | 129 |
| 133 <script src="paper-button-extracted.js"></script></body></html> | 130 <script src="paper-button-extracted.js"></script></body></html> |
| OLD | NEW |