Server IP : 150.95.80.236 / Your IP : 3.14.244.41 Web Server : Apache System : Linux host-150-95-80-236 3.10.0-1160.105.1.el7.x86_64 #1 SMP Thu Dec 7 15:39:45 UTC 2023 x86_64 User : social-telecare ( 10000) PHP Version : 7.4.33 Disable Function : opcache_get_status MySQL : OFF | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /var/www/vhosts/pcu.in.th/uat.pcu.in.th/demo15/src/sass/components/ |
Upload File : |
// // Avatar // // Base .image-input { position: relative; display: inline-block; @include border-radius($border-radius); background-repeat: no-repeat; background-size: cover; // Empty state &:not(.image-input-empty) { background-image: none !important; } // Wrapper .image-input-wrapper { width: 120px; height: 120px; @include border-radius($border-radius); background-repeat: no-repeat; background-size: cover; } // Change Button [data-kt-image-input-action="change"] { cursor: pointer; position: absolute; right: -10px; top: -10px; input { width: 0 !important; height: 0 !important; overflow: hidden; opacity: 0; } } // Cancel & Remove Buttons [data-kt-image-input-action="cancel"], [data-kt-image-input-action="remove"] { position: absolute; right: -10px; bottom: -5px; } [data-kt-image-input-action="cancel"] { display: none; } // Input Changed State &.image-input-changed { [data-kt-image-input-action="cancel"] { display: flex; } [data-kt-image-input-action="remove"] { display: none; } } // Input Empty State &.image-input-empty { [data-kt-image-input-action="remove"], [data-kt-image-input-action="cancel"] { display: none; } } // Circle style &.image-input-circle { border-radius: 50%; // Wrapper .image-input-wrapper { border-radius: 50%; } // Change Control [data-kt-image-input-action="change"] { right: 5px; top: 5px; } // Cancel & Remove Buttons [data-kt-image-input-action="cancel"], [data-kt-image-input-action="remove"] { right: 5px; bottom: 5px; } } // Bordered style &.image-input-outline { .image-input-wrapper { border: 3px solid $white; box-shadow: $box-shadow; } } }