Buttons violate Fitts Law
Closed
Buttons violate Fitts Law
Created by: airtonix
Your buttons are created like so :
<span class="btn btn-small">
<i class="icon-envelope"></i>
<a href="#url">Label</a>
</span>
This creates a problem. It reduces the clickable target area to that of the letters only.
Fitts law says that larger click targets are easier to click, but you deceive users into thinking that something that looks like a button will react as a button should when clicked. However unless you are clicking on the letters of the link, nothing happens apart from the CSS hover/active/click styles.
Your button html (change your css to reflect the new structure) should look like this :
<a href="#url" class="btn btn-small">
<i class="icon-envelope"></i>
<span>Label</span>
</a>
Created by: senny
Hey @airtonix
Thanks for your interest in GitLab
We don't use the Github issue tracker for feature requests. Please use http://feedback.gitlab.com/ for this purpose. Have a look at the contribution guidelines for more information.
Also don't hesitate to use the support forum if you have further questions.
If you have the time a pull request to make the necessary change would be appreciated.
By Administrator on 2013-04-29T08:08:59 (imported from GitLab project)