RLG-Web client: improvements to UI messages.

Improve the appearance of the message area, make warnings a different
color from other messages, and make some message texts more helpful.
This commit is contained in:
John "Elwin" Edwards 2012-07-11 11:10:50 -07:00
parent 16df3d2a7a
commit 3dc15a18e7
2 changed files with 23 additions and 9 deletions

View file

@ -83,7 +83,7 @@ div#keys {
div#messages {
width: 100%;
max-height: 10em;
overflow: scroll;
overflow-y: auto;
clear: both;
}
@ -97,6 +97,10 @@ div#messages > div:first-child {
font-weight: bold;
}
div#messages > div.warn {
background-color: #F0F0C0;
}
div#debug {
display: none;
}