diff options
author | vdigital <vdigital@piwigo.org> | 2008-12-09 19:43:12 +0000 |
---|---|---|
committer | vdigital <vdigital@piwigo.org> | 2008-12-09 19:43:12 +0000 |
commit | b2c00a0255a79cf1e468b9c64085db96baa84ba7 (patch) | |
tree | e1c22672d4fc21df364b3687058814544419e031 | |
parent | c7e54656feccfe2be6456d58775d46ec2d722ea4 (diff) |
Why is there a blank line between: - Synchronize and - Manage
Removed (Pierrick: I have no opinion concerning this blank line, I don't understand it.)
- In english, titles need caps on each word.
(Pierrick: If it only costs a CSS rule, yes please add it for english only. )
merge -c2963 from branch 2.0 to trunk
git-svn-id: http://piwigo.org/svn/trunk@2964 68402e56-0260-453c-a942-63ccdbb3a9ee
-rw-r--r-- | admin/template/goto/admin.tpl | 2 | ||||
-rw-r--r-- | admin/template/goto/theme/roma/theme.css | 3 |
2 files changed, 4 insertions, 1 deletions
diff --git a/admin/template/goto/admin.tpl b/admin/template/goto/admin.tpl index 76b936cfd..02d4f9b5f 100644 --- a/admin/template/goto/admin.tpl +++ b/admin/template/goto/admin.tpl @@ -46,7 +46,7 @@ jQuery().ready(function(){ldelim} <dd> <ul> <li><a href="{$U_SITE_MANAGER}">{'Site manager'|@translate}</a></li> - <li><a href="{$U_CAT_UPDATE}">{'update'|@translate}</a><br /> </li> + <li><a href="{$U_CAT_UPDATE}">{'update'|@translate}</a></li> <li><a href="{$U_CATEGORIES}">{'manage'|@translate}</a></li> <li><a href="{$U_MOVE}">{'Move'|@translate}</a></li> <li><a href="{$U_CAT_OPTIONS}">{'cat_options_title'|@translate}</a></li> diff --git a/admin/template/goto/theme/roma/theme.css b/admin/template/goto/theme/roma/theme.css index af6de28ba..68a41a44f 100644 --- a/admin/template/goto/theme/roma/theme.css +++ b/admin/template/goto/theme/roma/theme.css @@ -43,6 +43,8 @@ h3, #imageToolBar a:hover, .row2, .content { background-color: #222; } .content h2 { letter-spacing:2px; margin-right:30px; text-align:right; color: #666; text-transform:none; font-weight:bold; padding-left:20px; width:54%; } +.content h2:lang(en) { text-transform:capitalize; } + .content dl, dd { margin:5px; } .content div.titrePage { height:55px; } .instructions { height:450px; overflow:scroll; padding:0 20px 0; text-align:left; margin-bottom: 20px; @@ -183,5 +185,6 @@ display:block; height:85px; left:225px; position:relative; top:-42px; width:313p .bigbutton input:hover { cursor:pointer; background:transparent url(images/transparent.gif) repeat scroll left top; border:0; padding:0;} /* hacks */ html>body #menubar {min-height:477px; height:477px;} /* IE 7 and modern browsers */ +* html[lang="en"] body .content h2 , *+html[lang="en"] body .content h2 { text-transform:capitalize; } /* IE */ *+html .bigtext { left: 70px; } *+html .bigbutton input, * html .bigbutton input { left:0px; position:relative; top:-40px; }
\ No newline at end of file |