Sp@P$w@8$?@8$?@h&w@3p@&w@J@J@pw@w@h>@'K@&w@0'w@->@h'w@`x@y@y@@ {@`x@`x@x@{Z@y@y@{@5@]֬LV@`hqFLV`PhtLVh<1ϬLVPhȬLV`jOLVPo{UݬLVo*鬊LV@o+ˬLV`p>`ˬLVPsMa LVpsNaϬLVs]֬LV @tqLVPtBLV t<1ϬLV  tOLV@u{*鬊LV@@u+﬊LVv*LV ypLVPy<-LVp`0y=LVP8ypLVpy<ЬLV`pyQ鬊LVPyA묊LVp`zu쬊LVz!ЬLV`P yxsLVz﬊LVs*cLVsˬLV`}>ŬLV~>x@`x@{@{@P>y@*fx@`x@.z@.z@xy@xy@>6@xy@xy@0 {@ q@ith(8qHqwith`qmain, '.websitepro.hostiqxq qqs_wi qdomain, '.instawrLV+-LV=-LV=LVP<*鬊LVP`+ELV0`﬊LV@*ELV`ܬLV`p鬊LVpPALV`ALV<-LV=LVPALVp`ALV<]֬LV@`qFLV`PtFLVP`tLV<]֬LV @(qFLV@PtFLV0`tLV<]֬LV 8qFLV PtFLV`tLV<ŬLV>Ph>@x@{@P5@G@*fh>@{@*fx@`x@y@y@@{@.fx@`x@y@y@p{@8.fx@`x@y@y@{@8'f{@@sin q9 * * @urn Ei qEoqi@ qLVP@LVp`@qLV%x`RUݬLV%ݬLV`/OLVP{ݬLV4%ݬLV`/OLVP{ݬLV4%ݬLV/-LV`P=묊LVPPu쬊LVݬLV4*鬊LV+et_selector() { return $this->selector; } /** * Gets the CSS. * * @since 6.1.0 * @since 6.6.0 Added support for nested CSS with rules groups. * * @param bool $should_prettify Optional. Whether to add spacing, new lines and indents. * Default false. * @param int $indent_count Optional. The number of tab indents to apply to the rule. * Applies if `prettify` is `true`. Default 0. * @return string */ public function get_css( $should_prettify = false, $indent_count = 0 ) { $rule_indent = $should_prettify ? str_repeat( "\t", $indent_count ) : ''; $nested_rule_indent = $should_prettify ? str_repeat( "\t", $indent_count + 1 ) : ''; $declarations_indent = $should_prettify ? $indent_count + 1 : 0; $nested_declarations_indent = $should_prettify ? $indent_count + 2 : 0; $suffix = $should_prettify ? "\n" : ''; $spacer = $should_prettify ? ' ' : ''; // Trims any multiple selectors strings. $selector = $should_prettify ? implode( ',', array_map( 'trim', explode( ',', $this->get_selector() ) ) ) : $this->get_selector(); $selector = $should_prettify ? str_replace( array( ',' ), ",\n", $selector ) : $selector; $rules_group = $this->get_rules_group(); $has_rules_group = ! empty( $rules_group ); $css_declarations = $this->declarations->get_declarations_string( $should_prettify, $has_rules_group ? $nested_declarations_indent : $declarations_indent ); if ( empty( $css_declarations ) ) { return ''; } if ( $has_rules_group ) { $selector = "{$rule_indent}{$rules_group}{$spacer}{{$suffix}{$nested_rule_indent}{$selector}{$spacer}{{$suffix}{$css_declarations}{$suffix}{$nested_rule_indent}}{$suffix}{$rule_indent}}"; return $selector; } return "{$rule_indent}{$selector}{$spacer}{{$suffix}{$css_declarations}{$suffix}{$rule_indent}}"; } }