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

Side by Side Diff: third_party/polymer/v1_0/components-chromium/paper-fab/paper-fab.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, 10 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="../iron-flex-layout/iron-flex-layout.html"> 10 <link rel="import" href="../iron-flex-layout/iron-flex-layout.html">
(...skipping 43 matching lines...) Expand 10 before | Expand all | Expand 10 after
54 54
55 --> 55 -->
56 56
57 </head><body><dom-module id="paper-fab"> 57 </head><body><dom-module id="paper-fab">
58 <template strip-whitespace=""> 58 <template strip-whitespace="">
59 <style include="paper-material-shared-styles"> 59 <style include="paper-material-shared-styles">
60 :host { 60 :host {
61 display: inline-block; 61 display: inline-block;
62 position: relative; 62 position: relative;
63 outline: none; 63 outline: none;
64 -moz-user-select: none;
65 -ms-user-select: none;
66 -webkit-user-select: none;
67 -webkit-tap-highlight-color: rgba(0,0,0,0);
68 user-select: none; 64 user-select: none;
69 cursor: pointer; 65 cursor: pointer;
70 66
71 box-sizing: border-box; 67 box-sizing: border-box;
72 min-width: 0; 68 min-width: 0;
73 width: 56px; 69 width: 56px;
74 height: 56px; 70 height: 56px;
75 background: var(--paper-fab-background, --accent-color); 71 background: var(--paper-fab-background, --accent-color);
76 color: var(--text-primary-color); 72 color: var(--text-primary-color);
77 border-radius: 50%; 73 border-radius: 50%;
(...skipping 27 matching lines...) Expand all
105 :host(.keyboard-focus) { 101 :host(.keyboard-focus) {
106 background: var(--paper-fab-keyboard-focus-background, --paper-pink-900) ; 102 background: var(--paper-fab-keyboard-focus-background, --paper-pink-900) ;
107 } 103 }
108 </style> 104 </style>
109 105
110 <iron-icon id="icon" src="[[src]]" icon="[[icon]]"></iron-icon> 106 <iron-icon id="icon" src="[[src]]" icon="[[icon]]"></iron-icon>
111 </template> 107 </template>
112 </dom-module> 108 </dom-module>
113 109
114 <script src="paper-fab-extracted.js"></script></body></html> 110 <script src="paper-fab-extracted.js"></script></body></html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698