mirror of
https://github.com/cesanta/mongoose.git
synced 2024-11-27 12:49:01 +08:00
added todos into settings pane. changed explanation text a bit.
This commit is contained in:
parent
0f42c5ba0c
commit
218cca4aca
@ -21,8 +21,7 @@
|
||||
This application was written for educational purposes demonstrating
|
||||
how web interface could be decoupled from the business logic. Not a
|
||||
single line of HTML is generated by the server, instead, server
|
||||
communicates data in JSON format using AJAX calls. Such chat server
|
||||
could be used in your application as a collaboration tool.
|
||||
gives data to the client in JSON format.
|
||||
</div>
|
||||
</div>
|
||||
<div>
|
||||
@ -53,8 +52,12 @@
|
||||
|
||||
<div id="settings" class="hidden main">
|
||||
<div>
|
||||
<span class="top-rounded">Settings</span>
|
||||
<div class="bottom-rounded">
|
||||
<span class="top-rounded chat-title">Settings</span>
|
||||
<div class="bottom-rounded chat-content">
|
||||
<table>
|
||||
<tr><td>Max messages to display:</td><td>blah blah</td></tr>
|
||||
<tr><td>Text color:</td><td>blah blah</td></tr>
|
||||
</table>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
@ -13,6 +13,10 @@ body {
|
||||
float: left;
|
||||
}
|
||||
|
||||
td {
|
||||
text-align: left;
|
||||
}
|
||||
|
||||
#motd {
|
||||
margin-left: 170px;
|
||||
}
|
||||
@ -85,7 +89,7 @@ body {
|
||||
|
||||
.main {
|
||||
padding: 0.5em;
|
||||
background: #e0ecff;
|
||||
background: #f0fcff;
|
||||
}
|
||||
|
||||
#menu {
|
||||
|
Loading…
Reference in New Issue
Block a user