HEX
Server: Apache
System: Linux host.dominioscaracas.com 4.18.0-477.15.1.lve.2.el8.x86_64 #1 SMP Wed Aug 2 10:43:45 UTC 2023 x86_64
User: enciassa (1159)
PHP: 8.1.31
Disabled: exec,passthru,shell_exec,system
Upload Files
File: /home/enciassa/www/wp-content/plugins/simple-css/customize/css-control.php
<?php
class Simple_CSS_Editor extends WP_Customize_Control {

	public $type = 'textarea';

	public function render_content() { ?>
		<label>
			<span class="customize-control-title"><?php echo esc_html( $this->label ); ?></span>
			<div class="customize-control-content">
				<textarea style="height:calc( 100vh - 200px );" spellcheck="false" class="widefat" cols="45" rows="15" <?php $this->link(); ?>><?php echo wp_kses_post( $this->value() ); ?></textarea>
			</div>
		</label>
	<?php }

}