mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-01-28 15:49:57 +09:00
1. 플래닛 글 위젯 추가 2. 최신글 위젯 스킨에 xe_official 스킨 추가
git-svn-id: http://xe-core.googlecode.com/svn/sandbox@5176 201d5d3c-b55e-5fd7-737f-ddc643e51545
This commit is contained in:
parent
13238f50f2
commit
5eb6ca353c
17 changed files with 295 additions and 2 deletions
16
widgets/newest_comment/skins/xe_official/css/black.css
Normal file
16
widgets/newest_comment/skins/xe_official/css/black.css
Normal file
|
|
@ -0,0 +1,16 @@
|
|||
.latest_comment_black { width:100%; padding-bottom:15px; overflow:hidden; position:relative;}
|
||||
.latest_comment_black h2 { margin:0; display:block; height:21px; padding:9px 0 0 9px; margin-bottom:12px; color:#ffffff; background:url(../images/black/lineNotice.gif) no-repeat left bottom; font-size:1em;}
|
||||
|
||||
.latest_comment_black ul { margin:0; padding:0; }
|
||||
.latest_comment_black ul li { height:20px; background:url(../images/black/bulletD0.gif) no-repeat left 5px; padding-left:10px; overflow:hidden; list-style:none; white-space:nowrap;}
|
||||
|
||||
.latest_comment_black ul li .title a { color:#818181; text-decoration:none; }
|
||||
.latest_comment_black ul li .title a:hover { text-decoration:underline; }
|
||||
.latest_comment_black ul li .title span.comment { color:#FE6700; font:.9em Tahoma; }
|
||||
.latest_comment_black ul li .title span.comment a { color:#FE6700; font:.9em Tahoma; }
|
||||
|
||||
.latest_comment_black ul li .date { color:#999999; font:.8em Tahoma; white-space:nowrap; margin-right:5px;}
|
||||
|
||||
.latest_comment_black .more { position:absolute; top:12px; right:11px; color:#54564b; font:.8em Tahoma;}
|
||||
.latest_comment_black a.more { text-decoration:none;}
|
||||
.latest_comment_black a.more:hover { text-decoration:underline;}
|
||||
16
widgets/newest_comment/skins/xe_official/css/white.css
Normal file
16
widgets/newest_comment/skins/xe_official/css/white.css
Normal file
|
|
@ -0,0 +1,16 @@
|
|||
.latest_comment_white { width:100%; padding-bottom:15px; overflow:hidden; position:relative;}
|
||||
.latest_comment_white h2 { margin:0; display:block; height:21px; padding:9px 0 0 9px; margin-bottom:12px; color:#000000; background:url(../images/white/lineNotice.gif) no-repeat left bottom; font-size:1em;}
|
||||
|
||||
.latest_comment_white ul { margin:0; padding:0; }
|
||||
.latest_comment_white ul li { height:20px; background:url(../images/white/bulletD0.gif) no-repeat left 5px; padding-left:10px; overflow:hidden; list-style:none; white-space:nowrap;}
|
||||
|
||||
.latest_comment_white ul li .title a { color:#555555; text-decoration:none; }
|
||||
.latest_comment_white ul li .title a:hover { text-decoration:underline; }
|
||||
.latest_comment_white ul li .title span.comment { color:#FE6700; font:.9em Tahoma; }
|
||||
.latest_comment_white ul li .title span.comment a { color:#FE6700; font:.9em Tahoma; }
|
||||
|
||||
.latest_comment_white ul li .date { color:#999999; font:.8em Tahoma; white-space:nowrap; margin-right:5px;}
|
||||
|
||||
.latest_comment_white .more { position:absolute; top:12px; right:11px; color:#54564b; font:.8em Tahoma;}
|
||||
.latest_comment_white a.more { text-decoration:none;}
|
||||
.latest_comment_white a.more:hover { text-decoration:underline;}
|
||||
Binary file not shown.
|
After Width: | Height: | Size: 44 B |
Binary file not shown.
|
After Width: | Height: | Size: 139 B |
Binary file not shown.
|
After Width: | Height: | Size: 44 B |
Binary file not shown.
|
After Width: | Height: | Size: 139 B |
26
widgets/newest_comment/skins/xe_official/list.html
Normal file
26
widgets/newest_comment/skins/xe_official/list.html
Normal file
|
|
@ -0,0 +1,26 @@
|
|||
<!--// 설정된 컬러셋의 종류에 따라서 css파일을 import 합니다 -->
|
||||
<!--@if($colorset=="black")-->
|
||||
<!--%import("css/black.css")-->
|
||||
<!--@else-->
|
||||
<!--%import("css/white.css")-->
|
||||
{@ $colorset = "white" }
|
||||
<!--@end-->
|
||||
|
||||
<div class="latest_comment_{$colorset}">
|
||||
<!--@if($widget_info->title)-->
|
||||
<h2>{$widget_info->title}</h2>
|
||||
<!--@end-->
|
||||
<ul>
|
||||
<!--@foreach($widget_info->comment_list as $val)-->
|
||||
<li>
|
||||
<span class="date">{$val->getRegdate("Y-m-d")}</span>
|
||||
<span class="title">
|
||||
<a href="{getUrl('','document_srl',$val->get('document_srl'))}#comment_{$val->get('comment_srl')}">{$val->getSummary($widget_info->subject_cut_size)}</a>
|
||||
</span>
|
||||
</li>
|
||||
<!--@end-->
|
||||
</ul>
|
||||
<!--@if($widget_info->title && $widget_info->module_name)-->
|
||||
<a href="{getUrl('','mid',$widget_info->module_name)}" class="more">more</a>
|
||||
<!--@end-->
|
||||
</div>
|
||||
42
widgets/newest_comment/skins/xe_official/skin.xml
Normal file
42
widgets/newest_comment/skins/xe_official/skin.xml
Normal file
|
|
@ -0,0 +1,42 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<skin version="0.2">
|
||||
<title xml:lang="ko">XE 공식 레이아웃용 최신 댓글 스킨</title>
|
||||
<title xml:lang="jp">XE 공식 레이아웃용 최신 댓글 스킨</title>
|
||||
<title xml:lang="zh-CN">XE 공식 레이아웃용 최신 댓글 스킨</title>
|
||||
<title xml:lang="en">XE 공식 레이아웃용 최신 댓글 스킨</title>
|
||||
<title xml:lang="zh-TW">XE 공식 레이아웃용 최신 댓글 스킨</title>
|
||||
<description xml:lang="ko">댓글을 출력합니다</description>
|
||||
<description xml:lang="jp">댓글을 출력합니다</description>
|
||||
<description xml:lang="zh-CN">댓글을 출력합니다</description>
|
||||
<description xml:lang="en">댓글을 출력합니다</description>
|
||||
<description xml:lang="zh-TW">댓글을 출력합니다</description>
|
||||
<version>0.1</version>
|
||||
<date>2007-02-28</date>
|
||||
<link>http://www.zeroboard.com</link>
|
||||
|
||||
<author email_address="zero@zeroboard.com" link="http://www.zeroboard.com">
|
||||
<name xml:lang="ko">제로</name>
|
||||
<name xml:lang="jp">Zero</name>
|
||||
<name xml:lang="zh-CN">zero</name>
|
||||
<name xml:lang="en">zero</name>
|
||||
<name xml:lang="zh-TW">zero</name>
|
||||
</author>
|
||||
|
||||
<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>
|
||||
<title xml:lang="zh-TW">白色背景</title>
|
||||
</color>
|
||||
<color name="black">
|
||||
<title xml:lang="ko">어두운 바탕용</title>
|
||||
<title xml:lang="jp">暗い背景用</title>
|
||||
<title xml:lang="zh-CN">暗色背景</title>
|
||||
<title xml:lang="en">Dark Background</title>
|
||||
<title xml:lang="zh-TW">暗色背景</title>
|
||||
</color>
|
||||
</colorset>
|
||||
|
||||
</skin>
|
||||
Loading…
Add table
Add a link
Reference in a new issue