PluginProbe
Elementor Website Builder – more than just a page builder / 3.9.0
Elementor Website Builder – more than just a page builder v3.9.0
4.3.0-beta3 4.3.0-beta2 4.3.0-beta1 4.2.4 4.2.3 4.2.2 4.2.1 4.2.0 4.1.5 4.2.0-beta2 4.2.0-dev2 4.2.0-beta1 4.1.4 4.1.3 4.1.2 4.1.1 4.1.0 4.1.0-beta3 4.1.0-dev3 4.0.9 4.1.0-beta2 4.1.0-dev2 4.0.8 4.1.0-beta1 4.1.0-dev1 All 452 releases
← All changes | includes/widgets/alert.php +7 -4 3.8.13.9.0 View file →
@@ -228,13 +228,16 @@
228 228 'border_left-width',
229 229 [
230 230 'label' => esc_html__( 'Left Border Width', 'elementor' ),
231 231 'type' => Controls_Manager::SLIDER,
232 + 'size_units' => [ 'px', '%', 'em' ],
232 233 'range' => [
233 234 'px' => [
234 - 'min' => 0,
235 235 'max' => 100,
236 236 ],
237 + 'em' => [
238 + 'max' => 10,
239 + ],
237 240 ],
238 241 'selectors' => [
239 242 '{{WRAPPER}} .elementor-alert' => 'border-left-width: {{SIZE}}{{UNIT}};',
240 243 ],
@@ -425,16 +428,16 @@
425 428 'dismiss_icon_hover_transition_duration',
426 429 [
427 430 'label' => esc_html__( 'Transition Duration', 'elementor' ),
428 431 'type' => Controls_Manager::SLIDER,
429 - 'selectors' => [
430 - '{{WRAPPER}}' => '--dismiss-icon-hover-transition-duration: {{SIZE}}s',
431 - ],
432 432 'range' => [
433 433 'px' => [
434 434 'max' => 3,
435 435 'step' => 0.1,
436 436 ],
437 + ],
438 + 'selectors' => [
439 + '{{WRAPPER}}' => '--dismiss-icon-hover-transition-duration: {{SIZE}}s',
437 440 ],
438 441 ]
439 442 );
440 443