mirror of
https://github.com/akveo/ngx-admin.git
synced 2025-12-17 16:00:14 +01:00
fix(form): fix dropdown and checkbox templates
This commit is contained in:
parent
b58b8f9345
commit
2f3684b3fc
1 changed files with 21 additions and 9 deletions
|
|
@ -74,13 +74,13 @@
|
||||||
<button type="button" class="btn btn-success dropdown-toggle" ngbDropdownToggle>
|
<button type="button" class="btn btn-success dropdown-toggle" ngbDropdownToggle>
|
||||||
Action
|
Action
|
||||||
</button>
|
</button>
|
||||||
<div class="dropdown-menu">
|
<ul class="dropdown-menu">
|
||||||
<a class="dropdown-item" href="#">Action</a>
|
<li class="dropdown-item">Action</li>
|
||||||
<a class="dropdown-item" href="#">Another action</a>
|
<li class="dropdown-item">Another action</li>
|
||||||
<a class="dropdown-item" href="#">Something else here</a>
|
<li class="dropdown-item">Something else here</li>
|
||||||
<div role="separator" class="dropdown-divider"></div>
|
<div role="separator" class="dropdown-divider"></div>
|
||||||
<a class="dropdown-item" href="#">Separated link</a>
|
<li class="dropdown-item">Separated link</li>
|
||||||
</div>
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
<input type="text" class="form-control">
|
<input type="text" class="form-control">
|
||||||
</div>
|
</div>
|
||||||
|
|
@ -160,9 +160,21 @@
|
||||||
<nga-card-body>
|
<nga-card-body>
|
||||||
<div class="demo-checkboxes-radio">
|
<div class="demo-checkboxes-radio">
|
||||||
<div class="demo-checkboxes">
|
<div class="demo-checkboxes">
|
||||||
<nga-checkbox>Checkbox 1</nga-checkbox>
|
<label class="custom-control custom-checkbox">
|
||||||
<nga-checkbox>Checkbox 2</nga-checkbox>
|
<input type="checkbox" class="custom-control-input">
|
||||||
<nga-checkbox>Checkbox 3</nga-checkbox>
|
<span class="custom-control-indicator"></span>
|
||||||
|
<span class="custom-control-description">Checkbox 1</span>
|
||||||
|
</label>
|
||||||
|
<label class="custom-control custom-checkbox">
|
||||||
|
<input type="checkbox" class="custom-control-input">
|
||||||
|
<span class="custom-control-indicator"></span>
|
||||||
|
<span class="custom-control-description">Checkbox 1</span>
|
||||||
|
</label>
|
||||||
|
<label class="custom-control custom-checkbox">
|
||||||
|
<input type="checkbox" class="custom-control-input">
|
||||||
|
<span class="custom-control-indicator"></span>
|
||||||
|
<span class="custom-control-description">Checkbox 1</span>
|
||||||
|
</label>
|
||||||
</div>
|
</div>
|
||||||
<div class="demo-radio">
|
<div class="demo-radio">
|
||||||
<label class="custom-control custom-radio">
|
<label class="custom-control custom-radio">
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue