From 2ce86088a4f906d781eaa3b41b1738c5a509c468 Mon Sep 17 00:00:00 2001 From: "stefanorigano (SRI)" Date: Thu, 27 Oct 2022 12:20:11 +0000 Subject: [PATCH] [IMP] odoo_theme: add default BS functions Prior to this change it was not possible to use Bootstrap default SCSS functions in 'bootstrap_overridden.scss'. This commit mirrors odoo framework's architecture, injecting bootstrap '_functions.scss' at the beginning of the documentation's SCSS "bundle". Commit preparatory to the introduction of the 'Spoiler' documentation component. task-3036845 X-original-commit: 1691e8970b0aa34e39f5b2875ed40466ee779b00 Part-of: odoo/documentation#2873 --- extensions/odoo_theme/static/style.scss | 1 + 1 file changed, 1 insertion(+) diff --git a/extensions/odoo_theme/static/style.scss b/extensions/odoo_theme/static/style.scss index b0e5d86d8..afb64d7bc 100644 --- a/extensions/odoo_theme/static/style.scss +++ b/extensions/odoo_theme/static/style.scss @@ -1,3 +1,4 @@ +@import "scss/bootstrap_scss/_functions.scss"; @import "scss/_sphinx_basic"; @import "scss/_variables"; @import "scss/bootstrap_overridden";