mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-04-26 13:52:24 +09:00
#428 다운로드 랭킹 기본 스킨을 작은 폭에서도 잘 보이도록 수정
git-svn-id: http://xe-core.googlecode.com/svn/sandbox@3987 201d5d3c-b55e-5fd7-737f-ddc643e51545
This commit is contained in:
parent
ff2320404d
commit
535fec0f5a
2 changed files with 26 additions and 20 deletions
|
|
@ -1,9 +1,11 @@
|
|||
.sz_download { width:100%; position:relative;}
|
||||
.sz_download h2 { margin:0; height:21px; padding:9px 0 0 9px; font-size:1em;}
|
||||
|
||||
.sz_download .left { cursor:pointer; height:20px; background:url(../images/default/bullet.gif) no-repeat left; padding-left:15px; overflow:hidden; }
|
||||
|
||||
.sz_download .center { text-align:right; padding-left:5px; }
|
||||
.sz_download ul { margin:0; padding:0; list-style:none; }
|
||||
.sz_download ul li { margin-bottom:5px; }
|
||||
.sz_download ul li div.title { background:url(../images/default/bullet.gif) no-repeat left top; padding-left:15px; }
|
||||
.sz_download ul li div.title { float:left; }
|
||||
.sz_download ul li div.count { float:right; white-space:nowrap;}
|
||||
.sz_download ul li div.download { float:right; white-space:nowrap; margin-left:10px;}
|
||||
|
||||
.sz_download .sz_Box_000{border:solid 0;padding:0;}
|
||||
.sz_download .sz_Box_001{ margin:1px; border:solid 1px;border-color:#E7E7E7;padding:5px 5px 2px 5px;background-color:#F4F4F4;color:#696969;}
|
||||
|
|
|
|||
|
|
@ -3,20 +3,24 @@
|
|||
<!--%import("css/default.css")-->
|
||||
|
||||
<div class="sz_download">
|
||||
<div class="sz_{$colorset}">
|
||||
<!--@if($widget_info->title)-->
|
||||
<h2>{$widget_info->title} Top {$widget_info->list_count}</h2>
|
||||
<!--@end-->
|
||||
<table>
|
||||
{@ $no = 1}
|
||||
<!--@foreach($widget_info->file_list as $val)-->
|
||||
<tr class="member_{$val->member_srl}">
|
||||
<td class="left">{$no}위. <a href="{getUrl('','document_srl',$val->upload_target_srl)}">{$val->source_filename} ({FileHandler::filesize($val->file_size)})</a></td>
|
||||
<td class="center">{$val->download_count}회</td>
|
||||
<!--@if($widget_info->download)--><td class="right"><a href="{$val->download_url}">[Download]</a></td><!--@end-->
|
||||
</tr>
|
||||
{@ $no++}
|
||||
<!--@end-->
|
||||
</table>
|
||||
</div>
|
||||
<div class="sz_{$colorset}">
|
||||
<!--@if($widget_info->title)-->
|
||||
<h2>{$widget_info->title} Top {$widget_info->list_count}</h2>
|
||||
<!--@end-->
|
||||
|
||||
<!--@if(count($widget_info->file_list))-->
|
||||
<ul>
|
||||
{@ $no = 1}
|
||||
<!--@foreach($widget_info->file_list as $val)-->
|
||||
<li>
|
||||
<div class="title">{$no}위. <a href="{getUrl('','document_srl',$val->upload_target_srl)}">{$val->source_filename} ({FileHandler::filesize($val->file_size)})</a></div>
|
||||
<!--@if($widget_info->download)--><div class="download"><a href="{$val->download_url}">[Download]</a></div><!--@end-->
|
||||
<div class="count">{$val->download_count}회</div>
|
||||
<div class="clear"></div>
|
||||
</li>
|
||||
{@ $no++}
|
||||
<!--@end-->
|
||||
</ul>
|
||||
<!--@end-->
|
||||
</div>
|
||||
</div>
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue