| Server IP : 213.132.222.41 / Your IP : 216.73.216.254 Web Server : Apache System : Linux plesk4.nlhosting.net 6.1.0-0.deb11.50-amd64 #1 SMP PREEMPT_DYNAMIC Debian 6.1.176-1~deb11u1 (2026-07-02) x86_64 User : thecovenant ( 10927) PHP Version : 8.3.32 Disable Function : opcache_get_status MySQL : OFF | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /var/www/vhosts/thecovenant.nl/httpdocs/wp-content/themes/neve/inc/core/styles/ |
Upload File : |
<?php
/**
* Style generator based on settings.
*
* @package Neve\Core\Styles
*/
namespace Neve\Core\Styles;
use Neve\Core\Settings\Config;
use Neve\Core\Settings\Mods;
/**
* Class Generator for Gutenberg editor.
*
* @package Neve\Core\Styles
*/
class Gutenberg extends Generator {
use Css_Vars;
/**
* Generator constructor.
*/
public function __construct() {
$this->context = Dynamic_Selector::CONTEXT_GUTENBERG;
$this->setup_buttons();
$this->setup_typography();
$this->add_editor_color_palette_styles();
}
/**
* Setup typography subscribers.
*/
public function setup_typography() {
$rules = $this->get_typography_rules();
$this->_subscribers[] = [
Dynamic_Selector::KEY_SELECTOR => ':root',
Dynamic_Selector::KEY_RULES => $rules,
Dynamic_Selector::KEY_CONTEXT => [
Dynamic_Selector::CONTEXT_GUTENBERG => true,
],
];
}
/**
* Setup button subscribers.
*/
public function setup_buttons() {
$rules = $this->get_button_rules();
$this->_subscribers[] = [
Dynamic_Selector::KEY_SELECTOR => ':root',
Dynamic_Selector::KEY_RULES => $rules,
Dynamic_Selector::KEY_CONTEXT => [
Dynamic_Selector::CONTEXT_GUTENBERG => true,
],
];
}
/**
* Adds colors from the editor-color-palette theme support.
*/
private function add_editor_color_palette_styles() {
$is_new_user = get_option( 'neve_new_user' );
$imported_starter_site = get_option( 'neve_imported_demo' );
if ( $is_new_user === 'yes' && $imported_starter_site !== 'yes' ) {
return;
}
$this->_subscribers['.has-neve-button-color-color'] = [
Config::CSS_PROP_COLOR => [
Dynamic_Selector::META_KEY => Config::MODS_BUTTON_PRIMARY_STYLE . '.background',
Dynamic_Selector::META_IMPORTANT => true,
Dynamic_Selector::META_DEFAULT => 'var(--nv-primary-accent)',
Dynamic_Selector::KEY_CONTEXT => [
Dynamic_Selector::CONTEXT_GUTENBERG => true,
],
],
];
$this->_subscribers['.has-neve-button-color-background-color'] = [
Config::CSS_PROP_BACKGROUND_COLOR => [
Dynamic_Selector::META_KEY => Config::MODS_BUTTON_PRIMARY_STYLE . '.background',
Dynamic_Selector::META_IMPORTANT => true,
Dynamic_Selector::META_DEFAULT => 'var(--nv-primary-accent)',
Dynamic_Selector::KEY_CONTEXT => [
Dynamic_Selector::CONTEXT_GUTENBERG => true,
],
],
];
}
}