Change prompt bg-color. Default client to no help-popup

This commit is contained in:
Griatch 2019-08-09 23:35:34 +02:00
parent 9d98bb35ee
commit 811a259caf
2 changed files with 5 additions and 2 deletions

View file

@ -820,7 +820,7 @@ WEBCLIENT_TEMPLATE = 'webclient'
WEBCLIENT_OPTIONS = {
"gagprompt": True, # Gags prompt from the output window and keep them
# together with the input bar
"helppopup": True, # Shows help files in a new popup window
"helppopup": False, # Shows help files in a new popup window
"notification_popup": False, # Shows notifications of new messages as
# popup windows
"notification_sound": False # Plays a sound for notifications of new

View file

@ -47,7 +47,10 @@ div {margin:0px;}
.inp { color: #555 }
/* Messages returned from the server (most messages) */
.out { color: #aaa }
.out {
color: #aaa;
background-color: #000;
}
/* Error messages (red) */
.err { color: #f00; }