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

Мелкие исправления

This commit is contained in:
Denis Shakhov 2013-06-18 16:30:40 +07:00
parent e8ab01a848
commit 3024622f1f
7 changed files with 32 additions and 19 deletions

View file

@ -56,8 +56,8 @@
/* Images */
.text img[align="right"] { margin: 4px 0 5px 15px; }
.text img[align="left"] { margin: 4px 15px 10px 0; }
.text img[align="right"] { margin: 4px 0 5px 25px; }
.text img[align="left"] { margin: 4px 25px 10px 0; }
.text img.image-center { display: block; margin: 0 auto; }

View file

@ -5,7 +5,7 @@
/* Write
-------------------------------------------------- */
.modal.modal-write { width: 740px; }
.modal.modal-write { width: 500px; }
.modal.modal-write .modal-content { padding: 20px 10px 0; *padding: 20px 10px 15px; }
.modal.modal-write .write-list { *overflow: hidden; *zoom: 1; }
.modal.modal-write .write-list li { width: 100px; margin: 0 10px 20px; text-align: center; overflow: hidden; display: inline-table; *float: left; }

View file

@ -27,5 +27,4 @@
.profile-page-header { font-size: 12px; font-weight: bold; margin-bottom: 20px; background: #f5f5f5; border-top: 1px solid #eee; color: #555; padding: 5px 10px 6px; }
.profile-info-about { padding: 13px 20px 20px; background: #F1F9F1; border-radius: 5px; margin-bottom: 30px; color: #000; }
.profile-info-about h3 { font-size: 18px; margin-bottom: 5px; }
.profile-info-about { padding: 20px; margin-bottom: 30px; background: #f7f7f7; color: #000; }

View file

@ -43,7 +43,9 @@
</div>
{if $oUserCurrent && $oUserCurrent->getId()!=$oUserProfile->getId()}
<a href="{router page='talk'}add/?talk_users={$oUserProfile->getLogin()}"><button type="submit" class="button button-action button-action-send-message"><i class="icon-synio-send-message"></i><span>{$aLang.user_write_prvmsg}</span></button></a>
<a href="{router page='talk'}add/?talk_users={$oUserProfile->getLogin()}" class="button button-action button-action-send-message button-icon js-tooltip" title="{$aLang.user_write_prvmsg}">
<i class="icon-synio-send-message"></i>
</a>
{/if}
<h2 class="page-header user-login word-wrap {if !$oUserProfile->getProfileName()}no-user-name{/if}" itemprop="nickname">{$oUserProfile->getLogin()}</h2>

View file

@ -65,9 +65,15 @@
{if $oUserCurrent}
<td class="cell-join">
{if $oUserCurrent->getId() != $oBlog->getOwnerId() and $oBlog->getType() == 'open'}
<button type="submit" onclick="ls.blog.toggleJoin(this, {$oBlog->getId()}); return false;" class="button button-action button-action-join {if $oBlog->getUserIsJoin()}active{/if}">
<button type="submit" onclick="ls.blog.toggleJoin(this, {$oBlog->getId()}); return false;" class="button button-action button-action-join {if $oBlog->getUserIsJoin()}active{/if}">
<i class="icon-synio-join"></i>
<span>{if $oBlog->getUserIsJoin()}{$aLang.blog_leave}{else}{$aLang.blog_join}{/if}</span>
<span>
{if $oBlog->getUserIsJoin()}
{$aLang.blog_leave}
{else}
{$aLang.blog_join}
{/if}
</span>
</button>
{else}
&mdash;

View file

@ -29,15 +29,18 @@
.wall-item-replies { padding: 4px 5px 2px; background: #fefef1; position: relative; color: #363636; margin-top: 15px; margin-bottom: 5px; font-size: 11px; border-radius: 5px; -webkit-box-shadow: 0 2px 4px #e8e8c0 inset; box-shadow: 0 2px 4px #e8e8c0 inset; }
.wall-item-replies:after { display: block; content: ""; position: absolute; top: -12px; left: 15px; width: 0; height: 0; border-width: 6px; border-color: transparent transparent #EEEED8 transparent; border-style: solid; }
.wall-item-reply { padding: 4px 0 8px 40px; margin: 0 7px; position: relative; font-size: 11px; border-bottom: 1px solid #ededc9; border-top: 1px solid #fff; }
.wall-item-reply:first-child { border-top: none; padding-top: 0; margin-top: 3px; }
.wall-item-reply:first-child .avatar { top: 4px; }
.wall-item-reply:last-child { border-bottom: none; }
.wall-item-reply .text { font-size: 11px; }
.wall-item-reply .avatar { position: absolute; top: 8px; left: 0; width: 30px; height: 30px; }
.wall-item-reply .actions { margin-bottom: 0; }
.wall-item-reply .actions .date { color: #818189; }
.wall-item-reply .author { color: #275ec2; font-weight: bold; }
.wall-item-reply { padding: 4px 0 8px 40px; margin: 0 7px; position: relative; font-size: 11px; border-bottom: 1px solid #ededc9; border-top: 1px solid #fff; }
.wall-item-reply:first-child { border-top: none; padding-top: 0; margin-top: 3px; }
.wall-item-reply:first-child .avatar { top: 4px; }
.wall-item-reply:last-child { border-bottom: none; }
.wall-item-reply .text { font-size: 11px; }
.wall-item-reply .avatar { position: absolute; top: 8px; left: 0; width: 30px; height: 30px; }
.wall-item-reply .actions { margin-bottom: 0; }
.wall-item-reply .actions .date { color: #818189; }
.wall-item-reply .author { color: #275ec2; font-weight: bold; }
.wall-item-reply .comment-content { padding: 0; border: none; }
.wall-item-reply .comment-content:before,
.wall-item-reply .comment-content:after { display: none; }
.wall-more { }
.wall-more:hover { background: #F4F4D9; }

View file

@ -43,9 +43,12 @@
<td>
{if $oUserCurrent}
{if $oUserNote}
<button type="button" class="button button-action button-action-note js-tooltip" title="{$oUserNote->getText()|escape:'html'}"><i class="icon-synio-comments-green"></i></button>
<button type="button" class="button button-icon button-note js-tooltip" title="{$oUserNote->getText()|escape:'html'}"><i class="icon-synio-comments-green"></i></button>
{/if}
<a href="{router page='talk'}add/?talk_users={$oUserList->getLogin()}"><button type="submit" class="button button-action button-action-send-message"><i class="icon-synio-send-message"></i><span>{$aLang.user_write_prvmsg}</span></button></a>
<a href="{router page='talk'}add/?talk_users={$oUserList->getLogin()}" class="button button-slider button-action button-action-send-message button-icon">
<i class="icon-synio-send-message"></i><span>{$aLang.user_write_prvmsg}</span>
</a>
{/if}
</td>
<td class="cell-skill">{$oUserList->getSkill()}</td>