diff options
-rw-r--r-- | www/css/fms.css | 13 | ||||
-rw-r--r-- | www/templates/en/around.html | 21 |
2 files changed, 17 insertions, 17 deletions
diff --git a/www/css/fms.css b/www/css/fms.css index 247c31b..b774645 100644 --- a/www/css/fms.css +++ b/www/css/fms.css @@ -153,6 +153,19 @@ margin-top: 0em; } + div[data-role='content'] { + width: 90%; + margin: 20px auto; + background-color: rgba(255, 255, 255, 0.8); + } + + #around-page div[data-role='content'] { + margin: auto; + width: auto; + height: auto; + background-color: rgba(255, 255, 255, 0); + } + #existing div[data-role='content'] { background-color: white; } diff --git a/www/templates/en/around.html b/www/templates/en/around.html index 28e104d..f3884e1 100644 --- a/www/templates/en/around.html +++ b/www/templates/en/around.html @@ -1,8 +1,9 @@ <div data-id="locate" id="around-header" data-role="header"> - <a href="#" id="cancel" class="ui-btn-left nodisplay">Cancel</a> + <a id="view-my-reports" class="nodisplay" data-role="button" href="#"> + Drafts <span class="draft_count"><% print( FMS.allDrafts.length ) %></span> + </a> <h1>Find problem</h1> - <a id="search" class="ui-btn-right">Search</a> - + <a id="login-options" class="ui-btn-right">Account</a> </div> <div data-role="content"> @@ -47,20 +48,6 @@ </script> <div class="frontpage-menu"> - <a id="view-my-reports" class="nodisplay" data-role="button" href="#"> - <strong>My Reports</strong> - <span class="draft_count"><% print( FMS.allDrafts.length ) %></span> Draft Reports - </a> - <% if ( FMS.isLoggedIn ) { %> - <a id="login-options" class="nodisplay loggedin" data-role="button" href="#"> - <strong class="signout">Sign Out</strong> - (Signed in as <strong><%= user.name %></strong>) - </a> - <% } else { %> - <a id="login-options" class="nodisplay loggedout" data-role="button" href="#"> - <strong class="signin">Sign In</strong> - </a> - <% } %> </div> |