<div class="btn-group" data-toggle="buttons">
<label class="btn btn-primary active">
<input type="checkbox" checked="checked"> Option 1
</label>
<label class="btn btn-primary active">
<input type="checkbox" checked="checked"> Option 2
</label>
<label class="btn btn-primary">
<input type="checkbox"> Option 3
</label>
</div>
@import "assets/components/common/ui/buttons/assets/buttons.less";
<head> section of your HTML document, before any JavaScript files: <link type="stylesheet/less" href="styles.less" />
NOTE All the styles from the CORE package also need to be imported in this file, before the component imports.
<div class="btn-group" data-toggle="buttons">
<label class="btn btn-primary active">
<input type="radio" name="options" id="option1" checked="checked">Left
</label>
<label class="btn btn-primary">
<input type="radio" name="options" id="option2">Middle
</label>
<label class="btn btn-primary">
<input type="radio" name="options" id="option3">Right
</label>
</div>
@import "assets/components/common/ui/buttons/assets/buttons.less";
<head> section of your HTML document, before any JavaScript files: <link type="stylesheet/less" href="styles.less" />
NOTE All the styles from the CORE package also need to be imported in this file, before the component imports.
<button type="button" class="btn btn-primary" data-toggle="button">Single Toggle</button>
@import "assets/components/common/ui/buttons/assets/buttons.less";
<head> section of your HTML document, before any JavaScript files: <link type="stylesheet/less" href="styles.less" />
NOTE All the styles from the CORE package also need to be imported in this file, before the component imports.