Skip to content

Commit

Permalink
bug 1667 fixed: r6027 was fixing a minor error on tabs for Google Chr…
Browse files Browse the repository at this point in the history
…ome/Safari

BUT was introducing a major visual issue for IE8. Backmerged + adds the -webkit
radius anyway.

This is a quickfix for release 2.1.1, the improved display introduced by nikrou
was nice and it would be better to have it, but working in IE8

git-svn-id: http://piwigo.org/svn/trunk@6320 68402e56-0260-453c-a942-63ccdbb3a9ee
  • Loading branch information
plegall committed May 24, 2010
1 parent 34bce4c commit adfcba6
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 26 deletions.
15 changes: 6 additions & 9 deletions admin/themes/clear/theme.css
Expand Up @@ -143,15 +143,12 @@ border:0; color:#ccc; font-size:24px; height:30px; left:0; margin:0; padding:10p
text-align:center; top:0; width:100%; z-index:99; }
#content.content div.comment a.illustration{ margin-right: 30px;}
/* tabsheets are often used in admin pages => No specific css files */
.tabsheet {
display: table;
margin: 0;
padding: 0 0 0 35px;
list-style-type:none;
list-style-image:none;
white-space: nowrap;
}

.tabsheet {
background-color:#f9f9f9; border:1px solid #f9f9f9; border-bottom:1px solid #aaa; display:table;
font-family:verdana,arial,helvetica,sans-serif; font-size:8px;
list-style-type:none; list-style-image:none; padding: 0; position:relative; text-decoration:none;
top:-2px; white-space:nowrap; margin: 0 0 0 -6px; padding-left:10px;
width:100%; }
.tabsheet li { background:#f1f1f1; float:left; margin:0 6px 0 0; overflow:hidden; text-align:right; border:1px solid #aaa; border-bottom:none; position:relative; top:11px; -moz-border-radius-topleft:5px; -moz-border-radius-topright:5px;-webkit-border-top-left-radius:5px; -webkit-border-top-right-radius:5px;}
.tabsheet a {
display:block; font-size:11px; border:0;
Expand Down
8 changes: 4 additions & 4 deletions admin/themes/default/template/admin.tpl
Expand Up @@ -91,11 +91,11 @@ jQuery().ready(function(){ldelim}
</dl>
</div> <!-- menubar -->

{if isset($TABSHEET)}
{$TABSHEET}
{/if}
<div id="content" class="content">

<div id="content" class="content{if isset($TABSHEET)} with-tabs{/if}">
{if isset($TABSHEET)}
{$TABSHEET}
{/if}
{if isset($U_HELP)}
<ul class="HelpActions">
<li><a href="{$U_HELP}" onclick="popuphelp(this.href); return false;" title="{'Help'|@translate}"><img src="{$ROOT_URL}{$themeconf.admin_icon_dir}/help.png" class="button" alt="(?)"></a></li>
Expand Down
19 changes: 6 additions & 13 deletions admin/themes/roma/theme.css
Expand Up @@ -124,21 +124,14 @@ ul.actions, .content form#waiting {text-align:center;}
border:0; color:#333; font-size:24px; height:30px; left:0; margin:0; padding:10px 0 0; position:absolute;
text-align:center; top:0; width:100%; z-index:99; }
#content.content div.comment a.illustration{ margin-right: 30px;}
/* content with tabs */
.with-tabs {
border-top: 1px solid #ff3363;
}
/* tabsheets are often used in admin pages => No specific css files */
.tabsheet {
display: table;
margin: 0 0 -15px 0;
padding: 0 0 0 20px;
list-style-type:none;
list-style-image:none;
white-space: nowrap;
}
.tabsheet li {
background:#222222; float:left; margin:0 6px 0 0; overflow:hidden; text-align:right; border:1px solid #ff3363; border-bottom:none; position:relative; top:11px; -moz-border-radius-topleft:5px; -moz-border-radius-topright:5px;-webkit-border-top-left-radius:5px; -webkit-border-top-right-radius:5px;}
background-color:#111111; border:0px none; border-bottom:1px solid #ff3363; display:table;
font-family:verdana,arial,helvetica,sans-serif; font-size:8px;
list-style-type:none; list-style-image:none; padding: 0; position:relative; text-decoration:none;
top:-2px; white-space:nowrap; margin: 0 0 0 -5px; padding-left:10px;
width:100%; }
.tabsheet li { background:#222222; float:left; margin:0 6px 0 0; overflow:hidden; text-align:right; border:1px solid #ff3363; border-bottom:none; position:relative; top:11px; -moz-border-radius-topleft:5px; -moz-border-radius-topright:5px;-webkit-border-top-left-radius:5px; -webkit-border-top-right-radius:5px;}
.tabsheet a {
outline:none; color:#666; display:block; font-size:11px; border:0;
font-weight:bold; overflow:hidden; padding:6px;
Expand Down

0 comments on commit adfcba6

Please sign in to comment.