git-svn-id: http://xe-core.googlecode.com/svn/trunk@1759 201d5d3c-b55e-5fd7-737f-ddc643e51545

This commit is contained in:
zero 2007-06-25 08:38:40 +00:00
parent 58f6172a51
commit 16925ca91b
15 changed files with 262 additions and 251 deletions

View file

@ -90,6 +90,7 @@ h4 .view { color:#158692; padding-right:.6em; font:bold .9em Tahoma; background:
/* tableStyle */
.infoText { border:1px solid #f2f2f0; margin-bottom:12px; background:#f9f9f6; padding:1.2em; color:#7b7972; font-size:.9em; line-height:1.4em;}
.gap1 { margin-top:1em; }
.tableSummaryType1 { font:bold .8em Tahoma; color:#a0a0a0; margin-bottom:10px;}
.tableSummaryType1 strong { font:bold 1em Tahoma; color:#ff1a00;}
.tableType1 { width:100%; border-bottom:2px solid #c1c0bd;}
@ -171,3 +172,7 @@ h4 .view { color:#158692; padding-right:.6em; font:bold .9em Tahoma; background:
#category_list .checkbox { margin-top:1em; border:0px; }
#category_info { float:left; width:370px; padding-left:10px; }
/* ----- Category Manager | End ----- */
.widget_item { float: left; white-space:nowrap; background-color:#FEFEFE; line-height:150%; margin-right:1em; }
.layout_editor_box { padding:10px; border:1px solid #DDDDDD; }
.layout_editor { width:100%; height:500px; border:0px;}

View file

@ -20,6 +20,7 @@ function fixAdminLayoutFooter() {
var footerHeight = xHeight(xGetElementById('footer'));
var clientHeight = xClientHeight();
var newHeight = clientHeight - footerHeight - headerHeight + 71 + 38;
if(typeof(editor_height)!='undefined') newHeight += editor_height;
if(newHeight<bodyHeight) newHeight = bodyHeight;
xHeight(xGetElementById('cBody'), newHeight);

View file

@ -15,7 +15,7 @@
<ul>
<!--@foreach($shortcut_list as $key => $val)-->
<li <!--@if($running_module==$val->module)-->class="on"<!--@end-->>
<a href="{getUrl('','module','admin','act',$val->default_act)}">{$val->title}</a>
<a href="{getUrl('','module','admin','act',$val->default_act)}">{cut_str($val->title,14,'..')}</a>
</li>
<!--@end-->
</ul>