PluginProbe
Property Hive / 2.4.0
Property Hive v2.4.0
2.4.0 2.3.1 2.3.0 2.2.6 2.2.5 2.2.4 2.2.3 2.2.2 1.4.46 1.4.47 1.4.48 1.4.49 1.4.5 1.4.50 1.4.51 1.4.52 1.4.53 1.4.54 1.4.55 1.4.56 1.4.57 1.4.58 1.4.59 1.4.6 1.4.60 All 262 releases
← All changes | includes/elementor-widgets/property-actions.php +2 -2 2.2.2 → 2.4.0 View file →
@@ -242,14 +242,14 @@
242 242 // Desktop
243 243 $this->output_layout_css( $settings, '' );
244 244
245 245 // Tablet
246 - echo '@media (max-width: ' . $tablet_breakpoint . 'px) {';
246 + echo '@media (max-width: ' . (int) $tablet_breakpoint . 'px) {';
247 247 $this->output_layout_css( $settings, '_tablet' );
248 248 echo '}';
249 249
250 250 // Mobile
251 - echo '@media (max-width: ' . $mobile_breakpoint . 'px) {';
251 + echo '@media (max-width: ' . (int) $mobile_breakpoint . 'px) {';
252 252 $this->output_layout_css( $settings, '_mobile' );
253 253 echo '}';
254 254 echo '</style>';
255 255 }