Remove primary from variation examples

This commit is contained in:
Cory LaViska
2017-08-14 00:47:42 -04:00
parent 96d83d20d0
commit 94f3b6c4c7
4 changed files with 2 additions and 22 deletions

View File

@@ -99,8 +99,7 @@
<h3 id="variations">Variations</h3>
<p>Use the <code>button-*</code> modifier to create variations.</p>
<pre><code class="lang-html">&lt;button type=&quot;button&quot;&gt;Primary&lt;/button&gt;
&lt;button type=&quot;button&quot; class=&quot;button-secondary&quot;&gt;Secondary&lt;/button&gt;
<pre><code class="lang-html">&lt;button type=&quot;button&quot; class=&quot;button-secondary&quot;&gt;Secondary&lt;/button&gt;
&lt;button type=&quot;button&quot; class=&quot;button-success&quot;&gt;Success&lt;/button&gt;
&lt;button type=&quot;button&quot; class=&quot;button-info&quot;&gt;Info&lt;/button&gt;
&lt;button type=&quot;button&quot; class=&quot;button-warning&quot;&gt;Warning&lt;/button&gt;
@@ -109,7 +108,6 @@
&lt;button type=&quot;button&quot; class=&quot;button-dark&quot;&gt;Dark&lt;/button&gt;
</code></pre>
<div class="input-single">
<button type="button">Primary</button>
<button type="button" class="button-secondary">Secondary</button>
<button type="button" class="button-success">Success</button>
<button type="button" class="button-info">Info</button>

View File

@@ -86,11 +86,7 @@
<h3 id="variations">Variations</h3>
<p>Use the <code>progress-*</code> modifier to create variations.</p>
<pre><code class="lang-html">&lt;div class=&quot;progress&quot;&gt;
&lt;div class=&quot;progress-bar width-50&quot;&gt;50%&lt;/div&gt;
&lt;/div&gt;
&lt;div class=&quot;progress progress-secondary&quot;&gt;
<pre><code class="lang-html">&lt;div class=&quot;progress progress-secondary&quot;&gt;
&lt;div class=&quot;progress-bar width-50&quot;&gt;50%&lt;/div&gt;
&lt;/div&gt;
@@ -118,10 +114,6 @@
&lt;div class=&quot;progress-bar width-50&quot;&gt;50%&lt;/div&gt;
&lt;/div&gt;
</code></pre>
<div class="progress">
<div class="progress-bar width-50">50%</div>
</div>
<div class="progress progress-secondary">
<div class="progress-bar width-50">50%</div>
</div>

View File

@@ -75,7 +75,6 @@ You can force buttons to have an active state by applying the `active` class.
Use the `button-*` modifier to create variations.
```html
<button type="button">Primary</button>
<button type="button" class="button-secondary">Secondary</button>
<button type="button" class="button-success">Success</button>
<button type="button" class="button-info">Info</button>
@@ -86,7 +85,6 @@ Use the `button-*` modifier to create variations.
```
<div class="input-single">
<button type="button">Primary</button>
<button type="button" class="button-secondary">Secondary</button>
<button type="button" class="button-success">Success</button>
<button type="button" class="button-info">Info</button>

View File

@@ -55,10 +55,6 @@ When progress cant be determined, use the `progress-indeterminate` modifier t
Use the `progress-*` modifier to create variations.
```html
<div class="progress">
<div class="progress-bar width-50">50%</div>
</div>
<div class="progress progress-secondary">
<div class="progress-bar width-50">50%</div>
</div>
@@ -88,10 +84,6 @@ Use the `progress-*` modifier to create variations.
</div>
```
<div class="progress">
<div class="progress-bar width-50">50%</div>
</div>
<div class="progress progress-secondary">
<div class="progress-bar width-50">50%</div>
</div>