fixed firefox outline bugs

This commit is contained in:
Tom Giannattasio
2012-08-22 16:09:09 -04:00
parent d2808981cb
commit 2c827c46f9
4 changed files with 30 additions and 5 deletions

View File

@@ -1,7 +1,7 @@
body {
min-width: 980px;
min-height: 100%;
background: url(../images/bg-texture.png) #ddd;
background: url(../images/bg-texture.png) #d6d6d6;
}
body, h1, h2, h3, h4, h5, h6, p, p a:link, p a:visited, a, label {

View File

@@ -32,15 +32,20 @@ nav.course-material {
font-size: 14px;
font-weight: bold;
text-decoration: none;
// text-shadow: 0 1px 0 rgba(0, 0, 0, .4);
&:hover {
color: #333;
background: rgba(255, 255, 255, .4);
background: rgba(255, 255, 255, .6);
}
&.active {
color: $blue;
background: rgba(255, 255, 255, .8);
// background: rgba(0, 0, 0, .2);
@include linear-gradient(top, rgba(0, 0, 0, .4), rgba(0, 0, 0, .25));
background-color: transparent;
@include box-shadow(0 1px 0 rgba(255, 255, 255, .5), 0 1px 1px rgba(0, 0, 0, .3) inset);
color: #fff;
text-shadow: 0 1px 0 rgba(0, 0, 0, .4);
}
}
}