Page MenuHomePhabricator

VisualEditor: Hover effect inconsistent for Help icon
Closed, DeclinedPublic

Description

Noticed on mediawiki.org, currently at 1.23wmf2 (rMW88c7b3fee763)

On hover, the Help icon in the VisualEditor toolbar gets both the light gray border with all corners rounded, and the darker gray border that, if I look at the Menu icon for reference, should probably only appear when the button is pressed, not just hovered.

Furthermore, the dark gray border only has the left corners rounded.


Version: unspecified
Severity: trivial

Details

Reference
bz56617

Event Timeline

bzimport raised the priority of this task from to Low.Nov 22 2014, 2:40 AM
bzimport set Reference to bz56617.

The behaviour is correct because the help icon is actually in a group with the notification icon, however the notification icon is hidden when there are no notifications. This is also the cause of the rounded corners problem, as the CSS renderer doesn't match the last-child rule if the next child is hidden.

Solutions:

  • Group help and notifications with the hamburger menu. This avoids the rounded corners problem, and the issue of the colours looking wrong because it is a set of one, but is hacky.
  • Destroy the notifications icon when not in use. This would involve a bit of a rewrite as in theory it's possible to push notifications after load and the button should appear when this happens.
  • Ungroup help and notifications. This avoids all the problems here.

This doesn't appear to be a problem anymore (not even on MonoBook, which still uses the original toolbar design), or I'm misunderstanding your description. In the future, please file bugs with screenshots. :(