Posted by e-anima on February 8, 2012 at 2:45pm
2 followers
Jump to:
| Project: | AdaptiveTheme |
| Version: | 7.x-2.1 |
| Component: | CSS/HTML |
| Category: | support request |
| Priority: | normal |
| Assigned: | Unassigned |
| Status: | closed (works as designed) |
Issue Summary
background is defined twice. is this some kind of trick or is it just an error?
#skip-link a,
#skip-link a:link,
#skip-link a:visited {
background: #444;
background: rgba(0, 0, 0, 0.6);
color: #fff;
display: block;
line-height: 2;
padding: 0;
text-align: center;
text-decoration: none;
-khtml-border-radius: 0 0 10px 10px;
-moz-border-radius: 0 0 10px 10px;
-webkit-border-top-left-radius: 0;
-webkit-border-top-right-radius: 0;
-webkit-border-bottom-left-radius: 10px;
-webkit-border-bottom-right-radius: 10px;
border-radius: 0 0 10px 10px;
}
Comments
#1
Its a trick. IE and some other crappy old browsers do not support RGBa.
#2
maybe some small inline comment?