mirror of
https://github.com/discourse/discourse.git
synced 2024-11-25 07:08:44 +08:00
0fccea3762
- Delete a positive tabindex from a reused component - Copy :hover styles to :focus - Replace an 'outline: 0' rule with a TODO for a custom :focus style Discovered while fixing the no-positive-tabindex lint.
18 lines
336 B
Handlebars
18 lines
336 B
Handlebars
<div class="radio-area">
|
|
<input type="radio" name={{label}}>
|
|
<span class="radio-label">
|
|
{{#if icon}}
|
|
{{d-icon icon}}
|
|
{{/if}}
|
|
{{label}}
|
|
</span>
|
|
{{#if extraLabel}}
|
|
<span class="extra-label">
|
|
{{html-safe extraLabel}}
|
|
</span>
|
|
{{/if}}
|
|
</div>
|
|
<div class="radio-description">
|
|
{{description}}
|
|
</div>
|