Commit 6a58c7b2 authored by Connor Hudson's avatar Connor Hudson Committed by GitHub

Merge pull request #731 from technoboy10/ie-validation-fallback

Fix GH-699: Fallback to mobile validation bubble on IE
parents 83dc5b0b 3bbc17bb
......@@ -35,4 +35,9 @@ $pass-bg: lighten($ui-aqua, 35%);
border: 1px solid $active-dark-gray;
background-color: $pass-bg;
}
/* IE10/11-specific style resets */
&::-ms-reveal, &::-ms-clear {
display: none;
}
}
......@@ -10,7 +10,7 @@
display: block;
margin: 0 auto 1rem auto;
border: 2px solid $ui-white;
border-radius: 8px;
border-radius: 8px;
}
.gender-input,
......@@ -201,7 +201,9 @@
&.username-step,
&.demographics-step,
&.name-step {
&.name-step,
&.address-step,
&.email-step {
.help-block {
transform: none;
}
......@@ -225,3 +227,28 @@
}
}
}
/* 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 {
.help-block {
position: relative;
transform: none;
margin: inherit;
width: 100%;
height: inherit;
&:before {
display: none;
}
}
}
}
}
Markdown is supported
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