Button grouping in Lists
shawnthompson opened this issue · 3 comments
shawnthompson commented
kodz1 commented
The Bootstrap CSS doesn't support it. You can to create a bootstrap override for it.
I believe you mean:
<ul class="btn-group list-inline" role="group" aria-label="Basic example">
<li><button type="button" class="btn btn-default">Left</button></li>
<li><button type="button" class="btn btn-default">Middle</button></li>
<li><button type="button" class="btn btn-default">Right</button></li>
</ul>
shawnthompson commented
That's exactly what I mean! I'm not sure why you have the aria-label
in there or the role
.
kodz1 commented
Just the testing application I used added them. As I said before bootstrap css doesn't support it. You need to open a PR in https://github.com/wet-boew/wet-boew too add the feature.