OoohBoi Steroids for Elementor - Version 1.5.9

Version Description

  • PoopArt, fixed initial X and Y offset that caused the horizontal scroller on full-width Section
  • Overlaiz, added Mask option
Download this release

Release Info

Developer ooohboi
Plugin Icon 128x128 OoohBoi Steroids for Elementor
Version 1.5.9
Comparing to
See all releases

Code changes from version 1.5.8 to 1.5.9

controls/ooohboi-overlaiz.php CHANGED
@@ -476,7 +476,185 @@ class OoohBoi_Overlaiz {
476
  );
477
 
478
  $element->end_popover(); // popover Clip path end
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
479
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
480
  // --------------------------------------------------------------------------------------------- CONTROL Z-INDeX
481
  $element->add_control(
482
  '_ob_overlaiz_z_index',
476
  );
477
 
478
  $element->end_popover(); // popover Clip path end
479
+
480
+ // --------------------------------------------------------------------------------------------- CONTROL POPOVER MASQ ------------------->>
481
+ $element->add_control(
482
+ '_ob_overlaiz_popover_masq',
483
+ [
484
+ 'label' => __( 'Mask', 'ooohboi-steroids' ),
485
+ 'description' => __( 'NOTE: In order to see the effect you should add the Background to the Spacer widget first!', 'ooohboi-steroids' ),
486
+ 'type' => Controls_Manager::POPOVER_TOGGLE,
487
+ 'return_value' => 'yes',
488
+ 'frontend_available' => true,
489
+ 'condition' => [
490
+ '_ob_overlaiz_use_it' => 'yes',
491
+ 'background_overlay_background' => [ 'classic', 'gradient' ],
492
+ 'background_overlay_image[url]!' => '',
493
+ ],
494
+ ]
495
+ );
496
 
