diff options
Diffstat (limited to '')
-rw-r--r-- | template/yoga/not-ie.css | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/template/yoga/not-ie.css b/template/yoga/not-ie.css index ede96708f..a66f305f6 100644 --- a/template/yoga/not-ie.css +++ b/template/yoga/not-ie.css @@ -5,6 +5,7 @@ #content UL.thumbnails SPAN.wrap2 {
-moz-border-radius: 4px; /* round corners with Geko */
+ -webkit-border-radius: 4px; /* Safari webkit project */
}
#content DIV#comments {
padding-left: 5px;
@@ -17,3 +18,7 @@ FORM#quickconnect LABEL { -moz-box-sizing: padding-box !important;
box-sizing: border-box; /* CSS3 */
}
+ul.tabsheet li {
+ -moz-border-radius: 6px 6px 0px 0px; /* round corners with CSS3 compliant browsers */
+ -webkit-border-radius: 6px 6px 0px 0px; /* Safari webkit project */
+}
|