diff options
-rw-r--r-- | www/css/fms.css | 8 | ||||
-rw-r--r-- | www/templates/en/reports.html | 2 |
2 files changed, 9 insertions, 1 deletions
diff --git a/www/css/fms.css b/www/css/fms.css index 08db554..2a4ebb5 100644 --- a/www/css/fms.css +++ b/www/css/fms.css @@ -153,6 +153,7 @@ margin-top: 0em; } + #drafts, div[data-role='content'] { position: relative; width: 95%; @@ -160,6 +161,11 @@ background-color: rgba(255, 255, 255, 0.8); } + #drafts { + padding: 15px; + pointer-events: none; + } + #around-page div[data-role='content'] { position: static; margin: auto; @@ -178,6 +184,7 @@ margin-bottom: 0px; } + #drafts h2, div[data-role='content'] h2 { margin-top: 0px; } @@ -510,6 +517,7 @@ background-color: rgba(255,255,255,0.95); } + .ui-corner-all, .ui-btn-corner-all { -webkit-border-radius: 0px; border-radius: 0px; diff --git a/www/templates/en/reports.html b/www/templates/en/reports.html index 9fb2f6a..1779d0e 100644 --- a/www/templates/en/reports.html +++ b/www/templates/en/reports.html @@ -3,7 +3,7 @@ <a id="reports-next-btn" data-icon="arrow-r" data-iconpos="right" class="ui-btn-right">Home</a> </div> <div id="drafts"> - <h3>Draft reports</h3> + <h2>Draft reports</h2> <ul data-role="listview" data-split-theme="c" data-inset="true" data-split-icon="delete" class="reports"> <% drafts.each(function(draft) { if ( draft ) { print( '<li id="' + draft.id + '"' + ( draft.get('lat') ? ' class="with_location"' : '' ) + '><a href="#" class="use_report">' + draft.description() + ( draft.get('lat') ? ' L' : '' ) + '</a><a class="del_report" href="#" title="delete">Delete</a></li>' ); } else { print( '<li>no/li<>'); } } ); %> |