This commit is contained in:
Dave Cranwell 2014-02-11 17:23:56 +00:00
parent 98daeb6a21
commit 3bd7fd1940
2 changed files with 8 additions and 1 deletions

View file

@ -850,7 +850,7 @@ footer, .logo{
}
}
.explorer {
z-index:@explorer-z-index;
z-index:$explorer-z-index;
}
.nav-wrapper{
z-index:auto; /* allows overspill of messages banner onto left menu, but also explorer to spill over main content */

View file

@ -80,6 +80,9 @@
width: auto;
}
}
.visuallyhidden{
@include visuallyhidden;
}
@mixin visuallyvisible{
clip:none;
@ -88,4 +91,8 @@
margin:auto;
overflow:visible;
position:initial;
}
.visuallyvisible{
@include visuallyvisible;
}