WP Subscribe - Version 1.0.5

Version Description

  • Improvement - input placeholder text hides on click.
Download this release

Release Info

Developer MyThemeShop
Plugin Icon 128x128 WP Subscribe
Version 1.0.5
Comparing to
See all releases

Code changes from version 1.0.4 to 1.0.5

css/wp-subscribe-admin.css CHANGED
@@ -4,24 +4,9 @@ Plugin URI: http://mythemeshop.com/plugins/wp-subscribe/
4
  Author: MyThemeShop
5
  Author URI: http://mythemeshop.com
6
  */
7
- .wp_subscribe_options_form label {
8
- vertical-align: top;
9
- }
10
- .wp_subscribe_colors, .wp_subscribe_labels {
11
-
12
- }
13
- .wp_subscribe_options_form .wp-picker-container {
14
- position: absolute;
15
- right: 0;
16
- }
17
- .wp_subscribe_colors > div {
18
- position: relative;
19
- margin: 20px 0;
20
- }
21
- .wp_subscribe_colors label {
22
- display: inline-block;
23
- margin-top: 2px;
24
- }
25
- .wp_subscribe_options_form .wp-picker-container > a {
26
- margin-right: 0;
27
- }
4
  Author: MyThemeShop
5
  Author URI: http://mythemeshop.com
6
  */
7
+ .wp_subscribe_options_form label { vertical-align: top }
8
+ .wp_subscribe_colors, .wp_subscribe_labels { }
9
+ .wp_subscribe_options_form .wp-picker-container { position: absolute; right: 0; }
10
+ .wp_subscribe_colors > div { position: relative; margin: 20px 0; }
11
+ .wp_subscribe_colors label { display: inline-block; margin-top: 2px; }
12
+ .wp_subscribe_options_form .wp-picker-container > a { margin-right: 0 }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
css/wp-subscribe.css CHANGED
@@ -4,75 +4,20 @@ Plugin URI: http://mythemeshop.com/plugins/wp-subscribe/
4
  Author: MyThemeShop
5
  Author URI: http://mythemeshop.com
6
  */
7
- #wp-subscribe {
8
- padding: 26px;
9
- background: #f47555;
10
- }
11
- #wp-subscribe h4.title {
12
- font-size: 22px;
13
- color: #FFFFFF;
14
- line-height: 1;
15
- text-align: center;
16
- text-transform: uppercase;
17
- margin-bottom: 0;
18
- }
19
- #wp-subscribe h4.title span {
20
- display: inline-block;
21
- font-weight: bold;
22
- font-size: 38px;
23
- margin-top: 15px;
24
- }
25
- #wp-subscribe p {
26
- color: #FFFFFF;
27
- margin: 0;
28
- text-align: center;
29
- }
30
- #wp-subscribe p.text {
31
- margin: 15px 0;
32
- opacity: 0.8;
33
- }
34
- #wp-subscribe input {
35
- border: none;
36
- width: 100%;
37
- text-align: center;
38
- box-sizing: border-box;
39
- padding: 10px 0;
40
- margin: 0;
41
- box-shadow: none;
42
- border-radius: 0;
43
- height: 45px;
44
- }
45
- #wp-subscribe input.email-field {
46
- color: #FFFFFF;
47
- background: #d56144;
48
- }
49
- #wp-subscribe input::-webkit-input-placeholder {
50
- color: inherit;
51
- opacity: 0.8;
52
- }
53
- #wp-subscribe input:-moz-input-placeholder {
54
- color: inherit;
55
- opacity: 0.8;
56
- }
57
- #wp-subscribe input::-moz-input-placeholder {
58
- color: inherit;
59
- opacity: 0.8;
60
- }
61
- #wp-subscribe input::-ms-input-placeholder {
62
- color: inherit;
63
- opacity: 0.8;
64
- }
65
- #wp-subscribe input.submit {
66
- background: #FFFFFF;
67
- color: #f47555;
68
- margin-top: 20px;
69
- font-size: 18px;
70
- text-transform: uppercase;
71
- font-weight: 500;
72
- box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.05);
73
- cursor: pointer;
74
- }
75
- #wp-subscribe p.footer-text {
76
- margin-top: 10px;
77
- font-size: 12px;
78
- }
4
  Author: MyThemeShop
