Line 1:
Line 1:
β
/* make a few corners round, only supported by moz/firefox/other gecko browsers for now */
β
#p-cactions ul li, #p-cactions ul li a {
β
-moz-border-radius-topleft: 1em;
β
-moz-border-radius-topright: 1em;
β
}
β
#content {
β
-moz-border-radius-topleft: 1em;
β
-moz-border-radius-bottomleft: 1em;
β
}
β
div.pBody {
β
-moz-border-radius-topright: 1em;
β
-moz-border-radius-bottomright: 1em;
β
}
β
/* same following the css3 draft specs, any browsers supporting this? */
β
#p-cactions ul li, #p-cactions ul li a {
β
border-radius-topleft: 1em;
β
border-radius-topright: 1em;
β
}
β
#content {
β
border-radius-topleft: 1em;
β
border-radius-bottomleft: 1em;
β
}
β
div.pBody {
β
border-radius-topright: 1em;
β
border-radius-bottomright: 1em;
β
}