diff options
-rw-r--r-- | www/css/fms.css | 5 | ||||
-rw-r--r-- | www/templates/en/existing.html | 8 |
2 files changed, 10 insertions, 3 deletions
diff --git a/www/css/fms.css b/www/css/fms.css index ddf1460..a5f5525 100644 --- a/www/css/fms.css +++ b/www/css/fms.css @@ -205,6 +205,11 @@ margin-bottom: 0.5em; } + #existing_report div.meta p { + margin-top: 0em; + margin-bottom: 0em; + } + #existing_report div.photo { text-align: right; float: right; diff --git a/www/templates/en/existing.html b/www/templates/en/existing.html index bb5b326..ced8572 100644 --- a/www/templates/en/existing.html +++ b/www/templates/en/existing.html @@ -8,15 +8,17 @@ <% } %> <div class="meta"> + <p> <% if (lat) { %> - <span>Saved with a location</span> + Saved with a location <% } %> <% if ( category && category != '-- Pick a category --' ) { %> - <span> in the <%= category %> category</span> + in the <%= category %> category <% } %> + </p> - <span> <% print( moment( created ).fromNow() ) %></span> + <p><% print( moment( created ).fromNow() ) %></p> </div> <% if ( file ) { %> |