| Index: third_party/polymer/components-chromium/core-tooltip/core-tooltip.html
|
| diff --git a/third_party/polymer/components-chromium/core-tooltip/core-tooltip.html b/third_party/polymer/components-chromium/core-tooltip/core-tooltip.html
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..38c6d71eba80fb27ae96cd328155e3651a3f1764
|
| --- /dev/null
|
| +++ b/third_party/polymer/components-chromium/core-tooltip/core-tooltip.html
|
| @@ -0,0 +1,72 @@
|
| +<!--
|
| +Copyright (c) 2014 The Polymer Project Authors. All rights reserved.
|
| +This code may only be used under the BSD style license found at http://polymer.github.io/LICENSE.txt
|
| +The complete set of authors may be found at http://polymer.github.io/AUTHORS.txt
|
| +The complete set of contributors may be found at http://polymer.github.io/CONTRIBUTORS.txt
|
| +Code distributed by Google as part of the polymer project is also
|
| +subject to an additional IP rights grant found at http://polymer.github.io/PATENTS.txt
|
| +-->
|
| +
|
| +<!--
|
| +The `core-tooltip` element creates a hover tooltip centered for the content
|
| +it contains. It can be positioned on the top|bottom|left|right of content using
|
| +the `position` attribute.
|
| +
|
| +To include HTML in the tooltip, include the `tip` attribute on the relevant
|
| +content.
|
| +
|
| +<b>Example</b>:
|
| +
|
| + <core-tooltip label="I'm a tooltip">
|
| + <span>Hover over me.</span>
|
| + </core-tooltip>
|
| +
|
| +<b>Example</b> - positioning the tooltip to the right:
|
| +
|
| + <core-tooltip label="I'm a tooltip to the right" position="right">
|
| + <polymer-ui-icon-button icon="drawer"></polymer-ui-icon-button>
|
| + </core-tooltip>
|
| +
|
| +<b>Example</b> - no arrow and showing by default:
|
| +
|
| + <core-tooltip label="Tooltip with no arrow and always on" noarrow show>
|
| + <img src="image.jpg">
|
| + </core-tooltip>
|
| +
|
| +<b>Example</b> - rich tooltip using the `tip` attribute:
|
| +
|
| + <core-tooltip>
|
| + <div>Example of a rich information tooltip</div>
|
| + <div tip>
|
| + <img src="profile.jpg">Foo <b>Bar</b> - <a href="#">@baz</a>
|
| + </div>
|
| + </core-tooltip>
|
| +
|
| +@group Polymer Core Elements
|
| +@element core-tooltip
|
| +@homepage http://polymer.github.io/core-tooltip
|
| +-->
|
| +
|
| +<link rel="import" href="../polymer/polymer.html">
|
| +
|
| +<!-- TODO: would be nice to inherit from label to get .htmlFor, and .control,
|
| + but the latter is readonly. -->
|
| +<!-- TODO: support off center arrows. -->
|
| +<!-- TODO: detect mobile and apply the .large class, instead of manual
|
| + control. -->
|
| +<!-- TODO: possibly reuse core-overlay. -->
|
| +<polymer-element name="core-tooltip" attributes="noarrow position label show" tabindex="0" assetpath="">
|
| +<template>
|
| +
|
| + <link rel="stylesheet" href="core-tooltip.css">
|
| +
|
| + <div id="tooltip" class="polymer-tooltip {{position}} {{ {noarrow: noarrow, show: show} | tokenList}}">
|
| + <content select="[tip]">{{label}}</content>
|
| + </div>
|
| +
|
| + <content></content>
|
| +
|
| +</template>
|
| +
|
| +</polymer-element>
|
| +<script src="core-tooltip-extracted.js"></script>
|
|
|