Skip to content
This repository was archived by the owner on Aug 20, 2025. It is now read-only.
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,6 @@
<input type="text" class="form-control" [(ngModel)]="value">
<div class="input-group-btn-vertical">
<button class="btn btn-default" type="button" (click)="value=value+1" [disabled]="value >= max"><i class="fa fa-caret-up"></i></button>
<button class="btn btn-default ml-1" type="button" (click)="value=value-1" [disabled]="value <= min"><i class="fa fa-caret-down"></i></button>
<button class="btn btn-default" type="button" (click)="value=value-1" [disabled]="value <= min"><i class="fa fa-caret-down"></i></button>
</div>
</div>
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,13 @@
margin-left: -1px;
position: relative;
border-radius: 0;
border-left: solid 1px #4d4d4d;
}

.input-group-btn-vertical > .btn,
.input-group-btn-vertical > .btn:focus,
.input-group-btn-vertical > .btn:active {
box-shadow: none;
}

.input-group-btn-vertical > .btn:first-child
Expand All @@ -43,8 +50,8 @@

.input-group-btn-vertical > .btn:last-child
{
margin-top: -1px;
border-bottom-right-radius: 0.25em;
border-top: none;
}

.input-group-btn-vertical i
Expand Down