aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorchrisaga <chrisaga@piwigo.org>2005-12-03 19:00:12 +0000
committerchrisaga <chrisaga@piwigo.org>2005-12-03 19:00:12 +0000
commit0e02f343e8dc0bb3e22b425d6a00645a67e4512f (patch)
tree7c2bc352f4da64ceec26549c8e8190d7c46131c7
parentc7571979ddfe6071aac1a9b24e4def5a02ac564e (diff)
bug 226 fixed : mixed class and id for "infos" and "errors" between tpl and css
git-svn-id: http://piwigo.org/svn/branches/branch-1_5@964 68402e56-0260-453c-a942-63ccdbb3a9ee
-rw-r--r--template/yoga/admin.tpl2
-rw-r--r--template/yoga/default-colors.css6
2 files changed, 4 insertions, 4 deletions
diff --git a/template/yoga/admin.tpl b/template/yoga/admin.tpl
index 600d6433c..124ffca58 100644
--- a/template/yoga/admin.tpl
+++ b/template/yoga/admin.tpl
@@ -77,7 +77,7 @@
<!-- END errors -->
<!-- BEGIN infos -->
- <div id="infos">
+ <div class="infos">
<ul>
<!-- BEGIN info -->
<li>{infos.info.INFO}</li>
diff --git a/template/yoga/default-colors.css b/template/yoga/default-colors.css
index 3f26e9208..bfdf57327 100644
--- a/template/yoga/default-colors.css
+++ b/template/yoga/default-colors.css
@@ -122,7 +122,7 @@ input, select, textarea {
border: 1px solid gray;
}
-#errors { /* Errors display */
+.errors { /* Errors display */
color: red;
background-color: #ffe1e1;
font-weight: bold;
@@ -135,7 +135,7 @@ input, select, textarea {
padding: 10px 50px 10px 10px;
}
-#errors ul li
+.errors ul li
{
font-weight: normal;
}
@@ -143,7 +143,7 @@ input, select, textarea {
/**
* Informations box in administration
*/
-#infos {
+.infos {
text-align: left;
background-color: palegreen;
background-image: url(admin/images/infos.png);