Commit 4fe942189b13165c4b0462f82ca91d63d2bf12d9
1 parent
1756240f
Exists in
master
and in
39 other branches
Fixing Converse JS css
Showing
1 changed file
with
76 additions
and
0 deletions
Show diff stats
src/colab/static/css/screen.css
@@ -181,3 +181,79 @@ fieldset>legend { | @@ -181,3 +181,79 @@ fieldset>legend { | ||
181 | .plus img:hover { | 181 | .plus img:hover { |
182 | opacity: 0.8; | 182 | opacity: 0.8; |
183 | } | 183 | } |
184 | + | ||
185 | +.no-margin { | ||
186 | + margin: 0; | ||
187 | +} | ||
188 | + | ||
189 | +/* Converse JS */ | ||
190 | + | ||
191 | +#chatpanel form#converse-login { | ||
192 | + padding: 0; | ||
193 | +} | ||
194 | + | ||
195 | +#chatpanel form#converse-login input, #chatpanel form#converse-login label { | ||
196 | + margin: 2px 10px; | ||
197 | +} | ||
198 | + | ||
199 | +#chatpanel form#converse-login .login-submit{ | ||
200 | + margin-top: 10px; | ||
201 | +} | ||
202 | + | ||
203 | +a.configure-chatroom-button, a.close-chatbox-button { | ||
204 | + background-color: #F6F6F6; | ||
205 | + margin-right: 0.6em; | ||
206 | + width: 22px; | ||
207 | +} | ||
208 | + | ||
209 | +.chat-head #controlbox-tabs li { | ||
210 | + width:32%; | ||
211 | +} | ||
212 | + | ||
213 | +.oc-chat-head { | ||
214 | + height: 37px; | ||
215 | +} | ||
216 | + | ||
217 | +.chatbox dl.dropdown { | ||
218 | + margin-top: 0; | ||
219 | +} | ||
220 | + | ||
221 | +#converse-roster { | ||
222 | + height: 207px; | ||
223 | +} | ||
224 | + | ||
225 | +#chatpanel #toggle-controlbox { | ||
226 | + font-size: 100%; | ||
227 | + padding: 0 4px 23px; | ||
228 | +} | ||
229 | + | ||
230 | +#chatpanel { | ||
231 | + height: 342px; | ||
232 | +} | ||
233 | + | ||
234 | +div#controlbox-panes { | ||
235 | + width: auto; | ||
236 | +} | ||
237 | + | ||
238 | +.chat-head-chatbox, .chat-head-chatroom { | ||
239 | + height: 40.5px; | ||
240 | +} | ||
241 | + | ||
242 | +form.sendXMPPMessage { | ||
243 | + height: 76px; | ||
244 | + border: none; | ||
245 | +} | ||
246 | + | ||
247 | +form.sendXMPPMessage textarea { | ||
248 | + width: 189px; | ||
249 | + max-width: 285px; | ||
250 | + max-height: 66px; | ||
251 | +} | ||
252 | + | ||
253 | +.chatbox form.sendXMPPMessage textarea { | ||
254 | + max-width: 189px; | ||
255 | +} | ||
256 | + | ||
257 | +.chat-content, .chatroom .participants{ | ||
258 | + border: none; | ||
259 | +} |