WP_Customize_Widgets::print_preview_css() WordPress Method

The print_preview_css() method is used to print the CSS styles for the widget preview in the Customizer.

WP_Customize_Widgets::print_preview_css() #

Inserts default style for highlighted widget at early point so theme stylesheet can override.


Source

File: wp-includes/class-wp-customize-widgets.php

	public function print_preview_css() {
		?>
		<style>
		.widget-customizer-highlighted-widget {
			outline: none;
			-webkit-box-shadow: 0 0 2px rgba(30, 140, 190, 0.8);
			box-shadow: 0 0 2px rgba(30, 140, 190, 0.8);
			position: relative;
			z-index: 1;
		}
		</style>
		<?php
	}

Top ↑

Changelog

Changelog
VersionDescription
3.9.0Introduced.

The content displayed on this page has been created in part by processing WordPress source code files which are made available under the GPLv2 (or a later version) license by theĀ Free Software Foundation. In addition to this, the content includes user-written examples and information. All material is subject to review and curation by the WPPaste.com community.

Show More