Bootstrap: Alert component - click area size for touch devices

Created on 1 Jun 2016  路  4Comments  路  Source: twbs/bootstrap

Hello,

I noticed in the alerts component with the "x" you guys put 14px by 24px size.

When the recommend size by Apple鈥檚 iPhone Human Interface Guidelines is 44px by 44px for touch interfaces. I know this is not an IOS app, but people will be viewing bootstrap from a web browser on devices.
Source : https://developer.apple.com/library/ios/documentation/UserExperience/Conceptual/MobileHIG/LayoutandAppearance.html#//apple_ref/doc/uid/TP40006556-CH54-SW1

I was wondering why did you not put it 44px by 44px and is this something you plan to change in the future.

Thank you

accessibility css v4

Most helpful comment

I would suggest changing the output from:

.alert-dismissible .close { color: inherit; position: relative; right: -1rem; top: -0.125rem; }

to:

.alert-dismissible .close { color: inherit; position: relative; right: -2rem; top: -1rem; padding: 1rem; }

Here's a before and after screenshot (see below). The thin red dotted box represents the clickable/touchable area.
current suggestion

All 4 comments

why did you not put it 44px by 44px

believe it or not, sometimes things aren't done on purpose ;)

while i believe 44x44px may be a tad on the excessive side in terms of size, i'd agree that the actual active/touch target size could be increased a bit (particularly horizontally)

What do you have in mind? Enlarge only the target area or enlarge the image?

I would suggest changing the output from:

.alert-dismissible .close { color: inherit; position: relative; right: -1rem; top: -0.125rem; }

to:

.alert-dismissible .close { color: inherit; position: relative; right: -2rem; top: -1rem; padding: 1rem; }

Here's a before and after screenshot (see below). The thin red dotted box represents the clickable/touchable area.
current suggestion

Sent a pull request with @LarryAzevedo's solution (#21112)

Was this page helpful?
0 / 5 - 0 ratings

Related issues

leomao10 picture leomao10  路  3Comments

bellwood picture bellwood  路  3Comments

kamov picture kamov  路  3Comments

fohlsom picture fohlsom  路  3Comments

eddywashere picture eddywashere  路  3Comments