| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374 |
- /* The switch - the box around the slider */
- .switch {
- cursor: pointer;
- @include flexbox();
- @include align-items(center);
- @include justify-content(center);
- &__rel {
- position: relative;
- height: auto;
- padding: 0 6px;
-
- @include themify($themes) {
- color: themed('landing-button-default');
- @include on-event {
- color: themed('body-color');
- background-color: themed('dropdown-hover-background-color');
- }
- }
- }
- &__abs {
- position: absolute;
- z-index: z('menu');
- width: 50px;
- height: 50px;
- margin: auto 0;
- &[data-dir="rtl"] {
- right: -75px;
- top: -16px;
- }
- &[data-dir="ltr"] {
- left: -75px;
- top: -16px;
- }
- @include themify($themes) {
- color: themed('landing-button-default');
- @include on-event {
- color: themed('body-color');
- }
- }
- }
- }
- /* Hide default HTML checkbox */
- .switch input {
- opacity: 0;
- width: 0;
- height: 0;
- }
- /* The slider */
- .slider {
- background-color: transparent;
- -webkit-transition: .2s;
- transition: .2s;
- &__icon {
- svg {
- @include flexbox();
- @include align-items(center);
- }
- }
- }
- input:checked + .slider:before {
- -webkit-transform: translateX(13px);
- -ms-transform: translateX(13px);
- transform: translateX(13px);
- }
|