Browse Source

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

pull/676/merge
James Agnew 10 years ago committed by Justin Richer
parent
commit
d6cc626241
  1. 9
      openid-connect-server-webapp/src/main/webapp/resources/css/mitreid-connect.css

9
openid-connect-server-webapp/src/main/webapp/resources/css/mitreid-connect.css

@ -129,11 +129,18 @@ h1,label {
.input-prepend.input-block-level > input { .input-prepend.input-block-level > input {
box-sizing: border-box; /* use bootstrap mixin or include vendor variants */ box-sizing: border-box; /* use bootstrap mixin or include vendor variants */
-moz-box-sizing: border-box; /* for Firefox */ -moz-box-sizing: border-box; /* for Firefox */
display: table; /* table-cell is not working well in Chrome for small widths */
min-height: inherit; min-height: inherit;
width: 100%; 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 { .input-append.input-block-level > input {
border-right: 0; border-right: 0;
} }

Loading…
Cancel
Save