mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-01-30 08:39:58 +09:00
추천을 취소할 수 잇도록 개선.
This commit is contained in:
parent
9241357a3e
commit
6a2dc541bb
8 changed files with 80 additions and 4 deletions
|
|
@ -79,7 +79,16 @@
|
|||
content : sTitle
|
||||
});
|
||||
});
|
||||
</script>
|
||||
</script>
|
||||
</div>
|
||||
<div class="vote">
|
||||
<ul>
|
||||
<li>
|
||||
{@ debugPrint($oDocument->getVoted())}
|
||||
<a cond="$oDocument->getVoted() === false" href="#" onclick="doCallModuleAction('document','procDocumentVoteUp','{$oDocument->document_srl}');return false;"|cond="$is_logged" class="voted"> <i class="xi-thumbs-up"></i><br>{$lang->cmd_vote} {$oDocument->get('voted_count')}</a>
|
||||
<a cond="$oDocument->getVoted() !== false" href="#" onclick="doCallModuleAction('document','procDocumentVoteUpCancel','{$oDocument->document_srl}');return false;"|cond="$is_logged" class="voted"> <i class="xi-thumbs-up"></i><br>{$lang->cmd_vote} {$oDocument->get('voted_count')}</a>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
<div cond="$oDocument->hasUploadedFiles()" class="fileList">
|
||||
<button type="button" class="toggleFile" onclick="jQuery(this).next('ul.files').toggle();"><i class="xi-diskette"></i> {$lang->uploaded_file} [<strong>{$oDocument->get('uploaded_count')}</strong>]</button>
|
||||
|
|
|
|||
|
|
@ -570,6 +570,13 @@
|
|||
.read_footer .sns a:hover{border-color:#DECA79;background-color:#f9dc5f;transition: all 0.2s ease-in-out;-webkit-transition: all 0.2s ease-in-out}
|
||||
.read_footer .sns a:hover {color:#747474;transition: all 0.2s ease-in-out;-webkit-transition: all 0.2s ease-in-out}
|
||||
|
||||
.read_footer .vote{ margin-top:51px;text-align:center; }
|
||||
.read_footer .vote li{display:inline;vertical-align:top}
|
||||
.read_footer .vote a{display:inline-block;width:46px;height:52px;border:1px solid #e0e0e0;background-color:#f4f4f4; border-radius:2px;}
|
||||
.read_footer .vote i{font-size:22px;line-height:32px;color:#bcbcbc}
|
||||
.read_footer .vote a:hover{border-color:#DECA79;background-color:#f9dc5f;transition: all 0.2s ease-in-out;-webkit-transition: all 0.2s ease-in-out}
|
||||
.read_footer .vote a:hover {color:#747474;transition: all 0.2s ease-in-out;-webkit-transition: all 0.2s ease-in-out}
|
||||
|
||||
.read_footer .sign {
|
||||
clear: both;
|
||||
border: 1px solid #ddd;
|
||||
|
|
|
|||
|
|
@ -6,7 +6,7 @@
|
|||
<author email_address="developers@xpressengine.com" link="https://www.xpressengine.com/">
|
||||
<name xml:lang="ko">NAVER</name>
|
||||
</author>
|
||||
<license>LGPL v2</license>
|
||||
<license>GPL v2</license>
|
||||
<extra_vars>
|
||||
</extra_vars>
|
||||
</skin>
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue