git-svn-id: http://xe-core.googlecode.com/svn/trunk@1701 201d5d3c-b55e-5fd7-737f-ddc643e51545

This commit is contained in:
zero 2007-06-20 07:17:08 +00:00
parent 6b9ceba717
commit 98504407e8
4 changed files with 18 additions and 74 deletions

View file

@ -0,0 +1,6 @@
.newestComment { position:relative; border:1px solid #e0e1db; background:url(../images/normal/bgBoxTypeB.gif) repeat-x left top; margin-bottom:.7em; }
.newestComment h2 { position:relative; border-left:1px solid #ffffff; border-right:1px solid #ffffff; padding:7px 0 0 12px; height:21px; _height:20px; font-size:1em; color:#54564b; font-family:Tahoma;}
/*:first-child+html .boxTypeB h2 { height:20px;} */
.newestComment .commentList { padding:1.2em; overflow:hidden;}
.newestComment .commentList li { display:block; color:#a4a4a4; margin-right:.1em; line-height:1.5em;}
.newestComment .commentList li a { color:#a4a4a4;}

Binary file not shown.

After

Width:  |  Height:  |  Size: 200 B

View file

@ -1,29 +1,21 @@
<!-- 설정된 컬러셋의 종류에 따라서 css파일을 import 합니다 -->
<!--@if($colorset=="normal"||!$colorset)-->
<!--%import("normal/style.css")-->
<!--%import("css/normal.css")-->
<!--@end-->
<div class="newest_comment_{$colorset}" style="width:100%">
<div class="newest_comment_box">
<div class="newestComment">
<div class="header">
<!--@if($widget_info->title)-->
<div class="title_box">
<div class="title">{$widget_info->title}</div>
</div>
<h2>{$widget_info->title}</h2>
<!--@else-->
<h2>tags</h2>
<!--@end-->
<div class="comment_box">
<!--@foreach($widget_info->comment_list as $val)-->
<div class="comment">
<a href="{getUrl('','document_srl',$val->document_srl)}#comment_{$val->comment_srl}">{htmlspecialchars(cut_str(strip_tags($val->content),13,'...'))}</a>
<!--@if($val->member_srl)-->
<span class="member_{$val->member_srl} writer">{$val->nick_name}</span>
<!--@else-->
<span class="writer">{$val->nick_name}</span>
<!--@end-->
</div>
<!--@end-->
</div>
</div>
<ul class="commentList">
<!--@foreach($widget_info->comment_list as $val)-->
<li><a href="{getUrl('','document_srl',$val->document_srl)}#comment_{$val->comment_srl}">{htmlspecialchars(cut_str(strip_tags($val->content),13,'...'))}</a></li>
<!--@end-->
</ul>
</div>

View file

@ -1,54 +0,0 @@
.newest_comment_normal {
}
.newest_comment_normal .newest_comment_box {
margin-bottom:5px;
}
.newest_comment_normal .newest_comment_box .title_box {
padding:5px;
height:14px;
overflow:hidden;
color:#888888;
}
.newest_comment_normal .newest_comment_box .title_box .title {
font-weight:bold;
height:14px;
float:left;
}
.newest_comment_normal .newest_comment_box .comment_box {
padding:5px 3px 3px 1px;
clear:both;
border:3px solid #EEEEEE;
overflow:hidden;
}
.newest_comment_normal .newest_comment_box .comment {
padding:0px 0px 5px 5px;
height:16px;
overflow:hidden;
color:#AAAAAA;
clear:both;
}
.newest_comment_normal .newest_comment_box .comment A {
text-decoration:none;
float:left;
color:#555555;
}
.newest_comment_normal .newest_comment_box .comment A:hover {
text-decoration:underline;
color:#000000;
}
.newest_comment_normal .newest_comment_box .comment A:visited {
color:#AAAAAA;
}
.newest_comment_normal .newest_comment_box .comment .writer {
cursor:pointer;
float:right;
}