mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-01-28 15:49:57 +09:00
git-svn-id: http://xe-core.googlecode.com/svn/trunk@1333 201d5d3c-b55e-5fd7-737f-ddc643e51545
This commit is contained in:
parent
a4a6c03302
commit
f8b5f3fe45
5 changed files with 197 additions and 0 deletions
28
plugins/newest_trackback/skins/blog_newest_comment/list.html
Normal file
28
plugins/newest_trackback/skins/blog_newest_comment/list.html
Normal file
|
|
@ -0,0 +1,28 @@
|
|||
<!-- 설정된 컬러셋의 종류에 따라서 css파일을 import 합니다 -->
|
||||
|
||||
<!--@if($colorset=="normal"||!$colorset)-->
|
||||
<!--%import("normal/style.css")-->
|
||||
<!--@end-->
|
||||
|
||||
<div class="newest_comment_default_{$colorset}" style="width:100%">
|
||||
<div class="newest_comment_default_box">
|
||||
|
||||
<!--@if($plugin_info->title)-->
|
||||
<div class="title_box">
|
||||
<div class="title">{$plugin_info->title}</div>
|
||||
<!--@if($module_name)-->
|
||||
<div class="more"><a href="{getUrl('','mid',$plugin_info->module_name)}">more</a></div>
|
||||
<!--@end-->
|
||||
</div>
|
||||
<!--@end-->
|
||||
|
||||
<div class="comment_box">
|
||||
<!--@foreach($plugin_info->comment_list as $val)-->
|
||||
<div class="comment">
|
||||
<a href="{getUrl('','document_srl',$val->document_srl)}#comment_{$val->comment_srl}">{cut_str($val->content,15,'...')}</a>
|
||||
- {$val->user_name}
|
||||
</div>
|
||||
<!--@end-->
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
|
@ -0,0 +1,74 @@
|
|||
.newest_comment_default_normal {
|
||||
}
|
||||
|
||||
.newest_comment_default_normal .newest_comment_default_box {
|
||||
margin-bottom:5px;
|
||||
}
|
||||
|
||||
.newest_comment_default_normal .newest_comment_default_box .title_box {
|
||||
padding:5px;
|
||||
height:14px;
|
||||
overflow:hidden;
|
||||
color:#888888;
|
||||
}
|
||||
|
||||
.newest_comment_default_normal .newest_comment_default_box .title_box .title {
|
||||
font-weight:bold;
|
||||
height:14px;
|
||||
float:left;
|
||||
}
|
||||
|
||||
.newest_comment_default_normal .newest_comment_default_box .title_box .more A {
|
||||
float:right;
|
||||
color:#AAAAAA;
|
||||
text-decoration:none;
|
||||
font-family:tahoma;
|
||||
font-weight:bold;
|
||||
}
|
||||
|
||||
.newest_comment_default_normal .newest_comment_default_box .comment_box {
|
||||
padding:5px 3px 3px 1px;
|
||||
clear:both;
|
||||
border:3px solid #EEEEEE;
|
||||
overflow:hidden;
|
||||
}
|
||||
|
||||
.newest_comment_default_normal .newest_comment_default_box .comment {
|
||||
padding:0px 0px 5px 5px;
|
||||
color:#AAAAAA;
|
||||
}
|
||||
|
||||
.newest_comment_default_normal .newest_comment_default_box .comment A {
|
||||
text-decoration:none;
|
||||
color:#555555;
|
||||
}
|
||||
|
||||
.newest_comment_default_normal .newest_comment_default_box .comment A:hover {
|
||||
text-decoration:underline;
|
||||
color:#000000;
|
||||
}
|
||||
|
||||
.newest_comment_default_normal .newest_comment_default_box .comment A:visited {
|
||||
color:#AAAAAA;
|
||||
}
|
||||
|
||||
.newest_comment_default_normal .newest_comment_default_box .comment .comment A {
|
||||
font-size:7pt;
|
||||
font-family:tahoma;
|
||||
color:#AAAAAA;
|
||||
letter-spacing:-1px;
|
||||
}
|
||||
|
||||
.newest_comment_default_normal .newest_comment_default_box .comment .writer {
|
||||
font-size:9pt;
|
||||
font-family:tahoma;
|
||||
color:#AAAAAA;
|
||||
}
|
||||
|
||||
|
||||
.newest_comment_default_normal .newest_comment_default_box .regdate {
|
||||
color:#AAAAAA;
|
||||
font-size:8pt;
|
||||
font-family:tahoma;
|
||||
float:right;
|
||||
}
|
||||
13
plugins/newest_trackback/skins/blog_newest_comment/skin.xml
Normal file
13
plugins/newest_trackback/skins/blog_newest_comment/skin.xml
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<skin>
|
||||
<title xml:lang="ko">블로그 스타일의 최신 댓글 목록</title>
|
||||
<maker email_address="zero@zeroboard.com" link="http://www.zeroboard.com" date="2007. 2. 28">
|
||||
<name xml:lang="ko">제로</name>
|
||||
<description xml:lang="ko">블로그 스타일로 최신 댓글을 출력합니다.</description>
|
||||
</maker>
|
||||
<colorset>
|
||||
<color name="normal">
|
||||
<title xml:lang="ko">기본 컬러</title>
|
||||
</color>
|
||||
</colorset>
|
||||
</skin>
|
||||
Loading…
Add table
Add a link
Reference in a new issue