Examples
With description
With description and body
Documentation
Overview
The Radio component is provided for use cases outside of forms. If it is used without label text ensure some sort of label for assistive technologies. (for example: aria-label
)
If you extend this component or modify the styles of this component, then make sure any hover styles defined are applied to the clickable elements, like <input>
or <label>
since hover styles are used to convey the clickable target area of an element. To maximize the target area, use the example html where the <label>
is the wrapping element.
Accessibility
Attribute | Applied to | Outcome |
---|---|---|
disabled | <input type="radio"> | Indicates that the element is unavailable and removes it from keyboard focus. Required when input is disabled |
Usage
Class | Applied to | Outcome |
---|---|---|
.pf-c-radio | <div> , <label> | Initiates the radio component. Required |
.pf-c-radio__input | <input type="radio"> | Initiates a radio input. Required |
.pf-c-radio__label | <label> , <span> | Initiates a label. Required |
.pf-c-radio__description | <span> | Initiates a radio description. |
.pf-c-radio__body | <span> | Initiates a radio body. |
.pf-m-standalone | .pf-c-radio | Modifies the radio component for use with a standalone <input type="radio"> . Required when there is no label |
.pf-m-disabled | .pf-c-radio__label | Modifies the radio component for the disabled state. Required when input is disabled |
CSS variables
.pf-c-radio | --pf-c-radio--GridGap | 0.25rem 0.5rem | ||
.pf-c-radio | --pf-c-radio__label--disabled--Color | #6a6e73 | ||
.pf-c-radio | --pf-c-radio__label--Color | #151515 | ||
.pf-c-radio | --pf-c-radio__label--FontWeight | 400 | ||
.pf-c-radio | --pf-c-radio__label--FontSize | 1rem | ||
.pf-c-radio | --pf-c-radio__label--LineHeight | 1.3 | ||
.pf-c-radio | --pf-c-radio__input--Height | 1rem | ||
.pf-c-radio | --pf-c-radio__input--MarginTop | calc(((1rem * 1.3) - 1rem) / 2) | ||
.pf-c-radio | --pf-c-radio__input--first-child--MarginLeft | 0.0625rem | ||
.pf-c-radio | --pf-c-radio__input--last-child--MarginRight | 0.0625rem | ||
.pf-c-radio | --pf-c-radio__description--FontSize | 0.875rem | ||
.pf-c-radio | --pf-c-radio__description--Color | #6a6e73 | ||
.pf-c-radio | --pf-c-radio__body--MarginTop | 0.5rem | ||
.pf-c-radio.pf-m-standalone | --pf-c-radio--GridGap | 0 | ||
.pf-c-radio.pf-m-standalone | --pf-c-radio__input--Height | auto | ||
.pf-c-radio.pf-m-standalone | --pf-c-radio__input--MarginTop | 0 | ||
.pf-c-radio__label:disabled | --pf-c-radio__label--Color | #6a6e73 | ||
View source on GitHub