Changeset 941
- Timestamp:
- 06/12/10 19:57:53 (20 months ago)
- Location:
- trunk/templates/skin/developer
- Files:
-
- 3 modified
-
comment.tpl (modified) (1 diff)
-
css/style.css (modified) (1 diff)
-
topic.tpl (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/templates/skin/developer/comment.tpl
r923 r941 50 50 51 51 {if $oComment->isBad()} 52 < div class="bad">{$oComment->getText()}</div>52 <span class="bad">{$oComment->getText()}</span> 53 53 {else} 54 54 {$oComment->getText()} 55 56 <br />57 {if $oUserCurrent and !$oComment->getDelete() and !$bAllowNewComment}58 <a href="javascript:lsCmtTree.toggleCommentForm({$oComment->getId()});" class="reply-link">{$aLang.comment_answer}</a>59 {/if}60 <a href="#" title="{$aLang.comment_collapse}/{$aLang.comment_expand}" class="folding" {if $bOneComment}style="display: none;"{/if}>{$aLang.comment_fold}</a>61 55 {/if} 56 57 <br /> 58 {if $oUserCurrent and !$oComment->getDelete() and !$bAllowNewComment} 59 <a href="javascript:lsCmtTree.toggleCommentForm({$oComment->getId()});" class="reply-link">{$aLang.comment_answer}</a> 60 {/if} 61 <a href="#" title="{$aLang.comment_collapse}/{$aLang.comment_expand}" class="folding" {if $bOneComment}style="display: none;"{/if}>{$aLang.comment_fold}</a> 62 62 </div> 63 63 {else} -
trunk/templates/skin/developer/css/style.css
r928 r941 341 341 342 342 /* Reply Form */ 343 .reply { padding-bottom: 10px; } 343 344 .reply textarea { height: 70px; } 344 345 .reply textarea.loader { background: #f7f7f7 url(../images/loader.gif) no-repeat center;} -
trunk/templates/skin/developer/topic.tpl
r937 r941 46 46 {/if} 47 47 48 {$oTopic->getText()} 48 {if !$tSingle} 49 {$oTopic->getTextShort()} 50 {if $oTopic->getTextShort()!=$oTopic->getText()} 51 <a href="{$oTopic->getUrl()}" title="{$aLang.topic_read_more}"> 52 {if $oTopic->getCutText()} 53 {$oTopic->getCutText()} 54 {else} 55 {$aLang.topic_read_more} 56 {/if} 57 </a> 58 {/if} 59 {else} 60 {$oTopic->getText()} 61 {/if} 49 62 </div> 50 63
