Skip to content
Merged
Changes from 1 commit
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
12 changes: 7 additions & 5 deletions scss/_input-group.scss
Original file line number Diff line number Diff line change
Expand Up @@ -21,18 +21,20 @@
width: 1%;
margin-bottom: 0;

// Bring the "active" form control to the top of surrounding elements
&:focus {
z-index: 3;
}

+ .form-control,
+ .custom-select,
+ .custom-file {
margin-left: -$input-border-width;
}
}

// Bring the "active" form control to the top of surrounding elements
> .form-control:focus,
> .custom-select:focus,
> .custom-file .custom-file-input:focus ~ .custom-file-label {
z-index: 3;
}

> .form-control,
> .custom-select {
&:not(:last-child) { @include border-right-radius(0); }
Expand Down