Commit 5a1d180f by Ahsan Ulhaq

Merge pull request #7790 from edx/ahsan/AC-34-visually-hidden-contents-accessible-via-keyboard

Visually hidden content accessible through keyboard
parents dc308d4f 017916fa
......@@ -434,20 +434,18 @@ form {
// +Form - Create New Wrapper
// ====================
.wrapper-create-element {
height: 0;
opacity: 0.0;
pointer-events: none;
height: auto;
opacity: 1.0;
pointer-events: auto;
overflow: hidden;
display: none;
&.animate {
@include transition(opacity $tmg-f1 ease-in-out 0s, height $tmg-f1 ease-in-out 0s);
}
&.is-shown {
height: auto; // define a specific height for the animating version of this UI to work properly
margin-bottom: $baseline;
opacity: 1.0;
pointer-events: auto;
display: block;
}
}
......
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