Lots of places on the site have little hover hints — e.g. hovering over
EAL5 shows "Semiformally designed and tested". The problem is that these hints take about a
second to show up after you hover, which feels laggy.
The reason is that they use the browser's "built-in tooltip" (plain
HTML title attribute). That built-in tooltip has a fixed delay that cannot be changed.
The site already uses Bootstrap tooltips and those pop up instantly — so we have
two different kinds of tooltips behaving differently.
Fix:
Let Bootstrap handle the native "title" hints too, not just the ones already
marked for it. That makes every hint instant and visually consistent.
Lots of places on the site have little hover hints — e.g. hovering over
EAL5shows "Semiformally designed and tested". The problem is that these hints take about asecond to show up after you hover, which feels laggy.
The reason is that they use the browser's "built-in tooltip" (plain
HTML
titleattribute). That built-in tooltip has a fixed delay that cannot be changed.The site already uses Bootstrap tooltips and those pop up instantly — so we have
two different kinds of tooltips behaving differently.
Fix:
Let Bootstrap handle the native "title" hints too, not just the ones already
marked for it. That makes every hint instant and visually consistent.