aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorgweltas <gweltas@piwigo.org>2004-01-29 00:54:28 +0000
committergweltas <gweltas@piwigo.org>2004-01-29 00:54:28 +0000
commit68f92bbd0551df974bcc9d7f5157663e7c4fe949 (patch)
tree4355a01428b9f0990d4879331949d82ddc9c8d5b
parent3a07d869d0a38cdefe977ebbe5240e10759f8ec2 (diff)
BUG_0003 in admin section
git-svn-id: http://piwigo.org/svn/branches/release-1_3@324 68402e56-0260-453c-a942-63ccdbb3a9ee
-rw-r--r--template/default/admin/admin.vtp137
-rw-r--r--template/default/admin/comments.vtp2
-rw-r--r--template/default/admin/stats.vtp43
-rw-r--r--template/default/default.css56
4 files changed, 84 insertions, 154 deletions
diff --git a/template/default/admin/admin.vtp b/template/default/admin/admin.vtp
index 2729d9cdc..fa50cd5c0 100644
--- a/template/default/admin/admin.vtp
+++ b/template/default/admin/admin.vtp
@@ -1,42 +1,32 @@
-<html>
- <head>
+<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
+<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="fr" lang="fr">
+<head>
+<meta http-equiv="Content-Type" content="text/html; charset={#charset}" />
+<meta http-equiv="Content-Style-Type" content="text/css" />
<title>{#title_default}</title>
+ <link rel="stylesheet" href="../template/default/default.css" type="text/css" />
<style>
a {
- text-decoration:none;
color:#006699;
}
a:hover {
- text-decoration:underline;
+ color:#006699;
}
- body,table,input,form,select,textarea {
+ body,font,table,input,form,select,textarea {
font-family:arial,verdana,sans-serif;
font-size:12px;
+ color:#000000;
+ text-align:left;
}
- .miniature {
- border:solid 1px black;
- }
+table
+{
+ border-collapse:separate;
+}
body {
background-color:#E5E5E5;
+ margin:5px;
}
- .titretable1 {
- color:black;
- background-color:#D3DCE3;
- text-align:center;
- border:2px solid #006699;
- font-weight:bold;
- border-bottom:0px;
- }
- .grostitre {
- text-align:center;
- margin:10px 50px 10px 50px;
- font-size:20px;
- width:300px;
- }
- .plan {
- margin:10px 10px 10px 2px;
- white-space:nowrap;
- }
+
.table1 {
border-collapse:collapse;
background-color:#FFFFFF;
@@ -49,8 +39,12 @@
margin-top:20px;
}
th {
- font-weight:bold;
- background-color:#D3DCE3;
+ font-weight:bold;
+ background-color:#D3DCE3;
+ margin-bottom:10px;
+ }
+ td {
+ padding:3px;
}
td.row1 {
background-color:#E6E4E4;
@@ -68,38 +62,6 @@
td.row4 {
background-color:#cccccc;
}
- .cat_plan {
- font-weight:bold;
- }
- .retrait {
- margin:10px;
- margin-left:30px;
- margin-top:2px;
- }
- input,textarea {
- border-width:1;
- border-color:#000000;
- background:#ffffff;
- color: #000000;
- }
- .erreur {
- color:red;
- text-align:center;
- }
- .errors {
- text-align:left;
- margin:25px;
- background-color:#ffe1e1;
- border:1px solid red;
- color:black;
- }
- .errors_title {
- margin:5px;
- font-weight:bold;
- font-size:120%;
- text-align:center;
- color:red;
- }
.info {
color:darkblue;
text-align:center;
@@ -116,48 +78,15 @@
margin:20px;
font-weight:bold;
}
-<!-- comments CSS style -->
- .commentsAuthor,.commentsTitle,.commentsInfos,.commentsContent,.commentsNavigationBar {
- color:black;
- font-family:arial,sans-Serif;
- font-size:12px;
- }
- .commentsTitle,.commentsAuthor {
- text-align:center;
- font-weight:bold;
- }
- .commentsInfos {
- text-align:right;
- margin:3px 3px 3px 10px;
- font-size:11px;
- }
- .commentsContent {
- margin:10px;
- }
- .commentsTitle {
- margin-top:15px;
- }
- .commentsAuthor {
- margin:5px;
- }
- .commentsNavigationBar {
- margin:10px;
- }
- .tableComment {
- width:100%;
- border:2px solid #006699;
- margin:10px;
- }
- .cellAuthor {
- border-right:1px solid #006699;
- width:100px;
- }
- .cellInfo {
- border-bottom:1px solid #006699;
- }
- .imgLink {
- border:1px solid black;
- }
+
+ .tableComment,.cellAuthor,.cellInfo {
+ color:#000000;
+ border-color:#006699;
+ }
+ .commentsAuthor,.commentsTitle,.commentsInfos,.commentsContent
+ {
+ color:#000000;
+ }
</style>
<script language="javascript">
function SelectAll( formulaire )
@@ -188,7 +117,7 @@
}
}
</script>
- <meta http-equiv="Content-Type" content="text/html; charset={#charset}">
+
</head>
<body>
<!--VTP_install_warning--><div class="install_warning">{#install_warning}</div><!--/VTP_install_warning-->
@@ -203,7 +132,7 @@
<td class="contenucellule">
<div class="plan">
<!--VTP_summary-->
- {#indent}<img src="../template/{#user_template}/admin/images/puce.gif" alt="&gt; "><a href="{#link}" class="cat_plan">{#name}</a><br />
+ {#indent}<img src="../template/{#user_template}/admin/images/puce.gif" alt=""><a href="{#link}" class="cat_plan">{#name}</a><br />
<!--/VTP_summary-->
</div>
</td>
diff --git a/template/default/admin/comments.vtp b/template/default/admin/comments.vtp
index be9814511..cb249da28 100644
--- a/template/default/admin/comments.vtp
+++ b/template/default/admin/comments.vtp
@@ -24,7 +24,7 @@
<form action="{#action}" method="post">
<!--/VTP_start_form-->
<!--VTP_picture-->
-<div style="border:2px solid #D3DCE3;margin:2px;">
+<div style="border:2px solid #D3DCE3;margin:3px;">
<table style="width:100%;">
<tr>
<td valign="top" width="1px">
diff --git a/template/default/admin/stats.vtp b/template/default/admin/stats.vtp
index 74b3ef69c..3b2b5b2e2 100644
--- a/template/default/admin/stats.vtp
+++ b/template/default/admin/stats.vtp
@@ -1,46 +1,3 @@
-<style>
- .commentsAuthor,.commentsTitle,.commentsInfos,.commentsContent,.commentsNavigationBar {
- color:{#text_color};
- font-family:arial,sans-Serif;
- font-size:12px;
- }
- .commentsTitle,.commentsAuthor {
- text-align:center;
- font-weight:bold;
- }
- .commentsInfos {
- text-align:right;
- margin:3px 3px 3px 10px;
- font-size:11px;
- }
- .commentsContent {
- margin:10px;
- }
- .commentsTitle {
- margin-top:15px;
- }
- .commentsAuthor {
- margin:5px;
- }
- .commentsNavigationBar {
- margin:10px;
- }
- .tableComment {
- width:100%;
- border:2px solid #006699;
- margin:10px;
- }
- .cellAuthor {
- border-right:1px solid #006699;
- width:100px;
- }
- .cellInfo {
- border-bottom:1px solid #006699;
- }
- .imgLink {
- border:1px solid black;
- }
-</style>
<div style="text-align:center;margin-top:5px;">
<!--VTP_last_day_option-->
<a href="{#link}" style="{#style}">{#option}</a>{#separation}
diff --git a/template/default/default.css b/template/default/default.css
index a4b8cc74f..09eaa7b14 100644
--- a/template/default/default.css
+++ b/template/default/default.css
@@ -1,11 +1,14 @@
a {
text-decoration:none;
+ color:#E0E0E0;
}
a:hover {
text-decoration:underline;
+ color:#E0E0E0;
}
+
a.back,body {
- color:lightgray;
+ color:#E0E0E0;
}
body {
font-family:arial, sans-serif;
@@ -18,12 +21,12 @@ table, input {
font-size:12px;
}
.imgLink {
- border:1px solid lightgray;
+ border:1px solid #E0E0E0;
}
.imgLink:hover {
text-decoration:none;
}
-.titrePage,.titreMenu,.menu,.info,a,.commentsAuthor,.commentsTitle,.commentsInfos,.commentsContent,.commentsNavigationBar {
+.titrePage,.titreMenu,.menu,.info,.commentsAuthor,.commentsTitle,.commentsInfos,.commentsContent,.commentsNavigationBar {
color:lightgray;
}
.titreMenu, .menu, .info {
@@ -102,7 +105,7 @@ table.thumbnail {
}
td {
font-family:sans-serif;
- padding:0;
+ padding:0px;
}
.errors {
text-align:left;
@@ -115,11 +118,12 @@ td {
}
div.information {
text-align:center;
- border:2px solid lightgray;
+ border:2px solid #E0E0E0;
margin:10px;
padding:5px;
}
.commentsAuthor, .commentsTitle, .commentsInfos, .commentsContent, .commentsNavigationBar {
+
font-family:arial, sans-Serif;
font-size:12px;
}
@@ -145,7 +149,7 @@ div.information {
margin:10px;
}
.tableComment,.cellAuthor,.cellInfo {
- border-color:lightgray;
+ border-color:#E0E0E0;
border-style:solid;
}
.tableComment {
@@ -164,3 +168,43 @@ div.information {
border-bottom-width:1px;
}
+ .miniature {
+ border:solid 1px black;
+ }
+ .titretable1 {
+ color:black;
+ background-color:#D3DCE3;
+ text-align:center;
+ border:2px solid #006699;
+ font-weight:bold;
+ border-bottom:0px;
+ }
+ .grostitre {
+ text-align:center;
+ margin:10px 50px 10px 50px;
+ font-size:20px;
+ width:300px;
+ }
+ .plan {
+ margin:10px 10px 10px 2px;
+ white-space:nowrap;
+ }
+ .cat_plan {
+ font-weight:bold;
+ }
+ .retrait {
+ margin:10px;
+ margin-left:30px;
+ margin-top:2px;
+ }
+ .erreur {
+ color:red;
+ text-align:center;
+ }
+ .errors_title {
+ margin:5px;
+ font-weight:bold;
+ font-size:120%;
+ text-align:center;
+ color:red;
+ } \ No newline at end of file