Add text-muted class

This commit is contained in:
Thomas Cazade 2017-11-02 15:05:06 +01:00
parent d1947ea764
commit b2a2e2e6cb
2 changed files with 6 additions and 1 deletions

View file

@ -699,13 +699,15 @@ function add(x, y) {
<p class="text-success">Text success</p>
<p class="text-warning">Text warning</p>
<p class="text-danger">Text danger</p>
<p class="text-muted">Text muted</p>
<div class="docs">
<pre>
&lt;p class=&quot;text-primary&quot;&gt;Text primary&lt;/p&gt;
&lt;p class=&quot;text-secondary&quot;&gt;Text secondary&lt;/p&gt;
&lt;p class=&quot;text-success&quot;&gt;Text success&lt;/p&gt;
&lt;p class=&quot;text-warning&quot;&gt;Text warning&lt;/p&gt;
&lt;p class=&quot;text-danger&quot;&gt;Text danger&lt;/p&gt; </pre>
&lt;p class=&quot;text-danger&quot;&gt;Text danger&lt;/p&gt;
&lt;p class="text-muted"&gt;Text muted&lt;/p&gt; </pre>
</div>
<h4>Backgrounds</h4>
<div class="row flex-center">

View file

@ -31,6 +31,9 @@
.text-danger {
color: @danger;
}
.text-muted {
color: @muted;
}
.background {
&-primary {
background-color: @primary-light;