Project import generated by Copybara.
GitOrigin-RevId: 63746295f1a5ab5a619056791995793d65529e62
diff --git a/node_modules/material-design-lite/dist/components/tooltip/demo.html b/node_modules/material-design-lite/dist/components/tooltip/demo.html
new file mode 100644
index 0000000..0725666
--- /dev/null
+++ b/node_modules/material-design-lite/dist/components/tooltip/demo.html
@@ -0,0 +1,65 @@
+<!doctype html>
+<html lang="en">
+ <head>
+ <meta charset="utf-8">
+ <meta http-equiv="X-UA-Compatible" content="IE=edge">
+ <meta name="description" content="A front-end template that helps you build fast, modern mobile web apps.">
+ <meta name="viewport" content="width=device-width, initial-scale=1">
+ <title>tooltip test</title>
+
+ <!-- Fonts -->
+ <link href='https://fonts.googleapis.com/css?family=Roboto:regular,bold,italic,thin,light,bolditalic,black,medium&lang=en' rel='stylesheet' type='text/css'>
+ <link href="https://fonts.googleapis.com/icon?family=Material+Icons"
+ rel="stylesheet">
+
+ <!-- Page styles -->
+ <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/prism/0.0.1/prism.min.css">
+ <link rel="stylesheet" href="../../material.min.css">
+ <link rel="stylesheet" href="../../components/demos.css">
+ <script src="../../material.min.js"></script>
+
+
+ <style>
+
+ </style>
+
+ </head>
+ <body>
+
+ <div style="padding-top: 24px;">
+
+
+<!-- Large Tooltip -->
+<div id="tt2" class="icon material-icons">print</div>
+<div class="mdl-tooltip mdl-tooltip--large" for="tt2">
+Print
+</div>
+
+<!-- Multiline Tooltip -->
+<div id="tt4" class="icon material-icons">share</div>
+<div class="mdl-tooltip" for="tt4">
+Share your content<br>via social media
+</div>
+
+<!-- Rich Tooltip -->
+<div id="tt3" class="icon material-icons">cloud_upload</div>
+<div class="mdl-tooltip" data-mdl-for="tt3">
+Upload <strong>file.zip</strong>
+</div>
+
+<!-- Simple Tooltip -->
+<div id="tt1" class="icon material-icons">add</div>
+<div class="mdl-tooltip" data-mdl-for="tt1">
+Follow
+</div>
+
+
+ </div>
+ <!-- Built with love using Material Design Lite -->
+
+
+ <script>
+
+ </script>
+ </body>
+</html>
diff --git a/node_modules/material-design-lite/dist/components/tooltip/index.html b/node_modules/material-design-lite/dist/components/tooltip/index.html
new file mode 100755
index 0000000..c8c74f1
--- /dev/null
+++ b/node_modules/material-design-lite/dist/components/tooltip/index.html
@@ -0,0 +1,86 @@
+
+
+
+<h2 id="introduction">Introduction</h2>
+<p>The Material Design Lite (MDL) <strong>tooltip</strong> component is an enhanced version of the standard HTML tooltip as produced by the <code>title</code> attribute. A tooltip consists of text and/or an image that clearly communicates additional information about an element when the user hovers over or, in a touch-based UI, touches the element. The MDL tooltip component is pre-styled (colors, fonts, and other settings are contained in <em>material.min.css</em>) to provide a vivid, attractive visual element that displays related but typically non-essential content, e.g., a definition, clarification, or brief instruction.</p>
+<p>Tooltips are a ubiquitous feature of most user interfaces, regardless of a site's content or function. Their design and use is an important factor in the overall user experience. See the tooltip component's <a href="http://www.google.com/design/spec/components/tooltips.html">Material Design specifications page</a> for details.</p>
+<h3 id="to-include-an-mdl-tooltip-component-">To include an MDL <strong>tooltip</strong> component:</h3>
+<p> 1. Code an element, such as a <code><div></code>, <code><p></code>, or <code><span></code>, and style it as desired; this will be the tooltip's target. Include an <code>id</code> attribute and unique value to link the container to its tooltip.</p>
+<pre><code class="lang-html"><p id="tt1">HTML</p>
+</code></pre>
+<p> 2. Following the target element, code a second element, such as a <code><div></code>, <code><p></code>, or <code><span></code>; this will be the tooltip itself. Include a <code>for</code> (or <code>data-mdl-for</code>) attribute whose value matches that of the target's <code>id</code>.</p>
+<pre><code class="lang-html"><p id="tt1">HTML</p>
+<span for="tt1">HyperText Markup Language</span>
+</code></pre>
+<p> 3. Add one or more MDL classes, separated by spaces, to the tooltip element using the <code>class</code> attribute.</p>
+<pre><code class="lang-html"><p id="tt1">HTML</p>
+<span for="tt1" class="mdl-tooltip">HyperText Markup Language</span>
+</code></pre>
+<p>The tooltip component is ready for use.</p>
+<h4 id="examples">Examples</h4>
+<p>A target with a simple text tooltip.</p>
+<pre><code class="lang-html"><p>HTML is related to but different from <span id="xml"><i>XML</i></span>.</p>
+<span class="mdl-tooltip" for="xml">eXtensible Markup Language</span>
+</code></pre>
+<p>A target with "rich" (containing HTML markup) tooltip text.</p>
+<pre><code class="lang-html"><p>HTML is related to but different from <span id="xml"><i>XML</i></span>.</p>
+<span class="mdl-tooltip" for="xml">e<b>X</b>tensible <b>M</b>arkup <b>L</b>anguage</span>
+</code></pre>
+<p>A target with a long text tooltip that automatically wraps.</p>
+<pre><code class="lang-html"><p>HTML is related to but different from <span id="xml"><i>XML</i></span>.</p>
+<span class="mdl-tooltip" for="xml">XML is an acronym for eXtensible Markup Language</span>
+</code></pre>
+<p>A target with tooltip text in a larger font size.</p>
+<pre><code class="lang-html"><p>HTML is related to but different from <span id="xml"><i>XML</i></span>.</p>
+<span class="mdl-tooltip mdl-tooltip--large" for="xml">eXtensible Markup Language</span>
+</code></pre>
+<p>A target with a tooltip containing both an image and text.</p>
+<pre><code class="lang-html"><p>HTML is related to but different from <span id="xml"><i>XML</i></span>.</p>
+<span class="mdl-tooltip" for="xml">
+<img src="xml-logo-small.png" width="20" height="10"> eXtensible Markup Language</span>
+</code></pre>
+<h2 id="configuration-options">Configuration options</h2>
+<p>The MDL CSS classes apply various predefined visual enhancements to the tooltip. The table below lists the available classes and their effects.</p>
+<table>
+<thead>
+<tr>
+<th>MDL class</th>
+<th>Effect</th>
+<th>Remarks</th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td><code>mdl-tooltip</code></td>
+<td>Defines a container as an MDL tooltip</td>
+<td>Required on tooltip container element</td>
+</tr>
+<tr>
+<td><code>mdl-tooltip--large</code></td>
+<td>Applies large-font effect</td>
+<td>Optional; goes on tooltip container element</td>
+</tr>
+<tr>
+<td><code>mdl-tooltip--left</code></td>
+<td>Positions the tooltip to the left of the target</td>
+<td>Optional; goes on tooltip container element</td>
+</tr>
+<tr>
+<td><code>mdl-tooltip--right</code></td>
+<td>Positions the tooltip to the right of the target</td>
+<td>Optional; goes on tooltip container element</td>
+</tr>
+<tr>
+<td><code>mdl-tooltip--top</code></td>
+<td>Positions the tooltip to the top of the target</td>
+<td>Optional; goes on tooltip container element</td>
+</tr>
+<tr>
+<td><code>mdl-tooltip--bottom</code></td>
+<td>Positions the tooltip to the bottom of the target</td>
+<td>Optional; goes on tooltip container element</td>
+</tr>
+</tbody>
+</table>
+
+