Skip to content

.tooltip --> .ember-tooltip

Compare
Choose a tag to compare
@sir-dunxalot sir-dunxalot released this 15 Jul 01:11
· 686 commits to master since this release

Small Breaking Change

A breaking change was introduced for selectors and CSS styling. Classes were previously prefixed by .tooltip. Now, classes are prefixed by 2.0.0 (#80). If you have custom styling that relies on any class that begins with .tooltip you will need to update these classes to start with .embet-tooltip.

For example:

  • .tooltip --> .ember-tooltip
  • .tooltip-fade --> .ember-tooltip-fade
  • .tooltip-target-attached-right --> .ember-tooltip-target-attached-right
  • And so forth...

Bugs

Additionally, this release fixes a small bug with aria-describedby, which incorrectly used to contain an # in its value. For example, <div aria-describedby="#123"></div> is now <div aria-describedby="123"></div>.