From 1691e8970b0aa34e39f5b2875ed40466ee779b00 Mon Sep 17 00:00:00 2001
From: "stefanorigano (SRI)" <sri@odoo.com>
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

Part-of: odoo/documentation#2837
---
 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 56ef0cef1..3786eab4d 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";