Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/twbs/bootstrap.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPatrick Yeo <patrick.yeo@liferay.com>2017-12-18 22:48:51 +0300
committerMark Otto <markd.otto@gmail.com>2017-12-28 21:18:50 +0300
commiteaca6c0e44cc524c4f2018cffd8fd9857a30c5aa (patch)
treecc799640ca56c70ccefee7e4af0b3049628df29c /scss/_tooltip.scss
parentced70da441d487efb8589acbff445d6b5fa68bb9 (diff)
Allow customizing Popover and Tooltip `font-size` outside of `$font-size-sm`
Diffstat (limited to 'scss/_tooltip.scss')
-rw-r--r--scss/_tooltip.scss2
1 files changed, 1 insertions, 1 deletions
diff --git a/scss/_tooltip.scss b/scss/_tooltip.scss
index a03de57425..7f6a26f75a 100644
--- a/scss/_tooltip.scss
+++ b/scss/_tooltip.scss
@@ -7,7 +7,7 @@
// Our parent element can be arbitrary since tooltips are by default inserted as a sibling of their target element.
// So reset our font and text properties to avoid inheriting weird values.
@include reset-text();
- font-size: $font-size-sm;
+ font-size: $tooltip-font-size;
// Allow breaking very long words so they don't overflow the tooltip's bounds
word-wrap: break-word;
opacity: 0;