Skip to content

Commit

Permalink
Minor appearance tweaks for export button (#14).
Browse files Browse the repository at this point in the history
* app/views/index.jade: Move Export button to top.

* public/js/index.js: Tweak text of Export button.

* public/css/main.css (.container): Increase height to accomodate the
  fact that we have two buttons now.  Probably commit b34aeba is
  when this change should have happend -- c.f. commit 72cada8.
  • Loading branch information
kfogel committed Aug 5, 2015
1 parent 9cc78c6 commit 22f8e0c
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion app/views/index.jade
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@ html(lang="en")
form(action="/upload", method="post", enctype="multipart/form-data" id="importForm")
input#import_file(type='file' name="import.csv")
button#importAll(type='button')
button#exportAll(type='button')
form#searchForm
div.form-group
input#searchField.form-control(name='searchField', type='text', placeholder='search by first or last name')
Expand All @@ -38,7 +39,6 @@ html(lang="en")
div#results
div.buttonBox
button#addNewClient(type='button')
button#exportAll(type='button')
div#intake
h1 Client Intake
form#intakeForm
Expand Down
2 changes: 1 addition & 1 deletion public/css/main.css
Original file line number Diff line number Diff line change
Expand Up @@ -150,7 +150,7 @@ button:disabled {
padding: 15px;
border: 2px solid #333;
border-radius: 10px;
height: 640px;
height: 700px;
width: 450px;
margin: 10px auto;
}
Expand Down
2 changes: 1 addition & 1 deletion public/js/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ $(function() {
var noCaveatText = "Add New Client";
var revertText = "Revert Changes";
var backText = "Back to Results";
var exportAllText = "Example Export -- All Clients and Enrollments";
var exportAllText = "Example Export -- All Clients (UDE)";
var importAllText = "Example Import";

/*
Expand Down

0 comments on commit 22f8e0c

Please sign in to comment.