Reputation: 4087
In Ionic 1.2.4 i have added a button bar but the button doesn't have any border (instead in the official documentation they have a border).
I have:
<div class="button-bar bar-stable">
<a class="button">First</a>
<a class="button">Second</a>
<a class="button">Third</a>
</div>
I've seen that in the css:
.bar-stable .button {
border-color: transparent;
background-color: #f8f8f8;
color: #444; }
Why the Ionic Team has make the
border-color: transparent ?
In the Ionic Creator i see the following css code:
.bar-stable .button {
border-color: #b2b2b2;
background-color: #f8f8f8;
color: #444; }
but it use a css version 1.1.1
Upvotes: 2
Views: 1612
Reputation: 447
I used inline styling (bad practice I know) as a workaround to this problem to apply a border to an individual button without having to interfere with the button class. Like so:
<button style="border-right: 2px solid #15AB3F;" class="button button-block button-balanced"></button>
Upvotes: 0
Reputation: 465
Unfortunately in ionic 1.2.0 the border of buttons was removed and there seems to be no general solution.
Look here Defaulting all button borders to transparent #4861
I'm currently fighting the same issue.
Upvotes: 2