Improvement of my new skin : use 'flags' instread of color blocks
authorx2003bruneau <x2003bruneau@839d8a87-29fc-0310-9880-83ba4fa771e5>
Wed, 9 Aug 2006 22:15:40 +0000 (22:15 +0000)
committerx2003bruneau <x2003bruneau@839d8a87-29fc-0310-9880-83ba4fa771e5>
Wed, 9 Aug 2006 22:15:40 +0000 (22:15 +0000)
git-svn-id: svn+ssh://murphy/home/svn/platal/trunk@793 839d8a87-29fc-0310-9880-83ba4fa771e5

htdocs/css/keynote.css
htdocs/images/icons/flag_green.gif [new file with mode: 0644]
htdocs/images/icons/flag_red.gif [new file with mode: 0644]

index c3dcbb0..9a04786 100644 (file)
@@ -25,7 +25,9 @@
 
 body {
     font-family: "Arial", sans-serif;
+    font-size: 90%;
     background: url('../images/skins/keynote_bg.png') top left repeat-x;
+    
     background-attachment: fixed;
     background-color: #525168;
     color: #fff;
@@ -223,30 +225,27 @@ div.contact div.long {
         [ onglets des profils ]
 *******************************************************************************/
   
-table.flags {
-    margin: 1em 0em 0em 0em;
+table.flags, tr.flags {
+    margin: 0;
 }
 table.flags input { margin: 0px 2px; padding: 0px; }
 
 table.flags td.texte, tr.flags td.texte {
     font-size: smaller;
     font-weight: bold;
-    padding: 3px;
+    padding: 0 8px 0 0;
 }
 table.flags td.vert, tr.flags td.vert {
-    background: green;
-    padding: 3px;
-    text-align: center;
+    background: url('../images/icons/flag_green.gif') top right no-repeat;
+    padding: 0 16px 0 0;
 }
-table.flags td.orange, tr.flags td.orange {
-    background: #ff9900;
-    padding: 3px;
-    text-align: center;
+table.flags td.orange, tr.flags td.orange { 
+    background: url('../images/icons/flag_orange.gif') top right no-repeat;
+    padding: 0 16px 0 0;
 }
 table.flags td.rouge, tr.flags td.rouge {
-    background: red;
-    padding: 3px;
-    text-align: center;
+    background: url('../images/icons/flag_red.gif') top right no-repeat;
+    padding: 0 16px 0 0;
 }
 
 table.cadre_a_onglet{
diff --git a/htdocs/images/icons/flag_green.gif b/htdocs/images/icons/flag_green.gif
new file mode 100644 (file)
index 0000000..f6e21e0
Binary files /dev/null and b/htdocs/images/icons/flag_green.gif differ
diff --git a/htdocs/images/icons/flag_red.gif b/htdocs/images/icons/flag_red.gif
new file mode 100644 (file)
index 0000000..f1de9db
Binary files /dev/null and b/htdocs/images/icons/flag_red.gif differ