Changeset - 158ed4f88533
[Not reviewed]
default
0 1 0
Nathan Brink (binki) - 15 years ago 2010-10-27 20:17:46
ohnobinki@ohnopublishing.net
Fix active tab coloration for CSS2 backwards-compatibility.
1 file changed with 3 insertions and 1 deletions:
0 comments (0 inline, 0 general)
styles/output.css
Show inline comments
 
@@ -107,25 +107,27 @@ margin-bottom: 2px;
 

	
 
  text-decoration: none;
 
  background: rgb(0,35,0); /* Fallback */
 
  background: rgba(0,35,0,0.9);
 
  padding: 2px;
 
}
 
#tabs li a:link {
 
        color: rgba(255,255,255,1);
 
}
 
#tabs li a:visited {
 
        color: rgba(255,255,255,1);
 
}
 
#tabs li a:hover, .ui-tabs-selected a  {
 
#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;
 
}
 
#tabs li a:active {
 
        color: rgba(200,200,200,1);
 
}
 
#tabs {
 
  min-width: 400px;
 
  max-width: 650px;
 
  margin: auto;
 
}
 
#tabs li /* , .ui-corner-all, .ui-corner-top */ { background: none!important; }
0 comments (0 inline, 0 general)