| Server IP : 38.190.208.107 / Your IP : 216.73.217.46 Web Server : nginx/1.28.1 System : Linux ht2026040333114 6.1.0-10-amd64 #1 SMP PREEMPT_DYNAMIC Debian 6.1.37-1 (2023-07-03) x86_64 User : root ( 0) PHP Version : 8.2.28 Disable Function : passthru,exec,system,putenv,chroot,chgrp,chown,shell_exec,popen,proc_open,pcntl_exec,ini_alter,ini_restore,dl,openlog,syslog,readlink,symlink,popepassthru,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_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,imap_open,apache_setenv,eval,assert,passthru,system,exec,shell_exec,popen,proc_open MySQL : OFF | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /www/wwwroot/wp.2/wp-content/themes/blocksy/static/sass/backend/customizer/builder/ |
Upload File : |
@use "variables";
.ct-view-switch {
order: 2;
display: flex;
align-items: center;
position: relative;
z-index: 2;
margin: 0;
height: variables.$panel-bar-height;
box-sizing: border-box;
border-top: 1px solid #ddd;
background: #f0f0f1;
li {
display: flex;
align-items: center;
justify-content: center;
position: relative;
height: var(--ui-height, 100%);
margin: 0;
padding: var(--ui-padding, 0 25px);
cursor: pointer;
font-weight: 600;
color: var(--ui-color, #555D65);
box-sizing: border-box;
transition: color 0.1s ease;
&:not(.ct-builder-toggle) {
border-inline-end: 1px solid #ddd;
}
&:first-child {
border-inline-start: 1px solid #ddd;
margin-inline-start: -1px;
}
&:after {
position: absolute;
content: '';
width: 100%;
height: 4px;
left: 0;
bottom: 0px;
opacity: 0;
transition: opacity 0.1s ease;
}
&:hover {
--ui-color: #0071a1;
background: #fff;
}
&.active {
color: #191e23;
background: #fff;
&:after {
opacity: 1;
background: #191e23;
}
}
}
// builder toggle
.ct-builder-toggle {
margin-inline-start: auto;
min-width: 148px;
font-size: 12px;
border-inline-start: 1px solid #ddd;
&:before {
font-family: dashicons;
content: "\f347";
margin-inline-end: 10px;
}
}
}
.ct-builder-collapsed .ct-builder-toggle {
&:before {
content: "\f343";
}
}
.wp-full-overlay.collapsed {
.ct-view-switch {
padding-inline-start: 50px;
}
}