포럼형 위젯 스킨 추가
git-svn-id: http://xe-core.googlecode.com/svn/sandbox@3577 201d5d3c-b55e-5fd7-737f-ddc643e51545
BIN
widgets/forum/skins/default/css/.common.css.swp
Normal file
28
widgets/forum/skins/default/css/common.css
Normal file
|
|
@ -0,0 +1,28 @@
|
|||
.xeForum { background:url("../images/back.gif") repeat-x left top; padding:0; }
|
||||
|
||||
.xeForum div.forumTable { padding:0 6px 0 6px; }
|
||||
.xeForum table { width:100%; border:0; table-layout:fixed; }
|
||||
|
||||
.xeForum table tr.top { height:22px; }
|
||||
.xeForum table th { vertical-align:bottom; color:#ffffff; font-weight:normal; padding-bottom:5px; }
|
||||
.xeForum table th.title { font-weight:normal; text-align:left; padding-left:10px; }
|
||||
.xeForum table th.last_post { text-align:left; padding-left:15px; }
|
||||
|
||||
.xeForum table tr.content { background:#EFEFEF; height:55px; }
|
||||
|
||||
.xeForum table td.topic, .xeForum td.icon, .xeForum td.title, .xeForum td.topic, .xeForum td.replies , .xeForum td.last_post{ padding:5px 0 5px 0; border-top:1px solid #FFFFFF; }
|
||||
.xeForum table td.topic, .xeForum td.icon, .xeForum td.title, .xeForum td.topic, .xeForum td.replies , .xeForum td.last_post{ padding:5px 0 5px 0; border-bottom:1px solid #6E6E6E; }
|
||||
.xeForum table td.icon { text-align:center; }
|
||||
|
||||
.xeForum table td.title a { text-decoration:none; color:#3A3947; font-size:9pt;}
|
||||
.xeForum table td.title p { margin-top:5px; font-weight:normal; text-decoration:none; color:#838383; font-size:9pt;}
|
||||
.xeForum table td.title p a { font-weight:normal; text-decoration:none; color:#838383; font-size:9pt;}
|
||||
|
||||
.xeForum table td.topic, .xeForum td.replies, .xeForum td.last_post { background:#EFEFEF url("../images/div.gif") no-repeat left 3px; }
|
||||
|
||||
.xeForum table td.topic, .xeForum td.replies { text-align:center; color:#3A3947; font-family:tahoma; font-size:8pt; }
|
||||
|
||||
.xeForum table td.last_post { text-align:left; color:#3A3947; font-family:tahoma; font-size:8pt; padding-left:15px; }
|
||||
.xeForum table td.last_post div.author img { vertical-align:middle; }
|
||||
.xeForum table td.last_post div.date { margin-top:5px; text-align:left; color:#3A3947; font-family:tahoma; font-size:8pt; }
|
||||
|
||||
BIN
widgets/forum/skins/default/images/back.gif
Normal file
|
After Width: | Height: | Size: 1,020 B |
BIN
widgets/forum/skins/default/images/div.gif
Normal file
|
After Width: | Height: | Size: 289 B |
BIN
widgets/forum/skins/default/images/icon.gif
Normal file
|
After Width: | Height: | Size: 259 B |
BIN
widgets/forum/skins/default/images/icon_new.gif
Normal file
|
After Width: | Height: | Size: 262 B |
BIN
widgets/forum/skins/default/images/lb.gif
Normal file
|
After Width: | Height: | Size: 49 B |
BIN
widgets/forum/skins/default/images/lt.gif
Normal file
|
After Width: | Height: | Size: 50 B |
BIN
widgets/forum/skins/default/images/rb.gif
Normal file
|
After Width: | Height: | Size: 49 B |
BIN
widgets/forum/skins/default/images/replies.gif
Normal file
|
After Width: | Height: | Size: 197 B |
BIN
widgets/forum/skins/default/images/rt.gif
Normal file
|
After Width: | Height: | Size: 50 B |
BIN
widgets/forum/skins/default/images/top_bg.gif
Normal file
|
After Width: | Height: | Size: 209 B |
47
widgets/forum/skins/default/list.html
Normal file
|
|
@ -0,0 +1,47 @@
|
|||
<!--%import("css/common.css")-->
|
||||
|
||||
<div class="xeForum">
|
||||
<img src="./images/lt.gif" alt="" class="fl" />
|
||||
<img src="./images/rt.gif" alt="" class="fr" />
|
||||
|
||||
<div class="forumTable">
|
||||
<table cellspacing="0" class="xeForum clear">
|
||||
<col width="60" />
|
||||
<col />
|
||||
<col width="70" />
|
||||
<col width="70" />
|
||||
<col width="160" />
|
||||
<tr class="top">
|
||||
<th colspan="2" class="title"><!--@if($widget_info->title)-->{$widget_info->title}<!--@else--> <!--@end--></th>
|
||||
<th class="topic">{$lang->topic}</th>
|
||||
<th class="replies">{$lang->replies}</th>
|
||||
<th class="last_post">{$lang->last_post}</th>
|
||||
</tr>
|
||||
<!--@foreach($widget_info->modules as $val)-->
|
||||
<tr class="content">
|
||||
<td class="icon"><img src="./images/icon.gif" alt="icon" /></td>
|
||||
<td class="title">
|
||||
<strong><a href="{getUrl('','mid',$val->mid)}">{$val->title}</a></strong>
|
||||
<p>{$val->description}</p>
|
||||
</td>
|
||||
<td class="topic">{number_format($val->document_count)}</td>
|
||||
<td class="replies">{number_format($val->comment_count)}</td>
|
||||
<td class="last_post">
|
||||
<!--@if($val->last_comment)-->
|
||||
<div class="author">
|
||||
<span class="member_{$val->last_comment->member_srl}">{$val->last_comment->nick_name}</span>
|
||||
<a href="{getUrl('','document_srl',$val->last_comment->document_srl)}#comment_{$val->last_comment->comment_srl}"><img src="./images/replies.gif" alt="go" /></a>
|
||||
</div>
|
||||
<div class="date">{zdate($val->last_comment->regdate,"Y-m-d H:i")}</div>
|
||||
<!--@else-->
|
||||
|
||||
<!--@end-->
|
||||
</td>
|
||||
</tr>
|
||||
<!--@end-->
|
||||
</table>
|
||||
</div>
|
||||
<img src="./images/lb.gif" alt="" class="fl" />
|
||||
<img src="./images/rb.gif" alt="" class="fr" />
|
||||
<div class="clear"></div>
|
||||
</div>
|
||||
33
widgets/forum/skins/default/skin.xml
Normal file
|
|
@ -0,0 +1,33 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<skin>
|
||||
<title xml:lang="ko">기본 포럼형 위젯 스킨</title>
|
||||
<title xml:lang="jp">기본 포럼형 위젯 스킨</title>
|
||||
<title xml:lang="zh-CN">기본 포럼형 위젯 스킨</title>
|
||||
<title xml:lang="en">기본 포럼형 위젯 스킨</title>
|
||||
<maker email_address="zero@zeroboard.com" link="http://www.zeroboard.com" date="2008. 1. 23">
|
||||
<name xml:lang="ko">제로</name>
|
||||
<name xml:lang="jp">zero</name>
|
||||
<name xml:lang="zh-CN">zero</name>
|
||||
<name xml:lang="en">zero</name>
|
||||
<description xml:lang="ko">
|
||||
포럼형 위젯의 기본 스킨입니다.
|
||||
</description>
|
||||
<description xml:lang="jp">
|
||||
포럼형 위젯의 기본 스킨입니다.
|
||||
</description>
|
||||
<description xml:lang="zh-CN">
|
||||
포럼형 위젯의 기본 스킨입니다.
|
||||
</description>
|
||||
<description xml:lang="en">
|
||||
포럼형 위젯의 기본 스킨입니다.
|
||||
</description>
|
||||
</maker>
|
||||
<colorset>
|
||||
<color name="white">
|
||||
<title xml:lang="ko">흰색 바탕용</title>
|
||||
<title xml:lang="jp">白い背景用</title>
|
||||
<title xml:lang="zh-CN">白色背景</title>
|
||||
<title xml:lang="en">White Background</title>
|
||||
</color>
|
||||
</colorset>
|
||||
</skin>
|
||||