From 54ca8957776949e2bf3a1e021a3436640dd15eb3 Mon Sep 17 00:00:00 2001 From: Machiste Quintana Date: Mon, 18 May 2015 19:30:05 -0400 Subject: [PATCH] Use configured font settings in tooltips --- static/bootstrap-overrides.less | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/static/bootstrap-overrides.less b/static/bootstrap-overrides.less index 258de6320..df61c0171 100644 --- a/static/bootstrap-overrides.less +++ b/static/bootstrap-overrides.less @@ -26,3 +26,9 @@ body { font-family: inherit; // inherit from html font-size: inherit; // inherit from html } + +// Latest Bootstrap specifies the font properties again instead of inheriting +.tooltip { + font-family: @font-family; + font-size: @font-size; +}