|
Server : LiteSpeed System : Linux srv104790275 5.15.0-161-generic #171-Ubuntu SMP Sat Oct 11 08:17:01 UTC 2025 x86_64 User : dewac4139 ( 1077) PHP Version : 8.0.30 Disable Function : pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_get_handler,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,pcntl_async_signals,pcntl_unshare, Directory : /usr/local/CyberCP/public/static/baseTemplate/assets/widgets/input-switch/ |
Upload File : |
/* Input switch alternate */
div.switch-toggle {
display: block;
height: 24px;
width: 48px;
position: relative;
cursor: pointer;
background: #fff;
box-shadow: inset 0 0 1px rgba(0, 0, 0, 0.2);
-webkit-transition: all .2s ease;
-moz-transition: all .2s ease;
-o-transition: all .2s ease;
transition: all .2s ease;
border-radius: 50px;
}
div.switch-toggle:after {
content: '';
display: block;
height: 18px;
width: 18px;
background: #fff;
position: absolute;
top: 3px;
left: 3px;
border-radius: 50px;
box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
-webkit-transition: all .2s ease;
-moz-transition: all .2s ease;
-o-transition: all .2s ease;
transition: all .2s ease;
}
div.switch-toggle:before {
content: '';
position: absolute;
right: 1px;
top: 12px;
color: #fff;
}
div.switch-toggle:hover:after {
left: 5px;
}
div.switch-toggle.switch-on:before {
content: '';
right: 40px;
}
.switch-toggle.switch-on {
background: #0c0;
}
div.switch-toggle.switch-on:after {
left: 26px;
}
div.switch-toggle.switch-on:hover:after {
left: 24px;
}