kollapsminoriteten/wp-content/themes/blocksy/inc/dynamic-styles/admin/editor-top-level.php

28 lines
548 B
PHP
Raw Permalink Normal View History

2025-08-27 08:44:30 +02:00
<?php
if (! isset($selector)) {
$selector = ':root';
}
blocksy_theme_get_dynamic_styles([
'name' => 'admin/colors',
'css' => $css,
'mobile_css' => $mobile_css,
'tablet_css' => $tablet_css,
'context' => $context,
'chunk' => 'admin',
'selector' => $selector,
'only_palette' => true
]);
if (get_current_screen()->base === 'post') {
blocksy_theme_get_dynamic_styles([
'name' => 'admin/editor-background',
'css' => $css,
'mobile_css' => $mobile_css,
'tablet_css' => $tablet_css,
'context' => $context,
'chunk' => 'admin'
]);
}