Version Description
- Fixed: Shrinking Logo bug
Download this release
Release Info
Developer | rwattner |
Plugin | Sticky Header Effects for Elementor |
Version | 1.5.4 |
Comparing to | |
See all releases |
Code changes from version 1.5.3 to 1.5.4
- assets/css/she-header-style.css +9 -14
- modules/transparent/module.php +4 -0
- readme.txt +7 -1
- sticky-header-effects-for-elementor.php +3 -3
assets/css/she-header-style.css
CHANGED
@@ -5,6 +5,7 @@ Header Style
|
|
5 |
-------------------------------------------------------------------*/
|
6 |
|
7 |
.header {
|
|
|
8 |
z-index: 99;
|
9 |
width: 100%;
|
10 |
transition: all 0.4s ease-in-out;
|
@@ -27,9 +28,9 @@ Header Style
|
|
27 |
@media screen and (min-width: 783px) {
|
28 |
/* .admin-bar .she-header-transparent-sticky-yes,
|
29 |
.admin-bar .she-header-transparent-yes,
|
30 |
-
.admin-bar .she-header-yes, */
|
31 |
.admin-bar .she-header {
|
32 |
-
|
33 |
}
|
34 |
}
|
35 |
|
@@ -52,27 +53,21 @@ Header Style
|
|
52 |
|
53 |
.she-header-transparent-yes {
|
54 |
position: absolute !important;
|
55 |
-
-webkit-transition: top 0s
|
56 |
-
-o-transition: top 0s
|
57 |
-
transition: top 0s
|
58 |
background-color: rgba(0, 0, 0, 0) !important;
|
59 |
z-index: 99;
|
60 |
-
-webkit-transition: all 0.4s ease-in-out;
|
61 |
-
-o-transition: all 0.4s ease-in-out;
|
62 |
-
transition: all 0.4s ease-in-out;
|
63 |
width: 100%;
|
64 |
}
|
65 |
|
66 |
.elementor-editor-active .she-header-transparent-yes {
|
67 |
position: absolute !important;
|
68 |
-
-webkit-transition: top 0s
|
69 |
-
-o-transition: top 0s
|
70 |
-
transition: top 0s
|
71 |
background-color: rgba(0, 0, 0, 0) !important;
|
72 |
z-index: 99;
|
73 |
-
-webkit-transition: all 0.4s ease-in-out;
|
74 |
-
-o-transition: all 0.4s ease-in-out;
|
75 |
-
transition: all 0.4s ease-in-out;
|
76 |
width: 100%;
|
77 |
}
|
78 |
|
5 |
-------------------------------------------------------------------*/
|
6 |
|
7 |
.header {
|
8 |
+
top: inherit !important;
|
9 |
z-index: 99;
|
10 |
width: 100%;
|
11 |
transition: all 0.4s ease-in-out;
|
28 |
@media screen and (min-width: 783px) {
|
29 |
/* .admin-bar .she-header-transparent-sticky-yes,
|
30 |
.admin-bar .she-header-transparent-yes,
|
31 |
+
.admin-bar .she-header-yes, */
|
32 |
.admin-bar .she-header {
|
33 |
+
top: 32px !important;
|
34 |
}
|
35 |
}
|
36 |
|
53 |
|
54 |
.she-header-transparent-yes {
|
55 |
position: absolute !important;
|
56 |
+
-webkit-transition: all 0.4s ease-in-out, top 0s;
|
57 |
+
-o-transition: all 0.4s ease-in-out, top 0s;
|
58 |
+
transition: all 0.4s ease-in-out, top 0s;
|
59 |
background-color: rgba(0, 0, 0, 0) !important;
|
60 |
z-index: 99;
|
|
|
|
|
|
|
61 |
width: 100%;
|
62 |
}
|
63 |
|
64 |
.elementor-editor-active .she-header-transparent-yes {
|
65 |
position: absolute !important;
|
66 |
+
-webkit-transition: all 0.4s ease-in-out, top 0s;
|
67 |
+
-o-transition: all 0.4s ease-in-out, top 0s;
|
68 |
+
transition: all 0.4s ease-in-out, top 0s;
|
69 |
background-color: rgba(0, 0, 0, 0) !important;
|
70 |
z-index: 99;
|
|
|
|
|
|
|
71 |
width: 100%;
|
72 |
}
|
73 |
|
modules/transparent/module.php
CHANGED
@@ -323,11 +323,15 @@ $element->add_responsive_control(
|
|
323 |
],
|
324 |
],
|
325 |
'size_units' => [ '%'],
|
|
|
326 |
'condition' => [
|
327 |
'shrink_header_logo' => 'yes',
|
328 |
'transparent!' => '',
|
329 |
],
|
330 |
'frontend_available' => true,
|
|
|
|
|
|
|
331 |
]
|
332 |
);
|
333 |
|
323 |
],
|
324 |
],
|
325 |
'size_units' => [ '%'],
|
326 |
+
|
327 |
'condition' => [
|
328 |
'shrink_header_logo' => 'yes',
|
329 |
'transparent!' => '',
|
330 |
],
|
331 |
'frontend_available' => true,
|
332 |
+
'selectors' => [
|
333 |
+
'{{WRAPPER}}.she-header .elementor-widget-theme-site-logo img, {{WRAPPER}}.she-header .elementor-widget-image img' => '-webkit-transform: scale(calc({{VALUE}}/100)) !important;-ms-transform: scale(calc({{VALUE}}/100)) !important;transform: scale(calc({{VALUE}}/100)) !important; -webkit-transition: -webkit-transform 0.4s ease-in-out; transition: -webkit-transform 0.4s ease-in-out; -o-transition: transform 0.4s ease-in-out; transition: transform 0.4s ease-in-out; transition: transform 0.4s ease-in-out, -webkit-transform 0.4s ease-in-out;',
|
334 |
+
],
|
335 |
]
|
336 |
);
|
337 |
|
readme.txt
CHANGED
@@ -6,7 +6,7 @@ Tags: Elementor, Elementor Page Builder, Elements, Elementor Add-ons, Add-ons, P
|
|
6 |
Requires at least: 4.9.0
|
7 |
Tested up to: 6.0
|
8 |
Requires PHP: 5.4
|
9 |
-
Stable tag: 1.5.
|
10 |
License: GPLv2 or later
|
11 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
12 |
|
@@ -91,6 +91,9 @@ Sticky Header Options for Elementor is light-weight and you can also use only th
|
|
91 |
|
92 |
== Changelog ==
|
93 |
|
|
|
|
|
|
|
94 |
= 1.5.3 =
|
95 |
- Fixed: Gap above mobile header bug
|
96 |
|
@@ -190,6 +193,9 @@ Sticky Header Options for Elementor is light-weight and you can also use only th
|
|
190 |
|
191 |
== Upgrade Notice ==
|
192 |
|
|
|
|
|
|
|
193 |
= 1.5.3 =
|
194 |
Fixed: Gap above mobile header bug
|
195 |
|
6 |
Requires at least: 4.9.0
|
7 |
Tested up to: 6.0
|
8 |
Requires PHP: 5.4
|
9 |
+
Stable tag: 1.5.4
|
10 |
License: GPLv2 or later
|
11 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
12 |
|
91 |
|
92 |
== Changelog ==
|
93 |
|
94 |
+
= 1.5.4 =
|
95 |
+
- Fixed: Shrinking Logo bug
|
96 |
+
|
97 |
= 1.5.3 =
|
98 |
- Fixed: Gap above mobile header bug
|
99 |
|
193 |
|
194 |
== Upgrade Notice ==
|
195 |
|
196 |
+
= 1.5.4 =
|
197 |
+
Fixed: Shrinking Logo bug
|
198 |
+
|
199 |
= 1.5.3 =
|
200 |
Fixed: Gap above mobile header bug
|
201 |
|
sticky-header-effects-for-elementor.php
CHANGED
@@ -3,7 +3,7 @@
|
|
3 |
* Plugin Name: Sticky Header Effects for Elementor
|
4 |
* Plugin URI: https://stickyheadereffects.com
|
5 |
* Description: Options and features that extend Elementor Pro's sticky header capabilities.
|
6 |
-
* Version: 1.5.
|
7 |
* Author: Rwattner
|
8 |
* Author URI: https://stickyheadereffects.com
|
9 |
* Requires at least: 4.9.0
|
@@ -19,8 +19,8 @@
|
|
19 |
|
20 |
if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly
|
21 |
|
22 |
-
define( 'SHE_HEADER_VERSION', '1.5.
|
23 |
-
define( 'SHE_HEADER_PREVIOUS_STABLE_VERSION', '1.
|
24 |
|
25 |
define( 'SHE_HEADER__FILE__', __FILE__ );
|
26 |
define( 'SHE_HEADER_PLUGIN_BASE', plugin_basename( SHE_HEADER__FILE__ ) );
|
3 |
* Plugin Name: Sticky Header Effects for Elementor
|
4 |
* Plugin URI: https://stickyheadereffects.com
|
5 |
* Description: Options and features that extend Elementor Pro's sticky header capabilities.
|
6 |
+
* Version: 1.5.4
|
7 |
* Author: Rwattner
|
8 |
* Author URI: https://stickyheadereffects.com
|
9 |
* Requires at least: 4.9.0
|
19 |
|
20 |
if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly
|
21 |
|
22 |
+
define( 'SHE_HEADER_VERSION', '1.5.4' );
|
23 |
+
define( 'SHE_HEADER_PREVIOUS_STABLE_VERSION', '1.5.3' );
|
24 |
|
25 |
define( 'SHE_HEADER__FILE__', __FILE__ );
|
26 |
define( 'SHE_HEADER_PLUGIN_BASE', plugin_basename( SHE_HEADER__FILE__ ) );
|