Outputs all available features and styles for tooltips.
The output includes the .o-tooltip
class definition.
All tooltip styles
@include oTooltip();
Tooltip styles without extra themes such as for ft professional
@include oTooltip($opts: ());
Output styles for a custom o-tooltip theme.
a custom tooltip theme named "my-product-modifier" with a slate background, and white foreground. Outputs a class 'o-tooltip--my-product-modifier'
// Outputs CSS class "o-tooltip--my-product-modifier"
@include oTooltipAddTheme('my-product-modifier', (
'background-color': oColorsByName('slate'),
'foreground-color': oColorsByName('white'),
'close-foreground-color': oColorsByName('white') // optional
));
Silent mode: on (true) or off (false) Set to false to output default tooltip classes
Outputs all available features and styles for tooltips.
The output includes the .o-tooltip
class definition.
All tooltip styles
@include oTooltip();
Tooltip styles without extra themes such as for ft professional
@include oTooltip($opts: ());