Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/twbs/bootstrap.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/scss
diff options
context:
space:
mode:
authorMark Otto <markdotto@gmail.com>2020-11-29 22:56:08 +0300
committerXhmikosR <xhmikosr@gmail.com>2020-12-01 20:17:06 +0300
commit3b015ed34eb229fe361b7d6c21e1c0eed232212a (patch)
tree54ed5a64bb5489e2f53d366f1b9e0c2f5d7bdaaa /scss
parentff130b17dcef596466318f6b8f1adb9f1edf6048 (diff)
Update breadcrumb docs and dividers
- Add CSS custom property with fallback to Sass variable - Update docs to mention the new CSS custom property - Rewrite some of the docs to use divider instead of separator, and add some context here and there
Diffstat (limited to 'scss')
-rw-r--r--scss/_breadcrumb.scss2
1 files changed, 1 insertions, 1 deletions
diff --git a/scss/_breadcrumb.scss b/scss/_breadcrumb.scss
index b30668b5dd..aa9dd4ad70 100644
--- a/scss/_breadcrumb.scss
+++ b/scss/_breadcrumb.scss
@@ -18,7 +18,7 @@
float: left; // Suppress inline spacings and underlining of the separator
padding-right: $breadcrumb-item-padding-x;
color: $breadcrumb-divider-color;
- content: escape-svg($breadcrumb-divider);
+ content: var(--bs-breadcrumb-divider, escape-svg($breadcrumb-divider));
}
}