mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-01-19 11:19:56 +09:00
git-svn-id: http://xe-core.googlecode.com/svn/trunk@717 201d5d3c-b55e-5fd7-737f-ddc643e51545
This commit is contained in:
parent
3829363a3d
commit
ef69f20c85
5 changed files with 117 additions and 32 deletions
BIN
plugins/newest_document/skins/default/blue/document_bullet.gif
Normal file
BIN
plugins/newest_document/skins/default/blue/document_bullet.gif
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 282 B |
79
plugins/newest_document/skins/default/blue/style.css
Normal file
79
plugins/newest_document/skins/default/blue/style.css
Normal file
|
|
@ -0,0 +1,79 @@
|
|||
.newest_document_default_blue {
|
||||
}
|
||||
|
||||
.newest_document_default_blue .newest_document_default_box {
|
||||
padding:5px;
|
||||
}
|
||||
|
||||
.newest_document_default_blue .newest_document_default_box .title_box {
|
||||
border:1px solid #EEEEEE;
|
||||
padding:5px;
|
||||
height:14px;
|
||||
overflow:hidden;
|
||||
}
|
||||
|
||||
.newest_document_default_blue .newest_document_default_box .title_box .title {
|
||||
background:url(./title_bullet.gif) no-repeat left;
|
||||
font-weight:bold;
|
||||
height:16px;
|
||||
padding-left:20px;
|
||||
float:left;
|
||||
}
|
||||
|
||||
.newest_document_default_blue .newest_document_default_box .title_box .more A {
|
||||
float:right;
|
||||
color:#AAAAAA;
|
||||
text-decoration:none;
|
||||
font-family:tahoma;
|
||||
font-weight:bold;
|
||||
}
|
||||
|
||||
.newest_document_default_blue .newest_document_default_box .document_box {
|
||||
padding:3px 3px 3px 20px;
|
||||
clear:both;
|
||||
border-bottom:1px solid #EEEEEE;
|
||||
height:16px;
|
||||
margin:0px 0px 2px 0px;
|
||||
overflow:hidden;
|
||||
}
|
||||
|
||||
.newest_document_default_blue .newest_document_default_box .document {
|
||||
padding:0px 0px 5px 20px;
|
||||
background:url(./document_bullet.gif) no-repeat left;
|
||||
float:left;
|
||||
}
|
||||
|
||||
.newest_document_default_blue .newest_document_default_box .document A {
|
||||
text-decoration:none;
|
||||
color:#555555;
|
||||
}
|
||||
|
||||
.newest_document_default_blue .newest_document_default_box .document A:hover {
|
||||
text-decoration:underline;
|
||||
color:#000000;
|
||||
}
|
||||
|
||||
.newest_document_default_blue .newest_document_default_box .document A:visited {
|
||||
color:#AAAAAA;
|
||||
}
|
||||
|
||||
.newest_document_default_blue .newest_document_default_box .document .comment A {
|
||||
font-size:7pt;
|
||||
font-family:tahoma;
|
||||
color:#AAAAAA;
|
||||
letter-spacing:-1px;
|
||||
}
|
||||
|
||||
.newest_document_default_blue .newest_document_default_box .document .writer {
|
||||
font-size:9pt;
|
||||
font-family:tahoma;
|
||||
color:#AAAAAA;
|
||||
}
|
||||
|
||||
|
||||
.newest_document_default_blue .newest_document_default_box .regdate {
|
||||
color:#AAAAAA;
|
||||
font-size:8pt;
|
||||
font-family:tahoma;
|
||||
float:right;
|
||||
}
|
||||
BIN
plugins/newest_document/skins/default/blue/title_bullet.gif
Normal file
BIN
plugins/newest_document/skins/default/blue/title_bullet.gif
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 1 KiB |
|
|
@ -3,26 +3,29 @@
|
|||
<!--@elseif($colorset=="blue")-->
|
||||
<!--%import("blue/style.css")-->
|
||||
<!--@end-->
|
||||
<div class="newest_document_default_box">
|
||||
<div class="title_box">
|
||||
<div class="title">{$title}</div>
|
||||
<!--@if($module_name)-->
|
||||
<div class="more"><a href="{getUrl('','mid',$module_name)}">more</a></div>
|
||||
|
||||
<div class="newest_document_default_{$colorset}">
|
||||
<div class="newest_document_default_box">
|
||||
<div class="title_box">
|
||||
<div class="title">{$title}</div>
|
||||
<!--@if($module_name)-->
|
||||
<div class="more"><a href="{getUrl('','mid',$module_name)}">more</a></div>
|
||||
<!--@end-->
|
||||
</div>
|
||||
|
||||
<!--@foreach($document_list as $val)-->
|
||||
<div class="document_box">
|
||||
<div class="document">
|
||||
<a href="{getUrl('','document_srl',$val->document_srl,'comment_count', $val->comment_count)}">{$val->title}</a>
|
||||
<!--@if($val->comment_count)-->
|
||||
<span class="comment"><a href="{getUrl('','document_srl',$val->document_srl)}#comment_top_{$val->document_srl}">( {$val->comment_count} )</a></span>
|
||||
<!--@end-->
|
||||
<span class="writer">
|
||||
- {$val->nick_name}
|
||||
</span>
|
||||
</div>
|
||||
<div class="regdate">{zdate($val->regdate, "Y-m-d")}</div>
|
||||
</div>
|
||||
<!--@end-->
|
||||
</div>
|
||||
|
||||
<!--@foreach($document_list as $val)-->
|
||||
<div class="document_box">
|
||||
<div class="document">
|
||||
<a href="{getUrl('','document_srl',$val->document_srl,'comment_count', $val->comment_count)}">{$val->title}</a>
|
||||
<!--@if($val->comment_count)-->
|
||||
<span class="comment"><a href="{getUrl('','document_srl',$val->document_srl)}#comment_top_{$val->document_srl}">( {$val->comment_count} )</a></span>
|
||||
<!--@end-->
|
||||
<span class="writer">
|
||||
- {$val->nick_name}
|
||||
</span>
|
||||
</div>
|
||||
<div class="regdate">{zdate($val->regdate, "Y-m-d")}</div>
|
||||
</div>
|
||||
<!--@end-->
|
||||
</div>
|
||||
|
|
|
|||
|
|
@ -1,15 +1,18 @@
|
|||
.newest_document_default_box {
|
||||
.newest_document_default_normal {
|
||||
}
|
||||
|
||||
.newest_document_default_normal .newest_document_default_box {
|
||||
padding:5px;
|
||||
}
|
||||
|
||||
.newest_document_default_box .title_box {
|
||||
.newest_document_default_normal .newest_document_default_box .title_box {
|
||||
border:1px solid #EEEEEE;
|
||||
padding:5px;
|
||||
height:14px;
|
||||
overflow:hidden;
|
||||
}
|
||||
|
||||
.newest_document_default_box .title_box .title {
|
||||
.newest_document_default_normal .newest_document_default_box .title_box .title {
|
||||
background:url(./title_bullet.gif) no-repeat left;
|
||||
font-weight:bold;
|
||||
height:14px;
|
||||
|
|
@ -17,7 +20,7 @@
|
|||
float:left;
|
||||
}
|
||||
|
||||
.newest_document_default_box .title_box .more A {
|
||||
.newest_document_default_normal .newest_document_default_box .title_box .more A {
|
||||
float:right;
|
||||
color:#AAAAAA;
|
||||
text-decoration:none;
|
||||
|
|
@ -25,7 +28,7 @@
|
|||
font-weight:bold;
|
||||
}
|
||||
|
||||
.newest_document_default_box .document_box {
|
||||
.newest_document_default_normal .newest_document_default_box .document_box {
|
||||
padding:3px 3px 3px 20px;
|
||||
clear:both;
|
||||
border-bottom:1px solid #EEEEEE;
|
||||
|
|
@ -34,41 +37,41 @@
|
|||
overflow:hidden;
|
||||
}
|
||||
|
||||
.newest_document_default_box .document {
|
||||
.newest_document_default_normal .newest_document_default_box .document {
|
||||
padding:0px 0px 5px 20px;
|
||||
background:url(./document_bullet.gif) no-repeat left;
|
||||
float:left;
|
||||
}
|
||||
|
||||
.newest_document_default_box .document A {
|
||||
.newest_document_default_normal .newest_document_default_box .document A {
|
||||
text-decoration:none;
|
||||
color:#555555;
|
||||
}
|
||||
|
||||
.newest_document_default_box .document A:hover {
|
||||
.newest_document_default_normal .newest_document_default_box .document A:hover {
|
||||
text-decoration:underline;
|
||||
color:#000000;
|
||||
}
|
||||
|
||||
.newest_document_default_box .document A:visited {
|
||||
.newest_document_default_normal .newest_document_default_box .document A:visited {
|
||||
color:#AAAAAA;
|
||||
}
|
||||
|
||||
.newest_document_default_box .document .comment A {
|
||||
.newest_document_default_normal .newest_document_default_box .document .comment A {
|
||||
font-size:7pt;
|
||||
font-family:tahoma;
|
||||
color:#AAAAAA;
|
||||
letter-spacing:-1px;
|
||||
}
|
||||
|
||||
.newest_document_default_box .document .writer {
|
||||
.newest_document_default_normal .newest_document_default_box .document .writer {
|
||||
font-size:9pt;
|
||||
font-family:tahoma;
|
||||
color:#AAAAAA;
|
||||
}
|
||||
|
||||
|
||||
.newest_document_default_box .regdate {
|
||||
.newest_document_default_normal .newest_document_default_box .regdate {
|
||||
color:#AAAAAA;
|
||||
font-size:8pt;
|
||||
font-family:tahoma;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue