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

Side by Side Diff: third_party/polymer/v1_0/components-chromium/paper-button/paper-button.html

Issue 1633603004: Add script to remove prefixed CSS from third_party/polymer. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Process CSS files too. Created 4 years, 11 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
OLDNEW
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
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
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>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698