From 214b15ffcc644c7f3b4c6142746162ed178ea248 Mon Sep 17 00:00:00 2001 From: Paul van Tilburg Date: Tue, 14 Feb 2012 00:23:29 +0100 Subject: [PATCH] Add an empty message box to the right of the upload button --- public/index.html | 1 + public/stylesheets/style.css | 13 ++++++++++++- 2 files changed, 13 insertions(+), 1 deletion(-) diff --git a/public/index.html b/public/index.html index 57c9754..74faac3 100644 --- a/public/index.html +++ b/public/index.html @@ -21,6 +21,7 @@ v0.4
+
+
diff --git a/public/stylesheets/style.css b/public/stylesheets/style.css index c67c922..b9fcd2e 100644 --- a/public/stylesheets/style.css +++ b/public/stylesheets/style.css @@ -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; }