-
Notifications
You must be signed in to change notification settings - Fork 1
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
UI improvements - forms #172
base: 131-main-ui
Are you sure you want to change the base?
Conversation
src/liquid/place/create_form.html
Outdated
</div> | ||
<div class=""> | ||
<button id="place_create_submit" class="btn">Save</button> | ||
<a href="/" class="clear-btn" class="button">Cancel</a> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Do we have both a btn
and button
class? Also the Save
button casts a shadow but the cancel one doesn't even though they should be visually on the save level
src/scss/_input-forms.scss
Outdated
padding: 5px 10px; | ||
cursor: pointer; | ||
&:hover { | ||
background-color: #337ab7; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This color is too strong for the hover state
<td>false</td> | ||
<td>Name of a <i>{{ contactType.friendly }} to replace</i> (leave blank to create new)</td> | ||
</tr> | ||
<div style="width: 70%; margin-bottom: 10px;" id="bulk-upload-file"> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Lets not use inline styles like this
</div> | ||
<div> | ||
<button id="place_create_submit" class="btn">Add</button> | ||
<a href="/" id="cancel" class="clear-btn">Cancel</a> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
These two buttons should be on the same visual level but use the of class btn
adds a shadow to the Add
button
<td>Name of place {{ row.level }} above in hierarchy</td> | ||
</tr> | ||
{% endfor %} | ||
<div class="table-container"> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
We can do without the shadow on this table
c67e457
to
c36c9c9
Compare
06f5d90
to
7baca43
Compare
@freddieptf this is ready for review |
@freddieptf requesting review here this is ready |
Description
This PR is 3/3 of #168 and #157
Fixes #131