1
0
mirror of https://github.com/twbs/bootstrap.git synced 2025-08-20 12:21:35 +02:00

Fixes #15536, #15559: Add .form-group sizing support to .form-control-static

This commit is contained in:
Mark Otto
2015-01-15 16:03:13 -08:00
parent ec2ccf4219
commit dbffb0b47f
4 changed files with 26 additions and 2 deletions

View File

@@ -2706,6 +2706,12 @@ textarea.form-group-sm .form-control,
select[multiple].form-group-sm .form-control {
height: auto;
}
.form-group-sm .form-control-static {
height: 30px;
padding: 5px 10px;
font-size: 12px;
line-height: 1.5;
}
.input-lg {
height: 46px;
padding: 10px 16px;
@@ -2736,6 +2742,12 @@ textarea.form-group-lg .form-control,
select[multiple].form-group-lg .form-control {
height: auto;
}
.form-group-lg .form-control-static {
height: 46px;
padding: 10px 16px;
font-size: 18px;
line-height: 1.33;
}
.has-feedback {
position: relative;
}

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long