<div class="bux-switch">
<fieldset class="bux-switch__fieldset" id="bux-switch__switch-1194143879" aria-describedby="bux-switch__helper-text-1194143879">
<legend class="bux-switch__legend">Form Input Label</legend>
<span class="bux-switch__helper-text" id="bux-switch__helper-text-1194143879">Helper Text</span>
<div class="bux-switch__input-spacer">
<div class="bux-switch__option bux-switch__option--disabled">
<input type="checkbox" id="bux-switch__option-996751148" role="switch" disabled>
<label for="bux-switch__option-996751148">Item 1</label>
</div>
<div class="bux-switch__option bux-switch__option--disabled">
<input type="checkbox" id="bux-switch__option-1372432475" role="switch" disabled>
<label for="bux-switch__option-1372432475">Item 2</label>
</div>
<div class="bux-switch__option bux-switch__option--disabled">
<input type="checkbox" id="bux-switch__option-969966758" role="switch" disabled>
<label for="bux-switch__option-969966758">Item 3</label>
</div>
</div>
</fieldset>
</div>
{#
Switch
Available variables:
- required: Boolean. Set to true to require form element.
- modifier: Sets the variant of the form item. Allowed values: null,
error, disabled.
- legend: String for the form legend.
- helper_text: String for the form helper text.
- items: Array containing the form items.
- item.text: Display text for the form item.
- error_helper_text:Content for the error helper text.
#}
{% set random_seed = random() %}
{% set switch_id = "switch-" ~ random_seed %}
<div class="bux-switch">
<fieldset class="bux-switch__fieldset" id="bux-switch__{{ switch_id }}" aria-describedby="{% if "error" in modifier %} bux-switch__error-message {% endif %}bux-switch__helper-text-{{ random_seed }}"
{% if required %} required {% endif %}
{% if "error" in modifier %} aria-invalid="true" {% endif %}>
<legend class="bux-switch__legend">{{ legend }}{% if required %} <span class="bux-switch__required">{{required}}</span>{% endif %}</legend>
<span class="bux-switch__helper-text" id="bux-switch__helper-text-{{ random_seed }}">{{ helper_text }}</span>
<div class="bux-switch__input-spacer">
{% for item in items %}
{% set random_seed_option = random() %}
{% set switch_option_id = "bux-switch__option-" ~ random_seed_option %}
<div class="bux-switch__option{% if modifier %} bux-switch__option--{{ modifier }}{% endif %}">
<input type="checkbox" id="{{ switch_option_id }}" role="switch" {% if "disabled" in modifier %} disabled {% endif %}>
<label for="{{ switch_option_id }}">{{ item.text }}</label>
</div>
{% endfor %}
</div>
{% if "error" in modifier %}
<span class="bux-switch__error-message" id="bux-switch__error-message-{{ random_seed }}">{{ error_helper_text }}</span>
{% endif %}
</fieldset>
</div>
modifier: disabled
legend: Form Input Label
helper_text: Helper Text
items:
- text: Item 1
- text: Item 2
- text: Item 3
.bux-switch {
@include form-element;
&__option {
display: grid;
grid-template-columns: 45px auto;
gap: $sp-12;
label {
margin-top: 4px;
}
& + & {
margin-top: $sp-8;
}
input {
appearance: none;
cursor: pointer;
background-color: $gray-dark-80;
border: none;
border-radius: 32px;
height: 24px;
width: 45px;
display: grid;
place-content: center;
margin: 0;
transform: translateY(3px);
&:checked {
background-color: $scarlet;
}
&:before {
content: "";
height: 18px;
width: 18px;
background-color: white;
transition: 120ms transform ease-in-out;
border-radius: 50%;
transform: translate(-10px, 4px);
}
&:checked:before {
transform: translate(10px, 4px);
}
&:after {
content: "";
height: 9px;
width: 2px;
border-radius: 2px;
background-color: $white;
transition: 120ms transform ease-in-out;
transform: translate(0, -6px);
}
&:checked:after {
background-color: $scarlet;
transform: translate(18.5px, -9px);
}
&:focus {
outline: 2px solid $focus;
}
}
&--disabled input {
background-color: $gray-light-40;
}
&--disabled label {
color: $gray-light-40;
}
}
&__error-message {
@include form-error-message;
margin-top: 8px;
}
}
No notes defined.