Adds a style to the nick input field and hides the smiley button.

This commit is contained in:
fo 2014-10-23 14:33:45 +03:00
parent 67afdb3d45
commit aff8916618
2 changed files with 6 additions and 0 deletions

View File

@ -250,6 +250,7 @@ var Chat = (function (my) {
$('#nickname').css({visibility: 'hidden'}); $('#nickname').css({visibility: 'hidden'});
$('#chatconversation').css({visibility: 'visible'}); $('#chatconversation').css({visibility: 'visible'});
$('#usermsg').css({visibility: 'visible'}); $('#usermsg').css({visibility: 'visible'});
$('#smileysarea').css({visibility: 'visible'});
$('#usermsg').focus(); $('#usermsg').focus();
} }
}; };

View File

@ -75,6 +75,10 @@
#nickinput { #nickinput {
margin-top: 20px; margin-top: 20px;
font-size: 14px; font-size: 14px;
background: #231F20;
box-shadow: inset 0 0 3px 2px #a7a7a7;
border: 1px solid #a7a7a7;
color: #a7a7a7;
} }
#chatspace .username { #chatspace .username {
@ -147,6 +151,7 @@
border: 0px none; border: 0px none;
background: #231F20; background: #231F20;
overflow: hidden; overflow: hidden;
visibility: hidden;
} }
#smileysContainer { #smileysContainer {