5
  Author URI: http://mythemeshop.com
6
  */
7
+ #wp-subscribe { padding: 26px; background: #f47555; }
8
+ #wp-subscribe h4.title { font-size: 22px; color: #FFFFFF; line-height: 1; text-align: center; text-transform: uppercase; margin-bottom: 0; }
9
+ #wp-subscribe h4.title span { display: inline-block; font-weight: bold; font-size: 38px; margin-top: 15px; }
10
+ #wp-subscribe p { color: #FFFFFF; margin: 0; text-align: center; }
11
+ #wp-subscribe p.text { margin: 15px 0; opacity: 0.8; }
12
+ #wp-subscribe input { border: none; width: 100%; text-align: center; box-sizing: border-box; padding: 10px 0; margin: 0; box-shadow: none; border-radius: 0; height: 45px; }
13
+ #wp-subscribe input.email-field { color: #FFFFFF; background: #d56144; }
14
+ #wp-subscribe input::-webkit-input-placeholder { color: inherit; opacity: 0.8; }
15
+ #wp-subscribe input:-moz-input-placeholder { color: inherit; opacity: 0.8; }
16
+ #wp-subscribe input::-moz-input-placeholder { color: inherit; opacity: 0.8; }
17
+ #wp-subscribe input::-ms-input-placeholder { color: inherit; opacity: 0.8; }
18
+ #wp-subscribe input:focus::-webkit-input-placeholder { color: transparent !important }
19
+ #wp-subscribe input:focus::-moz-input-placeholder { color: transparent !important }
20
+ #wp-subscribe input:focus:-moz-input-placeholder { color: transparent !important }
21
+ #wp-subscribe input:focus::input-placeholder { color: transparent !important }
22
+ #wp-subscribe input.submit { background: #FFFFFF; color: #f47555; margin-top: 20px; font-size: 18px; text-transform: uppercase; font-weight: 500; box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.05); cursor: pointer; }
23
+ #wp-subscribe p.footer-text { margin-top: 10px; font-size: 12px; }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
readme.txt CHANGED
@@ -4,7 +4,7 @@ Creator's website link: http://mythemeshop.com/plugins/wp-subscribe/
4
  Tags: subscribe, subscription, subscription box, newsletter, subscribe widget, mailchimp, aweber, feedburner,
5
  Requires at least: 3.0.1
6
  Tested up to: 4.2
7
- Stable tag: 1.0.4
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
@@ -72,6 +72,9 @@ Please disable all plugins and check if plugin is working properly. Then you can
72
 
73
  == Changelog ==
74
 
 
 
 
75
  = 1.0.4 =
76
  * Fixed AWeber signup issue
77
 
4
  Tags: subscribe, subscription, subscription box, newsletter, subscribe widget, mailchimp, aweber, feedburner,
5
  Requires at least: 3.0.1
6
  Tested up to: 4.2
7
+ Stable tag: 1.0.5
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
72
 
73
  == Changelog ==
74
 
75
+ = 1.0.5 =
76
+ * Improvement - input placeholder text hides on click.
77
+
78
  = 1.0.4 =
79
  * Fixed AWeber signup issue
80
 
wp-subscribe.php CHANGED
@@ -4,7 +4,7 @@ Plugin Name: WP Subscribe
4
  Plugin URI: http://mythemeshop.com/plugins/wp-subscribe/
5
  Description: WP Subscribe is a simple but powerful subscription plugin which supports MailChimp, Aweber and Feedburner.
6
  Author: MyThemeShop
7
- Version: 1.0.4
8
  Author URI: http://mythemeshop.com/
9
  */
10
 
4
  Plugin URI: http://mythemeshop.com/plugins/wp-subscribe/
5
  Description: WP Subscribe is a simple but powerful subscription plugin which supports MailChimp, Aweber and Feedburner.
6
  Author: MyThemeShop
7
+ Version: 1.0.5
8
  Author URI: http://mythemeshop.com/
9
  */
10