Jump to content

User Online Status in Topics (Online/Offline - рядом с ником), модификация


Атаман
 Share

Recommended Posts

Есть такой чудный хук User Online Status in Topics но мне внешний вид его отображения не нравится.

 

Стандартный код:

<if test="postOnline:|:$author['_online']">
<span class='ipsBadge ipsBadge_green'>{$this->lang->words['online_online']}</span>
<else />
<span class='ipsBadge ipsBadge_grey'>{$this->lang->words['online_offline']}</span>
</if>  

 

И я захотел его преобразоваться. И получилось такое

 

Безымянный.jpg

 

Мой код:

<if test="postOnline:|:$author['_online']">
<span class='online'></span>
<else />
<span class='offline'></span>
</if>  

 

Ну и в css добавить строки

.online {
margin-left: -10px;
border-left: 12px solid #ff9600;
padding: 10px 0;
}

.offline {
margin-left: -10px;
border-left: 12px solid #bbbbbb;
padding: 10px 0;
}

 

 

Вопрос, все ли я правильно сделал?

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
 Share

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...