Fix IE8/9 issue where form elements don't display

pull/676/merge
James Agnew 2014-09-15 14:32:34 -04:00 committed by Justin Richer
parent 1a79949d51
commit d6cc626241
1 changed files with 8 additions and 1 deletions

View File

@ -129,11 +129,18 @@ h1,label {
.input-prepend.input-block-level > input {
box-sizing: border-box; /* use bootstrap mixin or include vendor variants */
-moz-box-sizing: border-box; /* for Firefox */
display: table; /* table-cell is not working well in Chrome for small widths */
min-height: inherit;
width: 100%;
}
/* This block applies to Chrome only */
@media screen and (-webkit-min-device-pixel-ratio:0) {
.input-append.input-block-level > input,
.input-prepend.input-block-level > input {
display: table; /* table-cell is not working well in Chrome for small widths */
}
} }
.input-append.input-block-level > input {
border-right: 0;
}