Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
S
scratch-www
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Analytics
Analytics
Repository
Value Stream
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Commits
Open sidebar
xpstem
scratch-www
Commits
6a58c7b2
Commit
6a58c7b2
authored
Jul 21, 2016
by
Connor Hudson
Committed by
GitHub
Jul 21, 2016
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #731 from technoboy10/ie-validation-fallback
Fix GH-699: Fallback to mobile validation bubble on IE
parents
83dc5b0b
3bbc17bb
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
34 additions
and
2 deletions
+34
-2
src/components/forms/input.scss
src/components/forms/input.scss
+5
-0
src/components/registration/steps.scss
src/components/registration/steps.scss
+29
-2
No files found.
src/components/forms/input.scss
View file @
6a58c7b2
...
...
@@ -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
;
}
}
src/components/registration/steps.scss
View file @
6a58c7b2
...
...
@@ -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
;
}
}
}
}
}
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment