Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docs/src/content/docs/components/offcanvas.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,7 @@ When the backdrop is set to static, the Bootstrap offcanvas will remain open whe

## Dark offcanvas

<AddedIn version="4.2.6" />
<AddedIn version="4.2.6" />

Change the appearance of offcanvas elements using utilities to better match various contexts, such as dark navbars. Here, we add `.text-bg-dark` to the `.offcanvas` and `.btn-close-white` to `.btn-close` for proper styling with a dark offcanvas. If there are dropdowns inside, consider also adding `.dropdown-menu-dark` to `.dropdown-menu`.

Expand Down
4 changes: 3 additions & 1 deletion docs/src/content/docs/forms/multi-select.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -159,7 +159,9 @@ If you want to display selected options as tags, add the `data-coreui-selection-

### Chips

Add `data-coreui-selection-type="chips"` to render selected options as [Chip](/components/chip/) components — each selection becomes a real chip with the standard chip styling and a labelled remove button. <AddedIn version="6.0.0" />
<AddedIn version="6.0.0" />

Add `data-coreui-selection-type="chips"` to render selected options as [Chip](/components/chip/) components — each selection becomes a real chip with the standard chip styling and a labelled remove button.

<Example pro code={`<select id="multiple-select-chips" data-coreui-multi-select multiple data-coreui-selection-type="chips" data-coreui-search="true">
<option value="0">Angular</option>
Expand Down
Loading