497
+ $element->start_popover();
498
+
499
+ // --------------------------------------------------------------------------------------------- CONTROL POPOVER MASQ IMAGE
500
+ $element->add_responsive_control(
501
+ '_ob_overlaiz_mask_img',
502
+ [
503
+ 'label' => __( 'Choose Image Mask', 'ooohboi-steroids' ),
504
+ 'description' => __( 'NOTE: Image Mask should be black-and-transparent SVG file! Anything that’s 100% black in the image mask with be completely visible, anything that’s transparent will be completely hidden.', 'ooohboi-steroids' ),
505
+ 'type' => Controls_Manager::MEDIA,
506
+ 'default' => [
507
+ 'url' => '',
508
+ ],
509
+ 'selectors' => [
510
+ $selector => '-webkit-mask-image: url("{{URL}}"); mask-image: url("{{URL}}"); -webkit-mask-mode: alpha; mask-mode: alpha;',
511
+ ],
512
+ 'condition' => [
513
+ '_ob_overlaiz_use_it' => 'yes',
514
+ 'background_overlay_background' => [ 'classic', 'gradient' ],
515
+ 'background_overlay_image[url]!' => '',
516
+ ],
517
+ ]
518
+ );
519
+ // --------------------------------------------------------------------------------------------- CONTROL POPOVER MASQ POSITION
520
+ $element->add_responsive_control(
521
+ '_ob_overlaiz_mask_position',
522
+ [
523
+ 'label' => __( 'Mask position', 'ooohboi-steroids' ),
524
+ 'type' => Controls_Manager::SELECT,
525
+ 'default' => 'center center',
526
+ 'options' => [
527
+ '' => __( 'Default', 'ooohboi-steroids' ),
528
+ 'center center' => __( 'Center Center', 'ooohboi-steroids' ),
529
+ 'center left' => __( 'Center Left', 'ooohboi-steroids' ),
530
+ 'center right' => __( 'Center Right', 'ooohboi-steroids' ),
531
+ 'top center' => __( 'Top Center', 'ooohboi-steroids' ),
532
+ 'top left' => __( 'Top Left', 'ooohboi-steroids' ),
533
+ 'top right' => __( 'Top Right', 'ooohboi-steroids' ),
534
+ 'bottom center' => __( 'Bottom Center', 'ooohboi-steroids' ),
535
+ 'bottom left' => __( 'Bottom Left', 'ooohboi-steroids' ),
536
+ 'bottom right' => __( 'Bottom Right', 'ooohboi-steroids' ),
537
+ ],
538
+ 'selectors' => [
539
+ $selector => '-webkit-mask-position: {{VALUE}}; mask-position: {{VALUE}};',
540
+ ],
541
+ 'condition' => [
542
+ '_ob_overlaiz_use_it' => 'yes',
543
+ 'background_overlay_background' => [ 'classic', 'gradient' ],
544
+ 'background_overlay_image[url]!' => '',
545
+ '_ob_overlaiz_mask_img[url]!' => '',
546
+ ],
547
+ ]
548
+ );
549
+ // --------------------------------------------------------------------------------------------- CONTROL POPOVER MASQ SIZE
550
+ $element->add_responsive_control(
551
+ '_ob_overlaiz_mask_size',
552
+ [
553
+ 'label' => __( 'Mask size', 'ooohboi-steroids' ),
554
+ 'type' => Controls_Manager::SELECT,
555
+ 'default' => 'contain',
556
+ 'options' => [
557
+ '' => __( 'Default', 'ooohboi-steroids' ),
558
+ 'auto' => __( 'Auto', 'ooohboi-steroids' ),
559
+ 'cover' => __( 'Cover', 'ooohboi-steroids' ),
560
+ 'contain' => __( 'Contain', 'ooohboi-steroids' ),
561
+ 'initial' => __( 'Custom', 'ooohboi-steroids' ),
562
+ ],
563
+ 'selectors' => [
564
+ $selector => '-webkit-mask-size: {{VALUE}}; mask-size: {{VALUE}};',
565
+ ],
566
+ 'condition' => [
567
+ '_ob_overlaiz_use_it' => 'yes',
568
+ 'background_overlay_background' => [ 'classic', 'gradient' ],
569
+ 'background_overlay_image[url]!' => '',
570
+ '_ob_overlaiz_mask_img[url]!' => '',
571
+ ],
572
+ ]
573
+ );
574
+ // --------------------------------------------------------------------------------------------- CONTROL POPOVER MASQ SIZE Custom
575
+ $element->add_responsive_control(
576
+ '_ob_overlaiz_mask_size_width',
577
+ [
578
+ 'label' => __( 'Width', 'ooohboi-steroids' ),
579
+ 'type' => Controls_Manager::SLIDER,
580
+ 'size_units' => [ '%', 'px' ],
581
+ 'range' => [
582
+ 'px' => [
583
+ 'min' => 0,
584
+ 'max' => 1000,
585
+ ],
586
+ '%' => [
587
+ 'min' => 0,
588
+ 'max' => 300,
589
+ ],
590
+ ],
591
+ 'default' => [
592
+ 'size' => 100,
593
+ 'unit' => '%',
594
+ ],
595
+ 'selectors' => [
596
+ $selector => '-webkit-mask-size: {{SIZE}}{{UNIT}} auto; mask-size: {{SIZE}}{{UNIT}} auto;',
597
+ ],
598
+ 'condition' => [
599
+ '_ob_overlaiz_use_it' => 'yes',
600
+ 'background_overlay_background' => [ 'classic', 'gradient' ],
601
+ 'background_overlay_image[url]!' => '',
602
+ '_ob_overlaiz_mask_size' => [ 'initial' ],
603
+ '_ob_overlaiz_mask_img[url]!' => '',
604
+ ],
605
+ 'device_args' => [
606
+ Controls_Stack::RESPONSIVE_TABLET => [
607
+ 'selectors' => [
608
+ $selector => '-webkit-mask-size: {{SIZE}}{{UNIT}} auto; mask-size: {{SIZE}}{{UNIT}} auto;',
609
+ ],
610
+ 'condition' => [
611
+ '_ob_overlaiz_use_it' => 'yes',
612
+ 'background_overlay_background' => [ 'classic', 'gradient' ],
613
+ 'background_overlay_image[url]!' => '',
614
+ '_ob_overlaiz_mask_size_tablet' => [ 'initial' ],
615
+ ],
616
+ ],
617
+ Controls_Stack::RESPONSIVE_MOBILE => [
618
+ 'selectors' => [
619
+ $selector => '-webkit-mask-size: {{SIZE}}{{UNIT}} auto; mask-size: {{SIZE}}{{UNIT}} auto;',
620
+ ],
621
+ 'condition' => [
622
+ '_ob_overlaiz_use_it' => 'yes',
623
+ 'background_overlay_background' => [ 'classic', 'gradient' ],
624
+ 'background_overlay_image[url]!' => '',
625
+ '_ob_overlaiz_mask_size_mobile' => [ 'initial' ],
626
+ ],
627
+ ],
628
+ ],
629
+ ]
630
+ );
631
+ // --------------------------------------------------------------------------------------------- CONTROL POPOVER MASQ REPEAT
632
+ $element->add_responsive_control(
633
+ '_ob_overlaiz_mask_repeat',
634
+ [
635
+ 'label' => __( 'Mask repeat', 'ooohboi-steroids' ),
636
+ 'type' => Controls_Manager::SELECT,
637
+ 'default' => 'no-repeat',
638
+ 'options' => [
639
+ 'no-repeat' => __( 'No-repeat', 'ooohboi-steroids' ),
640
+ 'repeat' => __( 'Repeat', 'ooohboi-steroids' ),
641
+ 'repeat-x' => __( 'Repeat-x', 'ooohboi-steroids' ),
642
+ 'repeat-y' => __( 'Repeat-y', 'ooohboi-steroids' ),
643
+ ],
644
+ 'selectors' => [
645
+ $selector => '-webkit-mask-repeat: {{VALUE}}; mask-repeat: {{VALUE}};',
646
+ ],
647
+ 'condition' => [
648
+ '_ob_overlaiz_use_it' => 'yes',
649
+ 'background_overlay_background' => [ 'classic', 'gradient' ],
650
+ 'background_overlay_image[url]!' => '',
651
+ '_ob_overlaiz_mask_img[url]!' => '',
652
+ ],
653
+ ]
654
+ );
655
+
656
+ $element->end_popover(); // overlaiz MASQ end
657
+
658
  // --------------------------------------------------------------------------------------------- CONTROL Z-INDeX
