From 0623706e4bfd7e17bf3650fcd5b6761f78795eb2 Mon Sep 17 00:00:00 2001 From: Camille Lafitte Date: Wed, 26 May 2010 19:48:23 +0000 Subject: [PATCH] donner des rondeurs pour opera et safari * Comme le montre http://border-radius.com/, il est possible d'avoir des bordures arrondies pour d'autres navigateurs supportant les CSS3 --- bureau/admin/styles/style.css | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/bureau/admin/styles/style.css b/bureau/admin/styles/style.css index a43677af..12faca56 100644 --- a/bureau/admin/styles/style.css +++ b/bureau/admin/styles/style.css @@ -201,7 +201,9 @@ img { margin-bottom: 20px; width: 1020px; border: 5px solid #1D6A9F; + -webkit-border-radius: 10px; -moz-border-radius: 10px; + border-radius: 10px; background-color: #F0F0FA; /* background: #F1F8FD url(/admin/images/bgborder.gif) repeat-y scroll top left; */ } @@ -247,7 +249,9 @@ img { border: 1px solid #1D6A9F; background-color: #C0DCF0; padding: 3px; + -webkit-border-radius: 4px; -moz-border-radius: 4px; + border-radius: 4px; } .menu-box .menu-content { @@ -306,7 +310,9 @@ img { background-color: white; border: 1px solid black; height: 8px; + -webkit-border-radius:4px; -moz-border-radius: 4px; + border-radius: 4px; } .barfill { @@ -426,4 +432,4 @@ input#dir, input#sub_local { #admlistbtn { padding-bottom: 6px; -} \ No newline at end of file +}