Changeset - 262654f858ac
[Not reviewed]
default
0 1 0
Nathan Brink (binki) - 15 years ago 2010-10-27 21:31:18
ohnobinki@ohnopublishing.net
Provide the remaining rgb() CSS2 backwards-compatibility rules (mostly for IE).
1 file changed with 11 insertions and 6 deletions:
0 comments (0 inline, 0 general)
styles/output.css
Show inline comments
 
@@ -110,17 +110,22 @@ margin-bottom: 2px;
 
  background: rgba(0,35,0,0.9);
 
  padding: 2px;
 
}
 
#tabs li a:link {
 
        color: rgba(255,255,255,1);
 
#tabs li a:link
 
{
 
  color: rgb(255,255,255);
 
  color: rgba(255,255,255,1);
 
}
 
#tabs li a:visited {
 
        color: rgba(255,255,255,1);
 
#tabs li a:visited
 
{
 
  color: rgb(255,255,255);
 
  color: rgba(255,255,255,1);
 
}
 
#tabs li a:hover, .ui-tabs-selected a
 
{
 
  background: rgb(200,200,200) !important; /* fallback */
 
        background: rgba(200,200,200,1)!important;
 
        color: rgb(0,0,0)!important;
 
  background: rgba(200,200,200,1)!important;
 

	
 
  color: rgb(0,0,0)!important;
 
}
 
#tabs li a:active {
 
        color: rgba(200,200,200,1);
0 comments (0 inline, 0 general)