From 9727e142b60ce840ab484aca3b9fc5d360e2a0a0 Mon Sep 17 00:00:00 2001 From: Damyon Wiese Date: Tue, 9 Aug 2016 11:40:59 +0800 Subject: [PATCH] MDL-55388 theme_noname: Define the purpose of bootstrap-rtl.scss Add a comment explaining what the bootstrap-rtl.scss file is for (and what it is not for). Part of MDL-55071 --- theme/noname/scss/moodle/bootstrap-rtl.scss | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/theme/noname/scss/moodle/bootstrap-rtl.scss b/theme/noname/scss/moodle/bootstrap-rtl.scss index 0d08820fc59..2886586d2e3 100644 --- a/theme/noname/scss/moodle/bootstrap-rtl.scss +++ b/theme/noname/scss/moodle/bootstrap-rtl.scss @@ -1,7 +1,14 @@ +/** + * Bootstrap overrides for RTL + * + * This file is only for overriding sass from upstream bootstrap, all general rtl fixes for + * moodle scss should be placed immediately after the definition of the ltr rule. + */ + .breadcrumb-item { + .breadcrumb-item::before { content: "#{$breadcrumb-divider-rtl}"; /*rtl:remove*/ content: "#{$breadcrumb-divider}"; } -} \ No newline at end of file +}