Version Description
- Fixed: Transition CSS
Download this release
Release Info
Developer | rwattner |
Plugin | Sticky Header Effects for Elementor |
Version | 1.3.2 |
Comparing to | |
See all releases |
Code changes from version 1.3.1 to 1.3.2
- assets/css/she-header-style.css +86 -38
- readme.txt +8 -2
- sticky-header-effects-for-elementor.php +7 -7
assets/css/she-header-style.css
CHANGED
@@ -1,38 +1,86 @@
|
|
1 |
-
/*------------------------------------------------------------------
|
2 |
-
|
3 |
-
|
4 |
-
|
5 |
-
|
6 |
-
|
7 |
-
|
8 |
-
|
9 |
-
|
10 |
-
|
11 |
-
|
12 |
-
|
13 |
-
|
14 |
-
|
15 |
-
|
16 |
-
|
17 |
-
|
18 |
-
|
19 |
-
|
20 |
-
|
21 |
-
|
22 |
-
|
23 |
-
|
24 |
-
|
25 |
-
|
26 |
-
|
27 |
-
|
28 |
-
|
29 |
-
|
30 |
-
|
31 |
-
|
32 |
-
|
33 |
-
|
34 |
-
|
35 |
-
|
36 |
-
|
37 |
-
|
38 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
/*------------------------------------------------------------------
|
2 |
+
|
3 |
+
Header Style
|
4 |
+
|
5 |
+
-------------------------------------------------------------------*/
|
6 |
+
|
7 |
+
.header {
|
8 |
+
|
9 |
+
z-index:99;
|
10 |
+
|
11 |
+
width: 100%;
|
12 |
+
|
13 |
+
|
14 |
+
|
15 |
+
}
|
16 |
+
|
17 |
+
|
18 |
+
|
19 |
+
.she-header{
|
20 |
+
|
21 |
+
background-color: rgba(255, 255, 255, 0.5);
|
22 |
+
|
23 |
+
z-index:99;
|
24 |
+
|
25 |
+
width: 100%;
|
26 |
+
|
27 |
+
margin-top:0;
|
28 |
+
|
29 |
+
margin-bottom:0;
|
30 |
+
|
31 |
+
padding-top:0;
|
32 |
+
|
33 |
+
padding-bottom:0;
|
34 |
+
|
35 |
+
position:fixed;
|
36 |
+
|
37 |
+
top:0;
|
38 |
+
|
39 |
+
-webkit-transition: all 0.4s ease-in-out;
|
40 |
+
|
41 |
+
-moz-transition: all 0.4s ease-in-out;
|
42 |
+
|
43 |
+
-o-transition: all 0.4s ease-in-out;
|
44 |
+
|
45 |
+
-ms-transition: all 0.4s ease-in-out;
|
46 |
+
|
47 |
+
transition: all 0.4s ease-in-out;
|
48 |
+
|
49 |
+
|
50 |
+
|
51 |
+
}
|
52 |
+
|
53 |
+
|
54 |
+
|
55 |
+
.she-header-transparent-yes{
|
56 |
+
|
57 |
+
position:fixed;
|
58 |
+
|
59 |
+
background-color: rbga(0,0,0,0) !important;
|
60 |
+
|
61 |
+
z-index: 99;
|
62 |
+
|
63 |
+
width: 100%;
|
64 |
+
|
65 |
+
-webkit-transition: all 0.4s ease-in-out;
|
66 |
+
|
67 |
+
-moz-transition: all 0.4s ease-in-out;
|
68 |
+
|
69 |
+
-o-transition: all 0.4s ease-in-out;
|
70 |
+
|
71 |
+
-ms-transition: all 0.4s ease-in-out;
|
72 |
+
|
73 |
+
transition: all 0.4s ease-in-out;
|
74 |
+
|
75 |
+
}
|
76 |
+
|
77 |
+
|
78 |
+
|
79 |
+
.elementor-editor-active .she-header-transparent-yes {
|
80 |
+
|
81 |
+
position:relative;
|
82 |
+
|
83 |
+
}
|
84 |
+
|
85 |
+
|
86 |
+
|
readme.txt
CHANGED
@@ -4,9 +4,9 @@ Contributors: rwattner, dgovea
|
|
4 |
Donate Link: https://www.paypal.me/StickyHeaderEffects
|
5 |
Tags: Elementor, Elementor Page Builder, Elements, Elementor Add-ons, Add-ons, Page Builder, Widgets, Briefcasewp
|
6 |
Requires at least: 4.9.0
|
7 |
-
Tested up to: 5.
|
8 |
Requires PHP: 5.4
|
9 |
-
Stable tag: 1.3.
|
10 |
License: GPLv2 or later
|
11 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
12 |
|
@@ -88,6 +88,9 @@ Sticky Header Options for Elementor is light-weight and you can also use only th
|
|
88 |
|
89 |
== Changelog ==
|
90 |
|
|
|
|
|
|
|
91 |
= 1.3.1 =
|
92 |
- Fixed: Bugs
|
93 |
|
@@ -129,6 +132,9 @@ Sticky Header Options for Elementor is light-weight and you can also use only th
|
|
129 |
|
130 |
== Upgrade Notice ==
|
131 |
|
|
|
|
|
|
|
132 |
= 1.3.1 =
|
133 |
- Fixed: Bugs
|
134 |
|
4 |
Donate Link: https://www.paypal.me/StickyHeaderEffects
|
5 |
Tags: Elementor, Elementor Page Builder, Elements, Elementor Add-ons, Add-ons, Page Builder, Widgets, Briefcasewp
|
6 |
Requires at least: 4.9.0
|
7 |
+
Tested up to: 5.2.2
|
8 |
Requires PHP: 5.4
|
9 |
+
Stable tag: 1.3.2
|
10 |
License: GPLv2 or later
|
11 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
12 |
|
88 |
|
89 |
== Changelog ==
|
90 |
|
91 |
+
= 1.3.2 =
|
92 |
+
- Fixed: Transition CSS
|
93 |
+
|
94 |
= 1.3.1 =
|
95 |
- Fixed: Bugs
|
96 |
|
132 |
|
133 |
== Upgrade Notice ==
|
134 |
|
135 |
+
= 1.3.2 =
|
136 |
+
- Fixed: Transition CSS
|
137 |
+
|
138 |
= 1.3.1 =
|
139 |
- Fixed: Bugs
|
140 |
|
sticky-header-effects-for-elementor.php
CHANGED
@@ -1,13 +1,13 @@
|
|
1 |
<?php
|
2 |
/**
|
3 |
* Plugin Name: Sticky Header Effects for Elementor
|
4 |
-
* Plugin URI:
|
5 |
* Description: Options and features that extend Elementor Pro's sticky header capabilities.
|
6 |
-
* Version: 1.3.
|
7 |
* Author: Rwattner
|
8 |
-
* Author URI:
|
9 |
* Requires at least: 4.9.0
|
10 |
-
* Tested up to: 5.
|
11 |
*
|
12 |
* Text Domain: she-header
|
13 |
* Domain Path: /languages/
|
@@ -19,8 +19,8 @@
|
|
19 |
|
20 |
if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly
|
21 |
|
22 |
-
define( 'SHE_HEADER_VERSION', '1.3.
|
23 |
-
define( 'SHE_HEADER_PREVIOUS_STABLE_VERSION', '1.3.
|
24 |
|
25 |
define( 'SHE_HEADER__FILE__', __FILE__ );
|
26 |
define( 'SHE_HEADER_PLUGIN_BASE', plugin_basename( SHE_HEADER__FILE__ ) );
|
@@ -51,7 +51,7 @@ function she_header_load_plugin() {
|
|
51 |
return;
|
52 |
}
|
53 |
|
54 |
-
$elementor_version_recommendation = '
|
55 |
if ( ! version_compare( ELEMENTOR_VERSION, $elementor_version_recommendation, '>=' ) ) {
|
56 |
add_action( 'admin_notices', 'she_header_admin_notice_upgrade_recommendation' );
|
57 |
}
|
1 |
<?php
|
2 |
/**
|
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.3.2
|
7 |
* Author: Rwattner
|
8 |
+
* Author URI: https://stickyheadereffects.com
|
9 |
* Requires at least: 4.9.0
|
10 |
+
* Tested up to: 5.2.2
|
11 |
*
|
12 |
* Text Domain: she-header
|
13 |
* Domain Path: /languages/
|
19 |
|
20 |
if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly
|
21 |
|
22 |
+
define( 'SHE_HEADER_VERSION', '1.3.2' );
|
23 |
+
define( 'SHE_HEADER_PREVIOUS_STABLE_VERSION', '1.3.1' );
|
24 |
|
25 |
define( 'SHE_HEADER__FILE__', __FILE__ );
|
26 |
define( 'SHE_HEADER_PLUGIN_BASE', plugin_basename( SHE_HEADER__FILE__ ) );
|
51 |
return;
|
52 |
}
|
53 |
|
54 |
+
$elementor_version_recommendation = '2.5';
|
55 |
if ( ! version_compare( ELEMENTOR_VERSION, $elementor_version_recommendation, '>=' ) ) {
|
56 |
add_action( 'admin_notices', 'she_header_admin_notice_upgrade_recommendation' );
|
57 |
}
|