1. 플래닛 글 위젯에 플래닛 이미지 가로/세로 크기 지정할 수 있도록 긴증 추가. 2. 최근글/최근댓글 위젯의 xe_official 스킨에 날짜 표시 숨기거나 표시하는 기능 추가

git-svn-id: http://xe-core.googlecode.com/svn/sandbox@5188 201d5d3c-b55e-5fd7-737f-ddc643e51545
This commit is contained in:
zero 2008-12-26 07:58:50 +00:00
parent b492cbd2e6
commit 0d856c90d9
11 changed files with 120 additions and 20 deletions

View file

@ -3,7 +3,7 @@
<!--@foreach($planet_list as $no => $item)-->
<div class="planetDocument <!--@if($colorset=='black')-->black<!--@end-->">
<!--@if($planet->getMid() != $item->getPlanetMid())-->
<h3 class="identity"><a href="{getUrl('','mid',$item->getPlanetMid())}"><img src="{$item->getPlanetPhotoSrc(50,50)}" width="50" height="50" alt="{htmlspecialchars($item->nick_name)}" /></a></h3>
<h3 class="identity"><a href="{getUrl('','mid',$item->getPlanetMid())}"><img src="{$item->getPlanetPhotoSrc($widget_info->thumbnail_width,$widget_info->thumbnail_height)}" width="{$widget_info->thumbnail_width}" height="{$widget_info->thumbnail_height}" alt="{htmlspecialchars($item->nick_name)}" /></a></h3>
<!--@end-->
<div class="article">
<span class="tooltipLT"></span>

View file

@ -1,7 +1,7 @@
@charset "utf-8";
.planetDocument { overflow:hidden; margin-bottom:5px; *zoom:1;}
.planetDocument .identity { width:52px; height:52px; padding:0; float:left; margin:3px 10px 3px 3px; background:none; *zoom:1; overflow:hidden;}
.planetDocument .identity { padding:0; float:left; margin:3px 10px 3px 3px; background:none; *zoom:1; overflow:hidden;}
.planetDocument .identity a img{ display:block; border:1px solid #545554;}
.planetDocument .article { position:relative; overflow:hidden; *zoom:1; margin:3px 0 0 0; padding:0; }