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

Side by Side Diff: third_party/polymer/v1_0/components-chromium/paper-tooltip/paper-tooltip.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="../neon-animation/neon-animation-runner-behavior.html"> 10 <link rel="import" href="../neon-animation/neon-animation-runner-behavior.html">
(...skipping 43 matching lines...) Expand 10 before | Expand all | Expand 10 after
54 --> 54 -->
55 55
56 </head><body><dom-module id="paper-tooltip"> 56 </head><body><dom-module id="paper-tooltip">
57 <template> 57 <template>
58 <style> 58 <style>
59 :host { 59 :host {
60 display: block; 60 display: block;
61 position: absolute; 61 position: absolute;
62 outline: none; 62 outline: none;
63 z-index: 1002; 63 z-index: 1002;
64 -moz-user-select: none;
65 -ms-user-select: none;
66 -webkit-user-select: none;
67 user-select: none; 64 user-select: none;
68 cursor: default; 65 cursor: default;
69 } 66 }
70 67
71 #tooltip { 68 #tooltip {
72 display: block; 69 display: block;
73 outline: none; 70 outline: none;
74 @apply(--paper-font-common-base); 71 @apply(--paper-font-common-base);
75 font-size: 10px; 72 font-size: 10px;
76 line-height: 1; 73 line-height: 1;
(...skipping 14 matching lines...) Expand all
91 } 88 }
92 </style> 89 </style>
93 90
94 <div id="tooltip" class="hidden"> 91 <div id="tooltip" class="hidden">
95 <content></content> 92 <content></content>
96 </div> 93 </div>
97 </template> 94 </template>
98 95
99 </dom-module> 96 </dom-module>
100 <script src="paper-tooltip-extracted.js"></script></body></html> 97 <script src="paper-tooltip-extracted.js"></script></body></html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698