mystickymenu
Last commit date
css
4 years ago
fonts
4 years ago
images
4 years ago
js
4 years ago
languages
4 years ago
class-review-box.php
4 years ago
class-upgrade-box.php
4 years ago
index.php
8 years ago
mystickymenu-affiliate.php
4 years ago
mystickymenu-deactivate-form.php
4 years ago
mystickymenu-fonts.php
4 years ago
mystickymenu-popup.php
4 years ago
mystickymenu.php
4 years ago
mystickymeny-new-welcomebar.php
4 years ago
readme.txt
4 years ago
recommended-plugins.php
4 years ago
stickymenu-dashboard.php
4 years ago
uninstall.php
4 years ago
update.php
4 years ago
upgrade-to-pro.php
4 years ago
welcome-bar.php
4 years ago
update.php
239 lines
| 1 | <?php if (!defined('ABSPATH')) { exit; } ?> |
| 2 | <style> |
| 3 | body { |
| 4 | background: #ffffff !important; |
| 5 | } |
| 6 | </style> |
| 7 | <div class="myStickymenu-updates-form"> |
| 8 | <div class="updates-form-form-left"> |
| 9 | <div class="updates-form-form-left-text">premio</div> |
| 10 | <img src="<?php echo MYSTICKYMENU_URL ?>/images/wcupdate_email.svg" style="width: 230px;margin: 60px 0px 20px 0px;" /> |
| 11 | <p>Grow your WordPress websites with our plugins</p> |
| 12 | </div> |
| 13 | <div class="updates-form-form-right"> |
| 14 | <div class="update-title">Be first</div> |
| 15 | <p>Be among the first to know about our latest features & what we're working on. Plus insider offers & flash sales</p> |
| 16 | <div class="updates-form"> |
| 17 | <div class="update-form-input"> |
| 18 | <div class="mail-icon"> |
| 19 | <svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"> |
| 20 | <mask id="mask0" mask-type="alpha" maskUnits="userSpaceOnUse" x="2" y="4" width="20" height="16"> |
| 21 | <path fill-rule="evenodd" clip-rule="evenodd" d="M22 6C22 4.9 21.1 4 20 4H4C2.9 4 2 4.9 2 6V18C2 19.1 2.9 20 4 20H20C21.1 20 22 19.1 22 18V6ZM20 6L12 11L4 6H20ZM12 13L4 8V18H20V8L12 13Z" fill="white"/> |
| 22 | </mask> |
| 23 | <g mask="url(#mask0)"> |
| 24 | <rect width="24" height="24" fill="#94A3B8"/> |
| 25 | </g> |
| 26 | </svg> |
| 27 | </div> |
| 28 | <input id="myStickymenu_update_email" autocomplete="off" value="<?php echo get_option( 'admin_email' ) ?>" placeholder="Email address"> |
| 29 | <button href="javascript:;" class="button button-primary form-submit-btn yes">Sign Up</button> |
| 30 | </div> |
| 31 | <!-- <div class="update-form-skip-button"> |
| 32 | <button href="javascript:;" class="button button-secondary form-cancel-btn no">Skip</button> |
| 33 | </div> --> |
| 34 | </div> |
| 35 | |
| 36 | <div class="update-notice-latter"> |
| 37 | <span><a href="javascript:;" class="skip-dolatter form-cancel-btn no">No, I will do it later</a></span> |
| 38 | </div> |
| 39 | |
| 40 | <div class="update-notice"> |
| 41 | You can remove yourself from the list whenever you want, no strings attached |
| 42 | </div> |
| 43 | <input type="hidden" id="myStickymenu_update_nonce" value="<?php echo wp_create_nonce("myStickymenu_update_nonce") ?>"> |
| 44 | </div> |
| 45 | </div> |
| 46 | <style> |
| 47 | |
| 48 | @font-face { |
| 49 | font-family: 'Lato'; |
| 50 | src: url('<?php echo MYSTICKYMENU_URL."fonts/Lato-Regular.ttf";?>'); |
| 51 | } |
| 52 | |
| 53 | #wpwrap{ |
| 54 | background: url('<?php echo MYSTICKYMENU_URL;?>images/update-bg.jpg'); |
| 55 | background-position: bottom center; |
| 56 | background-size: cover; |
| 57 | } |
| 58 | .myStickymenu-updates-form { |
| 59 | width: 768px; |
| 60 | padding: 0 30px 0 0; |
| 61 | box-shadow: 0px 20px 25px rgb(0 0 0 / 10%), 0px 10px 10px rgb(0 0 0 / 4%); |
| 62 | display: flex; |
| 63 | margin: 100px auto 0; |
| 64 | font-family: Lato, sans-serif; |
| 65 | background:#ffffff; |
| 66 | } |
| 67 | .update-title{ |
| 68 | font-style: normal; |
| 69 | font-weight: 700; |
| 70 | font-size: 30px; |
| 71 | align-items: center; |
| 72 | color: #334155; |
| 73 | position: relative; |
| 74 | line-height: 36px; |
| 75 | font-family:Lato; |
| 76 | } |
| 77 | .updates-form-form-left { |
| 78 | padding: 25px 0px 50px 0px; |
| 79 | background: linear-gradient(180deg, #3C139A 25.79%, #2A0D76 72.72%); |
| 80 | border-radius: 14.42px 0px 0px 14.419px; |
| 81 | text-align:center; |
| 82 | width: 70%; |
| 83 | } |
| 84 | .updates-form-form-left p{ |
| 85 | font-size: 16px; |
| 86 | line-height: 1.5; |
| 87 | margin: 0; |
| 88 | color: #fff; |
| 89 | padding: 0px 36px; |
| 90 | font-family:Lato; |
| 91 | } |
| 92 | |
| 93 | .updates-form-form-left span{ |
| 94 | color: #fff; |
| 95 | margin-left: 0px; |
| 96 | margin-top: 0px; |
| 97 | position: absolute; |
| 98 | font-size: 20px; |
| 99 | line-height: 0.5; |
| 100 | font-family:Lato; |
| 101 | } |
| 102 | |
| 103 | .updates-form-form-left-text{ |
| 104 | color: #fff; |
| 105 | font-size: 20px; |
| 106 | font-weight: 600; |
| 107 | text-align: left; |
| 108 | padding-left: 30px; |
| 109 | font-family:Lato; |
| 110 | } |
| 111 | |
| 112 | .updates-form-form-right{ |
| 113 | margin-left: 16px; |
| 114 | padding: 70px 47px 70px 45px; |
| 115 | } |
| 116 | |
| 117 | .updates-form-form-right p { |
| 118 | font-size: 16px; |
| 119 | font-style: normal; |
| 120 | font-weight: normal; |
| 121 | line-height: 150%; |
| 122 | position: relative; |
| 123 | color: #475569; |
| 124 | margin: 32px 0px 20px 0px; |
| 125 | font-family:Lato; |
| 126 | } |
| 127 | /*.updates-form-form-right p:after { |
| 128 | content: ""; |
| 129 | border: 1px solid #3C85F7; |
| 130 | position: absolute; |
| 131 | bottom: 5px; |
| 132 | left: 0; |
| 133 | width: 90px; |
| 134 | }*/ |
| 135 | .updates-form { |
| 136 | /* display: flex; */ |
| 137 | } |
| 138 | .update-form-input { |
| 139 | position: relative; |
| 140 | } |
| 141 | .update-form-input input { |
| 142 | width: 385px; |
| 143 | background: #F4F4F5; |
| 144 | border: 1px solid #F4F4F5; |
| 145 | box-sizing: border-box; |
| 146 | border-radius: 8px; |
| 147 | height: 42px; |
| 148 | line-height: 40px; |
| 149 | padding: 0 50px 0 40px; |
| 150 | font-size: 13px; |
| 151 | box-sizing: border-box; |
| 152 | color: #334155; |
| 153 | } |
| 154 | .update-form-input .form-submit-btn { |
| 155 | background: #5A00F0; |
| 156 | border-radius: 8px; |
| 157 | border: none; |
| 158 | color: #fff; |
| 159 | font-style: normal; |
| 160 | font-weight: 500; |
| 161 | font-size: 13px; |
| 162 | line-height: 150%; |
| 163 | height: 36px; |
| 164 | padding: 0 10px; |
| 165 | position: absolute; |
| 166 | right: 3px; |
| 167 | top: 3px; |
| 168 | width: 100px; |
| 169 | font-family:Lato; |
| 170 | } |
| 171 | |
| 172 | .update-form-input #myStickymenu_update_email:hover{ |
| 173 | border-bottom: 1px solid #5A00F0; |
| 174 | border-radius: 8px 8px 0px 0px; |
| 175 | } |
| 176 | |
| 177 | .update-form-input #myStickymenu_update_email:focus-visible{ |
| 178 | border :1px solid #5A00F0 !important; |
| 179 | outline: 1px !important; |
| 180 | border-radius: 8px; |
| 181 | } |
| 182 | |
| 183 | .update-form-input .form-submit-btn:hover{ |
| 184 | background: #5A00F0; |
| 185 | } |
| 186 | |
| 187 | .updates-form .form-cancel-btn.no { |
| 188 | margin: 0 0 0 3px; |
| 189 | background: transparent; |
| 190 | border: none; |
| 191 | color: #64748B; |
| 192 | font-size: 13px; |
| 193 | line-height: 40px; |
| 194 | padding: 0 0 0 5px; |
| 195 | } |
| 196 | .updates-form .form-cancel-btn.no:hover { |
| 197 | color: #334155; |
| 198 | } |
| 199 | .mail-icon { |
| 200 | position: absolute; |
| 201 | top: 8px; |
| 202 | left: 10px; |
| 203 | } |
| 204 | .update-notice { |
| 205 | margin: 50px 22px 0 0px; |
| 206 | font-size: 16px; |
| 207 | line-height: 150%; |
| 208 | color: #28375A; |
| 209 | text-align:center; |
| 210 | font-family:Lato; |
| 211 | } |
| 212 | |
| 213 | .update-notice-latter{ |
| 214 | margin: 20px 0px; |
| 215 | width: 100%; |
| 216 | text-align: center; |
| 217 | color:#28375A; |
| 218 | } |
| 219 | |
| 220 | .update-notice-latter span a{ |
| 221 | text-decoration: underline; |
| 222 | cursor: pointer; |
| 223 | color:#28375A; |
| 224 | } |
| 225 | |
| 226 | |
| 227 | .update-title:after{ |
| 228 | content: ''; |
| 229 | background: #605DEC; |
| 230 | width: 19%; |
| 231 | height: 2px; |
| 232 | position: absolute; |
| 233 | bottom: -16px; |
| 234 | left: 0; |
| 235 | } |
| 236 | |
| 237 | |
| 238 | |
| 239 | </style> |