Skip to content

Commit

Permalink
Merge pull request #507 from thecoolestguy/504_dual_button_hover_bug
Browse files Browse the repository at this point in the history
changed button 'label' element to 'div' element to prevent dual rollover, fixes #504
  • Loading branch information
saschaben committed May 1, 2015
2 parents 7e0a0e7 + 4b81f93 commit fd24fc8
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
3 changes: 2 additions & 1 deletion app/styles/components/_forms.scss
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,8 @@

/* handle a the submit button alignment for a 100%-wide 1-column form or 50%-wide 2 column form */
&.form-data-submit {
@include shift(7);
@include shift(7 of 10);
@include span-columns(2 of 10);
}
}

Expand Down
4 changes: 2 additions & 2 deletions app/templates/components/new-session.hbs
Original file line number Diff line number Diff line change
Expand Up @@ -22,9 +22,9 @@
{{/if}}
</div>
</label>
<label class="form-col-12 form-data-submit">
<div class="form-col-12 form-data-submit">
<button class='cancel text' {{action 'cancel'}}>{{t 'general.cancel'}}</button>
<button class='done text' {{action 'save'}}>{{t 'general.done'}}</button>
</label>
</div>
</div>
</section>

0 comments on commit fd24fc8

Please sign in to comment.