PluginProbe
Customify / 1.2.6
Customify v1.2.6
2.10.9 1.2.3 1.2.4 1.2.5 1.2.6 1.2.7 1.2.7.1 1.3.0 1.3.1 1.4.0 1.4.1 1.4.2 1.5.0 1.5.1 1.5.2 1.5.3 1.5.4 1.5.5 1.5.6 1.5.7 1.6.0 1.6.0.1 1.6.5 1.7.0 1.7.1 All 77 releases
customify / trunk / features / customizer / controls / class-Pix_Customize_CSS_Editor_Control.php

class-Pix_Customize_CSS_Editor_Control.php in Customify 1.2.6, at trunk/features/customizer/controls/class-Pix_Customize_CSS_Editor_Control.php

27 lines 593 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2
3 class Pix_Customize_CSS_Editor_Control extends Pix_Customize_Control {
4 public $type = 'css_editor';
5
6 /**
7 * Render the control's content.
8 * @since 3.4.0
9 */
10 public function render_content() { ?>
11 <style type="text/css" media="screen">
12 #css_editor {
13 display: inline-block;
14 height: 700px;
15 position: absolute;
16 top: 130px;
17 right: 0;
18 bottom: 0;
19 left: 0;
20 z-index: 99999999;
21 }
22 </style>
23
24 <textarea <?php $this->link(); ?> id="css_editor_textarea"><?php echo esc_textarea( $this->value() ); ?></textarea>
25 <div id="css_editor"></div>
26 <?php }
27 }