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
 
@@ -101,34 +101,39 @@ margin-bottom: 2px;
 
#tabs li a
 
{
 
  -moz-border-radius-topright: 10px;
 
  border-top-right-radius: 10px;
 
  -moz-border-radius-topleft: 10px;
 
  border-top-left-radius: 10px;
 

	
 
  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: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);
 
}
 
#tabs {
 
  min-width: 400px;
 
  max-width: 650px;
 
  margin: auto;
 
}
 
#tabs li /* , .ui-corner-all, .ui-corner-top */ { background: none!important; }
 
#tabs li { border: none!important; }
0 comments (0 inline, 0 general)