You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The breadcrumb navigation provides links back to each previous page the user navigated through and shows the current location in a website or an application. You don’t have to add separators, because they automatically added in CSS through ::before and content.
14
+
The react breadcrumb navigation provides links back to each previous page the user navigated through and shows the current location in a website or an application. You don’t have to add separators, because they automatically added in CSS through ::before and content.
15
15
16
16
<Example>
17
17
<CBreadcrumb>
@@ -114,7 +114,7 @@ $breadcrumb-divider: none;
114
114
115
115
## Accessibility
116
116
117
-
Since breadcrumbs provide navigation, it's useful to add a significant label such as `aria-label="breadcrumb"` to explain the type of navigation implemented in the `<nav>` element. You should also add an `aria-current="page"` to the last item of the set to show that it represents the current page. **CoreUI for React.js automatically add all of this labels to breadcrumb's components.**
117
+
Since react breadcrumbs provide navigation, it's useful to add a significant label such as `aria-label="breadcrumb"` to explain the type of navigation implemented in the `<nav>` element. You should also add an `aria-current="page"` to the last item of the set to show that it represents the current page. **CoreUI for React.js automatically add all of this labels to breadcrumb's components.**
118
118
119
119
For more information, see the [WAI-ARIA Authoring Practices for the breadcrumb pattern](https://www.w3.org/TR/wai-aria-practices/#breadcrumb).
Copy file name to clipboardExpand all lines: packages/docs/content/4.2/components/button.mdx
+6-6Lines changed: 6 additions & 6 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,5 +1,5 @@
1
1
---
2
-
title: React Buttons Component
2
+
title: React Button Component
3
3
name: Buttons
4
4
description: React button component for actions in tables, forms, cards, and more. CoreUI for React.js provides various styles, states, and size. Ready to use and easy to customize.
CoreUI includes a bunch of predefined buttons components, each serving its own semantic purpose. Buttons show what action will happen when the user clicks or touches it. CoreUI buttons are used to initialize operations, both in the background or foreground of an experience.
13
+
CoreUI includes a bunch of predefined buttons components, each serving its own semantic purpose. React buttons show what action will happen when the user clicks or touches it. CoreUI buttons are used to initialize operations, both in the background or foreground of an experience.
14
14
15
15
<Example>
16
16
<CButtoncolor="primary"disabled>
@@ -50,7 +50,7 @@ CoreUI includes a bunch of predefined buttons components, each serving its own s
50
50
51
51
## Disable text wrapping
52
52
53
-
If you don't want the button text to wrap, you can add the `.text-nowrap` className to the `<CButton>`. In Sass, you can set `$btn-white-space: nowrap` to disable text wrapping for each button.
53
+
If you don't want the react button text to wrap, you can add the `.text-nowrap` className to the `<CButton>`. In Sass, you can set `$btn-white-space: nowrap` to disable text wrapping for each button.
54
54
55
55
## Button components
56
56
@@ -122,7 +122,7 @@ If you need a button, but without the strong background colors. Set `variant="ou
122
122
123
123
## Ghost buttons
124
124
125
-
If you need a ghost variant of button, set `variant="ghost"` prop to remove all background colors.
125
+
If you need a ghost variant of react button, set `variant="ghost"` prop to remove all background colors.
126
126
127
127
<Example>
128
128
<CButtoncolor="primary"variant="ghost">
@@ -169,7 +169,7 @@ If you need a ghost variant of button, set `variant="ghost"` prop to remove all
169
169
170
170
## Sizes
171
171
172
-
Larger or smaller buttons? Add `size="lg"` or `size="sm"` for additional sizes.
172
+
Larger or smaller react buttons? Add `size="lg"` or `size="sm"` for additional sizes.
0 commit comments