mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-05-12 05:22:35 +09:00
git-svn-id: http://xe-core.googlecode.com/svn/sandbox@3554 201d5d3c-b55e-5fd7-737f-ddc643e51545
This commit is contained in:
parent
805b50e5b5
commit
06c4a4d05c
3 changed files with 21 additions and 16 deletions
|
|
@ -36,11 +36,12 @@ Jeong, Chan Myeong 070601~070630
|
||||||
.secretContent .content { padding:10px 0 10px 0; background-color:#FFFFFF; display:block; }
|
.secretContent .content { padding:10px 0 10px 0; background-color:#FFFFFF; display:block; }
|
||||||
|
|
||||||
/* blog Style Notice */
|
/* blog Style Notice */
|
||||||
.blogNotice { background:url("../images/common/notice.gif") no-repeat -2px 3px; padding:3px 0 3px 18px; border-top:1px solid #e0e1db; }
|
.blogNotice { margin-bottom:10px; padding:5px; border:1px solid #e0e1db;}
|
||||||
.blogNotice .date { font-family:verdana; font-size:.9em;color:#AAAAAA; }
|
.blogNotice .item { background:url("../images/common/notice.gif") no-repeat -2px 3px; padding:3px 0 3px 18px; }
|
||||||
.blogNotice a { text-decoration:none; color:#444444; }
|
.blogNotice .item .date { font-family:verdana; font-size:.9em;color:#AAAAAA; }
|
||||||
.blogNotice a:hover { text-decoration:underline}
|
.blogNotice .item a { text-decoration:none; color:#444444; }
|
||||||
.blogNotice .replyAndTrackback { color:#AAAAAA; font-size:.9em; }
|
.blogNotice .item a:hover { text-decoration:underline}
|
||||||
|
.blogNotice .item .replyAndTrackback { color:#AAAAAA; font-size:.9em; }
|
||||||
|
|
||||||
/* boardRead */
|
/* boardRead */
|
||||||
.viewDocument { border:1px solid #e0e1db; padding:10px; border-bottom:2px solid #AAAAAA; margin-bottom:20px; }
|
.viewDocument { border:1px solid #e0e1db; padding:10px; border-bottom:2px solid #AAAAAA; margin-bottom:20px; }
|
||||||
|
|
|
||||||
|
|
@ -21,20 +21,24 @@
|
||||||
<!--@else-->
|
<!--@else-->
|
||||||
|
|
||||||
<!-- 공지사항 -->
|
<!-- 공지사항 -->
|
||||||
<!--@foreach($notice_list as $no => $document)-->
|
<!--@if($notice_list)-->
|
||||||
<div class="blogNotice">
|
<div class="blogNotice">
|
||||||
<span class="date">[{$document->getRegdate("Y-m-d")}]</span>
|
<!--@foreach($notice_list as $no => $document)-->
|
||||||
<a href="{getUrl('document_srl',$document->document_srl)}">{$document->getTitle()}</a>
|
<div class="item">
|
||||||
|
<span class="date">[{$document->getRegdate("Y-m-d")}]</span>
|
||||||
|
<a href="{getUrl('document_srl',$document->document_srl)}">{$document->getTitle()}</a>
|
||||||
|
|
||||||
<!--@if($document->getCommentCount())-->
|
<!--@if($document->getCommentCount())-->
|
||||||
<span class="replyAndTrackback" title="Replies"><img src="./images/common/iconReply.gif" alt="" width="12" height="12" class="icon" /> <strong>{$document->getCommentCount()}</strong></span>
|
<span class="replyAndTrackback" title="Replies"><img src="./images/common/iconReply.gif" alt="" width="12" height="12" class="icon" /> <strong>{$document->getCommentCount()}</strong></span>
|
||||||
<!--@end-->
|
<!--@end-->
|
||||||
|
|
||||||
<!--@if($document->getTrackbackCount())-->
|
<!--@if($document->getTrackbackCount())-->
|
||||||
<span class="replyAndTrackback" title="Trackbacks"><img src="./images/common/iconTrackback.gif" alt="" width="12" height="13" class="trackback icon" /> <strong>{$document->getTrackbackCount()}</strong></span>
|
<span class="replyAndTrackback" title="Trackbacks"><img src="./images/common/iconTrackback.gif" alt="" width="12" height="13" class="trackback icon" /> <strong>{$document->getTrackbackCount()}</strong></span>
|
||||||
<!--@end-->
|
<!--@end-->
|
||||||
|
|
||||||
{$document->printExtraImages(60*60*$module_info->duration_new)}
|
{$document->printExtraImages(60*60*$module_info->duration_new)}
|
||||||
|
</div>
|
||||||
|
<!--@end-->
|
||||||
</div>
|
</div>
|
||||||
<!--@end-->
|
<!--@end-->
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -2,7 +2,7 @@ function editorStartTextarea(editor_sequence, content_key, primary_key) {
|
||||||
var obj = xGetElementById('editor_'+editor_sequence);
|
var obj = xGetElementById('editor_'+editor_sequence);
|
||||||
obj.form.setAttribute('editor_sequence', editor_sequence);
|
obj.form.setAttribute('editor_sequence', editor_sequence);
|
||||||
|
|
||||||
xWidth(obj,xWidth(obj.parentNode)-20);
|
xWidth(obj,xWidth(obj.parentNode)-24);
|
||||||
|
|
||||||
editorRelKeys[editor_sequence] = new Array();
|
editorRelKeys[editor_sequence] = new Array();
|
||||||
editorRelKeys[editor_sequence]["primary"] = obj.form[primary_key];
|
editorRelKeys[editor_sequence]["primary"] = obj.form[primary_key];
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue