mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-01-31 09:09:59 +09:00
삭제
git-svn-id: http://xe-core.googlecode.com/svn/sandbox@2327 201d5d3c-b55e-5fd7-737f-ddc643e51545
This commit is contained in:
commit
8326004cb2
2773 changed files with 91485 additions and 0 deletions
18
widgets/newest_document/skins/xe_official/css/black.css
Normal file
18
widgets/newest_document/skins/xe_official/css/black.css
Normal file
|
|
@ -0,0 +1,18 @@
|
|||
.latest_black { width:100%; padding-bottom:15px; overflow:hidden; position:relative;}
|
||||
.latest_black h2 { 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_black ul { }
|
||||
.latest_black ul li { position:relative; height:21px; background:url(../images/black/bulletD0.gif) no-repeat left 5px; padding-left:10px; overflow:hidden; }
|
||||
|
||||
.latest_black ul li .title { position:relative; z-index:0; overflow:hidden; width:100%; white-space:nowrap;}
|
||||
.latest_black ul li .title a { color:#818181; text-decoration:none; }
|
||||
.latest_black ul li .title a:hover { text-decoration:underline; }
|
||||
.latest_black ul li .title span.comment { color:#FE6700; font:.8em Tahoma; }
|
||||
.latest_black ul li .title span.comment a { color:#FE6700; font:.8em Tahoma; }
|
||||
|
||||
.latest_black ul li .date { position:relative; z-index:1; }
|
||||
.latest_black ul li .date span { background:#FFFFFF; position:relative; z-index:1; padding:3px 5px 3px 12px; text-align:right; float:right; top:-16px; _top:-18px; color:#999999; font:.8em Tahoma; }
|
||||
|
||||
.latest_black .more { position:absolute; top:12px; right:11px; color:#54564b; font:.8em Tahoma;}
|
||||
.latest_black a.more { text-decoration:none;}
|
||||
.latest_black a.more:hover { text-decoration:underline;}
|
||||
18
widgets/newest_document/skins/xe_official/css/white.css
Normal file
18
widgets/newest_document/skins/xe_official/css/white.css
Normal file
|
|
@ -0,0 +1,18 @@
|
|||
.latest_white { width:100%; padding-bottom:15px; overflow:hidden; position:relative;}
|
||||
.latest_white h2 { 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_white ul { }
|
||||
.latest_white ul li { position:relative; height:21px; background:url(../images/white/bulletD0.gif) no-repeat left 5px; padding-left:10px; overflow:hidden; }
|
||||
|
||||
.latest_white ul li .title { position:relative; z-index:0; overflow:hidden; width:100%; white-space:nowrap;}
|
||||
.latest_white ul li .title a { color:#555555; text-decoration:none; }
|
||||
.latest_white ul li .title a:hover { text-decoration:underline; }
|
||||
.latest_white ul li .title span.comment { color:#FE6700; font:.8em Tahoma; }
|
||||
.latest_white ul li .title span.comment a { color:#FE6700; font:.8em Tahoma; }
|
||||
|
||||
.latest_white ul li .date { position:relative; z-index:1; }
|
||||
.latest_white ul li .date span { background:#FFFFFF; position:relative; z-index:1; padding:3px 5px 3px 12px; text-align:right; float:right; top:-16px; _top:-18px; color:#999999; font:.8em Tahoma; }
|
||||
|
||||
.latest_white .more { position:absolute; top:12px; right:11px; color:#54564b; font:.8em Tahoma;}
|
||||
.latest_white a.more { text-decoration:none;}
|
||||
.latest_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 |
29
widgets/newest_document/skins/xe_official/list.html
Normal file
29
widgets/newest_document/skins/xe_official/list.html
Normal file
|
|
@ -0,0 +1,29 @@
|
|||
<!-- 설정된 컬러셋의 종류에 따라서 css파일을 import 합니다 -->
|
||||
|
||||
<!--@if($colorset=="black")-->
|
||||
<!--%import("css/black.css")-->
|
||||
<!--@else-->
|
||||
<!--%import("css/white.css")-->
|
||||
<!--@end-->
|
||||
|
||||
<div class="latest_{$colorset}">
|
||||
<!--@if($widget_info->title)-->
|
||||
<h2>{$widget_info->title}</h2>
|
||||
<!--@end-->
|
||||
<ul>
|
||||
<!--@foreach($widget_info->document_list as $oDocument)-->
|
||||
<li>
|
||||
<span class="title">
|
||||
<a href="{$oDocument->getPermanentUrl()}#{$oDocument->getCommentCount()}">{$oDocument->getTitleText($widget_info->subject_cut_size)}</a>
|
||||
<!--@if($oDocument->getCommentCount())-->
|
||||
<span class="comment">[<a href="{$oDocument->getPermanentUrl()}#comment">{$oDocument->getCommentCount()}</a>]</span>
|
||||
<!--@end-->
|
||||
</span>
|
||||
<span class="date"><span>{$oDocument->getRegdate("Y-m-d")}</span></span>
|
||||
</li>
|
||||
<!--@end-->
|
||||
</ul>
|
||||
<!--@if($widget_info->module_name)-->
|
||||
<a href="{getUrl('','mid',$widget_info->module_name)}" class="more">more</a>
|
||||
<!--@end-->
|
||||
</div>
|
||||
41
widgets/newest_document/skins/xe_official/skin.xml
Normal file
41
widgets/newest_document/skins/xe_official/skin.xml
Normal file
|
|
@ -0,0 +1,41 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<skin>
|
||||
<title xml:lang="ko">XE 공식 레이아웃용 최신글 스킨</title>
|
||||
<title xml:lang="jp">XEデフォルトレイアウト用の最新コンテンツ表示スキン</title>
|
||||
<title xml:lang="zh-CN">XE 官方网站主题列表</title>
|
||||
<maker email_address="zero@zeroboard.com" link="http://www.zeroboard.com" date="2007. 8. 1">
|
||||
<name xml:lang="ko">제로</name>
|
||||
<name xml:lang="jp">Zero</name>
|
||||
<name xml:lang="zh-CN">zero</name>
|
||||
<description xml:lang="ko">
|
||||
XE 공식 레이아웃에 적합한 최신글 스킨입니다.
|
||||
디자인 : 이소라 (http://ra-ra.pe.kr)
|
||||
퍼블리싱 : 정찬명 (http://naradesign.net)
|
||||
레이아웃 제작 : zero (http://blog.nzeo.com)
|
||||
</description>
|
||||
<description xml:lang="jp">
|
||||
XEデフォルトレイアウトに最も適した最新コンテンツ表示用のスキンです。
|
||||
デザイン:イソラ(http://ra-ra.pe.kr)
|
||||
パブリシング:ジョンチャンミョン(http://naradesign.net)
|
||||
レイアウト作成:Zero (http://blog.nzeo.com)
|
||||
</description>
|
||||
<description xml:lang="zh-CN">
|
||||
适合XE 官方网站的主题列表。
|
||||
设计 : So-Ra Lee(http://ra-ra.pe.kr)
|
||||
HTML/CSS : Chan-Myung Jeong(http://naradesign.net)
|
||||
布局: zero (http://blog.nzeo.com)
|
||||
</description>
|
||||
</maker>
|
||||
<colorset>
|
||||
<color name="white">
|
||||
<title xml:lang="ko">흰색 바탕용</title>
|
||||
<title xml:lang="jp">白い背景</title>
|
||||
<title xml:lang="zh-CN">白色背景</title>
|
||||
</color>
|
||||
<color name="black">
|
||||
<title xml:lang="ko">어두운 바탕용</title>
|
||||
<title xml:lang="jp">暗い背景</title>
|
||||
<title xml:lang="zh-CN">暗色背景</title>
|
||||
</color>
|
||||
</colorset>
|
||||
</skin>
|
||||
Loading…
Add table
Add a link
Reference in a new issue