Commit e90d69c2 authored by Mark Otto's avatar Mark Otto
Browse files

Merge pull request #15956 from twbs/input-group-sizes-glyphicon

Input group sizes: Properly position `.form-control-feedback`
parents e260661a fd35779f
Showing with 4 additions and 2 deletions
+4 -2
...@@ -400,12 +400,14 @@ input[type="checkbox"] { ...@@ -400,12 +400,14 @@ input[type="checkbox"] {
text-align: center; text-align: center;
pointer-events: none; pointer-events: none;
} }
.input-lg + .form-control-feedback { .input-lg + .form-control-feedback,
.input-group-lg + .form-control-feedback {
width: @input-height-large; width: @input-height-large;
height: @input-height-large; height: @input-height-large;
line-height: @input-height-large; line-height: @input-height-large;
} }
.input-sm + .form-control-feedback { .input-sm + .form-control-feedback,
.input-group-sm + .form-control-feedback {
width: @input-height-small; width: @input-height-small;
height: @input-height-small; height: @input-height-small;
line-height: @input-height-small; line-height: @input-height-small;
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment