update the rounded corners for CSS3 to be generic for all corners, instead of specifying each corner. format some of the stanzas so spacing matches everything else.
Andrew Lewman

Andrew Lewman commited on 2009-06-10 20:02:01
Zeige 1 geänderte Dateien mit 12 Einfügungen und 24 Löschungen.

... ...
@@ -78,10 +78,8 @@ div.bottom {
78 78
 /* the sidebars */
79 79
 
80 80
 div.sidebar {
81
-	-moz-border-radius-bottomleft:5px;
82
-	-moz-border-radius-bottomright:5px;
83
-	-moz-border-radius-topleft:5px;
84
-	-moz-border-radius-topright:5px;
81
+	-moz-border-radius: 5px;
82
+	-webkit-border-radius: 5px;
85 83
   background-color: #e5e5e5;
86 84
   float: right;
87 85
   margin: 0 0 10px 10px;
... ...
@@ -92,10 +90,8 @@ div.sidebar {
92 90
 }
93 91
 
94 92
 div.sidebar-left {
95
-	-moz-border-radius-bottomleft:5px;
96
-	-moz-border-radius-bottomright:5px;
97
-	-moz-border-radius-topleft:5px;
98
-	-moz-border-radius-topright:5px;
93
+	-moz-border-radius: 5px;
94
+	-webkit-border-radius: 5px;
99 95
   background-color: #e5e5e5;
100 96
   float: right;
101 97
   margin: 0 0 5px 5px;
... ...
@@ -259,10 +255,8 @@ td.banner-right {
259 255
 }
260 256
 
261 257
 .donatebutton a {
262
-	-moz-border-radius-bottomleft:5px;
263
-	-moz-border-radius-bottomright:5px;
264
-	-moz-border-radius-topleft:5px;
265
-	-moz-border-radius-topright:5px;
258
+	-moz-border-radius: 5px;
259
+	-webkit-border-radius: 5px;
266 260
 	margin: 10px 0 0 0;
267 261
 	font-weight: bold;
268 262
 	display: block;
... ...
@@ -289,10 +283,8 @@ td.banner-right {
289 283
 }
290 284
 
291 285
 .downloadbutton a {
292
-	-moz-border-radius-bottomleft:5px;
293
-	-moz-border-radius-bottomright:5px;
294
-	-moz-border-radius-topleft:5px;
295
-	-moz-border-radius-topright:5px;
286
+	-moz-border-radius: 5px;
287
+	-webkit-border-radius: 5px;
296 288
 	margin: 10px 0 0 0;
297 289
 	font-weight: bold;
298 290
 	display: block;
... ...
@@ -419,10 +411,8 @@ dt {
419 411
 }
420 412
 
421 413
 .nb {
422
-	-moz-border-radius-bottomleft:5px;
423
-	-moz-border-radius-bottomright:5px;
424
-	-moz-border-radius-topleft:5px;
425
-	-moz-border-radius-topright:5px;
414
+	-moz-border-radius: 5px;
415
+	-webkit-border-radius: 5px;
426 416
 	background-color:#EEEEFF;
427 417
 	border:1px solid #000000;
428 418
 	color:black;
... ...
@@ -434,10 +424,8 @@ dt {
434 424
 }
435 425
 
436 426
 .warning {
437
-	-moz-border-radius-bottomleft:5px;
438
-	-moz-border-radius-bottomright:5px;
439
-	-moz-border-radius-topleft:5px;
440
-	-moz-border-radius-topright:5px;
427
+	-moz-border-radius: 5px;
428
+	-webkit-border-radius: 5px;
441 429
 	background-color:#FFFFFF;
442 430
 	background-image:url(/images/distros/warning.png);
443 431
 	background-position:15px center;
444 432