Tooltip

Tooltips are useful for conveying information when an user hovers over an element.

Example

Wrap both the tooltip's trigger element (such as an <i-button>) and the <template slot="body"> inside a <i-tooltip> component.

Tooltip Example

Placement

Trigger tooltips at the top, bottom, left or right of elements by adding the placement property to the <i-tooltip> element.

Each of the positions also has a -start or -end variant (top-start, top-end, bottom-start, bottom-end, etc.) that sets the tooltip to the start or end of the placement instead of centering it.

Tooltip Placement

Freeform

Tooltips can contain text of virtually any size. You can control the wrapping and the maximum width of the tooltip by setting white-space: normal and a fixed width property on the tooltip content.

Freeform Tooltip

Trigger Type

You can use the trigger property to trigger the tooltip on hover or click. By default, tooltips are triggered on hover, a design decision made to improve user experience.

Tooltip Trigger Type

Sizes

You're able to use the size modifier to control the size of your tooltips, using one of the available sizes: sm, md, and lg. The default size is set to md.

Tooltip Sizes

Variants

Inkline includes two predefined tooltip styles, each serving its own semantic purpose. You can set the style of a <i-tooltip> using the variant property, which can have a value of light or dark. By default, tooltips use the dark variant.

Tooltip Variants

Component API

Here you can find a list of the various customization options you can use for the tooltip components as props, as well as available slots and events.

Tooltip API

Sass Variables

Here you can find a list of the Sass variables you can use for the tooltip components. If you're looking to find common variables that these rely on, you should take a look at the Sass Variables page.

Tooltip