HEX
Server: Apache/2.4.52 (Ubuntu)
System: Linux WebLive 5.15.0-79-generic #86-Ubuntu SMP Mon Jul 10 16:07:21 UTC 2023 x86_64
User: ubuntu (1000)
PHP: 7.4.33
Disabled: 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,
Upload Files
File: /var/www/html/wpwatermates/wp-content/plugins/chaty/src/scss/layouts/_customize-social-widget.scss
#chaty-tab-customize-widget {
    // social widget color , change color picker width, height
    .cht-colorpicker__preview {
        @apply w-10 h-10 rounded-full;

        &--inner {
            @apply rounded-full;
        }
    }

    .form-horizontal__item {
        .custom-control.custom-radio .custom-control-label{
            @apply px-4 py-1 inline-block rounded-[3px] text-base select-none leading-normal text-cht-gray-150;
        }

        .icon-chat svg {
            display: block !important;
        }
        
        // widget icon style
        .custom-control-radio {
            --size      : 16px;
            --half-size : calc( var(--size) / 2 );
            --active-color: #fff;
            --border-color: #83a1b7;

            border  : 1px solid var(--border-color);
            width   : var(--size);
            height  : var(--size);
            display : inline-block;
            left    : calc(50% - var(--half-size));
            position: absolute;
            border-radius   : var(--size);
            background-color: #fff;
            box-sizing: content-box;
            bottom: -22px;

            &:after {
                width   : var(--half-size);
                height  : var(--half-size);
                margin  : calc( var( --half-size ) / 2 ) 0 0 calc( var( --half-size ) / 2 );
                background-color: var(--active-color);
                border-radius: inherit;
                display: block;
                transition: background-color .2s;
                content: '';
            }
        }

        // widget icon checked style
        .custom-control-input:checked {
            & ~ .custom-control-radio  {
                --active-color: #b78deb;
                --border-color: #b78deb;
            }

            & ~ .icon-chat {
                box-shadow: 0 0 0px 2px white, 0 0 0px 5px #b78deb4d;
            }
        }
        

    }

    .test_textarea {
        @apply w-full border border-cht-gray-150/20 p-4;
        border-radius: 7px;
        max-width: 360px;
    }

}