1
0
Fork 0
mirror of https://github.com/Oreolek/ifhub.club.git synced 2024-06-26 03:30:48 +03:00

Фикс багов

This commit is contained in:
Denis Shakhov 2012-05-29 09:46:49 +07:00
parent 2f93c9275d
commit f44d444e9b
8 changed files with 37 additions and 13 deletions

View file

@ -461,6 +461,15 @@ $config['block']['userfeedUsers'] = array(
)
)
);
$config['block']['rule_blog_info'] = array(
'action' => array(
'blog' => array('{topic}')
),
'blocks' => array(
'right' => array('blocks/block.blog.tpl'=>array('priority'=>300))
),
'clear' => false,
);
/**

View file

@ -26,6 +26,7 @@ ls.blog = (function ($) {
;
obj.empty().text(text);
obj.toggleClass('active');
$('#blog_user_count_'+idBlog).text(result.iCountUser);
ls.hook.run('ls_blog_toggle_join_after',[idBlog,result],obj);

View file

@ -0,0 +1,23 @@
{if $oTopic}
{assign var="oBlog" value=$oTopic->getBlog()}
{if $oBlog->getType()!='personal'}
<section class="block block-type-blog">
<header class="block-header">
<h3><a href="{$oBlog->getUrlFull()}">{$oBlog->getTitle()|escape:'html'}</a></h3>
</header>
<div class="block-content">
<span id="blog_user_count_{$oBlog->getId()}">{$oBlog->getCountUser()}</span> {$oBlog->getCountUser()|declension:$aLang.reader_declension:'russian'}<br />
{$oBlog->getCountTopic()} {$oBlog->getCountTopic()|declension:$aLang.topic_declension:'russian'}
<br />
<br />
{if $oUserCurrent and $oUserCurrent->getId()!=$oBlog->getOwnerId()}
<button class="button button-primary {if $oBlog->getUserIsJoin()}active{/if}" id="blog-join" data-only-text="1" onclick="ls.blog.toggleJoin(this,{$oBlog->getId()}); return false;">{if $oBlog->getUserIsJoin()}{$aLang.blog_leave}{else}{$aLang.blog_join}{/if}</button>&nbsp;&nbsp;
{/if}
<a href="{router page='rss'}blog/{$oBlog->getUrl()}/" class="rss">RSS</a>
</div>
</section>
{/if}
{/if}

View file

@ -62,7 +62,7 @@
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#43bb34', endColorstr='#3aa62c',GradientType=0 );
}
.button.button-primary:hover { background: #3AA62C; }
.button.button-primary.active { background: #D23E3E; }
/* Button Icon (Without text) */
.button.button-icon { padding: 7px 10px; }

View file

@ -76,7 +76,7 @@
{/if}
<td class="cell-readers" id="blog_user_count_{$oBlog->getId()}">{$oBlog->getCountUser()}</td>
<td class="cell-rating align-center">{$oBlog->getRating()}</td>
<td class="cell-rating align-center {if $oBlog->getRating() < 0}negative{/if}">{$oBlog->getRating()}</td>
</tr>
{/foreach}
{else}

View file

@ -18,6 +18,7 @@
.table a.desc { color: #000; border-color: #000; }
.table a.asc:after { content: " ↑"; }
.table a.desc:after { content: " ↓"; }
.table .cell-rating.negative { color: #f00 !important; }
.table .cell-tab { padding: 0; }
.table .cell-tab .cell-tab-inner { position: relative; top: 1px; display: inline-block; border: 1px solid transparent; border-radius: 3px 3px 0 0; border-bottom: none; }

View file

@ -35,16 +35,6 @@ $config['head']['default']['css'] = array(
"___path.static.skin___/themes/___view.theme___/style.css",
);
$config['block']['rule_blog_info'] = array(
'action' => array(
'blog' => array('{topic}')
),
'blocks' => array(
'right' => array('blocks/block.blog.tpl'=>array('priority'=>300))
),
'clear' => false,
);
return $config;
?>

View file

@ -45,7 +45,7 @@
{/if}
</td>
<td class="cell-skill">{$oUserList->getSkill()}</td>
<td class="cell-rating"><strong>{$oUserList->getRating()}</strong></td>
<td class="cell-rating {if $oUserList->getRating() < 0}negative{/if}"><strong>{$oUserList->getRating()}</strong></td>
</tr>
{/foreach}
{else}