2021-04-02 17:20:02 +00:00
|
|
|
@layer components {
|
|
|
|
.form-switch {
|
|
|
|
@apply absolute w-0 h-0 opacity-0;
|
2020-10-02 15:38:16 +00:00
|
|
|
|
2021-04-02 17:20:02 +00:00
|
|
|
&:checked + .form-switch-slider {
|
2021-11-05 14:36:34 +00:00
|
|
|
@apply bg-accent-base;
|
2021-04-02 17:20:02 +00:00
|
|
|
}
|
2020-10-02 15:38:16 +00:00
|
|
|
|
2021-04-02 17:20:02 +00:00
|
|
|
&:focus + .form-switch-slider {
|
2021-11-05 14:36:34 +00:00
|
|
|
@apply ring-accent;
|
2021-04-02 17:20:02 +00:00
|
|
|
}
|
2020-10-02 15:38:16 +00:00
|
|
|
|
2021-04-02 17:20:02 +00:00
|
|
|
&:checked + .form-switch-slider::before {
|
2024-05-12 18:38:33 +00:00
|
|
|
@apply transform translate-x-6;
|
2021-09-10 16:02:25 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
&:checked + .form-switch-slider::after {
|
2024-05-12 18:38:33 +00:00
|
|
|
@apply transform translate-x-0 left-1.5;
|
2023-06-08 14:42:32 +00:00
|
|
|
|
2024-05-12 18:38:33 +00:00
|
|
|
content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23ffffff'%3E%3Cpath d='m10 15.172 9.192-9.193 1.415 1.414L10 18l-6.364-6.364 1.414-1.414z'/%3E%3C/svg%3E%0A");
|
2021-09-15 15:58:21 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
&:checked + .form-switch-slider.form-switch-slider--small::before {
|
|
|
|
@apply translate-x-6;
|
|
|
|
}
|
|
|
|
|
|
|
|
&:checked + .form-switch-slider.form-switch-slider--small::after {
|
|
|
|
@apply left-1;
|
2021-04-02 17:20:02 +00:00
|
|
|
}
|
2020-10-02 15:38:16 +00:00
|
|
|
}
|
|
|
|
|
2021-04-02 17:20:02 +00:00
|
|
|
.form-switch-slider {
|
2024-05-12 18:38:33 +00:00
|
|
|
@apply relative inset-0 flex-shrink-0 h-8 transition duration-200 rounded-full cursor-pointer w-14 bg-highlight border-contrast border-3;
|
2021-09-15 15:58:21 +00:00
|
|
|
|
|
|
|
&.form-switch-slider--small {
|
|
|
|
@apply w-12 h-6;
|
|
|
|
|
|
|
|
&::before {
|
|
|
|
@apply w-4 h-4;
|
|
|
|
}
|
|
|
|
|
|
|
|
&::after {
|
|
|
|
@apply translate-x-5;
|
2023-06-08 14:42:32 +00:00
|
|
|
|
2021-09-15 15:58:21 +00:00
|
|
|
left: 0;
|
|
|
|
top: -1px;
|
|
|
|
}
|
|
|
|
}
|
2020-10-02 15:38:16 +00:00
|
|
|
|
2021-04-02 17:20:02 +00:00
|
|
|
&::before {
|
2021-11-05 14:36:34 +00:00
|
|
|
@apply absolute z-10 w-6 h-6 transition duration-200 rounded-full shadow bg-elevated ring-1 ring-black ring-opacity-5;
|
2023-06-08 14:42:32 +00:00
|
|
|
|
2021-04-02 17:20:02 +00:00
|
|
|
content: "";
|
2021-09-15 15:58:21 +00:00
|
|
|
left: 1px;
|
|
|
|
bottom: 1px;
|
2021-09-10 16:02:25 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
&::after {
|
2024-05-12 18:38:33 +00:00
|
|
|
@apply absolute w-4 h-4 transition duration-150 transform top-1;
|
2021-09-10 16:02:25 +00:00
|
|
|
|
2024-05-12 18:38:33 +00:00
|
|
|
--tw-translate-x: 1.125rem;
|
|
|
|
|
|
|
|
content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' %3E%3Cpath d='m12 10.586 4.95-4.95 1.414 1.414-4.95 4.95 4.95 4.95-1.414 1.414-4.95-4.95-4.95 4.95-1.414-1.414 4.95-4.95-4.95-4.95L7.05 5.636z'/%3E%3C/svg%3E%0A");
|
2021-09-15 15:58:21 +00:00
|
|
|
left: 10px;
|
2021-04-02 17:20:02 +00:00
|
|
|
}
|
2020-10-02 15:38:16 +00:00
|
|
|
}
|
|
|
|
}
|