mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-01-27 15:19:57 +09:00
테이블 형식의 목록 나열형에서 col 강제지정을 제외하고 내용에 맞게 cell이 정리되도록 수정
git-svn-id: http://xe-core.googlecode.com/svn/sandbox@4578 201d5d3c-b55e-5fd7-737f-ddc643e51545
This commit is contained in:
parent
3a5df10d5c
commit
9ba8284f9c
34 changed files with 299 additions and 829 deletions
|
|
@ -24,16 +24,23 @@
|
|||
.boardHeader .essential:first-letter { color:#ff0000;}
|
||||
|
||||
/* list */
|
||||
.list { width:100%; border:1px solid #e0e1db; table-layout:fixed;}
|
||||
.list { width:100%; border:1px solid #e0e1db; }
|
||||
|
||||
.list thead tr th { width:10px; padding:8px !important; }
|
||||
.list thead tr th div { white-space:nowrap; margin:0;}
|
||||
.list thead tr th.wide { width:100%; }
|
||||
.list thead tr th.half_wide { width:50%; }
|
||||
.list tbody tr td { white-space:normal; padding:5px; }
|
||||
.list tbody tr td.nowrap { white-space:nowrap !important; }
|
||||
|
||||
.list tr:first-child td, .list tr.first-child td { border-top:1px solid #e0e1db; white-space:nowrap;}
|
||||
.list tr.bg1 { background:#ffffff}
|
||||
.list tr.bg2 { background:#fbfbfb;}
|
||||
.list th { color:#3e3f3e; font-weight:white; border-bottom:1px solid #ffffff; padding:.5em .2em .5em .2em; background:#ffffff url(../images/common/lineBoardListTh.gif) no-repeat left bottom; white-space:nowrap;}
|
||||
.list th { color:#3e3f3e; font-weight:white; border-bottom:1px solid #ffffff; background:#ffffff url(../images/common/lineBoardListTh.gif) no-repeat left bottom; white-space:nowrap;}
|
||||
.list th a { color:#3e3f3e;}
|
||||
.list th:first-child, .list th.first-child { background-position:-3px bottom; border-left:1px solid #ffffff;}
|
||||
.list th.check { padding:0;}
|
||||
.list th select, .list th input { vertical-align:middle;}
|
||||
.list td { border-top:1px solid #eff0ed; padding:.5em; text-align:center; height:35px;}
|
||||
.list td { border-top:1px solid #eff0ed; height:35px;}
|
||||
.list td.registDate { font:.8em Tahoma; color:#999999; text-align:center;}
|
||||
.list td.num { font:.8em Tahoma; color:#999999; text-align:center;}
|
||||
.list td.check { text-align:center;}
|
||||
|
|
|
|||
|
|
@ -23,27 +23,22 @@
|
|||
</div>
|
||||
|
||||
<table cellspacing="0" class="list">
|
||||
<col width="40" />
|
||||
<col width="170" />
|
||||
<col />
|
||||
<col />
|
||||
<col />
|
||||
<col />
|
||||
<thead>
|
||||
<tr>
|
||||
<th scope="col" class="check first-child"><input name="check_all" type="checkbox" onclick="doCheckAll(this, 'fo_friend_list');" /></th>
|
||||
<th scope="col" class="check first-child"><div><input name="check_all" type="checkbox" onclick="doCheckAll(this, 'fo_friend_list');" /><div></th>
|
||||
<th scope="col" class="friendGroup">
|
||||
<select name="jumpMenu" id="jumpMenu" class="w100">
|
||||
<option value="">{$lang->default_friend_group}</option>
|
||||
<!--@foreach($friend_group_list as $key => $val)-->
|
||||
<option value="{$val->friend_group_srl}" <!--@if($val->friend_group_srl == $friend_group_srl)-->selected="selected"<!--@end--> >{$val->title}</option>
|
||||
<!--@end-->
|
||||
</select><a href="#" onclick="doJumpFriendGroup(); return false;"><img src="./images/button_go.gif" alt="" align="absmiddle" /></a>
|
||||
<div>
|
||||
<select name="jumpMenu" id="jumpMenu" class="w100">
|
||||
<option value="">{$lang->default_friend_group}</option>
|
||||
<!--@foreach($friend_group_list as $key => $val)-->
|
||||
<option value="{$val->friend_group_srl}" <!--@if($val->friend_group_srl == $friend_group_srl)-->selected="selected"<!--@end--> >{$val->title}</option>
|
||||
<!--@end-->
|
||||
</select><a href="#" onclick="doJumpFriendGroup(); return false;"><img src="./images/button_go.gif" alt="" align="absmiddle" /></a>
|
||||
<div>
|
||||
</th>
|
||||
<th scope="col" class="userId">{$lang->user_id}</th>
|
||||
<th scope="col" class="userName">{$lang->user_name}</th>
|
||||
<th scope="col" class="userNick">{$lang->nick_name}</th>
|
||||
<th scope="col" class="registDate">{$lang->regdate}</th>
|
||||
<th scope="col" class="half_wide"><div>{$lang->nick_name}<div></th>
|
||||
<th scope="col" class="half_wide"><div>{$lang->user_id} / {$lang->user_name}<div></th>
|
||||
<th scope="col" class="registDate"><div>{$lang->regdate}<div></th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
|
|
@ -51,9 +46,8 @@
|
|||
<tr class="bg{($no+1)%2+1}">
|
||||
<td class="check"><input type="checkbox" name="friend_srl_list" value="{$val->friend_srl}" /></td>
|
||||
<td class="friendGroup">{$val->group_title?$val->group_title:" "}</td>
|
||||
<td class="userId">{$val->user_id}</td>
|
||||
<td class="userName">{$val->user_name}</td>
|
||||
<td class="userNick"><div class="member_{$val->target_srl}">{$val->nick_name}</div></td>
|
||||
<td class="userName">{$val->user_id} / {$val->user_name}</td>
|
||||
<td class="registDate">{zdate($val->regdate,"Y-m-d")}</td>
|
||||
</tr>
|
||||
<!--@end-->
|
||||
|
|
|
|||
|
|
@ -65,24 +65,19 @@
|
|||
<input type="hidden" name="message_type" value="{$message_type}" />
|
||||
|
||||
<table cellspacing="0" class="list">
|
||||
<col width="40" />
|
||||
<col width="160" />
|
||||
<col />
|
||||
<col width="80" />
|
||||
<col width="120" />
|
||||
<thead>
|
||||
<tr>
|
||||
<th scope="col" class="check first-child"><input name="check_all" type="checkbox" onclick="doCheckAll(this, 'fo_message_list');" /></th>
|
||||
<th scope="col" class="user">
|
||||
<th scope="col" class="check first-child"><div><input name="check_all" type="checkbox" onclick="doCheckAll(this, 'fo_message_list');" /></div></th>
|
||||
<th scope="col" class="user"><div>
|
||||
<!--@if($message_type == "S")-->
|
||||
{$lang->receiver}
|
||||
<!--@else-->
|
||||
{$lang->sender}
|
||||
<!--@end-->
|
||||
</th>
|
||||
<th scope="col" class="title">{$lang->title}</th>
|
||||
<th scope="col" class="registDate">{$lang->regdate}</th>
|
||||
<th scope="col" class="checkDate last-child">{$lang->readed_date}</th>
|
||||
</div></th>
|
||||
<th scope="col" class="wide title"><div>{$lang->title}</div></th>
|
||||
<th scope="col" class="registDate"><div>{$lang->regdate}</div></th>
|
||||
<th scope="col" class="checkDate last-child"><div>{$lang->readed_date}</div></th>
|
||||
</tr>
|
||||
</thead>
|
||||
|
||||
|
|
@ -104,8 +99,8 @@
|
|||
<span style="font-weight:bold"><a href="{getUrl('message_srl',$val->message_srl)}">{$val->title}</a></span>
|
||||
<!--@end-->
|
||||
</td>
|
||||
<td class="registDate">{zdate($val->regdate,"Y-m-d")}</td>
|
||||
<td class="checkDate"><!--@if($val->readed=="Y")-->{zdate($val->readed_date,"Y-m-d H:i:s")}<!--@else--> <!--@end--></td>
|
||||
<td class="registDate nowrap">{zdate($val->regdate,"Y-m-d")}</td>
|
||||
<td class="checkDate nowrap"><!--@if($val->readed=="Y")-->{zdate($val->readed_date,"Y-m-d H:i:s")}<!--@else--> <!--@end--></td>
|
||||
</tr>
|
||||
<!--@end-->
|
||||
</tbody>
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue