From e3841ba4428c64e24959150806abb804208630e7 Mon Sep 17 00:00:00 2001 From: Deckluhm Date: Sat, 22 Apr 2017 15:09:28 +0200 Subject: [PATCH] Add new $has-tip-cursor variable to customize tooltips cursor --- scss/components/_tooltip.scss | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/scss/components/_tooltip.scss b/scss/components/_tooltip.scss index d31991aae..f363d3f87 100644 --- a/scss/components/_tooltip.scss +++ b/scss/components/_tooltip.scss @@ -6,6 +6,10 @@ /// @group tooltip //// +/// Default cursor of the defined term. +/// @type Keyword +$has-tip-cursor: help !default; + /// Default font weight of the defined term. /// @type Keyword | Number $has-tip-font-weight: $global-weight-bold !default; @@ -48,7 +52,7 @@ $tooltip-radius: $global-radius !default; border-bottom: $has-tip-border-bottom; font-weight: $has-tip-font-weight; - cursor: help; + cursor: $has-tip-cursor; } @mixin tooltip { -- 2.47.2