659
  $element->add_control(
660
  '_ob_overlaiz_z_index',
controls/ooohboi-overlay-underlay.php CHANGED
@@ -295,7 +295,7 @@ class OoohBoi_Overlay_Underlay {
295
  ],
296
  'default' => [
297
  'unit' => '%',
298
- 'size' => 2,
299
  ],
300
  'device_args' => [
301
  Controls_Stack::RESPONSIVE_TABLET => [
@@ -352,7 +352,7 @@ class OoohBoi_Overlay_Underlay {
352
  ],
353
  'default' => [
354
  'unit' => '%',
355
- 'size' => 2,
356
  ],
357
  'device_args' => [
358
  Controls_Stack::RESPONSIVE_TABLET => [
@@ -861,7 +861,7 @@ class OoohBoi_Overlay_Underlay {
861
  ],
862
  'default' => [
863
  'unit' => '%',
864
- 'size' => 2,
865
  ],
866
  'device_args' => [
867
  Controls_Stack::RESPONSIVE_TABLET => [
@@ -914,7 +914,7 @@ class OoohBoi_Overlay_Underlay {
914
  ],
915
  'default' => [
916
  'unit' => '%',
917
- 'size' => 2,
918
  ],
919
  'device_args' => [
920
  Controls_Stack::RESPONSIVE_TABLET => [
295
  ],
296
  'default' => [
297
  'unit' => '%',
298
+ 'size' => 0,
299
  ],
300
  'device_args' => [
301
  Controls_Stack::RESPONSIVE_TABLET => [
352
  ],
353
  'default' => [
354
  'unit' => '%',
355
+ 'size' => 0,
356
  ],
357
  'device_args' => [
358
  Controls_Stack::RESPONSIVE_TABLET => [
861
  ],
862
  'default' => [
863
  'unit' => '%',
864
+ 'size' => 0,
865
  ],
866
  'device_args' => [
867
  Controls_Stack::RESPONSIVE_TABLET => [
914
  ],
915
  'default' => [
916
  'unit' => '%',
917
+ 'size' => 0,
918
  ],
919
  'device_args' => [
920
  Controls_Stack::RESPONSIVE_TABLET => [
controls/ooohboi-spacerat.php CHANGED
@@ -305,7 +305,7 @@ class OoohBoi_SpaceRat {
305
  ]
306
  );
307
 
308
- $element->end_popover(); // popover MASQ end
309
 
310
  // --------------------------------------------------------------------------------------------- CONTROL Description - Faker !!!!!
311
  $element->add_control(
305
  ]
306
  );
307
 
308
+ $element->end_popover(); // spacerat MASQ end
309
 
310
  // --------------------------------------------------------------------------------------------- CONTROL Description - Faker !!!!!
311
  $element->add_control(
lang/ooohboi-steroids.pot CHANGED
@@ -3,14 +3,14 @@ msgid ""
3
  msgstr ""
4
  "Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n"
5
  "Project-Id-Version: OoohBoi Steroids for Elementor\n"
6
- "POT-Creation-Date: 2020-12-23 15:46+0100\n"
7
- "PO-Revision-Date: 2020-12-23 15:46+0100\n"
8
  "Last-Translator: \n"
9
  "Language-Team: \n"
10
  "MIME-Version: 1.0\n"
11
  "Content-Type: text/plain; charset=UTF-8\n"
12
  "Content-Transfer-Encoding: 8bit\n"
13
- "X-Generator: Poedit 2.4.1\n"
14
  "X-Poedit-Basepath: ..\n"
15
  "X-Poedit-Flags-xgettext: --add-comments=translators:\n"
16
  "X-Poedit-WPHeader: ooohboi-steroids.php\n"
@@ -32,7 +32,7 @@ msgid ""
32
  msgstr ""
33
 
34
  #: controls/ooohboi-breaking-bad.php:72 controls/ooohboi-breaking-bad.php:150
35
- #: controls/ooohboi-breaking-bad.php:238 controls/ooohboi-butter-button.php:71
36
  #: controls/ooohboi-commentz.php:71 controls/ooohboi-glider.php:68
37
  #: controls/ooohboi-glider.php:83 controls/ooohboi-glider.php:134
38
  #: controls/ooohboi-glider.php:359 controls/ooohboi-glider.php:515
@@ -49,7 +49,7 @@ msgid "Yes"
49
  msgstr ""
50
 
51
  #: controls/ooohboi-breaking-bad.php:73 controls/ooohboi-breaking-bad.php:151
52
- #: controls/ooohboi-breaking-bad.php:239 controls/ooohboi-butter-button.php:72
53
  #: controls/ooohboi-commentz.php:72 controls/ooohboi-glider.php:69
54
  #: controls/ooohboi-glider.php:84 controls/ooohboi-glider.php:135
55
  #: controls/ooohboi-glider.php:360 controls/ooohboi-glider.php:516
@@ -132,20 +132,33 @@ msgid ""
132
  "Breaking Bad for this Column parent SECTION!"
133
  msgstr ""
134
 
135
- #: controls/ooohboi-breaking-bad.php:191 controls/ooohboi-harakiri.php:142
 
 
 
 
 
 
 
 
 
 
 
 
 
136
  msgid "Custom Height"
137
  msgstr ""
138
 
139
- #: controls/ooohboi-breaking-bad.php:217
140
  msgid "Column Order"
141
  msgstr ""
142
 
143
- #: controls/ooohboi-breaking-bad.php:219
144
  #, php-format
145
  msgid "More info at %sMozilla%s."
146
  msgstr ""
147
 
148
- #: controls/ooohboi-breaking-bad.php:235
149
  msgid "Scrollable Column?"
150
  msgstr ""
151
 
@@ -582,8 +595,8 @@ msgstr ""
582
  #: controls/ooohboi-hover-animator.php:428
583
  #: controls/ooohboi-hover-animator.php:580
584
  #: controls/ooohboi-hover-animator.php:815
585
- #: controls/ooohboi-hover-animator.php:971
586
- #: controls/ooohboi-overlay-underlay.php:509
587
  #: controls/ooohboi-overlay-underlay.php:537
588
  #: controls/ooohboi-overlay-underlay.php:1064
589
  #: controls/ooohboi-overlay-underlay.php:1091
@@ -597,7 +610,8 @@ msgstr ""
597
  msgid "Inline"
598
  msgstr ""
599
 
600
- #: controls/ooohboi-harakiri.php:124 controls/ooohboi-overlay-underlay.php:541
 
601
  #: controls/ooohboi-overlay-underlay.php:1095 controls/ooohboi-spacerat.php:223
602
  #: controls/ooohboi-videomasq.php:107
603
  msgid "Custom"
@@ -787,7 +801,8 @@ msgstr ""
787
  msgid "Enable Overlaiz?"
788
  msgstr ""
789
 
790
- #: controls/ooohboi-overlaiz.php:75 controls/ooohboi-overlay-underlay.php:169
 
791
  #: controls/ooohboi-overlay-underlay.php:556
792
  #: controls/ooohboi-overlay-underlay.php:743
793
  #: controls/ooohboi-overlay-underlay.php:1109 controls/ooohboi-spacerat.php:238
@@ -846,56 +861,23 @@ msgid ""
846
  "Enter the full clip-path property! See the copy-paste examples at %sClippy%s"
847
  msgstr ""
848
 
849
- #: controls/ooohboi-overlaiz.php:484 controls/ooohboi-overlay-underlay.php:630
850
- #: controls/ooohboi-overlay-underlay.php:1181
851
- msgid "Z-Index"
852
- msgstr ""
853
-
854
- #: controls/ooohboi-overlay-underlay.php:78
855
- msgid "Overlay"
856
- msgstr ""
857
-
858
- #: controls/ooohboi-overlay-underlay.php:127
859
- #: controls/ooohboi-overlay-underlay.php:701
860
- msgid "Blend Mode"
861
- msgstr ""
862
-
863
- #: controls/ooohboi-overlay-underlay.php:153
864
- #: controls/ooohboi-overlay-underlay.php:727
865
- msgid "Position and Size"
866
- msgstr ""
867
-
868
- #: controls/ooohboi-overlay-underlay.php:269
869
- #: controls/ooohboi-overlay-underlay.php:383
870
- #: controls/ooohboi-overlay-underlay.php:838
871
- msgid "Enter CSS calc value only! Like: 45% + 85px or 100% - 3em"
872
- msgstr ""
873
-
874
- #: controls/ooohboi-overlay-underlay.php:325
875
- #: controls/ooohboi-overlay-underlay.php:890
876
- msgid "Calc Offset Top"
877
- msgstr ""
878
-
879
- #: controls/ooohboi-overlay-underlay.php:382
880
- #: controls/ooohboi-overlay-underlay.php:943
881
- msgid "Calc Offset Left"
882
  msgstr ""
883
 
884
- #: controls/ooohboi-overlay-underlay.php:398
885
- #: controls/ooohboi-overlay-underlay.php:956
886
- msgid "Rotate"
887
- msgstr ""
888
-
889
- #: controls/ooohboi-overlay-underlay.php:471
890
- msgid "Overlay Mask"
891
  msgstr ""
892
 
893
- #: controls/ooohboi-overlay-underlay.php:487
894
  #: controls/ooohboi-overlay-underlay.php:1042 controls/ooohboi-spacerat.php:169
895
  msgid "Choose Image Mask"
896
  msgstr ""
897
 
898
- #: controls/ooohboi-overlay-underlay.php:488
899
  #: controls/ooohboi-overlay-underlay.php:1043 controls/ooohboi-spacerat.php:170
900
  #, php-format
901
  msgid ""
@@ -904,120 +886,164 @@ msgid ""
904
  "transparent will be completely hidden."
905
  msgstr ""
906
 
907
- #: controls/ooohboi-overlay-underlay.php:505
908
  #: controls/ooohboi-overlay-underlay.php:1060 controls/ooohboi-spacerat.php:187
909
  #: controls/ooohboi-videomasq.php:71
910
  msgid "Mask position"
911
  msgstr ""
912
 
913
- #: controls/ooohboi-overlay-underlay.php:510
914
  #: controls/ooohboi-overlay-underlay.php:1065 controls/ooohboi-spacerat.php:192
915
  #: controls/ooohboi-videomasq.php:76
916
  msgid "Center Center"
917
  msgstr ""
918
 
919
- #: controls/ooohboi-overlay-underlay.php:511
920
  #: controls/ooohboi-overlay-underlay.php:1066 controls/ooohboi-spacerat.php:193
921
  #: controls/ooohboi-videomasq.php:77
922
  msgid "Center Left"
923
  msgstr ""
924
 
925
- #: controls/ooohboi-overlay-underlay.php:512
926
  #: controls/ooohboi-overlay-underlay.php:1067 controls/ooohboi-spacerat.php:194
927
  #: controls/ooohboi-videomasq.php:78
928
  msgid "Center Right"
929
  msgstr ""
930
 
931
- #: controls/ooohboi-overlay-underlay.php:513
932
  #: controls/ooohboi-overlay-underlay.php:1068 controls/ooohboi-spacerat.php:195
933
  #: controls/ooohboi-videomasq.php:79
934
  msgid "Top Center"
935
  msgstr ""
936
 
937
- #: controls/ooohboi-overlay-underlay.php:514
938
  #: controls/ooohboi-overlay-underlay.php:1069 controls/ooohboi-spacerat.php:196
939
  #: controls/ooohboi-videomasq.php:80
940
  msgid "Top Left"
941
  msgstr ""
942
 
943
- #: controls/ooohboi-overlay-underlay.php:515
944
  #: controls/ooohboi-overlay-underlay.php:1070 controls/ooohboi-spacerat.php:197
945
  #: controls/ooohboi-videomasq.php:81
946
  msgid "Top Right"
947
  msgstr ""
948
 
949
- #: controls/ooohboi-overlay-underlay.php:516
950
  #: controls/ooohboi-overlay-underlay.php:1071 controls/ooohboi-spacerat.php:198
951
  #: controls/ooohboi-videomasq.php:82
952
  msgid "Bottom Center"
953
  msgstr ""
954
 
955
- #: controls/ooohboi-overlay-underlay.php:517
956
  #: controls/ooohboi-overlay-underlay.php:1072 controls/ooohboi-spacerat.php:199
957
  #: controls/ooohboi-videomasq.php:83
958
  msgid "Bottom Left"
959
  msgstr ""
960
 
961
- #: controls/ooohboi-overlay-underlay.php:518
962
  #: controls/ooohboi-overlay-underlay.php:1073 controls/ooohboi-spacerat.php:200
963
  #: controls/ooohboi-videomasq.php:84
964
  msgid "Bottom Right"
965
  msgstr ""
966
 
967
- #: controls/ooohboi-overlay-underlay.php:533
968
  #: controls/ooohboi-overlay-underlay.php:1087 controls/ooohboi-spacerat.php:215
969
  #: controls/ooohboi-videomasq.php:99
970
  msgid "Mask size"
971
  msgstr ""
972
 
973
- #: controls/ooohboi-overlay-underlay.php:538
974
  #: controls/ooohboi-overlay-underlay.php:1092 controls/ooohboi-spacerat.php:220
975
  #: controls/ooohboi-videomasq.php:104
976
  msgid "Auto"
977
  msgstr ""
978
 
979
- #: controls/ooohboi-overlay-underlay.php:539
980
  #: controls/ooohboi-overlay-underlay.php:1093 controls/ooohboi-spacerat.php:221
981
  #: controls/ooohboi-videomasq.php:105
982
  msgid "Cover"
983
  msgstr ""
984
 
985
- #: controls/ooohboi-overlay-underlay.php:540
986
  #: controls/ooohboi-overlay-underlay.php:1094 controls/ooohboi-spacerat.php:222
987
  #: controls/ooohboi-videomasq.php:106
988
  msgid "Contain"
989
  msgstr ""
990
 
991
- #: controls/ooohboi-overlay-underlay.php:605
992
  #: controls/ooohboi-overlay-underlay.php:1157 controls/ooohboi-spacerat.php:289
993
  #: controls/ooohboi-videomasq.php:171
994
  msgid "Mask repeat"
995
  msgstr ""
996
 
997
- #: controls/ooohboi-overlay-underlay.php:609
998
  #: controls/ooohboi-overlay-underlay.php:1161 controls/ooohboi-spacerat.php:293
999
  #: controls/ooohboi-videomasq.php:175
1000
  msgid "No-repeat"
1001
  msgstr ""
1002
 
1003
- #: controls/ooohboi-overlay-underlay.php:610
1004
  #: controls/ooohboi-overlay-underlay.php:1162 controls/ooohboi-spacerat.php:294
1005
  #: controls/ooohboi-videomasq.php:176
1006
  msgid "Repeat"
1007
  msgstr ""
1008
 
1009
- #: controls/ooohboi-overlay-underlay.php:611
1010
  #: controls/ooohboi-overlay-underlay.php:1163 controls/ooohboi-spacerat.php:295
1011
  #: controls/ooohboi-videomasq.php:177
1012
  msgid "Repeat-x"
1013
  msgstr ""
1014
 
1015
- #: controls/ooohboi-overlay-underlay.php:612
1016
  #: controls/ooohboi-overlay-underlay.php:1164 controls/ooohboi-spacerat.php:296
1017
  #: controls/ooohboi-videomasq.php:178
1018
  msgid "Repeat-y"
1019
  msgstr ""
1020
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1021
  #: controls/ooohboi-overlay-underlay.php:651
1022
  msgid "Underlay"
1023
  msgstr ""
@@ -1245,12 +1271,6 @@ msgstr ""
1245
  msgid "SpaceRat Mask"
1246
  msgstr ""
1247
 
1248
- #: controls/ooohboi-spacerat.php:153 controls/ooohboi-spacerat.php:315
1249
- msgid ""
1250
- "NOTE: In order to see the effect you should add the Background to the Spacer "
1251
- "widget first!"
1252
- msgstr ""
1253
-
1254
  #: controls/ooohboi-spacerat.php:337
1255
  msgid "Add shadow?"
1256
  msgstr ""
@@ -1267,13 +1287,6 @@ msgstr ""
1267
  msgid "Content Position - X"
1268
  msgstr ""
1269
 
1270
- #: controls/ooohboi-teleporter.php:137 controls/ooohboi-teleporter.php:155
1271
- #: controls/ooohboi-teleporter.php:186 controls/ooohboi-teleporter.php:203
1272
- msgid ""
1273
- "You can enter any acceptable CSS value, for example: 50em, 300px, 100%, "
1274
- "calc(100% - 300px)."
1275
- msgstr ""
1276
-
1277
  #: controls/ooohboi-teleporter.php:154 controls/ooohboi-teleporter.php:199
1278
  msgid "Content Position - Y"
1279
  msgstr ""
3
  msgstr ""
4
  "Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n"
5
  "Project-Id-Version: OoohBoi Steroids for Elementor\n"
6
+ "POT-Creation-Date: 2021-01-26 13:19+0100\n"
7
+ "PO-Revision-Date: 2021-01-26 13:19+0100\n"
8
  "Last-Translator: \n"
9
  "Language-Team: \n"
10
  "MIME-Version: 1.0\n"
11
  "Content-Type: text/plain; charset=UTF-8\n"
12
  "Content-Transfer-Encoding: 8bit\n"
13
+ "X-Generator: Poedit 2.4.2\n"
14
  "X-Poedit-Basepath: ..\n"
15
  "X-Poedit-Flags-xgettext: --add-comments=translators:\n"
16
  "X-Poedit-WPHeader: ooohboi-steroids.php\n"
32
  msgstr ""
33
 
34
  #: controls/ooohboi-breaking-bad.php:72 controls/ooohboi-breaking-bad.php:150
35
+ #: controls/ooohboi-breaking-bad.php:252 controls/ooohboi-butter-button.php:71
36
  #: controls/ooohboi-commentz.php:71 controls/ooohboi-glider.php:68
37
  #: controls/ooohboi-glider.php:83 controls/ooohboi-glider.php:134
38
  #: controls/ooohboi-glider.php:359 controls/ooohboi-glider.php:515
49
  msgstr ""
50
 
51
  #: controls/ooohboi-breaking-bad.php:73 controls/ooohboi-breaking-bad.php:151
52
+ #: controls/ooohboi-breaking-bad.php:253 controls/ooohboi-butter-button.php:72
53
  #: controls/ooohboi-commentz.php:72 controls/ooohboi-glider.php:69
54
  #: controls/ooohboi-glider.php:84 controls/ooohboi-glider.php:135
55
  #: controls/ooohboi-glider.php:360 controls/ooohboi-glider.php:516
132
  "Breaking Bad for this Column parent SECTION!"
133
  msgstr ""
134
 
135
+ #: controls/ooohboi-breaking-bad.php:191
136
+ #, php-format
137
+ msgid "Max Width%sNEW!%s"
138
+ msgstr ""
139
+
140
+ #: controls/ooohboi-breaking-bad.php:195 controls/ooohboi-teleporter.php:137
141
+ #: controls/ooohboi-teleporter.php:155 controls/ooohboi-teleporter.php:186
142
+ #: controls/ooohboi-teleporter.php:203
143
+ msgid ""
144
+ "You can enter any acceptable CSS value, for example: 50em, 300px, 100%, "
145
+ "calc(100% - 300px)."
146
+ msgstr ""
147
+
148
+ #: controls/ooohboi-breaking-bad.php:205 controls/ooohboi-harakiri.php:142
149
  msgid "Custom Height"
150
  msgstr ""
151
 
152
+ #: controls/ooohboi-breaking-bad.php:231
153
  msgid "Column Order"
154
  msgstr ""
155
 
156
+ #: controls/ooohboi-breaking-bad.php:233
157
  #, php-format
158
  msgid "More info at %sMozilla%s."
159
  msgstr ""
160
 
161
+ #: controls/ooohboi-breaking-bad.php:249
162
  msgid "Scrollable Column?"
163
  msgstr ""
164
 
595
  #: controls/ooohboi-hover-animator.php:428
596
  #: controls/ooohboi-hover-animator.php:580
597
  #: controls/ooohboi-hover-animator.php:815
598
+ #: controls/ooohboi-hover-animator.php:971 controls/ooohboi-overlaiz.php:527
599
+ #: controls/ooohboi-overlaiz.php:557 controls/ooohboi-overlay-underlay.php:509
600
  #: controls/ooohboi-overlay-underlay.php:537
601
  #: controls/ooohboi-overlay-underlay.php:1064
602
  #: controls/ooohboi-overlay-underlay.php:1091
610
  msgid "Inline"
611
  msgstr ""
612
 
613
+ #: controls/ooohboi-harakiri.php:124 controls/ooohboi-overlaiz.php:561
614
+ #: controls/ooohboi-overlay-underlay.php:541
615
  #: controls/ooohboi-overlay-underlay.php:1095 controls/ooohboi-spacerat.php:223
616
  #: controls/ooohboi-videomasq.php:107
617
  msgid "Custom"
801
  msgid "Enable Overlaiz?"
802
  msgstr ""
803
 
804
+ #: controls/ooohboi-overlaiz.php:75 controls/ooohboi-overlaiz.php:578
805
+ #: controls/ooohboi-overlay-underlay.php:169
806
  #: controls/ooohboi-overlay-underlay.php:556
807
  #: controls/ooohboi-overlay-underlay.php:743
808
  #: controls/ooohboi-overlay-underlay.php:1109 controls/ooohboi-spacerat.php:238
861
  "Enter the full clip-path property! See the copy-paste examples at %sClippy%s"
862
  msgstr ""
863
 
864
+ #: controls/ooohboi-overlaiz.php:484
865
+ msgid "Mask"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
866
  msgstr ""
867
 
868
+ #: controls/ooohboi-overlaiz.php:485 controls/ooohboi-spacerat.php:153
869
+ #: controls/ooohboi-spacerat.php:315
870
+ msgid ""
871
+ "NOTE: In order to see the effect you should add the Background to the Spacer "
872
+ "widget first!"
 
 
873
  msgstr ""
874
 
875
+ #: controls/ooohboi-overlaiz.php:503 controls/ooohboi-overlay-underlay.php:487
876
  #: controls/ooohboi-overlay-underlay.php:1042 controls/ooohboi-spacerat.php:169
877
  msgid "Choose Image Mask"
878
  msgstr ""
879
 
880
+ #: controls/ooohboi-overlaiz.php:504 controls/ooohboi-overlay-underlay.php:488
881
  #: controls/ooohboi-overlay-underlay.php:1043 controls/ooohboi-spacerat.php:170
882
  #, php-format
883
  msgid ""
886
  "transparent will be completely hidden."
887
  msgstr ""
888
 
889
+ #: controls/ooohboi-overlaiz.php:523 controls/ooohboi-overlay-underlay.php:505
890
  #: controls/ooohboi-overlay-underlay.php:1060 controls/ooohboi-spacerat.php:187
891
  #: controls/ooohboi-videomasq.php:71
892
  msgid "Mask position"
893
  msgstr ""
894
 
895
+ #: controls/ooohboi-overlaiz.php:528 controls/ooohboi-overlay-underlay.php:510
896
  #: controls/ooohboi-overlay-underlay.php:1065 controls/ooohboi-spacerat.php:192
897
  #: controls/ooohboi-videomasq.php:76
898
  msgid "Center Center"
899
  msgstr ""
900
 
901
+ #: controls/ooohboi-overlaiz.php:529 controls/ooohboi-overlay-underlay.php:511
902
  #: controls/ooohboi-overlay-underlay.php:1066 controls/ooohboi-spacerat.php:193
903
  #: controls/ooohboi-videomasq.php:77
904
  msgid "Center Left"
905
  msgstr ""
906
 
907
+ #: controls/ooohboi-overlaiz.php:530 controls/ooohboi-overlay-underlay.php:512
908
  #: controls/ooohboi-overlay-underlay.php:1067 controls/ooohboi-spacerat.php:194
909
  #: controls/ooohboi-videomasq.php:78
910
  msgid "Center Right"
911
  msgstr ""
912
 
913
+ #: controls/ooohboi-overlaiz.php:531 controls/ooohboi-overlay-underlay.php:513
914
  #: controls/ooohboi-overlay-underlay.php:1068 controls/ooohboi-spacerat.php:195
915
  #: controls/ooohboi-videomasq.php:79
916
  msgid "Top Center"
917
  msgstr ""
918
 
919
+ #: controls/ooohboi-overlaiz.php:532 controls/ooohboi-overlay-underlay.php:514
920
  #: controls/ooohboi-overlay-underlay.php:1069 controls/ooohboi-spacerat.php:196
921
  #: controls/ooohboi-videomasq.php:80
922
  msgid "Top Left"
923
  msgstr ""
924
 
925
+ #: controls/ooohboi-overlaiz.php:533 controls/ooohboi-overlay-underlay.php:515
926
  #: controls/ooohboi-overlay-underlay.php:1070 controls/ooohboi-spacerat.php:197
927
  #: controls/ooohboi-videomasq.php:81
928
  msgid "Top Right"
929
  msgstr ""
930
 
931
+ #: controls/ooohboi-overlaiz.php:534 controls/ooohboi-overlay-underlay.php:516
932
  #: controls/ooohboi-overlay-underlay.php:1071 controls/ooohboi-spacerat.php:198
933
  #: controls/ooohboi-videomasq.php:82
934
  msgid "Bottom Center"
935
  msgstr ""
936
 
937
+ #: controls/ooohboi-overlaiz.php:535 controls/ooohboi-overlay-underlay.php:517
938
  #: controls/ooohboi-overlay-underlay.php:1072 controls/ooohboi-spacerat.php:199
939
  #: controls/ooohboi-videomasq.php:83
940
  msgid "Bottom Left"
941
  msgstr ""
942
 
943
+ #: controls/ooohboi-overlaiz.php:536 controls/ooohboi-overlay-underlay.php:518
944
  #: controls/ooohboi-overlay-underlay.php:1073 controls/ooohboi-spacerat.php:200
945
  #: controls/ooohboi-videomasq.php:84
946
  msgid "Bottom Right"
947
  msgstr ""
948
 
949
+ #: controls/ooohboi-overlaiz.php:553 controls/ooohboi-overlay-underlay.php:533
950
  #: controls/ooohboi-overlay-underlay.php:1087 controls/ooohboi-spacerat.php:215
951
  #: controls/ooohboi-videomasq.php:99
952
  msgid "Mask size"
953
  msgstr ""
954
 
955
+ #: controls/ooohboi-overlaiz.php:558 controls/ooohboi-overlay-underlay.php:538
956
  #: controls/ooohboi-overlay-underlay.php:1092 controls/ooohboi-spacerat.php:220
957
  #: controls/ooohboi-videomasq.php:104
958
  msgid "Auto"
959
  msgstr ""
960
 
961
+ #: controls/ooohboi-overlaiz.php:559 controls/ooohboi-overlay-underlay.php:539
962
  #: controls/ooohboi-overlay-underlay.php:1093 controls/ooohboi-spacerat.php:221
963
  #: controls/ooohboi-videomasq.php:105
964
  msgid "Cover"
965
  msgstr ""
966
 
967
+ #: controls/ooohboi-overlaiz.php:560 controls/ooohboi-overlay-underlay.php:540
968
  #: controls/ooohboi-overlay-underlay.php:1094 controls/ooohboi-spacerat.php:222
969
  #: controls/ooohboi-videomasq.php:106
970
  msgid "Contain"
971
  msgstr ""
972
 
973
+ #: controls/ooohboi-overlaiz.php:635 controls/ooohboi-overlay-underlay.php:605
974
  #: controls/ooohboi-overlay-underlay.php:1157 controls/ooohboi-spacerat.php:289
975
  #: controls/ooohboi-videomasq.php:171
976
  msgid "Mask repeat"
977
  msgstr ""
978
 
979
+ #: controls/ooohboi-overlaiz.php:639 controls/ooohboi-overlay-underlay.php:609
980
  #: controls/ooohboi-overlay-underlay.php:1161 controls/ooohboi-spacerat.php:293
981
  #: controls/ooohboi-videomasq.php:175
982
  msgid "No-repeat"
983
  msgstr ""
984
 
985
+ #: controls/ooohboi-overlaiz.php:640 controls/ooohboi-overlay-underlay.php:610
986
  #: controls/ooohboi-overlay-underlay.php:1162 controls/ooohboi-spacerat.php:294
987
  #: controls/ooohboi-videomasq.php:176
988
  msgid "Repeat"
989
  msgstr ""
990
 
991
+ #: controls/ooohboi-overlaiz.php:641 controls/ooohboi-overlay-underlay.php:611
992
  #: controls/ooohboi-overlay-underlay.php:1163 controls/ooohboi-spacerat.php:295
993
  #: controls/ooohboi-videomasq.php:177
994
  msgid "Repeat-x"
995
  msgstr ""
996
 
997
+ #: controls/ooohboi-overlaiz.php:642 controls/ooohboi-overlay-underlay.php:612
998
  #: controls/ooohboi-overlay-underlay.php:1164 controls/ooohboi-spacerat.php:296
999
  #: controls/ooohboi-videomasq.php:178
1000
  msgid "Repeat-y"
1001
  msgstr ""
1002
 
1003
+ #: controls/ooohboi-overlaiz.php:662 controls/ooohboi-overlay-underlay.php:630
1004
+ #: controls/ooohboi-overlay-underlay.php:1181
1005
+ msgid "Z-Index"
1006
+ msgstr ""
1007
+
1008
+ #: controls/ooohboi-overlay-underlay.php:78
1009
+ msgid "Overlay"
1010
+ msgstr ""
1011
+
1012
+ #: controls/ooohboi-overlay-underlay.php:127
1013
+ #: controls/ooohboi-overlay-underlay.php:701
1014
+ msgid "Blend Mode"
1015
+ msgstr ""
1016
+
1017
+ #: controls/ooohboi-overlay-underlay.php:153
1018
+ #: controls/ooohboi-overlay-underlay.php:727
1019
+ msgid "Position and Size"
1020
+ msgstr ""
1021
+
1022
+ #: controls/ooohboi-overlay-underlay.php:269
1023
+ #: controls/ooohboi-overlay-underlay.php:383
1024
+ #: controls/ooohboi-overlay-underlay.php:838
1025
+ msgid "Enter CSS calc value only! Like: 45% + 85px or 100% - 3em"
1026
+ msgstr ""
1027
+
1028
+ #: controls/ooohboi-overlay-underlay.php:325
1029
+ #: controls/ooohboi-overlay-underlay.php:890
1030
+ msgid "Calc Offset Top"
1031
+ msgstr ""
1032
+
1033
+ #: controls/ooohboi-overlay-underlay.php:382
1034
+ #: controls/ooohboi-overlay-underlay.php:943
1035
+ msgid "Calc Offset Left"
1036
+ msgstr ""
1037
+
1038
+ #: controls/ooohboi-overlay-underlay.php:398
1039
+ #: controls/ooohboi-overlay-underlay.php:956
1040
+ msgid "Rotate"
1041
+ msgstr ""
1042
+
1043
+ #: controls/ooohboi-overlay-underlay.php:471
1044
+ msgid "Overlay Mask"
1045
+ msgstr ""
1046
+
1047
  #: controls/ooohboi-overlay-underlay.php:651
1048
  msgid "Underlay"
1049
  msgstr ""
1271
  msgid "SpaceRat Mask"
1272
  msgstr ""
1273
 
 
 
 
 
 
 
1274
  #: controls/ooohboi-spacerat.php:337
1275
  msgid "Add shadow?"
1276
  msgstr ""
1287
  msgid "Content Position - X"
1288
  msgstr ""
1289
 
 
 
 
 
 
 
 
1290
  #: controls/ooohboi-teleporter.php:154 controls/ooohboi-teleporter.php:199
1291
  msgid "Content Position - Y"
1292
  msgstr ""
ooohboi-steroids.php CHANGED
@@ -2,7 +2,7 @@
2
  /**
3
  * Plugin Name: OoohBoi Steroids for Elementor
4
  * Description: An awesome set of tools, options and settings that expand Elementor defaults. Instead of creating new Elementor Widgets, these act like an upgrade of existing options or the self-standing panels.
5
- * Version: 1.5.8
6
  * Author: OoohBoi
7
  * Author URI: https://www.youtube.com/c/OoohBoi
8
  * Text Domain: ooohboi-steroids
@@ -31,7 +31,7 @@ final class OoohBoi_Steroids {
31
  *
32
  * @var string The plugin version.
33
  */
34
- const VERSION = '1.5.8';
35
 
36
  /**
37
  * Minimum Elementor Version
2
  /**
3
  * Plugin Name: OoohBoi Steroids for Elementor
4
  * Description: An awesome set of tools, options and settings that expand Elementor defaults. Instead of creating new Elementor Widgets, these act like an upgrade of existing options or the self-standing panels.
5
+ * Version: 1.5.9
6
  * Author: OoohBoi
7
  * Author URI: https://www.youtube.com/c/OoohBoi
8
  * Text Domain: ooohboi-steroids
31
  *
32
  * @var string The plugin version.
33
  */
34
+ const VERSION = '1.5.9';
35
 
36
  /**
37
  * Minimum Elementor Version
readme.txt CHANGED
@@ -4,7 +4,7 @@ Tags: page-builder, elementor, add-on, background-overlay, vertical text, ghost
4
  Donate link: https://www.paypal.me/ooohboi
5
  Requires at least: 5.0
6
  Tested up to: 5.6
7
- Stable tag: 1.5.8
8
  Requires PHP: 7.0
9
  License: GPLv3
10
  License URI: http://www.gnu.org/licenses/gpl-3.0
@@ -19,10 +19,6 @@ Boost your Elementor with some fresh and yet innovative options.
19
 
20
  An awesome set of tools, options and settings that expand Elementor defaults. Instead of creating new Elementor Widgets, these act like an upgrade of existing options or the self-standing panels thing.
21
 
22
- = !NOTE! =
23
-
24
- PLEASE CONSIDER A SMALL DONATION FOR THE SAKE OF FUTURE DEVELOPMENT OF THIS ADD-ON. We are running out of budget and, without your help there's a great chance that we stop adding new features. Even a couple of bucks can help. Thank you!!!
25
-
26
  = THE LATEST EXTENSION - KONTROLZ =
27
 
28
  Allows additional styling controls for Image Carousel and Media Carousel widgets.
@@ -89,7 +85,7 @@ Animate widgets on column's mouse-over event
89
  20. KONTROLZ
90
  Allows you to additionaly style Image Carousel and Media Carousel controls
91
 
92
- 21. MORE IS MAYBE COMING SOON!
93
 
94
  == Installation ==
95
 
@@ -98,7 +94,7 @@ Allows you to additionaly style Image Carousel and Media Carousel controls
98
 
99
  == Upgrade Notice ==
100
 
101
- 1.5.6 - Beware of the changes in the language file!
102
 
103
  == Frequently Asked Questions ==
104
 
@@ -139,8 +135,16 @@ No, you don't. It'll work with both free version of Elementor and Elementor PRO.
139
  23. IMBOX Content options
140
  24. HOVERANIMATOR options
141
 
 
 
 
 
142
  == Changelog ==
143
 
 
 
 
 
144
  = 1.5.8 =
145
  - NEW Breaking Bad feature added: Column Max Width
146
 
4
  Donate link: https://www.paypal.me/ooohboi
5
  Requires at least: 5.0
6
  Tested up to: 5.6
7
+ Stable tag: 1.5.9
8
  Requires PHP: 7.0
9
  License: GPLv3
10
  License URI: http://www.gnu.org/licenses/gpl-3.0
19
 
20
  An awesome set of tools, options and settings that expand Elementor defaults. Instead of creating new Elementor Widgets, these act like an upgrade of existing options or the self-standing panels thing.
21
 
 
 
 
 
22
  = THE LATEST EXTENSION - KONTROLZ =
23
 
24
  Allows additional styling controls for Image Carousel and Media Carousel widgets.
85
  20. KONTROLZ
86
  Allows you to additionaly style Image Carousel and Media Carousel controls
87
 
88
+ 21. MORE IS COMING SOON!
89
 
90
  == Installation ==
91
 
94
 
95
  == Upgrade Notice ==
96
 
97
+ 1.5.9 - Beware of the changes in the language file!
98
 
99
  == Frequently Asked Questions ==
100
 
135
  23. IMBOX Content options
136
  24. HOVERANIMATOR options
137
 
138
+ = !NOTE! =
139
+
140
+ PLEASE CONSIDER A SMALL DONATION FOR THE SAKE OF FUTURE DEVELOPMENT OF THIS ADD-ON. We are running out of budget and, without your help there's a great chance that we stop adding new features. Even a couple of bucks can help. Thank you!!!
141
+
142
  == Changelog ==
143
 
144
+ = 1.5.9 =
145
+ - PoopArt, fixed initial X and Y offset that caused the horizontal scroller on full-width Section
146
+ - Overlaiz, added Mask option
147
+
148
  = 1.5.8 =
149
  - NEW Breaking Bad feature added: Column Max Width
150