rebuild docs

This commit is contained in:
atomiks
2018-02-28 05:32:23 +10:00
parent d4d417a690
commit 468a67c12c
3 changed files with 20 additions and 8 deletions

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View File

@ -758,6 +758,10 @@ var y = e.pageY - btn.offsetTop - btn.offsetParent.offsetTop
background-repeat: repeat-x;
background-size: 1px 1px;
}
.pretty-text-underline::-moz-selection {
background-color: rgba(0, 150, 255, 0.3);
text-shadow: none;
}
.pretty-text-underline::selection {
background-color: rgba(0, 150, 255, 0.3);
text-shadow: none;
@ -777,6 +781,10 @@ var y = e.pageY - btn.offsetTop - btn.offsetParent.offsetTop
background-repeat: repeat-x;
background-size: 1px 1px;
}
.snippet-demo__pretty-text-underline::-moz-selection {
background-color: rgba(0, 150, 255, 0.3);
text-shadow: none;
}
.snippet-demo__pretty-text-underline::selection {
background-color: rgba(0, 150, 255, 0.3);
text-shadow: none;
@ -797,7 +805,7 @@ var y = e.pageY - btn.offsetTop - btn.offsetParent.offsetTop
94.8%
</div>
</div>
<p><span class="snippet__support-note">✅ No caveats.</span></p>
<p><span class="snippet__support-note">⚠️ Firefox requires a vendor prefix for the selection pseudo-selector to work.</span></p>
<ul>
<li>
<a href="https://caniuse.com/#feat=css-textshadow" target="_blank">https://caniuse.com/#feat=css-textshadow</a>
@ -983,7 +991,7 @@ var y = e.pageY - btn.offsetTop - btn.offsetParent.offsetTop
</div>
<div class="snippet">
<h3 id="truncate-text">Truncate text</h3>
<p>If the text is longer than one line, it will be truncated and end with an ellipsis <code>...</code>.</p>
<p>If the text is longer than one line, it will be truncated and end with an ellipsis <code></code>.</p>
<h4 data-type="HTML">HTML</h4><pre><code class="lang-html">&lt;p class="truncate-text"&gt;If I exceed one line's width, I will be truncated.&lt;/p&gt;
</code></pre>
<h4 data-type="CSS">CSS</h4><pre><code class="lang-css">.truncate-text {