Add an empty message box to the right of the upload button

This commit is contained in:
Paul van Tilburg 2012-02-14 00:23:29 +01:00
parent d75b705c00
commit 214b15ffcc
2 changed files with 13 additions and 1 deletions

View File

@ -21,6 +21,7 @@
<span id="subtitle">v0.4</span>
</div>
<div id="add">+</div>
<div id="message"></div>
</h1>
</div>
<div id="add_dialog" title="Plemp it!">

View File

@ -29,9 +29,20 @@ pre {
float: right;
cursor: pointer;
color: #ccc;
font-size: 30px;
height: 28px;
}
#header #add:hover { color: #000; }
#header #message {
display: none;
float: right;
margin: 3px;
margin-right: 12px;
padding: 3px;
border: thin solid #888;
background-color: #eee;
font-size: 14px;
font-weight: normal;
}
#add_dialog { margin-top: 16px; }