tcb_selection_root( false ) . ' .thrv-content-box ' ); $content_box = array( 'contentbox' => array( 'config' => array( 'ContentPalettes' => [ 'config' => [], 'extends' => 'Palettes', ], 'BoxHeight' => array( 'config' => array( 'default' => '80', 'min' => '1', 'max' => '1000', 'label' => __( 'Minimum Height', 'thrive-cb' ), 'um' => [ 'px', 'vh' ], 'css' => 'min-height', ), 'to' => ' > .tve-cb', 'extends' => 'Slider', ), 'BoxWidth' => array( 'config' => array( 'default' => '1024', 'min' => '100', 'max' => '2000', 'label' => __( 'Maximum Width', 'thrive-cb' ), 'um' => [ 'px', '%' ], 'css' => 'max-width', ), 'extends' => 'Slider', ), 'MasterColor' => array( 'config' => array( 'default' => '000', 'label' => __( 'Master Color', 'thrive-cb' ), 'important' => true, 'affected_components' => [ 'shadow', 'background', 'borders' ], 'options' => [ 'showGlobals' => false, ], ), ), 'VerticalPosition' => array( 'config' => array( 'name' => __( 'Vertical Position', 'thrive-cb' ), 'buttons' => [ [ 'icon' => 'top', 'default' => true, 'value' => '', ], [ 'icon' => 'vertical', 'value' => 'center', ], [ 'icon' => 'bot', 'value' => 'flex-end', ], ], 'info' => true, ), 'extends' => 'ButtonGroup', ), 'style' => array( 'config' => array( 'to' => '> .tve-content-box-background', 'label' => __( 'Content Box Styles', 'thrive-cb' ), 'items' => array( 'cb_style_1' => __( 'Content box 1', 'thrive-cb' ), 'cb_style_2' => __( 'Content box 2', 'thrive-cb' ), 'cb_style_3' => __( 'Content box 3', 'thrive-cb' ), 'cb_style_4' => __( 'Content box 4', 'thrive-cb' ), 'cb_style_5' => __( 'Content box 5', 'thrive-cb' ), 'cb_style_6' => __( 'Content box 6', 'thrive-cb' ), 'cb_style_7' => __( 'Content box 7', 'thrive-cb' ), 'cb_style_8' => __( 'Content box 8', 'thrive-cb' ), 'cb_style_9' => __( 'Content box 9', 'thrive-cb' ), 'cb_style_10' => __( 'Content box 10', 'thrive-cb' ), 'cb_style_11' => __( 'Content box 11', 'thrive-cb' ), 'cb_style_12' => __( 'Content box 12', 'thrive-cb' ), 'cb_style_13' => __( 'Content box 13', 'thrive-cb' ), 'cb_style_14' => __( 'Content box 14', 'thrive-cb' ), 'cb_style_15' => __( 'Content box 15', 'thrive-cb' ), ), 'default_label' => __( 'Content box', 'thrive-cb' ), 'default' => 'default', ), ), ), ), 'borders' => [ 'config' => [ 'Borders' => [ 'to' => '>.tve-content-box-background', 'important' => true, ], 'Corners' => [ 'to' => '>.tve-content-box-background', ], ], ], 'layout' => [ 'config' => [ 'Position' => [ 'important' => true, 'disabled_positions' => [ 'auto' ], ], 'Height' => [ 'to' => '> .tve-cb', 'important' => true, ], ], 'disabled_controls' => [], ], 'background' => [ 'config' => [ 'to' => '>.tve-content-box-background', ], ], 'shadow' => [ 'config' => [ 'to' => '>.tve-content-box-background', ], ], 'decoration' => [ 'config' => [ 'to' => '>.tve-content-box-background', ], ], 'typography' => [ 'disabled_controls' => [], 'config' => [ 'to' => '> .tve-cb', 'FontSize' => $prefix_config, 'FontColor' => $prefix_config, 'LineHeight' => $prefix_config, 'FontFace' => $prefix_config, 'ParagraphStyle' => [ 'hidden' => false ], ], ], 'scroll' => [ 'hidden' => false, ], 'conditional-display' => [ 'hidden' => false, ], ); return array_merge( $content_box, $this->shared_styles_component(), $this->group_component() ); } /** * @return bool */ public function has_hover_state() { return true; } /** * Element category that will be displayed in the sidebar * * @return string */ public function category() { return static::get_thrive_basic_label(); } /** * Element info * * @return string|string[][] */ public function info() { return [ 'instructions' => [ 'type' => 'help', 'url' => 'contentbox', 'link' => 'https://help.thrivethemes.com/en/articles/4425774-how-to-use-the-content-box-element', ], ]; } }