Feature "Admin Advices !" (Standard plugin) : May give you always now an advice on the administration page.

Quick solved list:
1 - Wording on EXIF/IPTC Advices
2 - Default language is English
3 - Some Transparency issues under IE
4 - Some Border issues
5 - PWG Menu moved from Advices Box to Intro.
6 - phpwebgallery.net URLs are available thru a new admin function pwg_URL()
7 - PWG Menu URL open in a new target (XHTML strict compliant (JS)).

git-svn-id: http://piwigo.org/svn/trunk@1724 68402e56-0260-453c-a942-63ccdbb3a9ee
This commit is contained in:
vdigital 2007-01-15 22:44:48 +00:00
commit 073ab4a9e3
17 changed files with 163 additions and 130 deletions

View file

@ -103,3 +103,43 @@ FIELDSET#generalConf SPAN.property {
FIELDSET#generalConf TEXTAREA.description {
width: 70%;
}
/* PWG Links Menu is fixed Graphic charts */
.pwgmenu {
display: table;
list-style-type: none;
list-style-image: none; /* for firefox */
white-space: nowrap;
position: relative;
text-decoration : none;
font-family: verdana, arial, helvetica, sans-serif;
font-size: 70%;
line-height: 1.1em;
width: 66em;
margin: 1px 8px 1px auto;
padding: 3px;
background: transparent;
}
.pwgmenu li {
float: left;
width: 10em !important;
text-align: center;
margin: 0 6px;
padding: 0;
}
.pwgmenu a {
width: 9em !important;
display: block;
padding: 4px 8px;
background: #69c; /* PWG Graphic charts */
color: white;
text-align: center;
text-decoration: none;
font-weight: bold;
border: 1px solid #fff; /* Why bordered? in case of #69c background */
}
.pwgmenu a:hover {
background: #f92;
color: white;
} /* PWG Graphic charts */

View file

@ -1,6 +1,16 @@
<!-- $Id$ -->
<h2>{lang:title_default}</h2>
<!-- BEGIN pwgmenu -->
<ul class="pwgmenu">
<!-- Keep Doctype XHTML Strict acceptable even in Admin -->
<!-- New window is open if Js available (Webmasters accept it usually) -->
<li><a href="{pwgmenu.HOME}" onclick="window.open(this.href, ''); return false;">{lang:HOME}</a></li>
<li><a href="{pwgmenu.WIKI}" onclick="window.open(this.href, ''); return false;">{lang:WIKI / DOC}</a></li>
<li><a href="{pwgmenu.FORUM}" onclick="window.open(this.href, ''); return false;">{lang:FORUM}</a></li>
<li><a href="{pwgmenu.BUGS}" onclick="window.open(this.href, ''); return false;">{lang:BUGS}</a></li>
<li><a href="{pwgmenu.EXTENSIONS}" onclick="window.open(this.href, ''); return false;">{lang:EXTENSIONS}</a></li>
</ul>
<!-- END pwgmenu -->
<dl>
<dt>{lang:PhpWebGallery version}</dt>
<dd>

Binary file not shown.

Before

Width:  |  Height:  |  Size: 478 B

After

Width:  |  Height:  |  Size: 367 B

Before After
Before After

Binary file not shown.

Before

Width:  |  Height:  |  Size: 3 KiB

After

Width:  |  Height:  |  Size: 1.7 KiB

Before After
Before After

Binary file not shown.

Before

Width:  |  Height:  |  Size: 211 B

After

Width:  |  Height:  |  Size: 213 B

Before After
Before After

View file

@ -20,7 +20,7 @@ H2, #menubar DT, #imageHeaderBar, #imageToolBar A:hover, .row1 {
}
/* borders */
#menubar DL, #content, #imageToolBar,
#menubar DL, #content, #imageToolBar,
#comments DIV.comment BLOCKQUOTE {
border: 1px solid #d3d3d3;
}

View file

@ -47,7 +47,7 @@ H2, #menubar DT, .throw {
}
/* borders */
#menubar DL, #content,
#menubar DL, #content, .content,
#comments DIV.comment BLOCKQUOTE {
border: 1px solid #000000;
}

View file

@ -10,9 +10,6 @@ INPUT.rateButtonSelected /* <= why IE doesn't inherit this ? */ {
background-color: transparent;
border: 0px;
}
#content UL.thumbnailCategories LI {
width: 49.7%; /* 49.8% for 2 per line, 33.3% for 3 per line*/
}
H2, .throw {
color: #69c;
}

View file

@ -10,9 +10,6 @@ INPUT.rateButtonSelected /* <= why IE doesn't inherit this ? */ {
background-color: transparent;
border: 0px;
}
#content UL.thumbnailCategories LI {
width: 49.7%; /* 49.8% for 2 per line, 33.3% for 3 per line*/
}
H2, .throw {
color: #eee;
}