Adds a style to the nick input field and hides the smiley button.
This commit is contained in:
parent
67afdb3d45
commit
aff8916618
1
chat.js
1
chat.js
|
@ -250,6 +250,7 @@ var Chat = (function (my) {
|
|||
$('#nickname').css({visibility: 'hidden'});
|
||||
$('#chatconversation').css({visibility: 'visible'});
|
||||
$('#usermsg').css({visibility: 'visible'});
|
||||
$('#smileysarea').css({visibility: 'visible'});
|
||||
$('#usermsg').focus();
|
||||
}
|
||||
};
|
||||
|
|
|
@ -75,6 +75,10 @@
|
|||
#nickinput {
|
||||
margin-top: 20px;
|
||||
font-size: 14px;
|
||||
background: #231F20;
|
||||
box-shadow: inset 0 0 3px 2px #a7a7a7;
|
||||
border: 1px solid #a7a7a7;
|
||||
color: #a7a7a7;
|
||||
}
|
||||
|
||||
#chatspace .username {
|
||||
|
@ -147,6 +151,7 @@
|
|||
border: 0px none;
|
||||
background: #231F20;
|
||||
overflow: hidden;
|
||||
visibility: hidden;
|
||||
}
|
||||
|
||||
#smileysContainer {
|
||||
|
|
Loading…
Reference in New Issue