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
@@ -46,7 +46,7 @@ Link buttons can also be styled with the theme colors.
46
46
47
47
Add visual depth to solid buttons with gradients and shadows using the `.btn-styled` modifier class. This provides a more three-dimensional appearance that can be customized further with CSS variables.
The gradient and shadow can be customized via CSS variables:
52
52
@@ -69,7 +69,7 @@ The `.btn` classes are designed to be used with the `<button>` element. However,
69
69
70
70
When using button classes on `<a>` elements that are used to trigger in-page functionality (like collapsing content), rather than linking to new pages or sections within the current page, these links should be given a `role="button"` to appropriately convey their purpose to assistive technologies such as screen readers.
@@ -131,7 +131,7 @@ Combine with size classes for different icon button sizes:
131
131
132
132
Make buttons look inactive by adding the `disabled` boolean attribute to any `<button>` element. Disabled buttons have `pointer-events: none`, preventing hover and active states from triggering, and some additional styling to indicate the disabled state.
@@ -209,7 +209,7 @@ Checkboxes can be checked, unchecked, or disabled. Checkbox-based toggle buttons
209
209
210
210
Radios can be checked, unchecked, or disabled. Use radio-based toggle buttons to toggle states between a set of buttons that include input elements with the same `name` attribute value.
@@ -241,11 +241,11 @@ Visually, these toggle buttons are identical to our [input toggle buttons](#togg
241
241
242
242
Add `data-bs-toggle="button"` to toggle a button’s `active` state. If you’re pre-toggling a button, you must manually add the `.active` class **and**`aria-pressed="true"` to ensure that it is conveyed appropriately to assistive technologies.
0 commit comments