From dc128159f3852cf41a55e6a614ed95b2a82d6cac Mon Sep 17 00:00:00 2001 From: Owen Leonard Date: Mon, 25 Jan 2021 12:30:55 +0000 Subject: [PATCH] Bug 27543: Tooltip on opac-messaging.pl obscured by table headers This patch corrects which Bootstrap assets are compiled with the OPAC CSS -- The file for Bootstrap tooltips should be included. To test, apply the patch and rebuild the OPAC CSS (https://wiki.koha-community.org/wiki/Working_with_SCSS_in_the_OPAC_and_staff_client). 1) Log into the OPAC. 2) Go to 'your messaging' (opac-messaging.pl). 3) Hover over the Digests only tooltip. 4) Note that the tooltip looks correct. Signed-off-by: Sally --- koha-tmpl/opac-tmpl/bootstrap/css/src/_common.scss | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/koha-tmpl/opac-tmpl/bootstrap/css/src/_common.scss b/koha-tmpl/opac-tmpl/bootstrap/css/src/_common.scss index 93a0c66712..2131189e6b 100644 --- a/koha-tmpl/opac-tmpl/bootstrap/css/src/_common.scss +++ b/koha-tmpl/opac-tmpl/bootstrap/css/src/_common.scss @@ -73,7 +73,7 @@ $sci-heading-color: #727272; // @import "../../../../../node_modules/bootstrap/scss/spinners"; @import "../../../../../node_modules/bootstrap/scss/tables"; // @import "../../../../../node_modules/bootstrap/scss/toasts"; -// @import "../../../../../node_modules/bootstrap/scss/tooltip"; +@import "../../../../../node_modules/bootstrap/scss/tooltip"; @import "../../../../../node_modules/bootstrap/scss/transitions"; @import "../../../../../node_modules/bootstrap/scss/type"; @import "../../../../../node_modules/bootstrap/scss/utilities"; -- 2.11.0