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

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: add missing files Created 3 years, 9 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 51 matching lines...) Expand 10 before | Expand all | Expand 10 after
62 background: var(--paper-fab-background, --accent-color); 62 background: var(--paper-fab-background, --accent-color);
63 border-radius: 50%; 63 border-radius: 50%;
64 box-sizing: border-box; 64 box-sizing: border-box;
65 color: var(--text-primary-color); 65 color: var(--text-primary-color);
66 cursor: pointer; 66 cursor: pointer;
67 height: 56px; 67 height: 56px;
68 min-width: 0; 68 min-width: 0;
69 outline: none; 69 outline: none;
70 padding: 16px; 70 padding: 16px;
71 position: relative; 71 position: relative;
72 -moz-user-select: none;
73 -ms-user-select: none;
74 -webkit-user-select: none;
75 user-select: none; 72 user-select: none;
76 width: 56px; 73 width: 56px;
77 z-index: 0; 74 z-index: 0;
78 75
79 /* NOTE: Both values are needed, since some phones require the value `tr ansparent`. */ 76 /* NOTE: Both values are needed, since some phones require the value `tr ansparent`. */
80 -webkit-tap-highlight-color: rgba(0,0,0,0); 77 -webkit-tap-highlight-color: rgba(0,0,0,0);
81 -webkit-tap-highlight-color: transparent; 78 -webkit-tap-highlight-color: transparent;
82 79
83 @apply(--paper-fab); 80 @apply(--paper-fab);
84 } 81 }
(...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after
118 background: var(--paper-fab-keyboard-focus-background, --paper-pink-900) ; 115 background: var(--paper-fab-keyboard-focus-background, --paper-pink-900) ;
119 } 116 }
120 </style> 117 </style>
121 118
122 <iron-icon id="icon" hidden$="{{!_computeIsIconFab(icon, src)}}" src="[[src] ]" icon="[[icon]]"></iron-icon> 119 <iron-icon id="icon" hidden$="{{!_computeIsIconFab(icon, src)}}" src="[[src] ]" icon="[[icon]]"></iron-icon>
123 <span hidden$="{{_computeIsIconFab(icon, src)}}">{{label}}</span> 120 <span hidden$="{{_computeIsIconFab(icon, src)}}">{{label}}</span>
124 </template> 121 </template>
125 122
126 </dom-module> 123 </dom-module>
127 <script src="paper-fab-extracted.js"></script></body></html> 124 <script src="paper-fab-extracted.js"></script></body></html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698