| OLD | NEW |
| 1 <!-- | 1 <!-- |
| 2 Copyright (c) 2015 The Polymer Project Authors. All rights reserved. | 2 Copyright (c) 2015 The Polymer Project Authors. All rights reserved. |
| 3 This code may only be used under the BSD style license found at http://polymer.g
ithub.io/LICENSE.txt | 3 This code may only be used under the BSD style license found at http://polymer.g
ithub.io/LICENSE.txt |
| 4 The complete set of authors may be found at http://polymer.github.io/AUTHORS.txt | 4 The complete set of authors may be found at http://polymer.github.io/AUTHORS.txt |
| 5 The complete set of contributors may be found at http://polymer.github.io/CONTRI
BUTORS.txt | 5 The complete set of contributors may be found at http://polymer.github.io/CONTRI
BUTORS.txt |
| 6 Code distributed by Google as part of the polymer project is also | 6 Code distributed by Google as part of the polymer project is also |
| 7 subject to an additional IP rights grant found at http://polymer.github.io/PATEN
TS.txt | 7 subject to an additional IP rights grant found at http://polymer.github.io/PATEN
TS.txt |
| 8 --><html><head><link rel="import" href="../polymer/polymer.html"> | 8 --><html><head><link rel="import" href="../polymer/polymer.html"> |
| 9 <link rel="import" href="../neon-animation/neon-animation-runner-behavior.html"> | 9 <link rel="import" href="../neon-animation/neon-animation-runner-behavior.html"> |
| 10 <link rel="import" href="../neon-animation/animations/fade-in-animation.html"> | 10 <link rel="import" href="../neon-animation/animations/fade-in-animation.html"> |
| (...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 53 --> | 53 --> |
| 54 | 54 |
| 55 </head><body><dom-module id="paper-tooltip"> | 55 </head><body><dom-module id="paper-tooltip"> |
| 56 <template> | 56 <template> |
| 57 <style> | 57 <style> |
| 58 :host { | 58 :host { |
| 59 display: block; | 59 display: block; |
| 60 position: absolute; | 60 position: absolute; |
| 61 outline: none; | 61 outline: none; |
| 62 z-index: 1002; | 62 z-index: 1002; |
| 63 -moz-user-select: none; | |
| 64 -ms-user-select: none; | |
| 65 -webkit-user-select: none; | |
| 66 user-select: none; | 63 user-select: none; |
| 67 cursor: default; | 64 cursor: default; |
| 68 } | 65 } |
| 69 | 66 |
| 70 #tooltip { | 67 #tooltip { |
| 71 display: block; | 68 display: block; |
| 72 outline: none; | 69 outline: none; |
| 73 @apply(--paper-font-common-base); | 70 @apply(--paper-font-common-base); |
| 74 font-size: 10px; | 71 font-size: 10px; |
| 75 line-height: 1; | 72 line-height: 1; |
| (...skipping 14 matching lines...) Expand all Loading... |
| 90 } | 87 } |
| 91 </style> | 88 </style> |
| 92 | 89 |
| 93 <div id="tooltip" class="hidden"> | 90 <div id="tooltip" class="hidden"> |
| 94 <content></content> | 91 <content></content> |
| 95 </div> | 92 </div> |
| 96 </template> | 93 </template> |
| 97 | 94 |
| 98 </dom-module> | 95 </dom-module> |
| 99 <script src="paper-tooltip-extracted.js"></script></body></html> | 96 <script src="paper-tooltip-extracted.js"></script></body></html> |
| OLD | NEW |