Skip to content

Commit 2407a0c

Browse files
committed
docs: update content
1 parent 935bbab commit 2407a0c

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

docs/content/4.0/components/alerts.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ toc: true
1010

1111
## Examples
1212

13-
Bootstrap alert is prepared for any length of text, as well as an optional close button. For a styling, use one of the **required** contextual classes (e.g., `.alert-success`). For inline dismissal, use the (e.g., `.alert-success`). For inline dismissal, use the [alerts JavaScript plugin](#dismissing).
13+
Bootstrap alert is prepared for any length of text, as well as an optional close button. For a styling, use one of the **required** contextual classes (e.g., `.alert-success`). For inline dismissal, use the [alerts JavaScript plugin](#dismissing).
1414

1515
{{< example >}}
1616
{{< alerts.inline >}}

docs/content/4.0/components/breadcrumb.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -38,10 +38,10 @@ The breadcrumb navigation provides links back to each previous page the user nav
3838

3939
## Dividers
4040

41-
Dividers are automatically added in CSS through [`::before`](https://developer.mozilla.org/en-US/docs/Web/CSS/::before) and [`content`](https://developer.mozilla.org/en-US/docs/Web/CSS/content). They can be changed by modifying a local CSS custom property `--coreui-breadcrumb-divider`, or through the `$breadcrumb-divider` Sass variable — and `$breadcrumb-divider-flipped` for its RTL counterpart, if needed. We default to our Sass variable, which is set as a fallback to the custom property. This way, you get a global divider that you can override without recompiling CSS at any time.
41+
Dividers are automatically added in CSS through [`::before`](https://developer.mozilla.org/en-US/docs/Web/CSS/::before) and [`content`](https://developer.mozilla.org/en-US/docs/Web/CSS/content). They can be changed by modifying a local CSS custom property `--cui-breadcrumb-divider`, or through the `$breadcrumb-divider` Sass variable — and `$breadcrumb-divider-flipped` for its RTL counterpart, if needed. We default to our Sass variable, which is set as a fallback to the custom property. This way, you get a global divider that you can override without recompiling CSS at any time.
4242

4343
{{< example >}}
44-
<nav style="--coreui-breadcrumb-divider: '>';" aria-label="breadcrumb">
44+
<nav style="--cui-breadcrumb-divider: '>';" aria-label="breadcrumb">
4545
<ol class="breadcrumb">
4646
<li class="breadcrumb-item"><a href="#">Home</a></li>
4747
<li class="breadcrumb-item active" aria-current="page">Library</li>
@@ -58,7 +58,7 @@ $breadcrumb-divider: quote(">");
5858
It's also possible to use an **embedded SVG icon**. Apply it via our CSS custom property, or use the Sass variable.
5959

6060
{{< example >}}
61-
<nav style="--coreui-breadcrumb-divider: url(&#34;data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='8' height='8'%3E%3Cpath d='M2.5 0L1 1.5 3.5 4 1 6.5 2.5 8l4-4-4-4z' fill='currentColor'/%3E%3C/svg%3E&#34;);" aria-label="breadcrumb">
61+
<nav style="--cui-breadcrumb-divider: url(&#34;data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='8' height='8'%3E%3Cpath d='M2.5 0L1 1.5 3.5 4 1 6.5 2.5 8l4-4-4-4z' fill='currentColor'/%3E%3C/svg%3E&#34;);" aria-label="breadcrumb">
6262
<ol class="breadcrumb">
6363
<li class="breadcrumb-item"><a href="#">Home</a></li>
6464
<li class="breadcrumb-item active" aria-current="page">Library</li>
@@ -70,10 +70,10 @@ It's also possible to use an **embedded SVG icon**. Apply it via our CSS custom
7070
$breadcrumb-divider: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='8' height='8'%3E%3Cpath d='M2.5 0L1 1.5 3.5 4 1 6.5 2.5 8l4-4-4-4z' fill='currentColor'/%3E%3C/svg%3E");
7171
```
7272

73-
You can also remove the divider setting `--coreui-breadcrumb-divider: '';` (empty strings in CSS custom properties counts as a value), or setting the Sass variable to `$breadcrumb-divider: none;`.
73+
You can also remove the divider setting `--cui-breadcrumb-divider: '';` (empty strings in CSS custom properties counts as a value), or setting the Sass variable to `$breadcrumb-divider: none;`.
7474

7575
{{< example >}}
76-
<nav style="--coreui-breadcrumb-divider: '';" aria-label="breadcrumb">
76+
<nav style="--cui-breadcrumb-divider: '';" aria-label="breadcrumb">
7777
<ol class="breadcrumb">
7878
<li class="breadcrumb-item"><a href="#">Home</a></li>
7979
<li class="breadcrumb-item active" aria-current="page">Library</li>

0 commit comments

Comments
 (0)