위키 history 보기 브라우저에 따라서 어긋나는 오류 수정

git-svn-id: http://xe-core.googlecode.com/svn/sandbox@6210 201d5d3c-b55e-5fd7-737f-ddc643e51545
This commit is contained in:
zero 2009-04-28 02:11:10 +00:00
parent 2a5d6ad5a8
commit 898c564a0a
2 changed files with 7 additions and 6 deletions

View file

@ -49,11 +49,12 @@ Jeong, Chan Myeong 070601~070630
.viewDocument { border-bottom:2px solid #AAAAAA; margin-bottom:20px; }
.wikiRead { }
.readBody .histories { border-top:2px solid #ccc; margin-top:10px; width:100%; padding:0;}
.readBody .histories li._item { list-style:none; padding:10px; margin-bottom:10px; border-bottom:1px solid #ccc; }
.readBody .histories { border-top:2px solid #ccc; margin:10px 0 0 0; width:100%; padding:0;}
.readBody .histories li._item { list-style:none; padding:0; margin:0; border-bottom:1px solid #ccc; overflow:hidden; *zoom:1;}
.readBody .histories li .info { float:left; margin:5px 0;}
.readBody .histories li span.date { font-size:11px; color:#555; font-family:tahoma; margin-right:10px; }
.readBody .histories li a.view { font-size:11px; font-family:tahoma; color:#999; text-decoration:none !important; display:block; width:40px; white-space:nowrap; float:right; text-align:right; margin-top:-19px; }
.readBody .histories li .historyContent { display:none; clear:both; }
.readBody .histories li a.view { font-size:11px; font-family:tahoma; color:#999; margin:5px 0;text-decoration:none !important; display:block; white-space:nowrap; float:right; text-align:right; }
.readBody .histories li .historyContent { display:none; clear:both; padding:20px 0;}
.wikiRead .titleAndUser { overflow:hidden; border-bottom:1px solid #e0e1db; }

View file

@ -1,9 +1,9 @@
<!--#include("header.html")-->
<div class="readBody">
<ul class="histories">
<li class="_item"><span class="date">{$oDocument->getUpdate()}</span> by {$oDocument->getNickName()} (current) <a href="{getUrl('act','',page,'','history_srl','')}" class="view">[view]</a></li>
<li class="_item"><div class="info"><span class="date">{$oDocument->getUpdate()}</span> by {$oDocument->getNickName()} (current)</div><a href="{getUrl('act','',page,'','history_srl','')}" class="view">[{$lang->cmd_move}]</a></li>
<!--@foreach($histories as $val)-->
<li class="_item"><span class="date">{zdate($val->regdate, 'Y.m.d H:i:s')}</span> by <a href="#" onclick="return false;" class="member_{$val->member_srl}">{$val->nick_name}</a> <!--@if($val->content)--><a href="#" onclick="viewHistory('{$val->history_srl}'); return false;" class="view">[view]</a><!--@end-->
<li class="_item"><div class="info"><span class="date">{zdate($val->regdate, 'Y.m.d H:i:s')}</span> by <a href="#" onclick="return false;" class="member_{$val->member_srl}">{$val->nick_name}</a> </div><!--@if($val->content)--><a href="#" onclick="viewHistory('{$val->history_srl}'); return false;" class="view">[{$lang->cmd_view}]</a><!--@end-->
<div id="historyContent{$val->history_srl}" class="historyContent">
{$val->content}
</div>