refactor(button): changed button attributes to classes

references #689
This commit is contained in:
Brandy Carney
2015-12-04 15:44:37 -05:00
parent 8148927c88
commit 90ad475836
11 changed files with 195 additions and 125 deletions

View File

@@ -11,28 +11,28 @@
</p>
<p>
<button primary>Primary</button>
<button primary class="activated">Primary.activated</button>
<button class="button-primary">Primary</button>
<button class="button-primary activated">Primary.activated</button>
</p>
<p>
<button secondary>Secondary</button>
<button secondary class="activated">Secondary.activated</button>
<button class="button-secondary">Secondary</button>
<button class="button-secondary activated">Secondary.activated</button>
</p>
<p>
<button danger>Danger</button>
<button danger class="activated">Danger.activated</button>
<button class="button-danger">Danger</button>
<button class="button-danger activated">Danger.activated</button>
</p>
<p>
<button light>Light</button>
<button light class="activated">Light.activated</button>
<button class="button-light">Light</button>
<button class="button-light activated">Light.activated</button>
</p>
<p>
<button dark>Dark</button>
<button dark class="activated">Dark.activated</button>
<button class="button-dark">Dark</button>
<button class="button-dark activated">Dark.activated</button>
</p>
</ion-content>