-
Notifications
You must be signed in to change notification settings - Fork 819
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Carlos Leite
committed
Mar 16, 2018
1 parent
407445f
commit 960bfd9
Showing
2 changed files
with
67 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
<div class="input-group mb-3"> | ||
<div class="input-group-prepend"> | ||
<button class="btn btn-outline-secondary" type="button">Button</button> | ||
</div> | ||
<input type="text" class="form-control" placeholder="" aria-label="" aria-describedby="basic-addon1"> | ||
</div> | ||
|
||
<div class="input-group mb-3"> | ||
<input type="text" class="form-control" placeholder="Recipient's username" aria-label="Recipient's username" aria-describedby="basic-addon2"> | ||
<div class="input-group-append"> | ||
<button class="btn btn-outline-secondary" type="button">Button</button> | ||
</div> | ||
</div> | ||
|
||
<div class="input-group mb-3"> | ||
<div class="input-group-prepend"> | ||
<button class="btn btn-outline-secondary" type="button">Button</button> | ||
<button class="btn btn-outline-secondary" type="button">Button</button> | ||
</div> | ||
<input type="text" class="form-control" placeholder="" aria-label="" aria-describedby="basic-addon1"> | ||
</div> | ||
|
||
<div class="input-group"> | ||
<input type="text" class="form-control" placeholder="Recipient's username" aria-label="Recipient's username" aria-describedby="basic-addon2"> | ||
<div class="input-group-append"> | ||
<button class="btn btn-outline-secondary" type="button">Button</button> | ||
<button class="btn btn-outline-secondary" type="button">Button</button> | ||
</div> | ||
</div> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
|
||
<!-- | ||
just like on bootstrap samples | ||
https://getbootstrap.com/docs/4.0/components/input-group/#segmented-buttons | ||
--> | ||
<div class="input-group mb-3"> | ||
<div class="input-group-prepend"> | ||
<button type="button" class="btn btn-outline-secondary">Action</button> | ||
<button type="button" class="btn btn-outline-secondary dropdown-toggle dropdown-toggle-split" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false"> | ||
<span class="sr-only">Toggle Dropdown</span> | ||
</button> | ||
<div class="dropdown-menu"> | ||
<a class="dropdown-item" href="#">Action</a> | ||
<a class="dropdown-item" href="#">Another action</a> | ||
<a class="dropdown-item" href="#">Something else here</a> | ||
<div role="separator" class="dropdown-divider"></div> | ||
<a class="dropdown-item" href="#">Separated link</a> | ||
</div> | ||
</div> | ||
<input type="text" class="form-control" aria-label="Text input with segmented dropdown button"> | ||
</div> | ||
|
||
<div class="input-group"> | ||
<input type="text" class="form-control" aria-label="Text input with segmented dropdown button"> | ||
<div class="input-group-append"> | ||
<button type="button" class="btn btn-outline-secondary">Action</button> | ||
<button type="button" class="btn btn-outline-secondary dropdown-toggle dropdown-toggle-split" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false"> | ||
<span class="sr-only">Toggle Dropdown</span> | ||
</button> | ||
<div class="dropdown-menu"> | ||
<a class="dropdown-item" href="#">Action</a> | ||
<a class="dropdown-item" href="#">Another action</a> | ||
<a class="dropdown-item" href="#">Something else here</a> | ||
<div role="separator" class="dropdown-divider"></div> | ||
<a class="dropdown-item" href="#">Separated link</a> | ||
</div> | ||
</div> | ||
</div> |