Browse Source

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

j8
fo 10 years ago
parent
commit
aff8916618
2 changed files with 6 additions and 0 deletions
  1. 1
    0
      chat.js
  2. 5
    0
      css/chat.css

+ 1
- 0
chat.js View File

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

+ 5
- 0
css/chat.css View File

@@ -75,6 +75,10 @@
75 75
 #nickinput {
76 76
     margin-top: 20px;
77 77
     font-size: 14px;
78
+    background: #231F20;
79
+    box-shadow: inset 0 0 3px 2px #a7a7a7;
80
+    border: 1px solid #a7a7a7;
81
+    color: #a7a7a7;
78 82
 }
79 83
 
80 84
 #chatspace .username {
@@ -147,6 +151,7 @@
147 151
     border: 0px none;
148 152
     background: #231F20;
149 153
     overflow: hidden;
154
+    visibility: hidden;
150 155
 }
151 156
 
152 157
 #smileysContainer {

Loading…
Cancel
Save