remove ie fallback to mobile styling

it looks like @rschamp’s wodnerful `top` alignment fix for Chrome and Edge also helps here, from a test I did in IE11.
This commit is contained in:
Matthew Taylor 2016-07-28 15:46:56 -04:00
parent d97bc193df
commit 4909d509d2

View file

@ -189,55 +189,3 @@
}
}
}
/* IE10 and IE11 fallback */
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
.registration-step {
&.username-step,
&.demographics-step,
&.name-step,
&.phone-step,
&.organization-step,
&.address-step,
&.email-step {
.validation-message {
position: relative;
transform: none;
margin: inherit;
width: 100%;
height: inherit;
&:before {
display: none;
}
}
}
&.demographics-step {
.form-group {
&.has-error {
.gender-input {
transform: translateY(-3rem);
}
}
}
}
&.organization-step {
.checkbox-group {
.validation-message {
$arrow-border-width: 1rem;
position: absolute;
transform: translate(16rem, -16rem);
margin-left: $arrow-border-width;
min-height: 1rem;
max-height: 3rem;
&:before {
display: block;
}
}
}
}
}
}