Version Description
Fixed notification bar activation bug, fixed UI font bug, and added tooltips and improved the interface content
Download this release
Release Info
Developer | galdub |
Plugin | myStickymenu |
Version | 2.5.9 |
Comparing to | |
See all releases |
Code changes from version 2.5.8 to 2.5.9
- class-review-box.php +278 -278
- class-upgrade-box.php +325 -325
- css/admin-setting-rtl.css +623 -623
- css/jquery.ui.datepicker.css +6 -6
- css/mystickymenu-admin-rtl.css +3295 -3311
- css/mystickymenu-admin.css +3308 -3320
- css/select2.min.css +9 -9
- fonts/lato-bold.woff +0 -0
- fonts/lato-regular.woff +0 -0
- images/Premio.svg +3 -3
- images/copy-icon.svg +4 -4
- images/crown.svg +3 -3
- images/delete-icon.svg +4 -4
- images/edit-icon.svg +4 -4
- images/firstwelcombar.svg +81 -81
- images/firstwidget_header.svg +105 -105
- images/wcupdate_email.svg +342 -342
- js/detectmobilebrowser.js +6 -6
- js/iris-script.js +174 -174
- js/mystickymenu-admin.js +725 -724
- js/mystickymenu.js +452 -452
- js/select2.min.js +1 -1
- languages/mystickymenu-de_DE.po +239 -239
- languages/mystickymenu-es_ES.po +237 -237
- languages/mystickymenu-hr_HR.po +241 -241
- languages/mystickymenu-rs_RS.po +237 -237
- languages/mystickymenu.po +203 -203
- mystickymenu-affiliate.php +169 -169
- mystickymenu-deactivate-form.php +233 -239
class-review-box.php
CHANGED
@@ -1,279 +1,279 @@
|
|
1 |
-
<?php
|
2 |
-
class myStickymenu_review_box {
|
3 |
-
|
4 |
-
public $plugin_name = "myStickymenu";
|
5 |
-
|
6 |
-
public $plugin_slug = "my-sticky-menu";
|
7 |
-
|
8 |
-
public function __construct() {
|
9 |
-
|
10 |
-
add_action("wp_ajax_".$this->plugin_slug."_review_box", array($this, "affiliate_program"));
|
11 |
-
|
12 |
-
add_action('admin_notices', array($this, 'admin_notices'));
|
13 |
-
}
|
14 |
-
|
15 |
-
public function affiliate_program() {
|
16 |
-
$nonce = filter_input(INPUT_POST, 'nonce', FILTER_SANITIZE_STRING);
|
17 |
-
$days = filter_input(INPUT_POST, 'days', FILTER_SANITIZE_STRING);
|
18 |
-
if(!empty($nonce) && wp_verify_nonce($nonce, $this->plugin_slug."_review_box")) {
|
19 |
-
if($days == -1) {
|
20 |
-
add_option($this->plugin_slug."_hide_review_box", "1");
|
21 |
-
} else {
|
22 |
-
$date = date("Y-m-d", strtotime("+".$days." days"));
|
23 |
-
update_option($this->plugin_slug."_show_review_box_after", $date);
|
24 |
-
}
|
25 |
-
}
|
26 |
-
die;
|
27 |
-
}
|
28 |
-
|
29 |
-
public function admin_notices() {
|
30 |
-
$is_hidden = get_option($this->plugin_slug."_hide_review_box");
|
31 |
-
if($is_hidden !== false) {
|
32 |
-
return;
|
33 |
-
}
|
34 |
-
$current_count = get_option($this->plugin_slug."_show_review_box_after");
|
35 |
-
if($current_count === false) {
|
36 |
-
$date = date("Y-m-d", strtotime("+7 days"));
|
37 |
-
add_option($this->plugin_slug."_show_review_box_after", $date);
|
38 |
-
return;
|
39 |
-
} else if($current_count < 35) {
|
40 |
-
return;
|
41 |
-
}
|
42 |
-
$date_to_show = get_option($this->plugin_slug."_show_review_box_after");
|
43 |
-
if($date_to_show !== false) {
|
44 |
-
$current_date = date("Y-m-d");
|
45 |
-
if($current_date < $date_to_show) {
|
46 |
-
return;
|
47 |
-
}
|
48 |
-
}
|
49 |
-
?>
|
50 |
-
<style>
|
51 |
-
.<?php echo esc_attr($this->plugin_slug) ?>-premio-review-box p a {
|
52 |
-
display: inline-block;
|
53 |
-
float: right;
|
54 |
-
text-decoration: none;
|
55 |
-
color: #999999;
|
56 |
-
position: absolute;
|
57 |
-
right: 12px;
|
58 |
-
top: 12px;
|
59 |
-
}
|
60 |
-
.<?php echo esc_attr($this->plugin_slug) ?>-premio-review-box p a:hover, .<?php echo esc_attr($this->plugin_slug) ?>-premio-review-box p a:focus {
|
61 |
-
color: #333333;
|
62 |
-
}
|
63 |
-
.<?php echo esc_attr($this->plugin_slug) ?>-premio-review-box .button span {
|
64 |
-
display: inline-block;
|
65 |
-
line-height: 27px;
|
66 |
-
font-size: 16px;
|
67 |
-
}
|
68 |
-
.<?php echo esc_attr($this->plugin_slug) ?>-review-box-popup {
|
69 |
-
position: fixed;
|
70 |
-
width: 100%;
|
71 |
-
height: 100%;
|
72 |
-
z-index: 10001;
|
73 |
-
background: rgba(0,0,0,0.65);
|
74 |
-
top: 0;
|
75 |
-
left: 0;
|
76 |
-
display: none;
|
77 |
-
}
|
78 |
-
.<?php echo esc_attr($this->plugin_slug) ?>-review-box-popup-content {
|
79 |
-
background: #ffffff;
|
80 |
-
padding: 20px;
|
81 |
-
position: absolute;
|
82 |
-
max-width: 450px;
|
83 |
-
width: 100%;
|
84 |
-
margin: 0 auto;
|
85 |
-
top: 45%;
|
86 |
-
left: 0;
|
87 |
-
right: 0;
|
88 |
-
-webkit-border-radius: 5px;
|
89 |
-
-moz-border-radius: 5px;
|
90 |
-
border-radius: 5px;: ;
|
91 |
-
}
|
92 |
-
.<?php echo esc_attr($this->plugin_slug) ?>-review-box-title {
|
93 |
-
padding: 0 0 10px 0;
|
94 |
-
font-weight: bold;
|
95 |
-
}
|
96 |
-
.<?php echo esc_attr($this->plugin_slug) ?>-review-box-options a {
|
97 |
-
display: block;
|
98 |
-
margin: 5px 0 5px 0;
|
99 |
-
color: #333;
|
100 |
-
text-decoration: none;
|
101 |
-
}
|
102 |
-
.<?php echo esc_attr($this->plugin_slug) ?>-review-box-options a.dismiss {
|
103 |
-
color: #999;
|
104 |
-
}
|
105 |
-
.<?php echo esc_attr($this->plugin_slug) ?>-review-box-options a:hover, .affiliate-options a:focus {
|
106 |
-
color: #0073aa;
|
107 |
-
}
|
108 |
-
button.<?php echo esc_attr($this->plugin_slug) ?>-close-review-box-popup {
|
109 |
-
position: absolute;
|
110 |
-
top: 5px;
|
111 |
-
right: 0;
|
112 |
-
border: none;
|
113 |
-
background: transparent;
|
114 |
-
cursor: pointer;
|
115 |
-
}
|
116 |
-
a.button.button-primary.<?php echo esc_attr($this->plugin_slug) ?>-review-box-btn {
|
117 |
-
font-size: 14px;
|
118 |
-
background: #F51366;
|
119 |
-
color: #fff;
|
120 |
-
border: solid 1px #F51366;
|
121 |
-
border-radius: 3px;
|
122 |
-
line-height: 24px;
|
123 |
-
-webkit-box-shadow: 0 3px 5px -3px #333333;
|
124 |
-
-moz-box-shadow: 0 3px 5px -3px #333333;
|
125 |
-
box-shadow: 0 3px 5px -3px #333333;
|
126 |
-
text-shadow: none;
|
127 |
-
}
|
128 |
-
.notice.notice-info.premio-notice {
|
129 |
-
position: relative;
|
130 |
-
padding: 1px 30px 1px 12px;
|
131 |
-
}
|
132 |
-
.notice.notice-info.premio-notice ul li {
|
133 |
-
margin: 0;
|
134 |
-
}
|
135 |
-
.notice.notice-info.premio-notice ul li a {
|
136 |
-
color: #0073aa;
|
137 |
-
font-size: 14px;
|
138 |
-
text-decoration: underline;
|
139 |
-
}
|
140 |
-
.<?php echo esc_attr($this->plugin_slug) ?>-premio-review-box p {
|
141 |
-
display: inline-block;
|
142 |
-
line-height: 30px;
|
143 |
-
vertical-align: middle;
|
144 |
-
padding: 0 10px 0 0;
|
145 |
-
}
|
146 |
-
.<?php echo esc_attr($this->plugin_slug) ?>-premio-review-box p img {
|
147 |
-
width: 30px;
|
148 |
-
height: 30px;
|
149 |
-
display: inline-block;
|
150 |
-
margin: 0 10px;
|
151 |
-
vertical-align: middle;
|
152 |
-
border-radius: 15px;
|
153 |
-
}
|
154 |
-
.review-thanks-img img {
|
155 |
-
width: 100%;
|
156 |
-
height: auto;
|
157 |
-
max-width: 200px;
|
158 |
-
}
|
159 |
-
.review-thanks-msg {
|
160 |
-
padding: 5px 0 0 10px;
|
161 |
-
display: inline-block;
|
162 |
-
text-align: left;
|
163 |
-
}
|
164 |
-
.review-thanks-box {
|
165 |
-
padding: 10px 0 10px 0;
|
166 |
-
position: relative;
|
167 |
-
text-align: center;
|
168 |
-
display: none;
|
169 |
-
}
|
170 |
-
.review-box-default {
|
171 |
-
}
|
172 |
-
.review-thanks-btn {
|
173 |
-
border: 0;
|
174 |
-
background: transparent;
|
175 |
-
position: absolute;
|
176 |
-
right: -30px;
|
177 |
-
top: 5px;
|
178 |
-
}
|
179 |
-
.review-thanks-img {
|
180 |
-
display: inline-block;
|
181 |
-
vertical-align: top;
|
182 |
-
width: 200px;
|
183 |
-
}
|
184 |
-
.thanks-msg-title {
|
185 |
-
font-weight: bold;
|
186 |
-
font-size: 18px;
|
187 |
-
}
|
188 |
-
.thanks-msg-desc {
|
189 |
-
padding: 24px 0;
|
190 |
-
}
|
191 |
-
.thanks-msg-footer {
|
192 |
-
font-weight: bold;
|
193 |
-
}
|
194 |
-
</style>
|
195 |
-
<div class="notice notice-info premio-notice <?php echo esc_attr($this->plugin_slug) ?>-premio-review-box <?php echo esc_attr($this->plugin_slug) ?>-premio-review-box">
|
196 |
-
<div class="review-box-default" id="default-review-box-<?php echo esc_attr($this->plugin_slug); ?>">
|
197 |
-
<p>
|
198 |
-
Hi there, it seems like <b><?php echo esc_attr($this->plugin_name) ?></b> is bringing you some value, and that's pretty awesome! Can you please show us some love and rate <?php echo esc_attr($this->plugin_name) ?> on WordPress? It'll only take 2 minutes of your time, and will really help us spread the word
|
199 |
-
- <b>Gal Dubinski</b>, Co-founder <img width="30px" src="<?php echo esc_url(plugin_dir_url(__FILE__)."images/premio-owner.png") ?>" />
|
200 |
-
<a href="javascript:;" class="dismiss-btn <?php echo esc_attr($this->plugin_slug) ?>-premio-review-dismiss-btn"><span class="dashicons dashicons-no-alt"></span></a>
|
201 |
-
</p>
|
202 |
-
<div class="clear clearfix"></div>
|
203 |
-
<ul>
|
204 |
-
<li><a class="<?php echo esc_attr($this->plugin_slug) ?>-premio-review-box-hide-btn" href="https://wordpress.org/support/plugin/mystickymenu/reviews/?filter=5" target="_blank">I'd love to help :)</a></li>
|
205 |
-
<li><a class="<?php echo esc_attr($this->plugin_slug) ?>-premio-review-box-future-btn" href="javascript:;">Not this time</a></li>
|
206 |
-
<li><a class="<?php echo esc_attr($this->plugin_slug) ?>-premio-review-box-hide-btn" href="javascript:;">I've already rated you</a></li>
|
207 |
-
</ul>
|
208 |
-
</div>
|
209 |
-
<div class="review-thanks-box" id="review-thanks-<?php echo esc_attr($this->plugin_slug); ?>">
|
210 |
-
<button class="<?php echo esc_attr($this->plugin_slug); ?>-close-thanks-btn review-thanks-btn"><span class="dashicons dashicons-no-alt"></span></button>
|
211 |
-
|
212 |
-
<div class="review-thanks-img">
|
213 |
-
<img width="30px" src="<?php echo esc_url(plugin_dir_url(__FILE__)."/images/thanks.gif") ?>" />
|
214 |
-
</div>
|
215 |
-
<div class="review-thanks-msg">
|
216 |
-
<div class="thanks-msg-title">You are awesome 🙏</div>
|
217 |
-
<div class="thanks-msg-desc">Thanks for your support, We really appreciate it!</div>
|
218 |
-
<div class="thanks-msg-footer">Premio team</div>
|
219 |
-
</div>
|
220 |
-
<div class="clear clearfix"></div>
|
221 |
-
</div>
|
222 |
-
</div>
|
223 |
-
<div class="<?php echo esc_attr($this->plugin_slug) ?>-review-box-popup">
|
224 |
-
<div class="<?php echo esc_attr($this->plugin_slug) ?>-review-box-popup-content">
|
225 |
-
<button class="<?php echo esc_attr($this->plugin_slug) ?>-close-review-box-popup"><span class="dashicons dashicons-no-alt"></span></button>
|
226 |
-
<div class="<?php echo esc_attr($this->plugin_slug) ?>-review-box-title">Would you like us to remind you about this later?</div>
|
227 |
-
<div class="<?php echo esc_attr($this->plugin_slug) ?>-review-box-options">
|
228 |
-
<a href="javascript:;" data-days="3">Remind me in 3 days</a>
|
229 |
-
<a href="javascript:;" data-days="10">Remind me in 10 days</a>
|
230 |
-
<a href="javascript:;" data-days="-1" class="dismiss">Don't remind me about this</a>
|
231 |
-
</div>
|
232 |
-
</div>
|
233 |
-
</div>
|
234 |
-
<script>
|
235 |
-
jQuery(document).ready(function(){
|
236 |
-
jQuery("body").addClass("has-premio-box");
|
237 |
-
jQuery(document).on("click", ".<?php echo esc_attr($this->plugin_slug); ?>-premio-review-dismiss-btn, .<?php echo esc_attr($this->plugin_slug); ?>-premio-review-box-future-btn", function(){
|
238 |
-
jQuery(".<?php echo esc_attr($this->plugin_slug); ?>-review-box-popup").show();
|
239 |
-
});
|
240 |
-
jQuery(document).on("click", ".<?php echo esc_attr($this->plugin_slug); ?>-close-review-box-popup", function(){
|
241 |
-
jQuery(".<?php echo esc_attr($this->plugin_slug); ?>-review-box-popup").hide();
|
242 |
-
});
|
243 |
-
jQuery(document).on("click", ".<?php echo esc_attr($this->plugin_slug); ?>-close-thanks-btn", function(){
|
244 |
-
jQuery(".<?php echo esc_attr($this->plugin_slug); ?>-review-box-popup").remove();
|
245 |
-
jQuery(".<?php echo esc_attr($this->plugin_slug); ?>-premio-review-box").remove();
|
246 |
-
});
|
247 |
-
jQuery(document).on("click",".<?php echo esc_attr($this->plugin_slug); ?>-premio-review-box-hide-btn",function(){
|
248 |
-
jQuery("#default-review-box-<?php echo esc_attr($this->plugin_slug); ?>").hide();
|
249 |
-
jQuery("#review-thanks-<?php echo esc_attr($this->plugin_slug); ?>").show();
|
250 |
-
jQuery.ajax({
|
251 |
-
url: "<?php echo admin_url("admin-ajax.php") ?>",
|
252 |
-
data: "action=<?php echo esc_attr($this->plugin_slug) ?>_review_box&days=-1&nonce=<?php echo esc_attr(wp_create_nonce($this->plugin_slug."_review_box")) ?>",
|
253 |
-
type: "post",
|
254 |
-
success: function() {
|
255 |
-
|
256 |
-
}
|
257 |
-
});
|
258 |
-
});
|
259 |
-
jQuery(document).on("click", ".<?php echo esc_attr($this->plugin_slug); ?>-review-box-options a", function(){
|
260 |
-
var dataDays = jQuery(this).attr("data-days");
|
261 |
-
jQuery(".<?php echo esc_attr($this->plugin_slug); ?>-review-box-popup").remove();
|
262 |
-
jQuery(".<?php echo esc_attr($this->plugin_slug); ?>-premio-review-box").remove();
|
263 |
-
jQuery("body").removeClass("has-premio-box");
|
264 |
-
jQuery.ajax({
|
265 |
-
url: "<?php echo admin_url("admin-ajax.php") ?>",
|
266 |
-
data: "action=<?php echo esc_attr($this->plugin_slug); ?>_review_box&days="+dataDays+"&nonce=<?php echo esc_attr(wp_create_nonce($this->plugin_slug."_review_box")) ?>",
|
267 |
-
type: "post",
|
268 |
-
success: function() {
|
269 |
-
jQuery(".<?php echo esc_attr($this->plugin_slug); ?>-review-box-popup").remove();
|
270 |
-
jQuery(".<?php echo esc_attr($this->plugin_slug); ?>-premio-review-box").remove();
|
271 |
-
}
|
272 |
-
});
|
273 |
-
});
|
274 |
-
});
|
275 |
-
</script>
|
276 |
-
<?php
|
277 |
-
}
|
278 |
-
}
|
279 |
Â
$myStickymenu_review_box = new myStickymenu_review_box();
|
1 |
+
<?php
|
2 |
+
class myStickymenu_review_box {
|
3 |
+
|
4 |
+
public $plugin_name = "myStickymenu";
|
5 |
+
|
6 |
+
public $plugin_slug = "my-sticky-menu";
|
7 |
+
|
8 |
+
public function __construct() {
|
9 |
+
|
10 |
+
add_action("wp_ajax_".$this->plugin_slug."_review_box", array($this, "affiliate_program"));
|
11 |
+
|
12 |
+
add_action('admin_notices', array($this, 'admin_notices'));
|
13 |
+
}
|
14 |
+
|
15 |
+
public function affiliate_program() {
|
16 |
+
$nonce = filter_input(INPUT_POST, 'nonce', FILTER_SANITIZE_STRING);
|
17 |
+
$days = filter_input(INPUT_POST, 'days', FILTER_SANITIZE_STRING);
|
18 |
+
if(!empty($nonce) && wp_verify_nonce($nonce, $this->plugin_slug."_review_box")) {
|
19 |
+
if($days == -1) {
|
20 |
+
add_option($this->plugin_slug."_hide_review_box", "1");
|
21 |
+
} else {
|
22 |
+
$date = date("Y-m-d", strtotime("+".$days." days"));
|
23 |
+
update_option($this->plugin_slug."_show_review_box_after", $date);
|
24 |
+
}
|
25 |
+
}
|
26 |
+
die;
|
27 |
+
}
|
28 |
+
|
29 |
+
public function admin_notices() {
|
30 |
+
$is_hidden = get_option($this->plugin_slug."_hide_review_box");
|
31 |
+
if($is_hidden !== false) {
|
32 |
+
return;
|
33 |
+
}
|
34 |
+
$current_count = get_option($this->plugin_slug."_show_review_box_after");
|
35 |
+
if($current_count === false) {
|
36 |
+
$date = date("Y-m-d", strtotime("+7 days"));
|
37 |
+
add_option($this->plugin_slug."_show_review_box_after", $date);
|
38 |
+
return;
|
39 |
+
} else if($current_count < 35) {
|
40 |
+
return;
|
41 |
+
}
|
42 |
+
$date_to_show = get_option($this->plugin_slug."_show_review_box_after");
|
43 |
+
if($date_to_show !== false) {
|
44 |
+
$current_date = date("Y-m-d");
|
45 |
+
if($current_date < $date_to_show) {
|
46 |
+
return;
|
47 |
+
}
|
48 |
+
}
|
49 |
+
?>
|
50 |
+
<style>
|
51 |
+
.<?php echo esc_attr($this->plugin_slug) ?>-premio-review-box p a {
|
52 |
+
display: inline-block;
|
53 |
+
float: right;
|
54 |
+
text-decoration: none;
|
55 |
+
color: #999999;
|
56 |
+
position: absolute;
|
57 |
+
right: 12px;
|
58 |
+
top: 12px;
|
59 |
+
}
|
60 |
+
.<?php echo esc_attr($this->plugin_slug) ?>-premio-review-box p a:hover, .<?php echo esc_attr($this->plugin_slug) ?>-premio-review-box p a:focus {
|
61 |
+
color: #333333;
|
62 |
+
}
|
63 |
+
.<?php echo esc_attr($this->plugin_slug) ?>-premio-review-box .button span {
|
64 |
+
display: inline-block;
|
65 |
+
line-height: 27px;
|
66 |
+
font-size: 16px;
|
67 |
+
}
|
68 |
+
.<?php echo esc_attr($this->plugin_slug) ?>-review-box-popup {
|
69 |
+
position: fixed;
|
70 |
+
width: 100%;
|
71 |
+
height: 100%;
|
72 |
+
z-index: 10001;
|
73 |
+
background: rgba(0,0,0,0.65);
|
74 |
+
top: 0;
|
75 |
+
left: 0;
|
76 |
+
display: none;
|
77 |
+
}
|
78 |
+
.<?php echo esc_attr($this->plugin_slug) ?>-review-box-popup-content {
|
79 |
+
background: #ffffff;
|
80 |
+
padding: 20px;
|
81 |
+
position: absolute;
|
82 |
+
max-width: 450px;
|
83 |
+
width: 100%;
|
84 |
+
margin: 0 auto;
|
85 |
+
top: 45%;
|
86 |
+
left: 0;
|
87 |
+
right: 0;
|
88 |
+
-webkit-border-radius: 5px;
|
89 |
+
-moz-border-radius: 5px;
|
90 |
+
border-radius: 5px;: ;
|
91 |
+
}
|
92 |
+
.<?php echo esc_attr($this->plugin_slug) ?>-review-box-title {
|
93 |
+
padding: 0 0 10px 0;
|
94 |
+
font-weight: bold;
|
95 |
+
}
|
96 |
+
.<?php echo esc_attr($this->plugin_slug) ?>-review-box-options a {
|
97 |
+
display: block;
|
98 |
+
margin: 5px 0 5px 0;
|
99 |
+
color: #333;
|
100 |
+
text-decoration: none;
|
101 |
+
}
|
102 |
+
.<?php echo esc_attr($this->plugin_slug) ?>-review-box-options a.dismiss {
|
103 |
+
color: #999;
|
104 |
+
}
|
105 |
+
.<?php echo esc_attr($this->plugin_slug) ?>-review-box-options a:hover, .affiliate-options a:focus {
|
106 |
+
color: #0073aa;
|
107 |
+
}
|
108 |
+
button.<?php echo esc_attr($this->plugin_slug) ?>-close-review-box-popup {
|
109 |
+
position: absolute;
|
110 |
+
top: 5px;
|
111 |
+
right: 0;
|
112 |
+
border: none;
|
113 |
+
background: transparent;
|
114 |
+
cursor: pointer;
|
115 |
+
}
|
116 |
+
a.button.button-primary.<?php echo esc_attr($this->plugin_slug) ?>-review-box-btn {
|
117 |
+
font-size: 14px;
|
118 |
+
background: #F51366;
|
119 |
+
color: #fff;
|
120 |
+
border: solid 1px #F51366;
|
121 |
+
border-radius: 3px;
|
122 |
+
line-height: 24px;
|
123 |
+
-webkit-box-shadow: 0 3px 5px -3px #333333;
|
124 |
+
-moz-box-shadow: 0 3px 5px -3px #333333;
|
125 |
+
box-shadow: 0 3px 5px -3px #333333;
|
126 |
+
text-shadow: none;
|
127 |
+
}
|
128 |
+
.notice.notice-info.premio-notice {
|
129 |
+
position: relative;
|
130 |
+
padding: 1px 30px 1px 12px;
|
131 |
+
}
|
132 |
+
.notice.notice-info.premio-notice ul li {
|
133 |
+
margin: 0;
|
134 |
+
}
|
135 |
+
.notice.notice-info.premio-notice ul li a {
|
136 |
+
color: #0073aa;
|
137 |
+
font-size: 14px;
|
138 |
+
text-decoration: underline;
|
139 |
+
}
|
140 |
+
.<?php echo esc_attr($this->plugin_slug) ?>-premio-review-box p {
|
141 |
+
display: inline-block;
|
142 |
+
line-height: 30px;
|
143 |
+
vertical-align: middle;
|
144 |
+
padding: 0 10px 0 0;
|
145 |
+
}
|
146 |
+
.<?php echo esc_attr($this->plugin_slug) ?>-premio-review-box p img {
|
147 |
+
width: 30px;
|
148 |
+
height: 30px;
|
149 |
+
display: inline-block;
|
150 |
+
margin: 0 10px;
|
151 |
+
vertical-align: middle;
|
152 |
+
border-radius: 15px;
|
153 |
+
}
|
154 |
+
.review-thanks-img img {
|
155 |
+
width: 100%;
|
156 |
+
height: auto;
|
157 |
+
max-width: 200px;
|
158 |
+
}
|
159 |
+
.review-thanks-msg {
|
160 |
+
padding: 5px 0 0 10px;
|
161 |
+
display: inline-block;
|
162 |
+
text-align: left;
|
163 |
+
}
|
164 |
+
.review-thanks-box {
|
165 |
+
padding: 10px 0 10px 0;
|
166 |
+
position: relative;
|
167 |
+
text-align: center;
|
168 |
+
display: none;
|
169 |
+
}
|
170 |
+
.review-box-default {
|
171 |
+
}
|
172 |
+
.review-thanks-btn {
|
173 |
+
border: 0;
|
174 |
+
background: transparent;
|
175 |
+
position: absolute;
|
176 |
+
right: -30px;
|
177 |
+
top: 5px;
|
178 |
+
}
|
179 |
+
.review-thanks-img {
|
180 |
+
display: inline-block;
|
181 |
+
vertical-align: top;
|
182 |
+
width: 200px;
|
183 |
+
}
|
184 |
+
.thanks-msg-title {
|
185 |
+
font-weight: bold;
|
186 |
+
font-size: 18px;
|
187 |
+
}
|
188 |
+
.thanks-msg-desc {
|
189 |
+
padding: 24px 0;
|
190 |
+
}
|
191 |
+
.thanks-msg-footer {
|
192 |
+
font-weight: bold;
|
193 |
+
}
|
194 |
+
</style>
|
195 |
+
<div class="notice notice-info premio-notice <?php echo esc_attr($this->plugin_slug) ?>-premio-review-box <?php echo esc_attr($this->plugin_slug) ?>-premio-review-box">
|
196 |
+
<div class="review-box-default" id="default-review-box-<?php echo esc_attr($this->plugin_slug); ?>">
|
197 |
+
<p>
|
198 |
+
Hi there, it seems like <b><?php echo esc_attr($this->plugin_name) ?></b> is bringing you some value, and that's pretty awesome! Can you please show us some love and rate <?php echo esc_attr($this->plugin_name) ?> on WordPress? It'll only take 2 minutes of your time, and will really help us spread the word
|
199 |
+
- <b>Gal Dubinski</b>, Co-founder <img width="30px" src="<?php echo esc_url(plugin_dir_url(__FILE__)."images/premio-owner.png") ?>" />
|
200 |
+
<a href="javascript:;" class="dismiss-btn <?php echo esc_attr($this->plugin_slug) ?>-premio-review-dismiss-btn"><span class="dashicons dashicons-no-alt"></span></a>
|
201 |
+
</p>
|
202 |
+
<div class="clear clearfix"></div>
|
203 |
+
<ul>
|
204 |
+
<li><a class="<?php echo esc_attr($this->plugin_slug) ?>-premio-review-box-hide-btn" href="https://wordpress.org/support/plugin/mystickymenu/reviews/?filter=5" target="_blank">I'd love to help :)</a></li>
|
205 |
+
<li><a class="<?php echo esc_attr($this->plugin_slug) ?>-premio-review-box-future-btn" href="javascript:;">Not this time</a></li>
|
206 |
+
<li><a class="<?php echo esc_attr($this->plugin_slug) ?>-premio-review-box-hide-btn" href="javascript:;">I've already rated you</a></li>
|
207 |
+
</ul>
|
208 |
+
</div>
|
209 |
+
<div class="review-thanks-box" id="review-thanks-<?php echo esc_attr($this->plugin_slug); ?>">
|
210 |
+
<button class="<?php echo esc_attr($this->plugin_slug); ?>-close-thanks-btn review-thanks-btn"><span class="dashicons dashicons-no-alt"></span></button>
|
211 |
+
|
212 |
+
<div class="review-thanks-img">
|
213 |
+
<img width="30px" src="<?php echo esc_url(plugin_dir_url(__FILE__)."/images/thanks.gif") ?>" />
|
214 |
+
</div>
|
215 |
+
<div class="review-thanks-msg">
|
216 |
+
<div class="thanks-msg-title">You are awesome 🙏</div>
|
217 |
+
<div class="thanks-msg-desc">Thanks for your support, We really appreciate it!</div>
|
218 |
+
<div class="thanks-msg-footer">Premio team</div>
|
219 |
+
</div>
|
220 |
+
<div class="clear clearfix"></div>
|
221 |
+
</div>
|
222 |
+
</div>
|
223 |
+
<div class="<?php echo esc_attr($this->plugin_slug) ?>-review-box-popup">
|
224 |
+
<div class="<?php echo esc_attr($this->plugin_slug) ?>-review-box-popup-content">
|
225 |
+
<button class="<?php echo esc_attr($this->plugin_slug) ?>-close-review-box-popup"><span class="dashicons dashicons-no-alt"></span></button>
|
226 |
+
<div class="<?php echo esc_attr($this->plugin_slug) ?>-review-box-title">Would you like us to remind you about this later?</div>
|
227 |
+
<div class="<?php echo esc_attr($this->plugin_slug) ?>-review-box-options">
|
228 |
+
<a href="javascript:;" data-days="3">Remind me in 3 days</a>
|
229 |
+
<a href="javascript:;" data-days="10">Remind me in 10 days</a>
|
230 |
+
<a href="javascript:;" data-days="-1" class="dismiss">Don't remind me about this</a>
|
231 |
+
</div>
|
232 |
+
</div>
|
233 |
+
</div>
|
234 |
+
<script>
|
235 |
+
jQuery(document).ready(function(){
|
236 |
+
jQuery("body").addClass("has-premio-box");
|
237 |
+
jQuery(document).on("click", ".<?php echo esc_attr($this->plugin_slug); ?>-premio-review-dismiss-btn, .<?php echo esc_attr($this->plugin_slug); ?>-premio-review-box-future-btn", function(){
|
238 |
+
jQuery(".<?php echo esc_attr($this->plugin_slug); ?>-review-box-popup").show();
|
239 |
+
});
|
240 |
+
jQuery(document).on("click", ".<?php echo esc_attr($this->plugin_slug); ?>-close-review-box-popup", function(){
|
241 |
+
jQuery(".<?php echo esc_attr($this->plugin_slug); ?>-review-box-popup").hide();
|
242 |
+
});
|
243 |
+
jQuery(document).on("click", ".<?php echo esc_attr($this->plugin_slug); ?>-close-thanks-btn", function(){
|
244 |
+
jQuery(".<?php echo esc_attr($this->plugin_slug); ?>-review-box-popup").remove();
|
245 |
+
jQuery(".<?php echo esc_attr($this->plugin_slug); ?>-premio-review-box").remove();
|
246 |
+
});
|
247 |
+
jQuery(document).on("click",".<?php echo esc_attr($this->plugin_slug); ?>-premio-review-box-hide-btn",function(){
|
248 |
+
jQuery("#default-review-box-<?php echo esc_attr($this->plugin_slug); ?>").hide();
|
249 |
+
jQuery("#review-thanks-<?php echo esc_attr($this->plugin_slug); ?>").show();
|
250 |
+
jQuery.ajax({
|
251 |
+
url: "<?php echo admin_url("admin-ajax.php") ?>",
|
252 |
+
data: "action=<?php echo esc_attr($this->plugin_slug) ?>_review_box&days=-1&nonce=<?php echo esc_attr(wp_create_nonce($this->plugin_slug."_review_box")) ?>",
|
253 |
+
type: "post",
|
254 |
+
success: function() {
|
255 |
+
|
256 |
+
}
|
257 |
+
});
|
258 |
+
});
|
259 |
+
jQuery(document).on("click", ".<?php echo esc_attr($this->plugin_slug); ?>-review-box-options a", function(){
|
260 |
+
var dataDays = jQuery(this).attr("data-days");
|
261 |
+
jQuery(".<?php echo esc_attr($this->plugin_slug); ?>-review-box-popup").remove();
|
262 |
+
jQuery(".<?php echo esc_attr($this->plugin_slug); ?>-premio-review-box").remove();
|
263 |
+
jQuery("body").removeClass("has-premio-box");
|
264 |
+
jQuery.ajax({
|
265 |
+
url: "<?php echo admin_url("admin-ajax.php") ?>",
|
266 |
+
data: "action=<?php echo esc_attr($this->plugin_slug); ?>_review_box&days="+dataDays+"&nonce=<?php echo esc_attr(wp_create_nonce($this->plugin_slug."_review_box")) ?>",
|
267 |
+
type: "post",
|
268 |
+
success: function() {
|
269 |
+
jQuery(".<?php echo esc_attr($this->plugin_slug); ?>-review-box-popup").remove();
|
270 |
+
jQuery(".<?php echo esc_attr($this->plugin_slug); ?>-premio-review-box").remove();
|
271 |
+
}
|
272 |
+
});
|
273 |
+
});
|
274 |
+
});
|
275 |
+
</script>
|
276 |
+
<?php
|
277 |
+
}
|
278 |
+
}
|
279 |
Â
$myStickymenu_review_box = new myStickymenu_review_box();
|
class-upgrade-box.php
CHANGED
@@ -1,326 +1,326 @@
|
|
1 |
-
<?php
|
2 |
-
class Sticky_menu_upgrade_box {
|
3 |
-
|
4 |
-
public $plugin_name = "myStickymenu";
|
5 |
-
|
6 |
-
public $plugin_slug = "my-sticky-menu";
|
7 |
-
|
8 |
-
public function __construct() {
|
9 |
-
|
10 |
-
add_action("wp_ajax_".$this->plugin_slug."_upgrade_box", array($this, "mystickymenu_upgradetopro"));
|
11 |
-
add_action('admin_notices', array($this, 'admin_notices'));
|
12 |
-
|
13 |
-
}
|
14 |
-
|
15 |
-
public function mystickymenu_upgradetopro() {
|
16 |
-
$nonce = filter_input(INPUT_POST, 'nonce', FILTER_SANITIZE_STRING);
|
17 |
-
$days = filter_input(INPUT_POST, 'days', FILTER_SANITIZE_STRING);
|
18 |
-
if(!empty($nonce) && wp_verify_nonce($nonce, $this->plugin_slug."_upgrade_box")) {
|
19 |
-
if($days == -1) {
|
20 |
-
add_option($this->plugin_slug."_hide_upgrade_box", "1");
|
21 |
-
} else {
|
22 |
-
$date = date("Y-m-d", strtotime("+".$days." days"));
|
23 |
-
update_option($this->plugin_slug."_show_upgrade_box_after", $date);
|
24 |
-
}
|
25 |
-
}
|
26 |
-
die;
|
27 |
-
}
|
28 |
-
|
29 |
-
public function admin_notices() {
|
30 |
-
|
31 |
-
$is_hidden = get_option($this->plugin_slug."_hide_upgrade_box");
|
32 |
-
|
33 |
-
if($is_hidden !== false) {
|
34 |
-
return;
|
35 |
-
}
|
36 |
-
$current_count = get_option($this->plugin_slug."_show_upgrade_box_after");
|
37 |
-
if($current_count === false) {
|
38 |
-
$date = date("Y-m-d", strtotime("+15 days"));
|
39 |
-
add_option($this->plugin_slug."_show_upgrade_box_after", $date);
|
40 |
-
return;
|
41 |
-
}
|
42 |
-
$date_to_show = get_option($this->plugin_slug."_show_upgrade_box_after");
|
43 |
-
if($date_to_show !== false) {
|
44 |
-
$current_date = date("Y-m-d");
|
45 |
-
if($current_date < $date_to_show) {
|
46 |
-
return;
|
47 |
-
}
|
48 |
-
}
|
49 |
-
?>
|
50 |
-
<style>
|
51 |
-
.mystickymenu-tab-integration-action{
|
52 |
-
padding: 0 10px;
|
53 |
-
/* float: right;*/
|
54 |
-
}
|
55 |
-
|
56 |
-
|
57 |
-
.mystickymenu-tab-integration-action a {
|
58 |
-
display: inline-block;
|
59 |
-
text-decoration: none;
|
60 |
-
position: unset;
|
61 |
-
padding: 0px;
|
62 |
-
margin-left:15px;
|
63 |
-
font-size: 13px;
|
64 |
-
color: #3C85F7 !important;
|
65 |
-
background-color: #fff;
|
66 |
-
border-radius: 5px;
|
67 |
-
border: 2px solid #3C85F7;
|
68 |
-
min-width: 110px;
|
69 |
-
text-align: center;
|
70 |
-
line-height: 25px;
|
71 |
-
}
|
72 |
-
|
73 |
-
.<?php echo esc_attr($this->plugin_slug); ?>-premio-upgrade-box .
|
74 |
-
mystickymenu-tab-integration-action a {
|
75 |
-
/*display: inline-block;
|
76 |
-
float: right;
|
77 |
-
text-decoration: none;
|
78 |
-
position: unset;
|
79 |
-
padding: 0px;
|
80 |
-
font-size: 13px;
|
81 |
-
right: 50px;
|
82 |
-
top: 7px;
|
83 |
-
color: #3C85F7;
|
84 |
-
background-color: #fff;
|
85 |
-
border-radius: 5px;
|
86 |
-
border: 2px solid #3C85F7;
|
87 |
-
min-width: 110px;
|
88 |
-
text-align: center;
|
89 |
-
line-height: 25px;*/
|
90 |
-
}
|
91 |
-
|
92 |
-
|
93 |
-
.<?php echo esc_attr($this->plugin_slug); ?>-premio-upgrade-box .mystickymenu-tab-integration-action a:hover{
|
94 |
-
background-color:#fff
|
95 |
-
}
|
96 |
-
|
97 |
-
|
98 |
-
|
99 |
-
|
100 |
-
.<?php echo esc_attr($this->plugin_slug); ?>-premio-upgrade-box p a {
|
101 |
-
display: inline-block;
|
102 |
-
/* float: right;*/
|
103 |
-
text-decoration: none;
|
104 |
-
color: #999999;
|
105 |
-
/*position: absolute;
|
106 |
-
right: 12px;
|
107 |
-
top: 12px;*/
|
108 |
-
}
|
109 |
-
|
110 |
-
|
111 |
-
.dismiss-btn{
|
112 |
-
float:right;
|
113 |
-
}
|
114 |
-
|
115 |
-
|
116 |
-
.<?php echo esc_attr($this->plugin_slug); ?>-premio-upgrade-box p a:hover, .<?php echo esc_attr($this->plugin_slug); ?>-premio-upgrade-box p a:focus {
|
117 |
-
color: #333333;
|
118 |
-
}
|
119 |
-
.<?php echo esc_attr($this->plugin_slug); ?>-premio-upgrade-box .button span {
|
120 |
-
display: inline-block;
|
121 |
-
line-height: 27px;
|
122 |
-
font-size: 16px;
|
123 |
-
}
|
124 |
-
.<?php echo esc_attr($this->plugin_slug); ?>-upgrade-box-popup {
|
125 |
-
position: fixed;
|
126 |
-
width: 100%;
|
127 |
-
height: 100%;
|
128 |
-
z-index: 10001;
|
129 |
-
background: rgba(0,0,0,0.65);
|
130 |
-
top: 0;
|
131 |
-
left: 0;
|
132 |
-
display: none;
|
133 |
-
}
|
134 |
-
.<?php echo esc_attr($this->plugin_slug); ?>-upgrade-box-popup-content {
|
135 |
-
background: #ffffff;
|
136 |
-
padding: 20px;
|
137 |
-
position: absolute;
|
138 |
-
max-width: 450px;
|
139 |
-
width: 100%;
|
140 |
-
margin: 0 auto;
|
141 |
-
top: 45%;
|
142 |
-
left: 0;
|
143 |
-
right: 0;
|
144 |
-
-webkit-border-radius: 5px;
|
145 |
-
-moz-border-radius: 5px;
|
146 |
-
border-radius: 5px;: ;
|
147 |
-
}
|
148 |
-
.<?php echo esc_attr($this->plugin_slug); ?>-upgrade-box-title {
|
149 |
-
padding: 0 0 10px 0;
|
150 |
-
font-weight: bold;
|
151 |
-
}
|
152 |
-
.<?php echo esc_attr($this->plugin_slug); ?>-upgrade-box-options a {
|
153 |
-
display: block;
|
154 |
-
margin: 5px 0 5px 0;
|
155 |
-
color: #333;
|
156 |
-
text-decoration: none;
|
157 |
-
}
|
158 |
-
.<?php echo esc_attr($this->plugin_slug); ?>-upgrade-box-options a.dismiss {
|
159 |
-
color: #999;
|
160 |
-
}
|
161 |
-
.<?php echo esc_attr($this->plugin_slug); ?>-upgrade-box-options a:hover, .affiliate-options a:focus {
|
162 |
-
color: #0073aa;
|
163 |
-
}
|
164 |
-
button.<?php echo esc_attr($this->plugin_slug); ?>-close-upgrade-box-popup {
|
165 |
-
position: absolute;
|
166 |
-
top: 5px;
|
167 |
-
right: 0;
|
168 |
-
border: none;
|
169 |
-
background: transparent;
|
170 |
-
cursor: pointer;
|
171 |
-
}
|
172 |
-
a.button.button-primary.<?php echo esc_attr($this->plugin_slug); ?>-upgrade-box-btn {
|
173 |
-
font-size: 14px;
|
174 |
-
background: #F51366;
|
175 |
-
color: #fff;
|
176 |
-
border: solid 1px #F51366;
|
177 |
-
border-radius: 3px;
|
178 |
-
line-height: 24px;
|
179 |
-
-webkit-box-shadow: 0 3px 5px -3px #333333;
|
180 |
-
-moz-box-shadow: 0 3px 5px -3px #333333;
|
181 |
-
box-shadow: 0 3px 5px -3px #333333;
|
182 |
-
text-shadow: none;
|
183 |
-
}
|
184 |
-
.notice.notice-info.premio-notice {
|
185 |
-
position: relative;
|
186 |
-
padding: 1px 10px 1px 12px;
|
187 |
-
}
|
188 |
-
.notice.notice-info.premio-notice ul li {
|
189 |
-
margin: 0;
|
190 |
-
}
|
191 |
-
.notice.notice-info.premio-notice ul li a {
|
192 |
-
color: #0073aa;
|
193 |
-
font-size: 14px;
|
194 |
-
text-decoration: underline;
|
195 |
-
}
|
196 |
-
.<?php echo esc_attr($this->plugin_slug); ?>-premio-upgrade-box p {
|
197 |
-
line-height: 30px;
|
198 |
-
vertical-align: middle;
|
199 |
-
padding: 0 10px 0 0;
|
200 |
-
font-size: 14px;
|
201 |
-
}
|
202 |
-
.<?php echo esc_attr($this->plugin_slug); ?>-premio-upgrade-box p img {
|
203 |
-
width: 30px;
|
204 |
-
height: 30px;
|
205 |
-
display: inline-block;
|
206 |
-
margin: 0 10px;
|
207 |
-
vertical-align: middle;
|
208 |
-
border-radius: 15px;
|
209 |
-
}
|
210 |
-
.review-thanks-img img {
|
211 |
-
width: 100%;
|
212 |
-
height: auto;
|
213 |
-
max-width: 200px;
|
214 |
-
}
|
215 |
-
.review-thanks-msg {
|
216 |
-
padding: 5px 0 0 10px;
|
217 |
-
display: inline-block;
|
218 |
-
text-align: left;
|
219 |
-
}
|
220 |
-
.review-thanks-box {
|
221 |
-
padding: 10px 0 10px 0;
|
222 |
-
position: relative;
|
223 |
-
text-align: center;
|
224 |
-
display: none;
|
225 |
-
}
|
226 |
-
.upgrade-box-default {
|
227 |
-
}
|
228 |
-
.review-thanks-btn {
|
229 |
-
border: 0;
|
230 |
-
background: transparent;
|
231 |
-
position: absolute;
|
232 |
-
right: -30px;
|
233 |
-
top: 5px;
|
234 |
-
}
|
235 |
-
.review-thanks-img {
|
236 |
-
display: inline-block;
|
237 |
-
vertical-align: top;
|
238 |
-
width: 200px;
|
239 |
-
}
|
240 |
-
.thanks-msg-title {
|
241 |
-
font-weight: bold;
|
242 |
-
font-size: 18px;
|
243 |
-
}
|
244 |
-
.thanks-msg-desc {
|
245 |
-
padding: 24px 0;
|
246 |
-
}
|
247 |
-
.thanks-msg-footer {
|
248 |
-
font-weight: bold;
|
249 |
-
}
|
250 |
-
</style>
|
251 |
-
<div class="notice notice-info premio-notice <?php echo esc_attr($this->plugin_slug); ?>-premio-upgrade-box <?php echo esc_attr($this->plugin_slug); ?>-premio-upgrade-box">
|
252 |
-
<div class="upgrade-box-default" id="default-upgrade-box-<?php echo esc_attr($this->plugin_slug); ?>">
|
253 |
-
<p>
|
254 |
-
<strong>Upgrade to MyStickyMenu Pro to</strong> experience more awesome features
|
255 |
-
<span class="mystickymenu-tab-integration-action">
|
256 |
-
<a href="<?php echo esc_url(admin_url("admin.php?page=my-stickymenu-upgrade")); ?>" target="_blank" class="btn upgradenow-box-btn" data-days="-1">Upgrade now</a>
|
257 |
-
</span>
|
258 |
-
<a href="javascript:;" class="dismiss-btn <?php echo esc_attr($this->plugin_slug); ?>-premio-upgrade-dismiss-btn"><span class="dashicons dashicons-no-alt"></span></a>
|
259 |
-
</p>
|
260 |
-
<div class="clear clearfix"></div>
|
261 |
-
</div>
|
262 |
-
</div>
|
263 |
-
<div class="<?php echo esc_attr($this->plugin_slug); ?>-upgrade-box-popup">
|
264 |
-
<div class="<?php echo esc_attr($this->plugin_slug); ?>-upgrade-box-popup-content">
|
265 |
-
<button class="<?php echo esc_attr($this->plugin_slug); ?>-close-upgrade-box-popup"><span class="dashicons dashicons-no-alt"></span></button>
|
266 |
-
<div class="<?php echo esc_attr($this->plugin_slug); ?>-upgrade-box-title">Would you like us to remind you about this later?</div>
|
267 |
-
<div class="<?php echo esc_attr($this->plugin_slug); ?>-upgrade-box-options">
|
268 |
-
<a href="javascript:;" data-days="7">Remind me in 7 days</a>
|
269 |
-
<a href="javascript:;" data-days="30">Remind me in 30 days</a>
|
270 |
-
<a href="javascript:;" data-days="-1" class="dismiss">Don't remind me about this</a>
|
271 |
-
</div>
|
272 |
-
</div>
|
273 |
-
</div>
|
274 |
-
<script>
|
275 |
-
jQuery(document).ready(function(){
|
276 |
-
jQuery("body").addClass("has-premio-box");
|
277 |
-
jQuery(document).on("click", ".<?php echo esc_attr($this->plugin_slug); ?>-premio-upgrade-dismiss-btn, .<?php echo esc_attr($this->plugin_slug); ?>-premio-upgrade-box-future-btn", function(){
|
278 |
-
jQuery(".<?php echo esc_attr($this->plugin_slug); ?>-upgrade-box-popup").show();
|
279 |
-
});
|
280 |
-
jQuery(document).on("click", ".<?php echo esc_attr($this->plugin_slug); ?>-close-upgrade-box-popup", function(){
|
281 |
-
jQuery(".<?php echo esc_attr($this->plugin_slug); ?>-upgrade-box-popup").hide();
|
282 |
-
});
|
283 |
-
|
284 |
-
jQuery(document).on("click", ".<?php echo esc_attr($this->plugin_slug); ?>-upgrade-box-options a", function(){
|
285 |
-
var dataDays = jQuery(this).attr("data-days");
|
286 |
-
jQuery(".<?php echo esc_attr($this->plugin_slug); ?>-upgrade-box-popup").remove();
|
287 |
-
jQuery(".<?php echo esc_attr($this->plugin_slug); ?>-premio-upgrade-box").remove();
|
288 |
-
jQuery("body").removeClass("has-premio-box");
|
289 |
-
jQuery.ajax({
|
290 |
-
url: "<?php echo admin_url("admin-ajax.php") ?>",
|
291 |
-
data: "action=<?php echo esc_attr($this->plugin_slug) ?>_upgrade_box&days="+dataDays+"&nonce=<?php echo esc_attr(wp_create_nonce($this->plugin_slug."_upgrade_box")) ?>",
|
292 |
-
type: "post",
|
293 |
-
success: function() {
|
294 |
-
jQuery(".<?php echo esc_attr($this->plugin_slug); ?>-upgrade-box-popup").remove();
|
295 |
-
jQuery(".<?php echo esc_attr($this->plugin_slug); ?>-premio-upgrade-box").remove();
|
296 |
-
}
|
297 |
-
});
|
298 |
-
});
|
299 |
-
|
300 |
-
jQuery(document).on("click",".upgradenow-box-btn",function(){
|
301 |
-
jQuery(".notice.notice-info.premio-notice").hide();
|
302 |
-
|
303 |
-
var dataDays = jQuery(this).attr("data-days");
|
304 |
-
|
305 |
-
jQuery(".<?php echo esc_attr($this->plugin_slug); ?>-upgrade-box-popup").remove();
|
306 |
-
jQuery(".<?php echo esc_attr($this->plugin_slug); ?>-premio-upgrade-box").remove();
|
307 |
-
jQuery("body").removeClass("has-premio-box");
|
308 |
-
|
309 |
-
jQuery.ajax({
|
310 |
-
url: "<?php echo admin_url("admin-ajax.php") ?>",
|
311 |
-
data: "action=<?php echo esc_attr($this->plugin_slug) ?>_upgrade_box&days="+dataDays+"&nonce=<?php echo esc_attr(wp_create_nonce($this->plugin_slug."_upgrade_box")) ?>",
|
312 |
-
type: "post",
|
313 |
-
success: function() {
|
314 |
-
jQuery(".<?php echo esc_attr($this->plugin_slug); ?>-upgrade-box-popup").remove();
|
315 |
-
jQuery(".<?php echo esc_attr($this->plugin_slug); ?>-premio-upgrade-box").remove();
|
316 |
-
}
|
317 |
-
});
|
318 |
-
});
|
319 |
-
});
|
320 |
-
|
321 |
-
jQuery
|
322 |
-
</script>
|
323 |
-
<?php
|
324 |
-
}
|
325 |
-
}
|
326 |
Â
$Sticky_menu_upgrade_box = new Sticky_menu_upgrade_box();
|
1 |
+
<?php
|
2 |
+
class Sticky_menu_upgrade_box {
|
3 |
+
|
4 |
+
public $plugin_name = "myStickymenu";
|
5 |
+
|
6 |
+
public $plugin_slug = "my-sticky-menu";
|
7 |
+
|
8 |
+
public function __construct() {
|
9 |
+
|
10 |
+
add_action("wp_ajax_".$this->plugin_slug."_upgrade_box", array($this, "mystickymenu_upgradetopro"));
|
11 |
+
add_action('admin_notices', array($this, 'admin_notices'));
|
12 |
+
|
13 |
+
}
|
14 |
+
|
15 |
+
public function mystickymenu_upgradetopro() {
|
16 |
+
$nonce = filter_input(INPUT_POST, 'nonce', FILTER_SANITIZE_STRING);
|
17 |
+
$days = filter_input(INPUT_POST, 'days', FILTER_SANITIZE_STRING);
|
18 |
+
if(!empty($nonce) && wp_verify_nonce($nonce, $this->plugin_slug."_upgrade_box")) {
|
19 |
+
if($days == -1) {
|
20 |
+
add_option($this->plugin_slug."_hide_upgrade_box", "1");
|
21 |
+
} else {
|
22 |
+
$date = date("Y-m-d", strtotime("+".$days." days"));
|
23 |
+
update_option($this->plugin_slug."_show_upgrade_box_after", $date);
|
24 |
+
}
|
25 |
+
}
|
26 |
+
die;
|
27 |
+
}
|
28 |
+
|
29 |
+
public function admin_notices() {
|
30 |
+
|
31 |
+
$is_hidden = get_option($this->plugin_slug."_hide_upgrade_box");
|
32 |
+
|
33 |
+
if($is_hidden !== false) {
|
34 |
+
return;
|
35 |
+
}
|
36 |
+
$current_count = get_option($this->plugin_slug."_show_upgrade_box_after");
|
37 |
+
if($current_count === false) {
|
38 |
+
$date = date("Y-m-d", strtotime("+15 days"));
|
39 |
+
add_option($this->plugin_slug."_show_upgrade_box_after", $date);
|
40 |
+
return;
|
41 |
+
}
|
42 |
+
$date_to_show = get_option($this->plugin_slug."_show_upgrade_box_after");
|
43 |
+
if($date_to_show !== false) {
|
44 |
+
$current_date = date("Y-m-d");
|
45 |
+
if($current_date < $date_to_show) {
|
46 |
+
return;
|
47 |
+
}
|
48 |
+
}
|
49 |
+
?>
|
50 |
+
<style>
|
51 |
+
.mystickymenu-tab-integration-action{
|
52 |
+
padding: 0 10px;
|
53 |
+
/* float: right;*/
|
54 |
+
}
|
55 |
+
|
56 |
+
|
57 |
+
.mystickymenu-tab-integration-action a {
|
58 |
+
display: inline-block;
|
59 |
+
text-decoration: none;
|
60 |
+
position: unset;
|
61 |
+
padding: 0px;
|
62 |
+
margin-left:15px;
|
63 |
+
font-size: 13px;
|
64 |
+
color: #3C85F7 !important;
|
65 |
+
background-color: #fff;
|
66 |
+
border-radius: 5px;
|
67 |
+
border: 2px solid #3C85F7;
|
68 |
+
min-width: 110px;
|
69 |
+
text-align: center;
|
70 |
+
line-height: 25px;
|
71 |
+
}
|
72 |
+
|
73 |
+
.<?php echo esc_attr($this->plugin_slug); ?>-premio-upgrade-box .
|
74 |
+
mystickymenu-tab-integration-action a {
|
75 |
+
/*display: inline-block;
|
76 |
+
float: right;
|
77 |
+
text-decoration: none;
|
78 |
+
position: unset;
|
79 |
+
padding: 0px;
|
80 |
+
font-size: 13px;
|
81 |
+
right: 50px;
|
82 |
+
top: 7px;
|
83 |
+
color: #3C85F7;
|
84 |
+
background-color: #fff;
|
85 |
+
border-radius: 5px;
|
86 |
+
border: 2px solid #3C85F7;
|
87 |
+
min-width: 110px;
|
88 |
+
text-align: center;
|
89 |
+
line-height: 25px;*/
|
90 |
+
}
|
91 |
+
|
92 |
+
|
93 |
+
.<?php echo esc_attr($this->plugin_slug); ?>-premio-upgrade-box .mystickymenu-tab-integration-action a:hover{
|
94 |
+
background-color:#fff
|
95 |
+
}
|
96 |
+
|
97 |
+
|
98 |
+
|
99 |
+
|
100 |
+
.<?php echo esc_attr($this->plugin_slug); ?>-premio-upgrade-box p a {
|
101 |
+
display: inline-block;
|
102 |
+
/* float: right;*/
|
103 |
+
text-decoration: none;
|
104 |
+
color: #999999;
|
105 |
+
/*position: absolute;
|
106 |
+
right: 12px;
|
107 |
+
top: 12px;*/
|
108 |
+
}
|
109 |
+
|
110 |
+
|
111 |
+
.dismiss-btn{
|
112 |
+
float:right;
|
113 |
+
}
|
114 |
+
|
115 |
+
|
116 |
+
.<?php echo esc_attr($this->plugin_slug); ?>-premio-upgrade-box p a:hover, .<?php echo esc_attr($this->plugin_slug); ?>-premio-upgrade-box p a:focus {
|
117 |
+
color: #333333;
|
118 |
+
}
|
119 |
+
.<?php echo esc_attr($this->plugin_slug); ?>-premio-upgrade-box .button span {
|
120 |
+
display: inline-block;
|
121 |
+
line-height: 27px;
|
122 |
+
font-size: 16px;
|
123 |
+
}
|
124 |
+
.<?php echo esc_attr($this->plugin_slug); ?>-upgrade-box-popup {
|
125 |
+
position: fixed;
|
126 |
+
width: 100%;
|
127 |
+
height: 100%;
|
128 |
+
z-index: 10001;
|
129 |
+
background: rgba(0,0,0,0.65);
|
130 |
+
top: 0;
|
131 |
+
left: 0;
|
132 |
+
display: none;
|
133 |
+
}
|
134 |
+
.<?php echo esc_attr($this->plugin_slug); ?>-upgrade-box-popup-content {
|
135 |
+
background: #ffffff;
|
136 |
+
padding: 20px;
|
137 |
+
position: absolute;
|
138 |
+
max-width: 450px;
|
139 |
+
width: 100%;
|
140 |
+
margin: 0 auto;
|
141 |
+
top: 45%;
|
142 |
+
left: 0;
|
143 |
+
right: 0;
|
144 |
+
-webkit-border-radius: 5px;
|
145 |
+
-moz-border-radius: 5px;
|
146 |
+
border-radius: 5px;: ;
|
147 |
+
}
|
148 |
+
.<?php echo esc_attr($this->plugin_slug); ?>-upgrade-box-title {
|
149 |
+
padding: 0 0 10px 0;
|
150 |
+
font-weight: bold;
|
151 |
+
}
|
152 |
+
.<?php echo esc_attr($this->plugin_slug); ?>-upgrade-box-options a {
|
153 |
+
display: block;
|
154 |
+
margin: 5px 0 5px 0;
|
155 |
+
color: #333;
|
156 |
+
text-decoration: none;
|
157 |
+
}
|
158 |
+
.<?php echo esc_attr($this->plugin_slug); ?>-upgrade-box-options a.dismiss {
|
159 |
+
color: #999;
|
160 |
+
}
|
161 |
+
.<?php echo esc_attr($this->plugin_slug); ?>-upgrade-box-options a:hover, .affiliate-options a:focus {
|
162 |
+
color: #0073aa;
|
163 |
+
}
|
164 |
+
button.<?php echo esc_attr($this->plugin_slug); ?>-close-upgrade-box-popup {
|
165 |
+
position: absolute;
|
166 |
+
top: 5px;
|
167 |
+
right: 0;
|
168 |
+
border: none;
|
169 |
+
background: transparent;
|
170 |
+
cursor: pointer;
|
171 |
+
}
|
172 |
+
a.button.button-primary.<?php echo esc_attr($this->plugin_slug); ?>-upgrade-box-btn {
|
173 |
+
font-size: 14px;
|
174 |
+
background: #F51366;
|
175 |
+
color: #fff;
|
176 |
+
border: solid 1px #F51366;
|
177 |
+
border-radius: 3px;
|
178 |
+
line-height: 24px;
|
179 |
+
-webkit-box-shadow: 0 3px 5px -3px #333333;
|
180 |
+
-moz-box-shadow: 0 3px 5px -3px #333333;
|
181 |
+
box-shadow: 0 3px 5px -3px #333333;
|
182 |
+
text-shadow: none;
|
183 |
+
}
|
184 |
+
.notice.notice-info.premio-notice {
|
185 |
+
position: relative;
|
186 |
+
padding: 1px 10px 1px 12px;
|
187 |
+
}
|
188 |
+
.notice.notice-info.premio-notice ul li {
|
189 |
+
margin: 0;
|
190 |
+
}
|
191 |
+
.notice.notice-info.premio-notice ul li a {
|
192 |
+
color: #0073aa;
|
193 |
+
font-size: 14px;
|
194 |
+
text-decoration: underline;
|
195 |
+
}
|
196 |
+
.<?php echo esc_attr($this->plugin_slug); ?>-premio-upgrade-box p {
|
197 |
+
line-height: 30px;
|
198 |
+
vertical-align: middle;
|
199 |
+
padding: 0 10px 0 0;
|
200 |
+
font-size: 14px;
|
201 |
+
}
|
202 |
+
.<?php echo esc_attr($this->plugin_slug); ?>-premio-upgrade-box p img {
|
203 |
+
width: 30px;
|
204 |
+
height: 30px;
|
205 |
+
display: inline-block;
|
206 |
+
margin: 0 10px;
|
207 |
+
vertical-align: middle;
|
208 |
+
border-radius: 15px;
|
209 |
+
}
|
210 |
+
.review-thanks-img img {
|
211 |
+
width: 100%;
|
212 |
+
height: auto;
|
213 |
+
max-width: 200px;
|
214 |
+
}
|
215 |
+
.review-thanks-msg {
|
216 |
+
padding: 5px 0 0 10px;
|
217 |
+
display: inline-block;
|
218 |
+
text-align: left;
|
219 |
+
}
|
220 |
+
.review-thanks-box {
|
221 |
+
padding: 10px 0 10px 0;
|
222 |
+
position: relative;
|
223 |
+
text-align: center;
|
224 |
+
display: none;
|
225 |
+
}
|
226 |
+
.upgrade-box-default {
|
227 |
+
}
|
228 |
+
.review-thanks-btn {
|
229 |
+
border: 0;
|
230 |
+
background: transparent;
|
231 |
+
position: absolute;
|
232 |
+
right: -30px;
|
233 |
+
top: 5px;
|
234 |
+
}
|
235 |
+
.review-thanks-img {
|
236 |
+
display: inline-block;
|
237 |
+
vertical-align: top;
|
238 |
+
width: 200px;
|
239 |
+
}
|
240 |
+
.thanks-msg-title {
|
241 |
+
font-weight: bold;
|
242 |
+
font-size: 18px;
|
243 |
+
}
|
244 |
+
.thanks-msg-desc {
|
245 |
+
padding: 24px 0;
|
246 |
+
}
|
247 |
+
.thanks-msg-footer {
|
248 |
+
font-weight: bold;
|
249 |
+
}
|
250 |
+
</style>
|
251 |
+
<div class="notice notice-info premio-notice <?php echo esc_attr($this->plugin_slug); ?>-premio-upgrade-box <?php echo esc_attr($this->plugin_slug); ?>-premio-upgrade-box">
|
252 |
+
<div class="upgrade-box-default" id="default-upgrade-box-<?php echo esc_attr($this->plugin_slug); ?>">
|
253 |
+
<p>
|
254 |
+
<strong>Upgrade to MyStickyMenu Pro to</strong> experience more awesome features
|
255 |
+
<span class="mystickymenu-tab-integration-action">
|
256 |
+
<a href="<?php echo esc_url(admin_url("admin.php?page=my-stickymenu-upgrade")); ?>" target="_blank" class="btn upgradenow-box-btn" data-days="-1">Upgrade now</a>
|
257 |
+
</span>
|
258 |
+
<a href="javascript:;" class="dismiss-btn <?php echo esc_attr($this->plugin_slug); ?>-premio-upgrade-dismiss-btn"><span class="dashicons dashicons-no-alt"></span></a>
|
259 |
+
</p>
|
260 |
+
<div class="clear clearfix"></div>
|
261 |
+
</div>
|
262 |
+
</div>
|
263 |
+
<div class="<?php echo esc_attr($this->plugin_slug); ?>-upgrade-box-popup">
|
264 |
+
<div class="<?php echo esc_attr($this->plugin_slug); ?>-upgrade-box-popup-content">
|
265 |
+
<button class="<?php echo esc_attr($this->plugin_slug); ?>-close-upgrade-box-popup"><span class="dashicons dashicons-no-alt"></span></button>
|
266 |
+
<div class="<?php echo esc_attr($this->plugin_slug); ?>-upgrade-box-title">Would you like us to remind you about this later?</div>
|
267 |
+
<div class="<?php echo esc_attr($this->plugin_slug); ?>-upgrade-box-options">
|
268 |
+
<a href="javascript:;" data-days="7">Remind me in 7 days</a>
|
269 |
+
<a href="javascript:;" data-days="30">Remind me in 30 days</a>
|
270 |
+
<a href="javascript:;" data-days="-1" class="dismiss">Don't remind me about this</a>
|
271 |
+
</div>
|
272 |
+
</div>
|
273 |
+
</div>
|
274 |
+
<script>
|
275 |
+
jQuery(document).ready(function(){
|
276 |
+
jQuery("body").addClass("has-premio-box");
|
277 |
+
jQuery(document).on("click", ".<?php echo esc_attr($this->plugin_slug); ?>-premio-upgrade-dismiss-btn, .<?php echo esc_attr($this->plugin_slug); ?>-premio-upgrade-box-future-btn", function(){
|
278 |
+
jQuery(".<?php echo esc_attr($this->plugin_slug); ?>-upgrade-box-popup").show();
|
279 |
+
});
|
280 |
+
jQuery(document).on("click", ".<?php echo esc_attr($this->plugin_slug); ?>-close-upgrade-box-popup", function(){
|
281 |
+
jQuery(".<?php echo esc_attr($this->plugin_slug); ?>-upgrade-box-popup").hide();
|
282 |
+
});
|
283 |
+
|
284 |
+
jQuery(document).on("click", ".<?php echo esc_attr($this->plugin_slug); ?>-upgrade-box-options a", function(){
|
285 |
+
var dataDays = jQuery(this).attr("data-days");
|
286 |
+
jQuery(".<?php echo esc_attr($this->plugin_slug); ?>-upgrade-box-popup").remove();
|
287 |
+
jQuery(".<?php echo esc_attr($this->plugin_slug); ?>-premio-upgrade-box").remove();
|
288 |
+
jQuery("body").removeClass("has-premio-box");
|
289 |
+
jQuery.ajax({
|
290 |
+
url: "<?php echo admin_url("admin-ajax.php") ?>",
|
291 |
+
data: "action=<?php echo esc_attr($this->plugin_slug) ?>_upgrade_box&days="+dataDays+"&nonce=<?php echo esc_attr(wp_create_nonce($this->plugin_slug."_upgrade_box")) ?>",
|
292 |
+
type: "post",
|
293 |
+
success: function() {
|
294 |
+
jQuery(".<?php echo esc_attr($this->plugin_slug); ?>-upgrade-box-popup").remove();
|
295 |
+
jQuery(".<?php echo esc_attr($this->plugin_slug); ?>-premio-upgrade-box").remove();
|
296 |
+
}
|
297 |
+
});
|
298 |
+
});
|
299 |
+
|
300 |
+
jQuery(document).on("click",".upgradenow-box-btn",function(){
|
301 |
+
jQuery(".notice.notice-info.premio-notice").hide();
|
302 |
+
|
303 |
+
var dataDays = jQuery(this).attr("data-days");
|
304 |
+
|
305 |
+
jQuery(".<?php echo esc_attr($this->plugin_slug); ?>-upgrade-box-popup").remove();
|
306 |
+
jQuery(".<?php echo esc_attr($this->plugin_slug); ?>-premio-upgrade-box").remove();
|
307 |
+
jQuery("body").removeClass("has-premio-box");
|
308 |
+
|
309 |
+
jQuery.ajax({
|
310 |
+
url: "<?php echo admin_url("admin-ajax.php") ?>",
|
311 |
+
data: "action=<?php echo esc_attr($this->plugin_slug) ?>_upgrade_box&days="+dataDays+"&nonce=<?php echo esc_attr(wp_create_nonce($this->plugin_slug."_upgrade_box")) ?>",
|
312 |
+
type: "post",
|
313 |
+
success: function() {
|
314 |
+
jQuery(".<?php echo esc_attr($this->plugin_slug); ?>-upgrade-box-popup").remove();
|
315 |
+
jQuery(".<?php echo esc_attr($this->plugin_slug); ?>-premio-upgrade-box").remove();
|
316 |
+
}
|
317 |
+
});
|
318 |
+
});
|
319 |
+
});
|
320 |
+
|
321 |
+
jQuery
|
322 |
+
</script>
|
323 |
+
<?php
|
324 |
+
}
|
325 |
+
}
|
326 |
Â
$Sticky_menu_upgrade_box = new Sticky_menu_upgrade_box();
|
css/admin-setting-rtl.css
CHANGED
@@ -1,624 +1,624 @@
|
|
1 |
-
@import url(https://fonts.googleapis.com/css2?family=Lato:ital, wght@0, 100;
|
2 |
-
0, 300;
|
3 |
-
0, 400;
|
4 |
-
0, 700;
|
5 |
-
0, 900;
|
6 |
-
1, 100;
|
7 |
-
1, 300;
|
8 |
-
1, 400;
|
9 |
-
1, 700;
|
10 |
-
1, 900&display=swap);
|
11 |
-
*, : after, :before {
|
12 |
-
box-sizing: border-box;
|
13 |
-
}
|
14 |
-
#wpwrap {
|
15 |
-
background: #6572db;
|
16 |
-
background: -moz-linear-gradient(-45deg, #6572db 0, #ee86c6 67%, #ee86c6 100%);
|
17 |
-
background: -webkit-gradient(right top, left bottom, color-stop(0, #6572db), color-stop(67%, #ee86c6), color-stop(100%, #ee86c6));
|
18 |
-
background: -webkit-linear-gradient(-45deg, #6572db 0, #ee86c6 67%, #ee86c6 100%);
|
19 |
-
background: -o-linear-gradient(-45deg, #6572db 0, #ee86c6 67%, #ee86c6 100%);
|
20 |
-
background: -ms-linear-gradient(-45deg, #6572db 0, #ee86c6 67%, #ee86c6 100%);
|
21 |
-
background: linear-gradient(135deg, #6572db 0, #ee86c6 67%, #ee86c6 100%);
|
22 |
-
}
|
23 |
-
.pricing-table {
|
24 |
-
margin: 0 0 45px;
|
25 |
-
color: #28375a;
|
26 |
-
font-size: 16px;
|
27 |
-
line-height: 25px;
|
28 |
-
font-family: Lato, sans-serif;
|
29 |
-
}
|
30 |
-
.price-title {
|
31 |
-
font-weight: 700;
|
32 |
-
font-size: 24px;
|
33 |
-
line-height: 30px;
|
34 |
-
color: #28375a;
|
35 |
-
text-align: center;
|
36 |
-
}
|
37 |
-
.price-table {
|
38 |
-
background: #fff;
|
39 |
-
box-sizing: border-box;
|
40 |
-
border-radius: 10px;
|
41 |
-
position: relative;
|
42 |
-
}
|
43 |
-
.price-table-top {
|
44 |
-
padding: 20px;
|
45 |
-
position: relative;
|
46 |
-
border-radius: 10px;
|
47 |
-
}
|
48 |
-
.price-table.basic-feature {
|
49 |
-
box-shadow: 0 12px 44px rgba(108, 203, 255, .2);
|
50 |
-
border: 2px solid #b9eafd;
|
51 |
-
}
|
52 |
-
.price-table.basic-feature .price-table-top {
|
53 |
-
background: url(../images/basic-price-bg.png) no-repeat left top;
|
54 |
-
}
|
55 |
-
.price-table.plus-feature {
|
56 |
-
border: 2px solid #f9d9bd;
|
57 |
-
box-shadow: 0 12px 44px rgba(239, 140, 106, .2);
|
58 |
-
}
|
59 |
-
.price-table.plus-feature .price-table-top {
|
60 |
-
background: url(../images/plus-price.png) no-repeat left top;
|
61 |
-
}
|
62 |
-
.price-table.agency-feature {
|
63 |
-
border: 2px solid #cfd3fb;
|
64 |
-
box-shadow: 0 12px 44px rgba(96, 93, 236, .2);
|
65 |
-
}
|
66 |
-
.price-table.agency-feature .price-table-top {
|
67 |
-
background: url(../images/agency-price.png) no-repeat left top;
|
68 |
-
}
|
69 |
-
.price-tables {
|
70 |
-
margin: 30px 0 50px;
|
71 |
-
}
|
72 |
-
.plan-name {
|
73 |
-
font-size: 30px;
|
74 |
-
line-height: 36px;
|
75 |
-
font-weight: 700;
|
76 |
-
color: #28375a;
|
77 |
-
}
|
78 |
-
.plan-price {
|
79 |
-
position: absolute;
|
80 |
-
left: 12px;
|
81 |
-
top: 8px;
|
82 |
-
font-weight: 700;
|
83 |
-
font-size: 60px;
|
84 |
-
line-height: 72px;
|
85 |
-
color: #42b9fa;
|
86 |
-
}
|
87 |
-
.price-table.plus-feature .plan-price {
|
88 |
-
color: #ef8c6a;
|
89 |
-
}
|
90 |
-
.price-table.agency-feature .plan-price {
|
91 |
-
color: #605dec;
|
92 |
-
}
|
93 |
-
.price-table.agency-feature .plan-name {
|
94 |
-
color: #fff;
|
95 |
-
}
|
96 |
-
.price-head {
|
97 |
-
line-height: 72px;
|
98 |
-
padding: 5px 0 25px 0;
|
99 |
-
}
|
100 |
-
.price-offer, .price-websites {
|
101 |
-
line-height: 18px;
|
102 |
-
font-size: 15px;
|
103 |
-
}
|
104 |
-
.cus-tooltip {
|
105 |
-
cursor: pointer;
|
106 |
-
display: inline-block;
|
107 |
-
position: relative;
|
108 |
-
}
|
109 |
-
.cus-tooltip .tooltip__content {
|
110 |
-
background-color: #1849ab;
|
111 |
-
border-radius: 4px;
|
112 |
-
bottom: 150%;
|
113 |
-
color: #fff;
|
114 |
-
right: 0;
|
115 |
-
margin-right: 15px;
|
116 |
-
opacity: 0;
|
117 |
-
padding: 5px 10px;
|
118 |
-
position: absolute;
|
119 |
-
transition: opacity .25s;
|
120 |
-
visibility: hidden;
|
121 |
-
width: auto;
|
122 |
-
z-index: 1;
|
123 |
-
text-align: right;
|
124 |
-
margin-left: 15px;
|
125 |
-
font-size: 14px;
|
126 |
-
line-height: 20px;
|
127 |
-
}
|
128 |
-
.cus-tooltip .tooltip__content::after {
|
129 |
-
border-width: 5px;
|
130 |
-
border-style: solid;
|
131 |
-
border-color: #1849ab transparent transparent transparent;
|
132 |
-
content: "";
|
133 |
-
right: 25px;
|
134 |
-
margin-right: -5px;
|
135 |
-
position: absolute;
|
136 |
-
top: 100%}
|
137 |
-
.cus-tooltip:hover .tooltip__content {
|
138 |
-
opacity: 1;
|
139 |
-
visibility: visible;
|
140 |
-
}
|
141 |
-
.price-table-middle ul {
|
142 |
-
list-style: none;
|
143 |
-
margin: 0;
|
144 |
-
padding: 0;
|
145 |
-
}
|
146 |
-
.price-table-middle ul li {
|
147 |
-
display: block;
|
148 |
-
width: 100%;
|
149 |
-
border-bottom: solid 1px #e9e9e9;
|
150 |
-
padding: 15px 0;
|
151 |
-
margin: 0;
|
152 |
-
}
|
153 |
-
.price-table-middle ul li a {
|
154 |
-
padding: 0 15px;
|
155 |
-
color: #28375a;
|
156 |
-
font-size: 16px;
|
157 |
-
line-height: 19px;
|
158 |
-
display: block;
|
159 |
-
text-decoration: none;
|
160 |
-
}
|
161 |
-
span.has-tooltip {
|
162 |
-
color: #605dec;
|
163 |
-
}
|
164 |
-
.price-table-bottom {
|
165 |
-
padding: 15px;
|
166 |
-
}
|
167 |
-
.price-table.is-fixed {
|
168 |
-
padding-bottom: 140px;
|
169 |
-
position: relative;
|
170 |
-
}
|
171 |
-
.price-table.is-fixed .price-table-bottom {
|
172 |
-
position: fixed;
|
173 |
-
left: 0;
|
174 |
-
width: 100%;
|
175 |
-
border-top: solid 2px #e9e9e9;
|
176 |
-
background: #fff;
|
177 |
-
}
|
178 |
-
.bottom-position {
|
179 |
-
position: absolute;
|
180 |
-
left: 0;/*------------------------------------------*/
|
181 |
-
bottom: 0;
|
182 |
-
height: 1px;
|
183 |
-
width: 1px;
|
184 |
-
}
|
185 |
-
.custom-dd-btn {
|
186 |
-
background: #fff;
|
187 |
-
border: 1px solid #e9e9e9;
|
188 |
-
border-radius: 6px;
|
189 |
-
height: 40px;
|
190 |
-
line-height: 40px;
|
191 |
-
width: 100%;
|
192 |
-
text-align: right;
|
193 |
-
padding: 0 15px;
|
194 |
-
}
|
195 |
-
.custom-dd {
|
196 |
-
margin-bottom: 15px;
|
197 |
-
}
|
198 |
-
.price-table-bottom a {
|
199 |
-
background: #fff;
|
200 |
-
border: 1px solid #42b9fa;
|
201 |
-
color: #42b9fa;
|
202 |
-
border-radius: 20px;
|
203 |
-
height: 40px;
|
204 |
-
line-height: 38px;
|
205 |
-
padding: 0 15px;
|
206 |
-
display: block;
|
207 |
-
text-align: center;
|
208 |
-
transition: all .25s linear;
|
209 |
-
}
|
210 |
-
.price-table-bottom a:hover {
|
211 |
-
color: #fff;
|
212 |
-
background: #42b9fa;
|
213 |
-
}
|
214 |
-
.price-table.plus-feature .price-table-bottom a {
|
215 |
-
background: #ef8c6a;
|
216 |
-
border: 1px solid #ef8c6a;
|
217 |
-
color: #fff;
|
218 |
-
}
|
219 |
-
.price-table.plus-feature .price-table-bottom a:hover {
|
220 |
-
background: #fff;
|
221 |
-
color: #ef8c6a;
|
222 |
-
}
|
223 |
-
.price-table.agency-feature .price-table-bottom a {
|
224 |
-
background: #fff;
|
225 |
-
border: 1px solid #605dec;
|
226 |
-
color: #605dec;
|
227 |
-
}
|
228 |
-
.price-table.agency-feature .price-table-bottom a:hover {
|
229 |
-
background: #605dec;
|
230 |
-
color: #fff;
|
231 |
-
}
|
232 |
-
.container {
|
233 |
-
max-width: 1180px;
|
234 |
-
width: 100%;
|
235 |
-
padding: 30px;
|
236 |
-
background: #fff;
|
237 |
-
border-radius: 15px;
|
238 |
-
margin: 50px auto;
|
239 |
-
box-sizing: border-box;
|
240 |
-
}
|
241 |
-
.row {
|
242 |
-
margin-left: -15px;
|
243 |
-
margin-right: -15px;
|
244 |
-
}
|
245 |
-
.col-md-4 {
|
246 |
-
padding-left: 15px;
|
247 |
-
padding-right: 15px;
|
248 |
-
width: 33.33333333%;
|
249 |
-
float: right;
|
250 |
-
box-sizing: border-box;
|
251 |
-
}
|
252 |
-
.select2-container--default .select2-selection--single {
|
253 |
-
background: #fff;
|
254 |
-
border: 1px solid #e9e9e9;
|
255 |
-
border-radius: 6px;
|
256 |
-
height: 40px;
|
257 |
-
line-height: 40px;
|
258 |
-
width: 100%;
|
259 |
-
text-align: right;
|
260 |
-
padding: 0 15px;
|
261 |
-
outline: 0;
|
262 |
-
}
|
263 |
-
span.select2.select2-container {
|
264 |
-
width: 100%!important;
|
265 |
-
}
|
266 |
-
.website-package {
|
267 |
-
padding: 0 15px;
|
268 |
-
line-height: 18px;
|
269 |
-
}
|
270 |
-
.select2-container--default .select2-results__option--highlighted[aria-selected] {
|
271 |
-
background-color: #5897fb;
|
272 |
-
color: #fff;
|
273 |
-
}
|
274 |
-
.website-package .select2-container--default .select2-results>.select2-results__options {
|
275 |
-
margin-top: 5px;
|
276 |
-
}
|
277 |
-
.custom-dd .select2-container--default .select2-selection--single .select2-selection__arrow {
|
278 |
-
height: 20px;
|
279 |
-
top: 10px;
|
280 |
-
left: 1px;
|
281 |
-
width: 20px;
|
282 |
-
}
|
283 |
-
@media (min-width:768px) {
|
284 |
-
.col-sm-4 {
|
285 |
-
width: 100%;
|
286 |
-
float: none;
|
287 |
-
}
|
288 |
-
}a, a:focus, a:hover {
|
289 |
-
text-decoration: none;
|
290 |
-
}
|
291 |
-
.select2-container--default .select2-selection--single .select2-selection__rendered {
|
292 |
-
color: #444;
|
293 |
-
line-height: 38px;
|
294 |
-
}
|
295 |
-
.select2-results__option {
|
296 |
-
user-select: none;
|
297 |
-
-webkit-user-select: none;
|
298 |
-
font-size: 14px;
|
299 |
-
padding: 8px 25px;
|
300 |
-
margin: 0;
|
301 |
-
}
|
302 |
-
.select2-dropdown {
|
303 |
-
border: 1px solid #e9e9e9;
|
304 |
-
}
|
305 |
-
.price-after {
|
306 |
-
padding: 0;
|
307 |
-
text-align: center;
|
308 |
-
font-size: 16px;
|
309 |
-
line-height: 25px;
|
310 |
-
font-family: Lato, sans-serif;
|
311 |
-
}
|
312 |
-
.price-after p, .price-after span {
|
313 |
-
font-size: 16px;
|
314 |
-
line-height: 25px;
|
315 |
-
margin: 0;
|
316 |
-
padding: 0;
|
317 |
-
}
|
318 |
-
.clearfix {
|
319 |
-
clear: both;
|
320 |
-
}
|
321 |
-
.price-after span {
|
322 |
-
display: inline-block;
|
323 |
-
vertical-align: text-top;
|
324 |
-
font-size: 20px;
|
325 |
-
color: #42b9fa;
|
326 |
-
}
|
327 |
-
.payments {
|
328 |
-
padding: 20px 0 10px;
|
329 |
-
}
|
330 |
-
.folder-testimonial-list {
|
331 |
-
width: 100%;
|
332 |
-
margin: 30px auto 0;
|
333 |
-
font-family: Lato, sans-serif;
|
334 |
-
}
|
335 |
-
.folder-testimonial {
|
336 |
-
position: relative;
|
337 |
-
}
|
338 |
-
.folder-testimonial .testimonial-image {
|
339 |
-
position: absolute;
|
340 |
-
height: 60px;
|
341 |
-
width: 60px;
|
342 |
-
top: 50%;
|
343 |
-
margin-top: -30px;
|
344 |
-
z-index: 1;
|
345 |
-
overflow: hidden;
|
346 |
-
border-radius: 30px;
|
347 |
-
}
|
348 |
-
.folder-testimonial .testimonial-image img {
|
349 |
-
width: 100%;
|
350 |
-
height: auto;
|
351 |
-
}
|
352 |
-
.folder-testimonial .testimonial-data {
|
353 |
-
position: relative;
|
354 |
-
margin-right: 30px;
|
355 |
-
font-size: 16px;
|
356 |
-
line-height: 22px;
|
357 |
-
padding: 10px 10px 10px 40px;
|
358 |
-
background: #f5f5f5;
|
359 |
-
border-radius: 4px;
|
360 |
-
}
|
361 |
-
.testimonial-title {
|
362 |
-
font-weight: 700;
|
363 |
-
font-size: 18px;
|
364 |
-
padding: 0 0 5px;
|
365 |
-
}
|
366 |
-
.testimonial-author {
|
367 |
-
font-size: 16px;
|
368 |
-
font-style: italic;
|
369 |
-
font-weight: 500;
|
370 |
-
padding: 5px 0 0;
|
371 |
-
}
|
372 |
-
.plan-price span {
|
373 |
-
font-size: 16px;
|
374 |
-
color: #28375a;
|
375 |
-
}
|
376 |
-
.price-table-middle {
|
377 |
-
margin-top: 21px;
|
378 |
-
}
|
379 |
-
.agency-feature .price-table-middle {
|
380 |
-
margin-top: 0;
|
381 |
-
}
|
382 |
-
.website-package .select2-container--default .select2-selection--single {
|
383 |
-
border: 1px solid #6156f6;
|
384 |
-
box-shadow: 0 12px 44px rgba(96, 93, 236, .2);
|
385 |
-
}
|
386 |
-
.website-package .select2-container--default .select2-selection--single .select2-selection__rendered {
|
387 |
-
color: #6156f6;
|
388 |
-
}
|
389 |
-
.website-package .select2-container--default .select2-selection--single .select2-selection__arrow b {
|
390 |
-
border-color: #6156f6 transparent transparent transparent;
|
391 |
-
}
|
392 |
-
.website-package .select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow b {
|
393 |
-
border-color: transparent transparent #6156f6 transparent;
|
394 |
-
border-width: 0 4px 5px 4px;
|
395 |
-
}
|
396 |
-
.folders-tabs {
|
397 |
-
max-width: inherit;
|
398 |
-
}
|
399 |
-
.basic-feature .price-table-bottom .select2-container--default .select2-selection--single {
|
400 |
-
border: 1px solid #42b9fa;
|
401 |
-
box-shadow: 0 12px 44px rgba(66, 182, 250, .2);
|
402 |
-
}
|
403 |
-
.basic-feature .select2-container--default .select2-selection--single .select2-selection__arrow b {
|
404 |
-
border-color: #42b9fa transparent transparent transparent;
|
405 |
-
}
|
406 |
-
.plus-feature .price-table-bottom .select2-container--default .select2-selection--single {
|
407 |
-
border: 1px solid #ef8c6a;
|
408 |
-
box-shadow: 0 12px 44px rgba(239, 140, 106, .2);
|
409 |
-
}
|
410 |
-
.plus-feature .select2-container--default .select2-selection--single .select2-selection__arrow b {
|
411 |
-
border-color: #ef8c6a transparent transparent transparent;
|
412 |
-
}
|
413 |
-
.agency-feature .price-table-bottom .select2-container--default .select2-selection--single {
|
414 |
-
border: 1px solid #6156f6;
|
415 |
-
box-shadow: 0 12px 44px rgba(96, 93, 236, .2);
|
416 |
-
}
|
417 |
-
.agency-feature .select2-container--default .select2-selection--single .select2-selection__arrow b {
|
418 |
-
border-color: #6156f6 transparent transparent transparent;
|
419 |
-
}
|
420 |
-
.basic-feature.price-table.is-fixed .price-table-bottom {
|
421 |
-
border-color: #b9eafd;
|
422 |
-
}
|
423 |
-
.plus-feature.price-table.is-fixed .price-table-bottom {
|
424 |
-
border-color: #f9d9bd;
|
425 |
-
}
|
426 |
-
.agency-feature.price-table.is-fixed .price-table-bottom {
|
427 |
-
border-color: #cfd3fb;
|
428 |
-
}
|
429 |
-
.html-tooltip {
|
430 |
-
position: relative;
|
431 |
-
display: inline-block;
|
432 |
-
margin: 0;
|
433 |
-
padding: 0;
|
434 |
-
line-height: 1;
|
435 |
-
width: auto;
|
436 |
-
height: 20px;
|
437 |
-
vertical-align: middle;
|
438 |
-
}
|
439 |
-
.html-tooltip .tooltip-text {
|
440 |
-
visibility: hidden;
|
441 |
-
width: 300px;
|
442 |
-
background-color: #1849ab;
|
443 |
-
color: #fff;
|
444 |
-
text-align: center;
|
445 |
-
border-radius: 6px;
|
446 |
-
padding: 10px;
|
447 |
-
position: absolute;
|
448 |
-
z-index: 1201;
|
449 |
-
bottom: 125%;
|
450 |
-
right: 50%;
|
451 |
-
margin-right: -150px;
|
452 |
-
opacity: 0;
|
453 |
-
transition: opacity .3s;
|
454 |
-
font-size: 12px;
|
455 |
-
line-height: 18px;
|
456 |
-
top: 100%;
|
457 |
-
height: 354px;
|
458 |
-
}
|
459 |
-
.html-tooltip.side .tooltip-text {
|
460 |
-
bottom: 125%;
|
461 |
-
right: 100%;
|
462 |
-
margin-right: 0;
|
463 |
-
top: 5px;
|
464 |
-
transform: translateY(-50%);
|
465 |
-
-webkit-transform: translateY(-50%);
|
466 |
-
}
|
467 |
-
.html-tooltip.dynamic .tooltip-text {
|
468 |
-
height: 490px;
|
469 |
-
}
|
470 |
-
.html-tooltip:hover .tooltip-text {
|
471 |
-
visibility: visible;
|
472 |
-
opacity: 1;
|
473 |
-
}
|
474 |
-
.html-tooltip .tooltip-text img {
|
475 |
-
width: 100%;
|
476 |
-
height: auto;
|
477 |
-
display: block;
|
478 |
-
margin: 10px 0 0 0;
|
479 |
-
}
|
480 |
-
.html-tooltip.no-position .tooltip-text {
|
481 |
-
height: auto;
|
482 |
-
}
|
483 |
-
.html-tooltip .tooltip-text:after {
|
484 |
-
content: "";
|
485 |
-
position: absolute;
|
486 |
-
top: -10px;
|
487 |
-
right: 50%;
|
488 |
-
margin-right: -15px;
|
489 |
-
border-width: 5px;
|
490 |
-
border-style: solid;
|
491 |
-
border-color: #1849ab transparent transparent transparent;
|
492 |
-
transform: rotate(180deg);
|
493 |
-
-webkit-transform: rotate(180deg);
|
494 |
-
}
|
495 |
-
.html-tooltip.top .tooltip-text {
|
496 |
-
top: auto;
|
497 |
-
bottom: 100%;
|
498 |
-
margin-bottom: 5px;
|
499 |
-
}
|
500 |
-
.html-tooltip.top .tooltip-text:after {
|
501 |
-
top: 100%;
|
502 |
-
transform: rotate(0);
|
503 |
-
-webkit-transform: rotate(0);
|
504 |
-
}
|
505 |
-
.html-tooltip.side .tooltip-text:after {
|
506 |
-
display: none;
|
507 |
-
}
|
508 |
-
.pricing-table-body {
|
509 |
-
display: flex;
|
510 |
-
align-items: center;
|
511 |
-
}
|
512 |
-
.pricing-table-content {
|
513 |
-
flex: 1;
|
514 |
-
text-align: center;
|
515 |
-
background: #f8fafc;
|
516 |
-
min-height: 86px;
|
517 |
-
line-height: 20px;
|
518 |
-
padding: 10px 0;
|
519 |
-
border-bottom: solid 2px #f8fafc;
|
520 |
-
align-items: center;
|
521 |
-
font-size: 16px;
|
522 |
-
cursor: pointer;
|
523 |
-
position: relative;
|
524 |
-
transition: all .25s linear;
|
525 |
-
}
|
526 |
-
.pricing-table-content:before {
|
527 |
-
right: auto;
|
528 |
-
left: 0;
|
529 |
-
}
|
530 |
-
.pricing-table-header {
|
531 |
-
width: 720px;
|
532 |
-
margin: 40px auto 50px;
|
533 |
-
}
|
534 |
-
.pricing-discount-col span {
|
535 |
-
display: inline-block;
|
536 |
-
padding: 0 8px;
|
537 |
-
background: #94a3b8;
|
538 |
-
font-size: 14px;
|
539 |
-
line-height: 20px;
|
540 |
-
color: #fff;
|
541 |
-
border-radius: 20px;
|
542 |
-
margin: 4px 0 0;
|
543 |
-
transition: all .2s linear;
|
544 |
-
}
|
545 |
-
.pricing-table-content.active, .pricing-table-content:hover {
|
546 |
-
border-bottom: 2px solid #3c85f7;
|
547 |
-
color: #3c85f7;
|
548 |
-
background: #fff;
|
549 |
-
}
|
550 |
-
.pricing-table-content.active {
|
551 |
-
box-shadow: 0 10px 15px rgba(0, 0, 0, .1), 0 4px 6px rgba(0, 0, 0, .05);
|
552 |
-
}
|
553 |
-
.pricing-table-content.second {
|
554 |
-
border-right: 1px solid #cbd5e1;
|
555 |
-
border-left: 1px solid #cbd5e1;
|
556 |
-
}
|
557 |
-
.pricing-table-content.second.active .pricing-discount-col span, .pricing-table-content.second:hover .pricing-discount-col span {
|
558 |
-
color: #fff;
|
559 |
-
background: #ef8c6a;
|
560 |
-
}
|
561 |
-
.pricing-table-content.third.active .pricing-discount-col span, .pricing-table-content.third:hover .pricing-discount-col span {
|
562 |
-
background: #605dec;
|
563 |
-
color: #fff;
|
564 |
-
}
|
565 |
-
.pricing-table-content.first {
|
566 |
-
padding: 23px 0 0;
|
567 |
-
}
|
568 |
-
.year-col {
|
569 |
-
font-weight: 700;
|
570 |
-
}
|
571 |
-
@media (max-width:1320px) {
|
572 |
-
.plan-price {
|
573 |
-
font-size: 50px;
|
574 |
-
line-height: 64px;
|
575 |
-
}
|
576 |
-
}@media (max-width:1200px) {
|
577 |
-
.plan-price {
|
578 |
-
font-size: 40px;
|
579 |
-
line-height: 54px;
|
580 |
-
}
|
581 |
-
}@media (max-width:1100px) {
|
582 |
-
.plan-name {
|
583 |
-
font-size: 24px;
|
584 |
-
line-height: 36px;
|
585 |
-
}
|
586 |
-
}@media (max-width:1024px) {
|
587 |
-
.plan-price {
|
588 |
-
font-size: 30px;
|
589 |
-
line-height: 54px;
|
590 |
-
top: 15px;
|
591 |
-
}
|
592 |
-
}@media (max-width:920px) {
|
593 |
-
.col-md-4 {
|
594 |
-
padding-right: 5px;
|
595 |
-
padding-left: 5px;
|
596 |
-
}
|
597 |
-
}@media (max-width:840px) {
|
598 |
-
.col-md-4 {
|
599 |
-
padding: 0;
|
600 |
-
width: auto;
|
601 |
-
margin: 0 auto 30px;
|
602 |
-
float: none;
|
603 |
-
padding-right: 15px;
|
604 |
-
padding-left: 15px;
|
605 |
-
}
|
606 |
-
.plan-price {
|
607 |
-
font-size: 50px;
|
608 |
-
line-height: 64px;
|
609 |
-
}
|
610 |
-
.price-table.is-fixed {
|
611 |
-
padding-bottom: 15px;
|
612 |
-
position: relative;
|
613 |
-
}
|
614 |
-
.price-table.is-fixed .price-table-bottom {
|
615 |
-
position: relative;
|
616 |
-
left: 0;
|
617 |
-
width: 100%;
|
618 |
-
border-top: none;
|
619 |
-
background: #fff;
|
620 |
-
top: auto!important;
|
621 |
-
right: auto!important;
|
622 |
-
width: 100%!important;
|
623 |
-
}
|
624 |
Â
}
|
1 |
+
@import url(https://fonts.googleapis.com/css2?family=Lato:ital, wght@0, 100;
|
2 |
+
0, 300;
|
3 |
+
0, 400;
|
4 |
+
0, 700;
|
5 |
+
0, 900;
|
6 |
+
1, 100;
|
7 |
+
1, 300;
|
8 |
+
1, 400;
|
9 |
+
1, 700;
|
10 |
+
1, 900&display=swap);
|
11 |
+
*, : after, :before {
|
12 |
+
box-sizing: border-box;
|
13 |
+
}
|
14 |
+
#wpwrap {
|
15 |
+
background: #6572db;
|
16 |
+
background: -moz-linear-gradient(-45deg, #6572db 0, #ee86c6 67%, #ee86c6 100%);
|
17 |
+
background: -webkit-gradient(right top, left bottom, color-stop(0, #6572db), color-stop(67%, #ee86c6), color-stop(100%, #ee86c6));
|
18 |
+
background: -webkit-linear-gradient(-45deg, #6572db 0, #ee86c6 67%, #ee86c6 100%);
|
19 |
+
background: -o-linear-gradient(-45deg, #6572db 0, #ee86c6 67%, #ee86c6 100%);
|
20 |
+
background: -ms-linear-gradient(-45deg, #6572db 0, #ee86c6 67%, #ee86c6 100%);
|
21 |
+
background: linear-gradient(135deg, #6572db 0, #ee86c6 67%, #ee86c6 100%);
|
22 |
+
}
|
23 |
+
.pricing-table {
|
24 |
+
margin: 0 0 45px;
|
25 |
+
color: #28375a;
|
26 |
+
font-size: 16px;
|
27 |
+
line-height: 25px;
|
28 |
+
font-family: Lato, sans-serif;
|
29 |
+
}
|
30 |
+
.price-title {
|
31 |
+
font-weight: 700;
|
32 |
+
font-size: 24px;
|
33 |
+
line-height: 30px;
|
34 |
+
color: #28375a;
|
35 |
+
text-align: center;
|
36 |
+
}
|
37 |
+
.price-table {
|
38 |
+
background: #fff;
|
39 |
+
box-sizing: border-box;
|
40 |
+
border-radius: 10px;
|
41 |
+
position: relative;
|
42 |
+
}
|
43 |
+
.price-table-top {
|
44 |
+
padding: 20px;
|
45 |
+
position: relative;
|
46 |
+
border-radius: 10px;
|
47 |
+
}
|
48 |
+
.price-table.basic-feature {
|
49 |
+
box-shadow: 0 12px 44px rgba(108, 203, 255, .2);
|
50 |
+
border: 2px solid #b9eafd;
|
51 |
+
}
|
52 |
+
.price-table.basic-feature .price-table-top {
|
53 |
+
background: url(../images/basic-price-bg.png) no-repeat left top;
|
54 |
+
}
|
55 |
+
.price-table.plus-feature {
|
56 |
+
border: 2px solid #f9d9bd;
|
57 |
+
box-shadow: 0 12px 44px rgba(239, 140, 106, .2);
|
58 |
+
}
|
59 |
+
.price-table.plus-feature .price-table-top {
|
60 |
+
background: url(../images/plus-price.png) no-repeat left top;
|
61 |
+
}
|
62 |
+
.price-table.agency-feature {
|
63 |
+
border: 2px solid #cfd3fb;
|
64 |
+
box-shadow: 0 12px 44px rgba(96, 93, 236, .2);
|
65 |
+
}
|
66 |
+
.price-table.agency-feature .price-table-top {
|
67 |
+
background: url(../images/agency-price.png) no-repeat left top;
|
68 |
+
}
|
69 |
+
.price-tables {
|
70 |
+
margin: 30px 0 50px;
|
71 |
+
}
|
72 |
+
.plan-name {
|
73 |
+
font-size: 30px;
|
74 |
+
line-height: 36px;
|
75 |
+
font-weight: 700;
|
76 |
+
color: #28375a;
|
77 |
+
}
|
78 |
+
.plan-price {
|
79 |
+
position: absolute;
|
80 |
+
left: 12px;
|
81 |
+
top: 8px;
|
82 |
+
font-weight: 700;
|
83 |
+
font-size: 60px;
|
84 |
+
line-height: 72px;
|
85 |
+
color: #42b9fa;
|
86 |
+
}
|
87 |
+
.price-table.plus-feature .plan-price {
|
88 |
+
color: #ef8c6a;
|
89 |
+
}
|
90 |
+
.price-table.agency-feature .plan-price {
|
91 |
+
color: #605dec;
|
92 |
+
}
|
93 |
+
.price-table.agency-feature .plan-name {
|
94 |
+
color: #fff;
|
95 |
+
}
|
96 |
+
.price-head {
|
97 |
+
line-height: 72px;
|
98 |
+
padding: 5px 0 25px 0;
|
99 |
+
}
|
100 |
+
.price-offer, .price-websites {
|
101 |
+
line-height: 18px;
|
102 |
+
font-size: 15px;
|
103 |
+
}
|
104 |
+
.cus-tooltip {
|
105 |
+
cursor: pointer;
|
106 |
+
display: inline-block;
|
107 |
+
position: relative;
|
108 |
+
}
|
109 |
+
.cus-tooltip .tooltip__content {
|
110 |
+
background-color: #1849ab;
|
111 |
+
border-radius: 4px;
|
112 |
+
bottom: 150%;
|
113 |
+
color: #fff;
|
114 |
+
right: 0;
|
115 |
+
margin-right: 15px;
|
116 |
+
opacity: 0;
|
117 |
+
padding: 5px 10px;
|
118 |
+
position: absolute;
|
119 |
+
transition: opacity .25s;
|
120 |
+
visibility: hidden;
|
121 |
+
width: auto;
|
122 |
+
z-index: 1;
|
123 |
+
text-align: right;
|
124 |
+
margin-left: 15px;
|
125 |
+
font-size: 14px;
|
126 |
+
line-height: 20px;
|
127 |
+
}
|
128 |
+
.cus-tooltip .tooltip__content::after {
|
129 |
+
border-width: 5px;
|
130 |
+
border-style: solid;
|
131 |
+
border-color: #1849ab transparent transparent transparent;
|
132 |
+
content: "";
|
133 |
+
right: 25px;
|
134 |
+
margin-right: -5px;
|
135 |
+
position: absolute;
|
136 |
+
top: 100%}
|
137 |
+
.cus-tooltip:hover .tooltip__content {
|
138 |
+
opacity: 1;
|
139 |
+
visibility: visible;
|
140 |
+
}
|
141 |
+
.price-table-middle ul {
|
142 |
+
list-style: none;
|
143 |
+
margin: 0;
|
144 |
+
padding: 0;
|
145 |
+
}
|
146 |
+
.price-table-middle ul li {
|
147 |
+
display: block;
|
148 |
+
width: 100%;
|
149 |
+
border-bottom: solid 1px #e9e9e9;
|
150 |
+
padding: 15px 0;
|
151 |
+
margin: 0;
|
152 |
+
}
|
153 |
+
.price-table-middle ul li a {
|
154 |
+
padding: 0 15px;
|
155 |
+
color: #28375a;
|
156 |
+
font-size: 16px;
|
157 |
+
line-height: 19px;
|
158 |
+
display: block;
|
159 |
+
text-decoration: none;
|
160 |
+
}
|
161 |
+
span.has-tooltip {
|
162 |
+
color: #605dec;
|
163 |
+
}
|
164 |
+
.price-table-bottom {
|
165 |
+
padding: 15px;
|
166 |
+
}
|
167 |
+
.price-table.is-fixed {
|
168 |
+
padding-bottom: 140px;
|
169 |
+
position: relative;
|
170 |
+
}
|
171 |
+
.price-table.is-fixed .price-table-bottom {
|
172 |
+
position: fixed;
|
173 |
+
left: 0;
|
174 |
+
width: 100%;
|
175 |
+
border-top: solid 2px #e9e9e9;
|
176 |
+
background: #fff;
|
177 |
+
}
|
178 |
+
.bottom-position {
|
179 |
+
position: absolute;
|
180 |
+
left: 0;/*------------------------------------------*/
|
181 |
+
bottom: 0;
|
182 |
+
height: 1px;
|
183 |
+
width: 1px;
|
184 |
+
}
|
185 |
+
.custom-dd-btn {
|
186 |
+
background: #fff;
|
187 |
+
border: 1px solid #e9e9e9;
|
188 |
+
border-radius: 6px;
|
189 |
+
height: 40px;
|
190 |
+
line-height: 40px;
|
191 |
+
width: 100%;
|
192 |
+
text-align: right;
|
193 |
+
padding: 0 15px;
|
194 |
+
}
|
195 |
+
.custom-dd {
|
196 |
+
margin-bottom: 15px;
|
197 |
+
}
|
198 |
+
.price-table-bottom a {
|
199 |
+
background: #fff;
|
200 |
+
border: 1px solid #42b9fa;
|
201 |
+
color: #42b9fa;
|
202 |
+
border-radius: 20px;
|
203 |
+
height: 40px;
|
204 |
+
line-height: 38px;
|
205 |
+
padding: 0 15px;
|
206 |
+
display: block;
|
207 |
+
text-align: center;
|
208 |
+
transition: all .25s linear;
|
209 |
+
}
|
210 |
+
.price-table-bottom a:hover {
|
211 |
+
color: #fff;
|
212 |
+
background: #42b9fa;
|
213 |
+
}
|
214 |
+
.price-table.plus-feature .price-table-bottom a {
|
215 |
+
background: #ef8c6a;
|
216 |
+
border: 1px solid #ef8c6a;
|
217 |
+
color: #fff;
|
218 |
+
}
|
219 |
+
.price-table.plus-feature .price-table-bottom a:hover {
|
220 |
+
background: #fff;
|
221 |
+
color: #ef8c6a;
|
222 |
+
}
|
223 |
+
.price-table.agency-feature .price-table-bottom a {
|
224 |
+
background: #fff;
|
225 |
+
border: 1px solid #605dec;
|
226 |
+
color: #605dec;
|
227 |
+
}
|
228 |
+
.price-table.agency-feature .price-table-bottom a:hover {
|
229 |
+
background: #605dec;
|
230 |
+
color: #fff;
|
231 |
+
}
|
232 |
+
.container {
|
233 |
+
max-width: 1180px;
|
234 |
+
width: 100%;
|
235 |
+
padding: 30px;
|
236 |
+
background: #fff;
|
237 |
+
border-radius: 15px;
|
238 |
+
margin: 50px auto;
|
239 |
+
box-sizing: border-box;
|
240 |
+
}
|
241 |
+
.row {
|
242 |
+
margin-left: -15px;
|
243 |
+
margin-right: -15px;
|
244 |
+
}
|
245 |
+
.col-md-4 {
|
246 |
+
padding-left: 15px;
|
247 |
+
padding-right: 15px;
|
248 |
+
width: 33.33333333%;
|
249 |
+
float: right;
|
250 |
+
box-sizing: border-box;
|
251 |
+
}
|
252 |
+
.select2-container--default .select2-selection--single {
|
253 |
+
background: #fff;
|
254 |
+
border: 1px solid #e9e9e9;
|
255 |
+
border-radius: 6px;
|
256 |
+
height: 40px;
|
257 |
+
line-height: 40px;
|
258 |
+
width: 100%;
|
259 |
+
text-align: right;
|
260 |
+
padding: 0 15px;
|
261 |
+
outline: 0;
|
262 |
+
}
|
263 |
+
span.select2.select2-container {
|
264 |
+
width: 100%!important;
|
265 |
+
}
|
266 |
+
.website-package {
|
267 |
+
padding: 0 15px;
|
268 |
+
line-height: 18px;
|
269 |
+
}
|
270 |
+
.select2-container--default .select2-results__option--highlighted[aria-selected] {
|
271 |
+
background-color: #5897fb;
|
272 |
+
color: #fff;
|
273 |
+
}
|
274 |
+
.website-package .select2-container--default .select2-results>.select2-results__options {
|
275 |
+
margin-top: 5px;
|
276 |
+
}
|
277 |
+
.custom-dd .select2-container--default .select2-selection--single .select2-selection__arrow {
|
278 |
+
height: 20px;
|
279 |
+
top: 10px;
|
280 |
+
left: 1px;
|
281 |
+
width: 20px;
|
282 |
+
}
|
283 |
+
@media (min-width:768px) {
|
284 |
+
.col-sm-4 {
|
285 |
+
width: 100%;
|
286 |
+
float: none;
|
287 |
+
}
|
288 |
+
}a, a:focus, a:hover {
|
289 |
+
text-decoration: none;
|
290 |
+
}
|
291 |
+
.select2-container--default .select2-selection--single .select2-selection__rendered {
|
292 |
+
color: #444;
|
293 |
+
line-height: 38px;
|
294 |
+
}
|
295 |
+
.select2-results__option {
|
296 |
+
user-select: none;
|
297 |
+
-webkit-user-select: none;
|
298 |
+
font-size: 14px;
|
299 |
+
padding: 8px 25px;
|
300 |
+
margin: 0;
|
301 |
+
}
|
302 |
+
.select2-dropdown {
|
303 |
+
border: 1px solid #e9e9e9;
|
304 |
+
}
|
305 |
+
.price-after {
|
306 |
+
padding: 0;
|
307 |
+
text-align: center;
|
308 |
+
font-size: 16px;
|
309 |
+
line-height: 25px;
|
310 |
+
font-family: Lato, sans-serif;
|
311 |
+
}
|
312 |
+
.price-after p, .price-after span {
|
313 |
+
font-size: 16px;
|
314 |
+
line-height: 25px;
|
315 |
+
margin: 0;
|
316 |
+
padding: 0;
|
317 |
+
}
|
318 |
+
.clearfix {
|
319 |
+
clear: both;
|
320 |
+
}
|
321 |
+
.price-after span {
|
322 |
+
display: inline-block;
|
323 |
+
vertical-align: text-top;
|
324 |
+
font-size: 20px;
|
325 |
+
color: #42b9fa;
|
326 |
+
}
|
327 |
+
.payments {
|
328 |
+
padding: 20px 0 10px;
|
329 |
+
}
|
330 |
+
.folder-testimonial-list {
|
331 |
+
width: 100%;
|
332 |
+
margin: 30px auto 0;
|
333 |
+
font-family: Lato, sans-serif;
|
334 |
+
}
|
335 |
+
.folder-testimonial {
|
336 |
+
position: relative;
|
337 |
+
}
|
338 |
+
.folder-testimonial .testimonial-image {
|
339 |
+
position: absolute;
|
340 |
+
height: 60px;
|
341 |
+
width: 60px;
|
342 |
+
top: 50%;
|
343 |
+
margin-top: -30px;
|
344 |
+
z-index: 1;
|
345 |
+
overflow: hidden;
|
346 |
+
border-radius: 30px;
|
347 |
+
}
|
348 |
+
.folder-testimonial .testimonial-image img {
|
349 |
+
width: 100%;
|
350 |
+
height: auto;
|
351 |
+
}
|
352 |
+
.folder-testimonial .testimonial-data {
|
353 |
+
position: relative;
|
354 |
+
margin-right: 30px;
|
355 |
+
font-size: 16px;
|
356 |
+
line-height: 22px;
|
357 |
+
padding: 10px 10px 10px 40px;
|
358 |
+
background: #f5f5f5;
|
359 |
+
border-radius: 4px;
|
360 |
+
}
|
361 |
+
.testimonial-title {
|
362 |
+
font-weight: 700;
|
363 |
+
font-size: 18px;
|
364 |
+
padding: 0 0 5px;
|
365 |
+
}
|
366 |
+
.testimonial-author {
|
367 |
+
font-size: 16px;
|
368 |
+
font-style: italic;
|
369 |
+
font-weight: 500;
|
370 |
+
padding: 5px 0 0;
|
371 |
+
}
|
372 |
+
.plan-price span {
|
373 |
+
font-size: 16px;
|
374 |
+
color: #28375a;
|
375 |
+
}
|
376 |
+
.price-table-middle {
|
377 |
+
margin-top: 21px;
|
378 |
+
}
|
379 |
+
.agency-feature .price-table-middle {
|
380 |
+
margin-top: 0;
|
381 |
+
}
|
382 |
+
.website-package .select2-container--default .select2-selection--single {
|
383 |
+
border: 1px solid #6156f6;
|
384 |
+
box-shadow: 0 12px 44px rgba(96, 93, 236, .2);
|
385 |
+
}
|
386 |
+
.website-package .select2-container--default .select2-selection--single .select2-selection__rendered {
|
387 |
+
color: #6156f6;
|
388 |
+
}
|
389 |
+
.website-package .select2-container--default .select2-selection--single .select2-selection__arrow b {
|
390 |
+
border-color: #6156f6 transparent transparent transparent;
|
391 |
+
}
|
392 |
+
.website-package .select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow b {
|
393 |
+
border-color: transparent transparent #6156f6 transparent;
|
394 |
+
border-width: 0 4px 5px 4px;
|
395 |
+
}
|
396 |
+
.folders-tabs {
|
397 |
+
max-width: inherit;
|
398 |
+
}
|
399 |
+
.basic-feature .price-table-bottom .select2-container--default .select2-selection--single {
|
400 |
+
border: 1px solid #42b9fa;
|
401 |
+
box-shadow: 0 12px 44px rgba(66, 182, 250, .2);
|
402 |
+
}
|
403 |
+
.basic-feature .select2-container--default .select2-selection--single .select2-selection__arrow b {
|
404 |
+
border-color: #42b9fa transparent transparent transparent;
|
405 |
+
}
|
406 |
+
.plus-feature .price-table-bottom .select2-container--default .select2-selection--single {
|
407 |
+
border: 1px solid #ef8c6a;
|
408 |
+
box-shadow: 0 12px 44px rgba(239, 140, 106, .2);
|
409 |
+
}
|
410 |
+
.plus-feature .select2-container--default .select2-selection--single .select2-selection__arrow b {
|
411 |
+
border-color: #ef8c6a transparent transparent transparent;
|
412 |
+
}
|
413 |
+
.agency-feature .price-table-bottom .select2-container--default .select2-selection--single {
|
414 |
+
border: 1px solid #6156f6;
|
415 |
+
box-shadow: 0 12px 44px rgba(96, 93, 236, .2);
|
416 |
+
}
|
417 |
+
.agency-feature .select2-container--default .select2-selection--single .select2-selection__arrow b {
|
418 |
+
border-color: #6156f6 transparent transparent transparent;
|
419 |
+
}
|
420 |
+
.basic-feature.price-table.is-fixed .price-table-bottom {
|
421 |
+
border-color: #b9eafd;
|
422 |
+
}
|
423 |
+
.plus-feature.price-table.is-fixed .price-table-bottom {
|
424 |
+
border-color: #f9d9bd;
|
425 |
+
}
|
426 |
+
.agency-feature.price-table.is-fixed .price-table-bottom {
|
427 |
+
border-color: #cfd3fb;
|
428 |
+
}
|
429 |
+
.html-tooltip {
|
430 |
+
position: relative;
|
431 |
+
display: inline-block;
|
432 |
+
margin: 0;
|
433 |
+
padding: 0;
|
434 |
+
line-height: 1;
|
435 |
+
width: auto;
|
436 |
+
height: 20px;
|
437 |
+
vertical-align: middle;
|
438 |
+
}
|
439 |
+
.html-tooltip .tooltip-text {
|
440 |
+
visibility: hidden;
|
441 |
+
width: 300px;
|
442 |
+
background-color: #1849ab;
|
443 |
+
color: #fff;
|
444 |
+
text-align: center;
|
445 |
+
border-radius: 6px;
|
446 |
+
padding: 10px;
|
447 |
+
position: absolute;
|
448 |
+
z-index: 1201;
|
449 |
+
bottom: 125%;
|
450 |
+
right: 50%;
|
451 |
+
margin-right: -150px;
|
452 |
+
opacity: 0;
|
453 |
+
transition: opacity .3s;
|
454 |
+
font-size: 12px;
|
455 |
+
line-height: 18px;
|
456 |
+
top: 100%;
|
457 |
+
height: 354px;
|
458 |
+
}
|
459 |
+
.html-tooltip.side .tooltip-text {
|
460 |
+
bottom: 125%;
|
461 |
+
right: 100%;
|
462 |
+
margin-right: 0;
|
463 |
+
top: 5px;
|
464 |
+
transform: translateY(-50%);
|
465 |
+
-webkit-transform: translateY(-50%);
|
466 |
+
}
|
467 |
+
.html-tooltip.dynamic .tooltip-text {
|
468 |
+
height: 490px;
|
469 |
+
}
|
470 |
+
.html-tooltip:hover .tooltip-text {
|
471 |
+
visibility: visible;
|
472 |
+
opacity: 1;
|
473 |
+
}
|
474 |
+
.html-tooltip .tooltip-text img {
|
475 |
+
width: 100%;
|
476 |
+
height: auto;
|
477 |
+
display: block;
|
478 |
+
margin: 10px 0 0 0;
|
479 |
+
}
|
480 |
+
.html-tooltip.no-position .tooltip-text {
|
481 |
+
height: auto;
|
482 |
+
}
|
483 |
+
.html-tooltip .tooltip-text:after {
|
484 |
+
content: "";
|
485 |
+
position: absolute;
|
486 |
+
top: -10px;
|
487 |
+
right: 50%;
|
488 |
+
margin-right: -15px;
|
489 |
+
border-width: 5px;
|
490 |
+
border-style: solid;
|
491 |
+
border-color: #1849ab transparent transparent transparent;
|
492 |
+
transform: rotate(180deg);
|
493 |
+
-webkit-transform: rotate(180deg);
|
494 |
+
}
|
495 |
+
.html-tooltip.top .tooltip-text {
|
496 |
+
top: auto;
|
497 |
+
bottom: 100%;
|
498 |
+
margin-bottom: 5px;
|
499 |
+
}
|
500 |
+
.html-tooltip.top .tooltip-text:after {
|
501 |
+
top: 100%;
|
502 |
+
transform: rotate(0);
|
503 |
+
-webkit-transform: rotate(0);
|
504 |
+
}
|
505 |
+
.html-tooltip.side .tooltip-text:after {
|
506 |
+
display: none;
|
507 |
+
}
|
508 |
+
.pricing-table-body {
|
509 |
+
display: flex;
|
510 |
+
align-items: center;
|
511 |
+
}
|
512 |
+
.pricing-table-content {
|
513 |
+
flex: 1;
|
514 |
+
text-align: center;
|
515 |
+
background: #f8fafc;
|
516 |
+
min-height: 86px;
|
517 |
+
line-height: 20px;
|
518 |
+
padding: 10px 0;
|
519 |
+
border-bottom: solid 2px #f8fafc;
|
520 |
+
align-items: center;
|
521 |
+
font-size: 16px;
|
522 |
+
cursor: pointer;
|
523 |
+
position: relative;
|
524 |
+
transition: all .25s linear;
|
525 |
+
}
|
526 |
+
.pricing-table-content:before {
|
527 |
+
right: auto;
|
528 |
+
left: 0;
|
529 |
+
}
|
530 |
+
.pricing-table-header {
|
531 |
+
width: 720px;
|
532 |
+
margin: 40px auto 50px;
|
533 |
+
}
|
534 |
+
.pricing-discount-col span {
|
535 |
+
display: inline-block;
|
536 |
+
padding: 0 8px;
|
537 |
+
background: #94a3b8;
|
538 |
+
font-size: 14px;
|
539 |
+
line-height: 20px;
|
540 |
+
color: #fff;
|
541 |
+
border-radius: 20px;
|
542 |
+
margin: 4px 0 0;
|
543 |
+
transition: all .2s linear;
|
544 |
+
}
|
545 |
+
.pricing-table-content.active, .pricing-table-content:hover {
|
546 |
+
border-bottom: 2px solid #3c85f7;
|
547 |
+
color: #3c85f7;
|
548 |
+
background: #fff;
|
549 |
+
}
|
550 |
+
.pricing-table-content.active {
|
551 |
+
box-shadow: 0 10px 15px rgba(0, 0, 0, .1), 0 4px 6px rgba(0, 0, 0, .05);
|
552 |
+
}
|
553 |
+
.pricing-table-content.second {
|
554 |
+
border-right: 1px solid #cbd5e1;
|
555 |
+
border-left: 1px solid #cbd5e1;
|
556 |
+
}
|
557 |
+
.pricing-table-content.second.active .pricing-discount-col span, .pricing-table-content.second:hover .pricing-discount-col span {
|
558 |
+
color: #fff;
|
559 |
+
background: #ef8c6a;
|
560 |
+
}
|
561 |
+
.pricing-table-content.third.active .pricing-discount-col span, .pricing-table-content.third:hover .pricing-discount-col span {
|
562 |
+
background: #605dec;
|
563 |
+
color: #fff;
|
564 |
+
}
|
565 |
+
.pricing-table-content.first {
|
566 |
+
padding: 23px 0 0;
|
567 |
+
}
|
568 |
+
.year-col {
|
569 |
+
font-weight: 700;
|
570 |
+
}
|
571 |
+
@media (max-width:1320px) {
|
572 |
+
.plan-price {
|
573 |
+
font-size: 50px;
|
574 |
+
line-height: 64px;
|
575 |
+
}
|
576 |
+
}@media (max-width:1200px) {
|
577 |
+
.plan-price {
|
578 |
+
font-size: 40px;
|
579 |
+
line-height: 54px;
|
580 |
+
}
|
581 |
+
}@media (max-width:1100px) {
|
582 |
+
.plan-name {
|
583 |
+
font-size: 24px;
|
584 |
+
line-height: 36px;
|
585 |
+
}
|
586 |
+
}@media (max-width:1024px) {
|
587 |
+
.plan-price {
|
588 |
+
font-size: 30px;
|
589 |
+
line-height: 54px;
|
590 |
+
top: 15px;
|
591 |
+
}
|
592 |
+
}@media (max-width:920px) {
|
593 |
+
.col-md-4 {
|
594 |
+
padding-right: 5px;
|
595 |
+
padding-left: 5px;
|
596 |
+
}
|
597 |
+
}@media (max-width:840px) {
|
598 |
+
.col-md-4 {
|
599 |
+
padding: 0;
|
600 |
+
width: auto;
|
601 |
+
margin: 0 auto 30px;
|
602 |
+
float: none;
|
603 |
+
padding-right: 15px;
|
604 |
+
padding-left: 15px;
|
605 |
+
}
|
606 |
+
.plan-price {
|
607 |
+
font-size: 50px;
|
608 |
+
line-height: 64px;
|
609 |
+
}
|
610 |
+
.price-table.is-fixed {
|
611 |
+
padding-bottom: 15px;
|
612 |
+
position: relative;
|
613 |
+
}
|
614 |
+
.price-table.is-fixed .price-table-bottom {
|
615 |
+
position: relative;
|
616 |
+
left: 0;
|
617 |
+
width: 100%;
|
618 |
+
border-top: none;
|
619 |
+
background: #fff;
|
620 |
+
top: auto!important;
|
621 |
+
right: auto!important;
|
622 |
+
width: 100%!important;
|
623 |
+
}
|
624 |
Â
}
|
css/jquery.ui.datepicker.css
CHANGED
@@ -1,7 +1,7 @@
|
|
1 |
-
/*! jQuery UI - v1.12.1 - 2019-08-06
|
2 |
-
* http://jqueryui.com
|
3 |
-
* Includes: core.css, datepicker.css, theme.css
|
4 |
-
* To view and modify this theme, visit http://jqueryui.com/themeroller/?scope=&folderName=base&cornerRadiusShadow=8px&offsetLeftShadow=0px&offsetTopShadow=0px&thicknessShadow=5px&opacityShadow=30&bgImgOpacityShadow=0&bgTextureShadow=flat&bgColorShadow=666666&opacityOverlay=30&bgImgOpacityOverlay=0&bgTextureOverlay=flat&bgColorOverlay=aaaaaa&iconColorError=cc0000&fcError=5f3f3f&borderColorError=f1a899&bgTextureError=flat&bgColorError=fddfdf&iconColorHighlight=777620&fcHighlight=777620&borderColorHighlight=dad55e&bgTextureHighlight=flat&bgColorHighlight=fffa90&iconColorActive=ffffff&fcActive=ffffff&borderColorActive=003eff&bgTextureActive=flat&bgColorActive=007fff&iconColorHover=555555&fcHover=2b2b2b&borderColorHover=cccccc&bgTextureHover=flat&bgColorHover=ededed&iconColorDefault=777777&fcDefault=454545&borderColorDefault=c5c5c5&bgTextureDefault=flat&bgColorDefault=f6f6f6&iconColorContent=444444&fcContent=333333&borderColorContent=dddddd&bgTextureContent=flat&bgColorContent=ffffff&iconColorHeader=444444&fcHeader=333333&borderColorHeader=dddddd&bgTextureHeader=flat&bgColorHeader=e9e9e9&cornerRadius=3px&fwDefault=normal&fsDefault=1em&ffDefault=Arial%2CHelvetica%2Csans-serif
|
5 |
-
* Copyright jQuery Foundation and other contributors; Licensed MIT */
|
6 |
-
|
7 |
Â
.ui-helper-hidden{display:none}.ui-helper-hidden-accessible{border:0;clip:rect(0 0 0 0);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;width:1px}.ui-helper-reset{margin:0;padding:0;border:0;outline:0;line-height:1.3;text-decoration:none;font-size:100%;list-style:none}.ui-helper-clearfix:before,.ui-helper-clearfix:after{content:"";display:table;border-collapse:collapse}.ui-helper-clearfix:after{clear:both}.ui-helper-zfix{width:100%;height:100%;top:0;left:0;position:absolute;opacity:0;filter:Alpha(Opacity=0)}.ui-front{z-index:100}.ui-state-disabled{cursor:default!important;pointer-events:none}.ui-icon{display:inline-block;vertical-align:middle;margin-top:-.25em;position:relative;text-indent:-99999px;overflow:hidden;background-repeat:no-repeat}.ui-widget-icon-block{left:50%;margin-left:-8px;display:block}.ui-widget-overlay{position:fixed;top:0;left:0;width:100%;height:100%}.ui-datepicker{width:17em;padding:.2em .2em 0;display:none}.ui-datepicker .ui-datepicker-header{position:relative;padding:.2em 0}.ui-datepicker .ui-datepicker-prev,.ui-datepicker .ui-datepicker-next{position:absolute;top:2px;width:1.8em;height:1.8em}.ui-datepicker .ui-datepicker-prev-hover,.ui-datepicker .ui-datepicker-next-hover{top:1px}.ui-datepicker .ui-datepicker-prev{left:2px}.ui-datepicker .ui-datepicker-next{right:2px}.ui-datepicker .ui-datepicker-prev-hover{left:1px}.ui-datepicker .ui-datepicker-next-hover{right:1px}.ui-datepicker .ui-datepicker-prev span,.ui-datepicker .ui-datepicker-next span{display:block;position:absolute;left:50%;margin-left:-8px;top:50%;margin-top:-8px}.ui-datepicker .ui-datepicker-title{margin:0 2.3em;line-height:1.8em;text-align:center}.ui-datepicker .ui-datepicker-title select{font-size:1em;margin:1px 0}.ui-datepicker select.ui-datepicker-month,.ui-datepicker select.ui-datepicker-year{width:45%}.ui-datepicker table{width:100%;font-size:.9em;border-collapse:collapse;margin:0 0 .4em}.ui-datepicker th{padding:.7em .3em;text-align:center;font-weight:bold;border:0}.ui-datepicker td{border:0;padding:1px}.ui-datepicker td span,.ui-datepicker td a{display:block;padding:.2em;text-align:right;text-decoration:none}.ui-datepicker .ui-datepicker-buttonpane{background-image:none;margin:.7em 0 0 0;padding:0 .2em;border-left:0;border-right:0;border-bottom:0}.ui-datepicker .ui-datepicker-buttonpane button{float:right;margin:.5em .2em .4em;cursor:pointer;padding:.2em .6em .3em .6em;width:auto;overflow:visible}.ui-datepicker .ui-datepicker-buttonpane button.ui-datepicker-current{float:left}.ui-datepicker.ui-datepicker-multi{width:auto}.ui-datepicker-multi .ui-datepicker-group{float:left}.ui-datepicker-multi .ui-datepicker-group table{width:95%;margin:0 auto .4em}.ui-datepicker-multi-2 .ui-datepicker-group{width:50%}.ui-datepicker-multi-3 .ui-datepicker-group{width:33.3%}.ui-datepicker-multi-4 .ui-datepicker-group{width:25%}.ui-datepicker-multi .ui-datepicker-group-last .ui-datepicker-header,.ui-datepicker-multi .ui-datepicker-group-middle .ui-datepicker-header{border-left-width:0}.ui-datepicker-multi .ui-datepicker-buttonpane{clear:left}.ui-datepicker-row-break{clear:both;width:100%;font-size:0}.ui-datepicker-rtl{direction:rtl}.ui-datepicker-rtl .ui-datepicker-prev{right:2px;left:auto}.ui-datepicker-rtl .ui-datepicker-next{left:2px;right:auto}.ui-datepicker-rtl .ui-datepicker-prev:hover{right:1px;left:auto}.ui-datepicker-rtl .ui-datepicker-next:hover{left:1px;right:auto}.ui-datepicker-rtl .ui-datepicker-buttonpane{clear:right}.ui-datepicker-rtl .ui-datepicker-buttonpane button{float:left}.ui-datepicker-rtl .ui-datepicker-buttonpane button.ui-datepicker-current,.ui-datepicker-rtl .ui-datepicker-group{float:right}.ui-datepicker-rtl .ui-datepicker-group-last .ui-datepicker-header,.ui-datepicker-rtl .ui-datepicker-group-middle .ui-datepicker-header{border-right-width:0;border-left-width:1px}.ui-datepicker .ui-icon{display:block;text-indent:-99999px;overflow:hidden;background-repeat:no-repeat;left:.5em;top:.3em}.ui-widget{font-family:Arial,Helvetica,sans-serif;font-size:1em}.ui-widget .ui-widget{font-size:1em}.ui-widget input,.ui-widget select,.ui-widget textarea,.ui-widget button{font-family:Arial,Helvetica,sans-serif;font-size:1em}.ui-widget.ui-widget-content{border:1px solid #c5c5c5}.ui-widget-content{border:1px solid #ddd;background:#fff;color:#333}.ui-widget-content a{color:#333}.ui-widget-header{border:1px solid #ddd;background:#e9e9e9;color:#333;font-weight:bold}.ui-widget-header a{color:#333}.ui-state-default,.ui-widget-content .ui-state-default,.ui-widget-header .ui-state-default,.ui-button,html .ui-button.ui-state-disabled:hover,html .ui-button.ui-state-disabled:active{border:1px solid #c5c5c5;background:#f6f6f6;font-weight:normal;color:#454545}.ui-state-default a,.ui-state-default a:link,.ui-state-default a:visited,a.ui-button,a:link.ui-button,a:visited.ui-button,.ui-button{color:#454545;text-decoration:none}.ui-state-hover,.ui-widget-content .ui-state-hover,.ui-widget-header .ui-state-hover,.ui-state-focus,.ui-widget-content .ui-state-focus,.ui-widget-header .ui-state-focus,.ui-button:hover,.ui-button:focus{border:1px solid #ccc;background:#ededed;font-weight:normal;color:#2b2b2b}.ui-state-hover a,.ui-state-hover a:hover,.ui-state-hover a:link,.ui-state-hover a:visited,.ui-state-focus a,.ui-state-focus a:hover,.ui-state-focus a:link,.ui-state-focus a:visited,a.ui-button:hover,a.ui-button:focus{color:#2b2b2b;text-decoration:none}.ui-visual-focus{box-shadow:0 0 3px 1px rgb(94,158,214)}.ui-state-active,.ui-widget-content .ui-state-active,.ui-widget-header .ui-state-active,a.ui-button:active,.ui-button:active,.ui-button.ui-state-active:hover{border:1px solid #003eff;background:#007fff;font-weight:normal;color:#fff}.ui-icon-background,.ui-state-active .ui-icon-background{border:#003eff;background-color:#fff}.ui-state-active a,.ui-state-active a:link,.ui-state-active a:visited{color:#fff;text-decoration:none}.ui-state-highlight,.ui-widget-content .ui-state-highlight,.ui-widget-header .ui-state-highlight{border:1px solid #dad55e;background:#fffa90;color:#777620}.ui-state-checked{border:1px solid #dad55e;background:#fffa90}.ui-state-highlight a,.ui-widget-content .ui-state-highlight a,.ui-widget-header .ui-state-highlight a{color:#777620}.ui-state-error,.ui-widget-content .ui-state-error,.ui-widget-header .ui-state-error{border:1px solid #f1a899;background:#fddfdf;color:#5f3f3f}.ui-state-error a,.ui-widget-content .ui-state-error a,.ui-widget-header .ui-state-error a{color:#5f3f3f}.ui-state-error-text,.ui-widget-content .ui-state-error-text,.ui-widget-header .ui-state-error-text{color:#5f3f3f}.ui-priority-primary,.ui-widget-content .ui-priority-primary,.ui-widget-header .ui-priority-primary{font-weight:bold}.ui-priority-secondary,.ui-widget-content .ui-priority-secondary,.ui-widget-header .ui-priority-secondary{opacity:.7;filter:Alpha(Opacity=70);font-weight:normal}.ui-state-disabled,.ui-widget-content .ui-state-disabled,.ui-widget-header .ui-state-disabled{opacity:.35;filter:Alpha(Opacity=35);background-image:none}.ui-state-disabled .ui-icon{filter:Alpha(Opacity=35)}.ui-datepicker .ui-icon{width:16px;height:16px}.ui-icon,.ui-widget-content .ui-icon{background-image:url("images/ui-icons_444444_256x240.png")}.ui-widget-header .ui-icon{background-image:url("../images/ui-icons_444444_256x240.png")}.ui-state-hover .ui-icon,.ui-state-focus .ui-icon,.ui-button:hover .ui-icon,.ui-button:focus .ui-icon{background-image:url("../images/ui-icons_555555_256x240.png")}.ui-state-active .ui-icon,.ui-button:active .ui-icon{background-image:url("images/ui-icons_ffffff_256x240.png")}.ui-state-highlight .ui-icon,.ui-button .ui-state-highlight.ui-icon{background-image:url("images/ui-icons_777620_256x240.png")}.ui-state-error .ui-icon,.ui-state-error-text .ui-icon{background-image:url("images/ui-icons_cc0000_256x240.png")}.ui-button .ui-icon{background-image:url("images/ui-icons_777777_256x240.png")}.ui-icon-blank{background-position:16px 16px}.ui-icon-caret-1-n{background-position:0 0}.ui-icon-caret-1-ne{background-position:-16px 0}.ui-icon-caret-1-e{background-position:-32px 0}.ui-icon-caret-1-se{background-position:-48px 0}.ui-icon-caret-1-s{background-position:-65px 0}.ui-icon-caret-1-sw{background-position:-80px 0}.ui-icon-caret-1-w{background-position:-96px 0}.ui-icon-caret-1-nw{background-position:-112px 0}.ui-icon-caret-2-n-s{background-position:-128px 0}.ui-icon-caret-2-e-w{background-position:-144px 0}.ui-icon-triangle-1-n{background-position:0 -16px}.ui-icon-triangle-1-ne{background-position:-16px -16px}.ui-icon-triangle-1-e{background-position:-32px -16px}.ui-icon-triangle-1-se{background-position:-48px -16px}.ui-icon-triangle-1-s{background-position:-65px -16px}.ui-icon-triangle-1-sw{background-position:-80px -16px}.ui-icon-triangle-1-w{background-position:-96px -16px}.ui-icon-triangle-1-nw{background-position:-112px -16px}.ui-icon-triangle-2-n-s{background-position:-128px -16px}.ui-icon-triangle-2-e-w{background-position:-144px -16px}.ui-icon-arrow-1-n{background-position:0 -32px}.ui-icon-arrow-1-ne{background-position:-16px -32px}.ui-icon-arrow-1-e{background-position:-32px -32px}.ui-icon-arrow-1-se{background-position:-48px -32px}.ui-icon-arrow-1-s{background-position:-65px -32px}.ui-icon-arrow-1-sw{background-position:-80px -32px}.ui-icon-arrow-1-w{background-position:-96px -32px}.ui-icon-arrow-1-nw{background-position:-112px -32px}.ui-icon-arrow-2-n-s{background-position:-128px -32px}.ui-icon-arrow-2-ne-sw{background-position:-144px -32px}.ui-icon-arrow-2-e-w{background-position:-160px -32px}.ui-icon-arrow-2-se-nw{background-position:-176px -32px}.ui-icon-arrowstop-1-n{background-position:-192px -32px}.ui-icon-arrowstop-1-e{background-position:-208px -32px}.ui-icon-arrowstop-1-s{background-position:-224px -32px}.ui-icon-arrowstop-1-w{background-position:-240px -32px}.ui-icon-arrowthick-1-n{background-position:1px -48px}.ui-icon-arrowthick-1-ne{background-position:-16px -48px}.ui-icon-arrowthick-1-e{background-position:-32px -48px}.ui-icon-arrowthick-1-se{background-position:-48px -48px}.ui-icon-arrowthick-1-s{background-position:-64px -48px}.ui-icon-arrowthick-1-sw{background-position:-80px -48px}.ui-icon-arrowthick-1-w{background-position:-96px -48px}.ui-icon-arrowthick-1-nw{background-position:-112px -48px}.ui-icon-arrowthick-2-n-s{background-position:-128px -48px}.ui-icon-arrowthick-2-ne-sw{background-position:-144px -48px}.ui-icon-arrowthick-2-e-w{background-position:-160px -48px}.ui-icon-arrowthick-2-se-nw{background-position:-176px -48px}.ui-icon-arrowthickstop-1-n{background-position:-192px -48px}.ui-icon-arrowthickstop-1-e{background-position:-208px -48px}.ui-icon-arrowthickstop-1-s{background-position:-224px -48px}.ui-icon-arrowthickstop-1-w{background-position:-240px -48px}.ui-icon-arrowreturnthick-1-w{background-position:0 -64px}.ui-icon-arrowreturnthick-1-n{background-position:-16px -64px}.ui-icon-arrowreturnthick-1-e{background-position:-32px -64px}.ui-icon-arrowreturnthick-1-s{background-position:-48px -64px}.ui-icon-arrowreturn-1-w{background-position:-64px -64px}.ui-icon-arrowreturn-1-n{background-position:-80px -64px}.ui-icon-arrowreturn-1-e{background-position:-96px -64px}.ui-icon-arrowreturn-1-s{background-position:-112px -64px}.ui-icon-arrowrefresh-1-w{background-position:-128px -64px}.ui-icon-arrowrefresh-1-n{background-position:-144px -64px}.ui-icon-arrowrefresh-1-e{background-position:-160px -64px}.ui-icon-arrowrefresh-1-s{background-position:-176px -64px}.ui-icon-arrow-4{background-position:0 -80px}.ui-icon-arrow-4-diag{background-position:-16px -80px}.ui-icon-extlink{background-position:-32px -80px}.ui-icon-newwin{background-position:-48px -80px}.ui-icon-refresh{background-position:-64px -80px}.ui-icon-shuffle{background-position:-80px -80px}.ui-icon-transfer-e-w{background-position:-96px -80px}.ui-icon-transferthick-e-w{background-position:-112px -80px}.ui-icon-folder-collapsed{background-position:0 -96px}.ui-icon-folder-open{background-position:-16px -96px}.ui-icon-document{background-position:-32px -96px}.ui-icon-document-b{background-position:-48px -96px}.ui-icon-note{background-position:-64px -96px}.ui-icon-mail-closed{background-position:-80px -96px}.ui-icon-mail-open{background-position:-96px -96px}.ui-icon-suitcase{background-position:-112px -96px}.ui-icon-comment{background-position:-128px -96px}.ui-icon-person{background-position:-144px -96px}.ui-icon-print{background-position:-160px -96px}.ui-icon-trash{background-position:-176px -96px}.ui-icon-locked{background-position:-192px -96px}.ui-icon-unlocked{background-position:-208px -96px}.ui-icon-bookmark{background-position:-224px -96px}.ui-icon-tag{background-position:-240px -96px}.ui-icon-home{background-position:0 -112px}.ui-icon-flag{background-position:-16px -112px}.ui-icon-calendar{background-position:-32px -112px}.ui-icon-cart{background-position:-48px -112px}.ui-icon-pencil{background-position:-64px -112px}.ui-icon-clock{background-position:-80px -112px}.ui-icon-disk{background-position:-96px -112px}.ui-icon-calculator{background-position:-112px -112px}.ui-icon-zoomin{background-position:-128px -112px}.ui-icon-zoomout{background-position:-144px -112px}.ui-icon-search{background-position:-160px -112px}.ui-icon-wrench{background-position:-176px -112px}.ui-icon-gear{background-position:-192px -112px}.ui-icon-heart{background-position:-208px -112px}.ui-icon-star{background-position:-224px -112px}.ui-icon-link{background-position:-240px -112px}.ui-icon-cancel{background-position:0 -128px}.ui-icon-plus{background-position:-16px -128px}.ui-icon-plusthick{background-position:-32px -128px}.ui-icon-minus{background-position:-48px -128px}.ui-icon-minusthick{background-position:-64px -128px}.ui-icon-close{background-position:-80px -128px}.ui-icon-closethick{background-position:-96px -128px}.ui-icon-key{background-position:-112px -128px}.ui-icon-lightbulb{background-position:-128px -128px}.ui-icon-scissors{background-position:-144px -128px}.ui-icon-clipboard{background-position:-160px -128px}.ui-icon-copy{background-position:-176px -128px}.ui-icon-contact{background-position:-192px -128px}.ui-icon-image{background-position:-208px -128px}.ui-icon-video{background-position:-224px -128px}.ui-icon-script{background-position:-240px -128px}.ui-icon-alert{background-position:0 -144px}.ui-icon-info{background-position:-16px -144px}.ui-icon-notice{background-position:-32px -144px}.ui-icon-help{background-position:-48px -144px}.ui-icon-check{background-position:-64px -144px}.ui-icon-bullet{background-position:-80px -144px}.ui-icon-radio-on{background-position:-96px -144px}.ui-icon-radio-off{background-position:-112px -144px}.ui-icon-pin-w{background-position:-128px -144px}.ui-icon-pin-s{background-position:-144px -144px}.ui-icon-play{background-position:0 -160px}.ui-icon-pause{background-position:-16px -160px}.ui-icon-seek-next{background-position:-32px -160px}.ui-icon-seek-prev{background-position:-48px -160px}.ui-icon-seek-end{background-position:-64px -160px}.ui-icon-seek-start{background-position:-80px -160px}.ui-icon-seek-first{background-position:-80px -160px}.ui-icon-stop{background-position:-96px -160px}.ui-icon-eject{background-position:-112px -160px}.ui-icon-volume-off{background-position:-128px -160px}.ui-icon-volume-on{background-position:-144px -160px}.ui-icon-power{background-position:0 -176px}.ui-icon-signal-diag{background-position:-16px -176px}.ui-icon-signal{background-position:-32px -176px}.ui-icon-battery-0{background-position:-48px -176px}.ui-icon-battery-1{background-position:-64px -176px}.ui-icon-battery-2{background-position:-80px -176px}.ui-icon-battery-3{background-position:-96px -176px}.ui-icon-circle-plus{background-position:0 -192px}.ui-icon-circle-minus{background-position:-16px -192px}.ui-icon-circle-close{background-position:-32px -192px}.ui-icon-circle-triangle-e{background-position:-48px -192px}.ui-icon-circle-triangle-s{background-position:-64px -192px}.ui-icon-circle-triangle-w{background-position:-80px -192px}.ui-icon-circle-triangle-n{background-position:-96px -192px}.ui-icon-circle-arrow-e{background-position:-112px -192px}.ui-icon-circle-arrow-s{background-position:-128px -192px}.ui-icon-circle-arrow-w{background-position:-144px -192px}.ui-icon-circle-arrow-n{background-position:-160px -192px}.ui-icon-circle-zoomin{background-position:-176px -192px}.ui-icon-circle-zoomout{background-position:-192px -192px}.ui-icon-circle-check{background-position:-208px -192px}.ui-icon-circlesmall-plus{background-position:0 -208px}.ui-icon-circlesmall-minus{background-position:-16px -208px}.ui-icon-circlesmall-close{background-position:-32px -208px}.ui-icon-squaresmall-plus{background-position:-48px -208px}.ui-icon-squaresmall-minus{background-position:-64px -208px}.ui-icon-squaresmall-close{background-position:-80px -208px}.ui-icon-grip-dotted-vertical{background-position:0 -224px}.ui-icon-grip-dotted-horizontal{background-position:-16px -224px}.ui-icon-grip-solid-vertical{background-position:-32px -224px}.ui-icon-grip-solid-horizontal{background-position:-48px -224px}.ui-icon-gripsmall-diagonal-se{background-position:-64px -224px}.ui-icon-grip-diagonal-se{background-position:-80px -224px}.ui-corner-all,.ui-corner-top,.ui-corner-left,.ui-corner-tl{border-top-left-radius:3px}.ui-corner-all,.ui-corner-top,.ui-corner-right,.ui-corner-tr{border-top-right-radius:3px}.ui-corner-all,.ui-corner-bottom,.ui-corner-left,.ui-corner-bl{border-bottom-left-radius:3px}.ui-corner-all,.ui-corner-bottom,.ui-corner-right,.ui-corner-br{border-bottom-right-radius:3px}.ui-widget-overlay{background:#aaa;opacity:.3;filter:Alpha(Opacity=30)}.ui-widget-shadow{-webkit-box-shadow:0 0 5px #666;box-shadow:0 0 5px #666}
|
1 |
+
/*! jQuery UI - v1.12.1 - 2019-08-06
|
2 |
+
* http://jqueryui.com
|
3 |
+
* Includes: core.css, datepicker.css, theme.css
|
4 |
+
* To view and modify this theme, visit http://jqueryui.com/themeroller/?scope=&folderName=base&cornerRadiusShadow=8px&offsetLeftShadow=0px&offsetTopShadow=0px&thicknessShadow=5px&opacityShadow=30&bgImgOpacityShadow=0&bgTextureShadow=flat&bgColorShadow=666666&opacityOverlay=30&bgImgOpacityOverlay=0&bgTextureOverlay=flat&bgColorOverlay=aaaaaa&iconColorError=cc0000&fcError=5f3f3f&borderColorError=f1a899&bgTextureError=flat&bgColorError=fddfdf&iconColorHighlight=777620&fcHighlight=777620&borderColorHighlight=dad55e&bgTextureHighlight=flat&bgColorHighlight=fffa90&iconColorActive=ffffff&fcActive=ffffff&borderColorActive=003eff&bgTextureActive=flat&bgColorActive=007fff&iconColorHover=555555&fcHover=2b2b2b&borderColorHover=cccccc&bgTextureHover=flat&bgColorHover=ededed&iconColorDefault=777777&fcDefault=454545&borderColorDefault=c5c5c5&bgTextureDefault=flat&bgColorDefault=f6f6f6&iconColorContent=444444&fcContent=333333&borderColorContent=dddddd&bgTextureContent=flat&bgColorContent=ffffff&iconColorHeader=444444&fcHeader=333333&borderColorHeader=dddddd&bgTextureHeader=flat&bgColorHeader=e9e9e9&cornerRadius=3px&fwDefault=normal&fsDefault=1em&ffDefault=Arial%2CHelvetica%2Csans-serif
|
5 |
+
* Copyright jQuery Foundation and other contributors; Licensed MIT */
|
6 |
+
|
7 |
Â
.ui-helper-hidden{display:none}.ui-helper-hidden-accessible{border:0;clip:rect(0 0 0 0);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;width:1px}.ui-helper-reset{margin:0;padding:0;border:0;outline:0;line-height:1.3;text-decoration:none;font-size:100%;list-style:none}.ui-helper-clearfix:before,.ui-helper-clearfix:after{content:"";display:table;border-collapse:collapse}.ui-helper-clearfix:after{clear:both}.ui-helper-zfix{width:100%;height:100%;top:0;left:0;position:absolute;opacity:0;filter:Alpha(Opacity=0)}.ui-front{z-index:100}.ui-state-disabled{cursor:default!important;pointer-events:none}.ui-icon{display:inline-block;vertical-align:middle;margin-top:-.25em;position:relative;text-indent:-99999px;overflow:hidden;background-repeat:no-repeat}.ui-widget-icon-block{left:50%;margin-left:-8px;display:block}.ui-widget-overlay{position:fixed;top:0;left:0;width:100%;height:100%}.ui-datepicker{width:17em;padding:.2em .2em 0;display:none}.ui-datepicker .ui-datepicker-header{position:relative;padding:.2em 0}.ui-datepicker .ui-datepicker-prev,.ui-datepicker .ui-datepicker-next{position:absolute;top:2px;width:1.8em;height:1.8em}.ui-datepicker .ui-datepicker-prev-hover,.ui-datepicker .ui-datepicker-next-hover{top:1px}.ui-datepicker .ui-datepicker-prev{left:2px}.ui-datepicker .ui-datepicker-next{right:2px}.ui-datepicker .ui-datepicker-prev-hover{left:1px}.ui-datepicker .ui-datepicker-next-hover{right:1px}.ui-datepicker .ui-datepicker-prev span,.ui-datepicker .ui-datepicker-next span{display:block;position:absolute;left:50%;margin-left:-8px;top:50%;margin-top:-8px}.ui-datepicker .ui-datepicker-title{margin:0 2.3em;line-height:1.8em;text-align:center}.ui-datepicker .ui-datepicker-title select{font-size:1em;margin:1px 0}.ui-datepicker select.ui-datepicker-month,.ui-datepicker select.ui-datepicker-year{width:45%}.ui-datepicker table{width:100%;font-size:.9em;border-collapse:collapse;margin:0 0 .4em}.ui-datepicker th{padding:.7em .3em;text-align:center;font-weight:bold;border:0}.ui-datepicker td{border:0;padding:1px}.ui-datepicker td span,.ui-datepicker td a{display:block;padding:.2em;text-align:right;text-decoration:none}.ui-datepicker .ui-datepicker-buttonpane{background-image:none;margin:.7em 0 0 0;padding:0 .2em;border-left:0;border-right:0;border-bottom:0}.ui-datepicker .ui-datepicker-buttonpane button{float:right;margin:.5em .2em .4em;cursor:pointer;padding:.2em .6em .3em .6em;width:auto;overflow:visible}.ui-datepicker .ui-datepicker-buttonpane button.ui-datepicker-current{float:left}.ui-datepicker.ui-datepicker-multi{width:auto}.ui-datepicker-multi .ui-datepicker-group{float:left}.ui-datepicker-multi .ui-datepicker-group table{width:95%;margin:0 auto .4em}.ui-datepicker-multi-2 .ui-datepicker-group{width:50%}.ui-datepicker-multi-3 .ui-datepicker-group{width:33.3%}.ui-datepicker-multi-4 .ui-datepicker-group{width:25%}.ui-datepicker-multi .ui-datepicker-group-last .ui-datepicker-header,.ui-datepicker-multi .ui-datepicker-group-middle .ui-datepicker-header{border-left-width:0}.ui-datepicker-multi .ui-datepicker-buttonpane{clear:left}.ui-datepicker-row-break{clear:both;width:100%;font-size:0}.ui-datepicker-rtl{direction:rtl}.ui-datepicker-rtl .ui-datepicker-prev{right:2px;left:auto}.ui-datepicker-rtl .ui-datepicker-next{left:2px;right:auto}.ui-datepicker-rtl .ui-datepicker-prev:hover{right:1px;left:auto}.ui-datepicker-rtl .ui-datepicker-next:hover{left:1px;right:auto}.ui-datepicker-rtl .ui-datepicker-buttonpane{clear:right}.ui-datepicker-rtl .ui-datepicker-buttonpane button{float:left}.ui-datepicker-rtl .ui-datepicker-buttonpane button.ui-datepicker-current,.ui-datepicker-rtl .ui-datepicker-group{float:right}.ui-datepicker-rtl .ui-datepicker-group-last .ui-datepicker-header,.ui-datepicker-rtl .ui-datepicker-group-middle .ui-datepicker-header{border-right-width:0;border-left-width:1px}.ui-datepicker .ui-icon{display:block;text-indent:-99999px;overflow:hidden;background-repeat:no-repeat;left:.5em;top:.3em}.ui-widget{font-family:Arial,Helvetica,sans-serif;font-size:1em}.ui-widget .ui-widget{font-size:1em}.ui-widget input,.ui-widget select,.ui-widget textarea,.ui-widget button{font-family:Arial,Helvetica,sans-serif;font-size:1em}.ui-widget.ui-widget-content{border:1px solid #c5c5c5}.ui-widget-content{border:1px solid #ddd;background:#fff;color:#333}.ui-widget-content a{color:#333}.ui-widget-header{border:1px solid #ddd;background:#e9e9e9;color:#333;font-weight:bold}.ui-widget-header a{color:#333}.ui-state-default,.ui-widget-content .ui-state-default,.ui-widget-header .ui-state-default,.ui-button,html .ui-button.ui-state-disabled:hover,html .ui-button.ui-state-disabled:active{border:1px solid #c5c5c5;background:#f6f6f6;font-weight:normal;color:#454545}.ui-state-default a,.ui-state-default a:link,.ui-state-default a:visited,a.ui-button,a:link.ui-button,a:visited.ui-button,.ui-button{color:#454545;text-decoration:none}.ui-state-hover,.ui-widget-content .ui-state-hover,.ui-widget-header .ui-state-hover,.ui-state-focus,.ui-widget-content .ui-state-focus,.ui-widget-header .ui-state-focus,.ui-button:hover,.ui-button:focus{border:1px solid #ccc;background:#ededed;font-weight:normal;color:#2b2b2b}.ui-state-hover a,.ui-state-hover a:hover,.ui-state-hover a:link,.ui-state-hover a:visited,.ui-state-focus a,.ui-state-focus a:hover,.ui-state-focus a:link,.ui-state-focus a:visited,a.ui-button:hover,a.ui-button:focus{color:#2b2b2b;text-decoration:none}.ui-visual-focus{box-shadow:0 0 3px 1px rgb(94,158,214)}.ui-state-active,.ui-widget-content .ui-state-active,.ui-widget-header .ui-state-active,a.ui-button:active,.ui-button:active,.ui-button.ui-state-active:hover{border:1px solid #003eff;background:#007fff;font-weight:normal;color:#fff}.ui-icon-background,.ui-state-active .ui-icon-background{border:#003eff;background-color:#fff}.ui-state-active a,.ui-state-active a:link,.ui-state-active a:visited{color:#fff;text-decoration:none}.ui-state-highlight,.ui-widget-content .ui-state-highlight,.ui-widget-header .ui-state-highlight{border:1px solid #dad55e;background:#fffa90;color:#777620}.ui-state-checked{border:1px solid #dad55e;background:#fffa90}.ui-state-highlight a,.ui-widget-content .ui-state-highlight a,.ui-widget-header .ui-state-highlight a{color:#777620}.ui-state-error,.ui-widget-content .ui-state-error,.ui-widget-header .ui-state-error{border:1px solid #f1a899;background:#fddfdf;color:#5f3f3f}.ui-state-error a,.ui-widget-content .ui-state-error a,.ui-widget-header .ui-state-error a{color:#5f3f3f}.ui-state-error-text,.ui-widget-content .ui-state-error-text,.ui-widget-header .ui-state-error-text{color:#5f3f3f}.ui-priority-primary,.ui-widget-content .ui-priority-primary,.ui-widget-header .ui-priority-primary{font-weight:bold}.ui-priority-secondary,.ui-widget-content .ui-priority-secondary,.ui-widget-header .ui-priority-secondary{opacity:.7;filter:Alpha(Opacity=70);font-weight:normal}.ui-state-disabled,.ui-widget-content .ui-state-disabled,.ui-widget-header .ui-state-disabled{opacity:.35;filter:Alpha(Opacity=35);background-image:none}.ui-state-disabled .ui-icon{filter:Alpha(Opacity=35)}.ui-datepicker .ui-icon{width:16px;height:16px}.ui-icon,.ui-widget-content .ui-icon{background-image:url("images/ui-icons_444444_256x240.png")}.ui-widget-header .ui-icon{background-image:url("../images/ui-icons_444444_256x240.png")}.ui-state-hover .ui-icon,.ui-state-focus .ui-icon,.ui-button:hover .ui-icon,.ui-button:focus .ui-icon{background-image:url("../images/ui-icons_555555_256x240.png")}.ui-state-active .ui-icon,.ui-button:active .ui-icon{background-image:url("images/ui-icons_ffffff_256x240.png")}.ui-state-highlight .ui-icon,.ui-button .ui-state-highlight.ui-icon{background-image:url("images/ui-icons_777620_256x240.png")}.ui-state-error .ui-icon,.ui-state-error-text .ui-icon{background-image:url("images/ui-icons_cc0000_256x240.png")}.ui-button .ui-icon{background-image:url("images/ui-icons_777777_256x240.png")}.ui-icon-blank{background-position:16px 16px}.ui-icon-caret-1-n{background-position:0 0}.ui-icon-caret-1-ne{background-position:-16px 0}.ui-icon-caret-1-e{background-position:-32px 0}.ui-icon-caret-1-se{background-position:-48px 0}.ui-icon-caret-1-s{background-position:-65px 0}.ui-icon-caret-1-sw{background-position:-80px 0}.ui-icon-caret-1-w{background-position:-96px 0}.ui-icon-caret-1-nw{background-position:-112px 0}.ui-icon-caret-2-n-s{background-position:-128px 0}.ui-icon-caret-2-e-w{background-position:-144px 0}.ui-icon-triangle-1-n{background-position:0 -16px}.ui-icon-triangle-1-ne{background-position:-16px -16px}.ui-icon-triangle-1-e{background-position:-32px -16px}.ui-icon-triangle-1-se{background-position:-48px -16px}.ui-icon-triangle-1-s{background-position:-65px -16px}.ui-icon-triangle-1-sw{background-position:-80px -16px}.ui-icon-triangle-1-w{background-position:-96px -16px}.ui-icon-triangle-1-nw{background-position:-112px -16px}.ui-icon-triangle-2-n-s{background-position:-128px -16px}.ui-icon-triangle-2-e-w{background-position:-144px -16px}.ui-icon-arrow-1-n{background-position:0 -32px}.ui-icon-arrow-1-ne{background-position:-16px -32px}.ui-icon-arrow-1-e{background-position:-32px -32px}.ui-icon-arrow-1-se{background-position:-48px -32px}.ui-icon-arrow-1-s{background-position:-65px -32px}.ui-icon-arrow-1-sw{background-position:-80px -32px}.ui-icon-arrow-1-w{background-position:-96px -32px}.ui-icon-arrow-1-nw{background-position:-112px -32px}.ui-icon-arrow-2-n-s{background-position:-128px -32px}.ui-icon-arrow-2-ne-sw{background-position:-144px -32px}.ui-icon-arrow-2-e-w{background-position:-160px -32px}.ui-icon-arrow-2-se-nw{background-position:-176px -32px}.ui-icon-arrowstop-1-n{background-position:-192px -32px}.ui-icon-arrowstop-1-e{background-position:-208px -32px}.ui-icon-arrowstop-1-s{background-position:-224px -32px}.ui-icon-arrowstop-1-w{background-position:-240px -32px}.ui-icon-arrowthick-1-n{background-position:1px -48px}.ui-icon-arrowthick-1-ne{background-position:-16px -48px}.ui-icon-arrowthick-1-e{background-position:-32px -48px}.ui-icon-arrowthick-1-se{background-position:-48px -48px}.ui-icon-arrowthick-1-s{background-position:-64px -48px}.ui-icon-arrowthick-1-sw{background-position:-80px -48px}.ui-icon-arrowthick-1-w{background-position:-96px -48px}.ui-icon-arrowthick-1-nw{background-position:-112px -48px}.ui-icon-arrowthick-2-n-s{background-position:-128px -48px}.ui-icon-arrowthick-2-ne-sw{background-position:-144px -48px}.ui-icon-arrowthick-2-e-w{background-position:-160px -48px}.ui-icon-arrowthick-2-se-nw{background-position:-176px -48px}.ui-icon-arrowthickstop-1-n{background-position:-192px -48px}.ui-icon-arrowthickstop-1-e{background-position:-208px -48px}.ui-icon-arrowthickstop-1-s{background-position:-224px -48px}.ui-icon-arrowthickstop-1-w{background-position:-240px -48px}.ui-icon-arrowreturnthick-1-w{background-position:0 -64px}.ui-icon-arrowreturnthick-1-n{background-position:-16px -64px}.ui-icon-arrowreturnthick-1-e{background-position:-32px -64px}.ui-icon-arrowreturnthick-1-s{background-position:-48px -64px}.ui-icon-arrowreturn-1-w{background-position:-64px -64px}.ui-icon-arrowreturn-1-n{background-position:-80px -64px}.ui-icon-arrowreturn-1-e{background-position:-96px -64px}.ui-icon-arrowreturn-1-s{background-position:-112px -64px}.ui-icon-arrowrefresh-1-w{background-position:-128px -64px}.ui-icon-arrowrefresh-1-n{background-position:-144px -64px}.ui-icon-arrowrefresh-1-e{background-position:-160px -64px}.ui-icon-arrowrefresh-1-s{background-position:-176px -64px}.ui-icon-arrow-4{background-position:0 -80px}.ui-icon-arrow-4-diag{background-position:-16px -80px}.ui-icon-extlink{background-position:-32px -80px}.ui-icon-newwin{background-position:-48px -80px}.ui-icon-refresh{background-position:-64px -80px}.ui-icon-shuffle{background-position:-80px -80px}.ui-icon-transfer-e-w{background-position:-96px -80px}.ui-icon-transferthick-e-w{background-position:-112px -80px}.ui-icon-folder-collapsed{background-position:0 -96px}.ui-icon-folder-open{background-position:-16px -96px}.ui-icon-document{background-position:-32px -96px}.ui-icon-document-b{background-position:-48px -96px}.ui-icon-note{background-position:-64px -96px}.ui-icon-mail-closed{background-position:-80px -96px}.ui-icon-mail-open{background-position:-96px -96px}.ui-icon-suitcase{background-position:-112px -96px}.ui-icon-comment{background-position:-128px -96px}.ui-icon-person{background-position:-144px -96px}.ui-icon-print{background-position:-160px -96px}.ui-icon-trash{background-position:-176px -96px}.ui-icon-locked{background-position:-192px -96px}.ui-icon-unlocked{background-position:-208px -96px}.ui-icon-bookmark{background-position:-224px -96px}.ui-icon-tag{background-position:-240px -96px}.ui-icon-home{background-position:0 -112px}.ui-icon-flag{background-position:-16px -112px}.ui-icon-calendar{background-position:-32px -112px}.ui-icon-cart{background-position:-48px -112px}.ui-icon-pencil{background-position:-64px -112px}.ui-icon-clock{background-position:-80px -112px}.ui-icon-disk{background-position:-96px -112px}.ui-icon-calculator{background-position:-112px -112px}.ui-icon-zoomin{background-position:-128px -112px}.ui-icon-zoomout{background-position:-144px -112px}.ui-icon-search{background-position:-160px -112px}.ui-icon-wrench{background-position:-176px -112px}.ui-icon-gear{background-position:-192px -112px}.ui-icon-heart{background-position:-208px -112px}.ui-icon-star{background-position:-224px -112px}.ui-icon-link{background-position:-240px -112px}.ui-icon-cancel{background-position:0 -128px}.ui-icon-plus{background-position:-16px -128px}.ui-icon-plusthick{background-position:-32px -128px}.ui-icon-minus{background-position:-48px -128px}.ui-icon-minusthick{background-position:-64px -128px}.ui-icon-close{background-position:-80px -128px}.ui-icon-closethick{background-position:-96px -128px}.ui-icon-key{background-position:-112px -128px}.ui-icon-lightbulb{background-position:-128px -128px}.ui-icon-scissors{background-position:-144px -128px}.ui-icon-clipboard{background-position:-160px -128px}.ui-icon-copy{background-position:-176px -128px}.ui-icon-contact{background-position:-192px -128px}.ui-icon-image{background-position:-208px -128px}.ui-icon-video{background-position:-224px -128px}.ui-icon-script{background-position:-240px -128px}.ui-icon-alert{background-position:0 -144px}.ui-icon-info{background-position:-16px -144px}.ui-icon-notice{background-position:-32px -144px}.ui-icon-help{background-position:-48px -144px}.ui-icon-check{background-position:-64px -144px}.ui-icon-bullet{background-position:-80px -144px}.ui-icon-radio-on{background-position:-96px -144px}.ui-icon-radio-off{background-position:-112px -144px}.ui-icon-pin-w{background-position:-128px -144px}.ui-icon-pin-s{background-position:-144px -144px}.ui-icon-play{background-position:0 -160px}.ui-icon-pause{background-position:-16px -160px}.ui-icon-seek-next{background-position:-32px -160px}.ui-icon-seek-prev{background-position:-48px -160px}.ui-icon-seek-end{background-position:-64px -160px}.ui-icon-seek-start{background-position:-80px -160px}.ui-icon-seek-first{background-position:-80px -160px}.ui-icon-stop{background-position:-96px -160px}.ui-icon-eject{background-position:-112px -160px}.ui-icon-volume-off{background-position:-128px -160px}.ui-icon-volume-on{background-position:-144px -160px}.ui-icon-power{background-position:0 -176px}.ui-icon-signal-diag{background-position:-16px -176px}.ui-icon-signal{background-position:-32px -176px}.ui-icon-battery-0{background-position:-48px -176px}.ui-icon-battery-1{background-position:-64px -176px}.ui-icon-battery-2{background-position:-80px -176px}.ui-icon-battery-3{background-position:-96px -176px}.ui-icon-circle-plus{background-position:0 -192px}.ui-icon-circle-minus{background-position:-16px -192px}.ui-icon-circle-close{background-position:-32px -192px}.ui-icon-circle-triangle-e{background-position:-48px -192px}.ui-icon-circle-triangle-s{background-position:-64px -192px}.ui-icon-circle-triangle-w{background-position:-80px -192px}.ui-icon-circle-triangle-n{background-position:-96px -192px}.ui-icon-circle-arrow-e{background-position:-112px -192px}.ui-icon-circle-arrow-s{background-position:-128px -192px}.ui-icon-circle-arrow-w{background-position:-144px -192px}.ui-icon-circle-arrow-n{background-position:-160px -192px}.ui-icon-circle-zoomin{background-position:-176px -192px}.ui-icon-circle-zoomout{background-position:-192px -192px}.ui-icon-circle-check{background-position:-208px -192px}.ui-icon-circlesmall-plus{background-position:0 -208px}.ui-icon-circlesmall-minus{background-position:-16px -208px}.ui-icon-circlesmall-close{background-position:-32px -208px}.ui-icon-squaresmall-plus{background-position:-48px -208px}.ui-icon-squaresmall-minus{background-position:-64px -208px}.ui-icon-squaresmall-close{background-position:-80px -208px}.ui-icon-grip-dotted-vertical{background-position:0 -224px}.ui-icon-grip-dotted-horizontal{background-position:-16px -224px}.ui-icon-grip-solid-vertical{background-position:-32px -224px}.ui-icon-grip-solid-horizontal{background-position:-48px -224px}.ui-icon-gripsmall-diagonal-se{background-position:-64px -224px}.ui-icon-grip-diagonal-se{background-position:-80px -224px}.ui-corner-all,.ui-corner-top,.ui-corner-left,.ui-corner-tl{border-top-left-radius:3px}.ui-corner-all,.ui-corner-top,.ui-corner-right,.ui-corner-tr{border-top-right-radius:3px}.ui-corner-all,.ui-corner-bottom,.ui-corner-left,.ui-corner-bl{border-bottom-left-radius:3px}.ui-corner-all,.ui-corner-bottom,.ui-corner-right,.ui-corner-br{border-bottom-right-radius:3px}.ui-widget-overlay{background:#aaa;opacity:.3;filter:Alpha(Opacity=30)}.ui-widget-shadow{-webkit-box-shadow:0 0 5px #666;box-shadow:0 0 5px #666}
|
css/mystickymenu-admin-rtl.css
CHANGED
@@ -1,3312 +1,3296 @@
|
|
1 |
-
|
2 |
-
|
3 |
-
|
4 |
-
|
5 |
-
|
6 |
-
|
7 |
-
|
8 |
-
|
9 |
-
-
|
10 |
-
|
11 |
-
|
12 |
-
|
13 |
-
|
14 |
-
|
15 |
-
|
16 |
-
|
17 |
-
font-
|
18 |
-
|
19 |
-
|
20 |
-
|
21 |
-
|
22 |
-
|
23 |
-
|
24 |
-
|
25 |
-
|
26 |
-
|
27 |
-
|
28 |
-
|
29 |
-
font-
|
30 |
-
|
31 |
-
|
32 |
-
|
33 |
-
|
34 |
-
|
35 |
-
|
36 |
-
|
37 |
-
url('../fonts/
|
38 |
-
font-weight:
|
39 |
-
font-style: normal;
|
40 |
-
|
41 |
-
|
42 |
-
|
43 |
-
|
44 |
-
|
45 |
-
|
46 |
-
|
47 |
-
|
48 |
-
|
49 |
-
|
50 |
-
|
51 |
-
|
52 |
-
|
53 |
-
|
54 |
-
|
55 |
-
|
56 |
-
|
57 |
-
|
58 |
-
|
59 |
-
|
60 |
-
|
61 |
-
|
62 |
-
}
|
63 |
-
|
64 |
-
|
65 |
-
font-family: 'Lato', sans-serif;
|
66 |
-
|
67 |
-
|
68 |
-
|
69 |
-
}
|
70 |
-
|
71 |
-
|
72 |
-
|
73 |
-
|
74 |
-
|
75 |
-
|
76 |
-
|
77 |
-
|
78 |
-
|
79 |
-
|
80 |
-
#
|
81 |
-
|
82 |
-
|
83 |
-
|
84 |
-
|
85 |
-
|
86 |
-
|
87 |
-
|
88 |
-
|
89 |
-
|
90 |
-
|
91 |
-
|
92 |
-
|
93 |
-
|
94 |
-
|
95 |
-
|
96 |
-
|
97 |
-
|
98 |
-
}
|
99 |
-
|
100 |
-
|
101 |
-
|
102 |
-
|
103 |
-
|
104 |
-
|
105 |
-
|
106 |
-
|
107 |
-
|
108 |
-
|
109 |
-
|
110 |
-
|
111 |
-
|
112 |
-
|
113 |
-
|
114 |
-
|
115 |
-
|
116 |
-
|
117 |
-
|
118 |
-
|
119 |
-
|
120 |
-
|
121 |
-
|
122 |
-
|
123 |
-
|
124 |
-
|
125 |
-
|
126 |
-
|
127 |
-
}
|
128 |
-
|
129 |
-
|
130 |
-
|
131 |
-
|
132 |
-
|
133 |
-
|
134 |
-
|
135 |
-
|
136 |
-
|
137 |
-
|
138 |
-
|
139 |
-
|
140 |
-
|
141 |
-
-
|
142 |
-
|
143 |
-
|
144 |
-
|
145 |
-
|
146 |
-
|
147 |
-
|
148 |
-
|
149 |
-
|
150 |
-
|
151 |
-
|
152 |
-
|
153 |
-
|
154 |
-
|
155 |
-
|
156 |
-
|
157 |
-
|
158 |
-
|
159 |
-
|
160 |
-
|
161 |
-
|
162 |
-
|
163 |
-
|
164 |
-
|
165 |
-
|
166 |
-
|
167 |
-
}
|
168 |
-
|
169 |
-
.pt_number {
|
170 |
-
|
171 |
-
|
172 |
-
|
173 |
-
}
|
174 |
-
|
175 |
-
.
|
176 |
-
|
177 |
-
|
178 |
-
|
179 |
-
|
180 |
-
|
181 |
-
|
182 |
-
|
183 |
-
|
184 |
-
|
185 |
-
|
186 |
-
|
187 |
-
|
188 |
-
|
189 |
-
|
190 |
-
|
191 |
-
|
192 |
-
|
193 |
-
|
194 |
-
|
195 |
-
|
196 |
-
|
197 |
-
|
198 |
-
|
199 |
-
|
200 |
-
|
201 |
-
|
202 |
-
|
203 |
-
|
204 |
-
|
205 |
-
|
206 |
-
|
207 |
-
|
208 |
-
|
209 |
-
|
210 |
-
|
211 |
-
|
212 |
-
|
213 |
-
|
214 |
-
|
215 |
-
height:
|
216 |
-
|
217 |
-
|
218 |
-
}
|
219 |
-
|
220 |
-
.mystickymenu-content-section
|
221 |
-
|
222 |
-
|
223 |
-
|
224 |
-
|
225 |
-
|
226 |
-
|
227 |
-
|
228 |
-
|
229 |
-
|
230 |
-
|
231 |
-
|
232 |
-
|
233 |
-
|
234 |
-
|
235 |
-
|
236 |
-
|
237 |
-
|
238 |
-
border-radius:
|
239 |
-
|
240 |
-
|
241 |
-
|
242 |
-
|
243 |
-
|
244 |
-
|
245 |
-
|
246 |
-
|
247 |
-
|
248 |
-
|
249 |
-
|
250 |
-
|
251 |
-
|
252 |
-
|
253 |
-
|
254 |
-
|
255 |
-
|
256 |
-
|
257 |
-
|
258 |
-
|
259 |
-
|
260 |
-
|
261 |
-
|
262 |
-
|
263 |
-
|
264 |
-
|
265 |
-
|
266 |
-
|
267 |
-
|
268 |
-
|
269 |
-
|
270 |
-
|
271 |
-
|
272 |
-
|
273 |
-
|
274 |
-
|
275 |
-
|
276 |
-
|
277 |
-
|
278 |
-
|
279 |
-
|
280 |
-
|
281 |
-
|
282 |
-
|
283 |
-
|
284 |
-
|
285 |
-
|
286 |
-
padding: 13px 20px;
|
287 |
-
|
288 |
-
|
289 |
-
|
290 |
-
|
291 |
-
|
292 |
-
|
293 |
-
|
294 |
-
|
295 |
-
|
296 |
-
|
297 |
-
|
298 |
-
|
299 |
-
|
300 |
-
|
301 |
-
|
302 |
-
|
303 |
-
|
304 |
-
|
305 |
-
|
306 |
-
|
307 |
-
|
308 |
-
|
309 |
-
|
310 |
-
|
311 |
-
}
|
312 |
-
|
313 |
-
.pt_numberbutton.
|
314 |
-
height: 25px;
|
315 |
-
width: 25px;
|
316 |
-
line-height: 25px;
|
317 |
-
background-color: #808080;
|
318 |
-
border-radius: 50%;
|
319 |
-
position:
|
320 |
-
|
321 |
-
|
322 |
-
|
323 |
-
|
324 |
-
|
325 |
-
|
326 |
-
|
327 |
-
}
|
328 |
-
|
329 |
-
.
|
330 |
-
height:
|
331 |
-
width:
|
332 |
-
|
333 |
-
|
334 |
-
|
335 |
-
|
336 |
-
|
337 |
-
|
338 |
-
|
339 |
-
|
340 |
-
|
341 |
-
|
342 |
-
text-align: center;
|
343 |
-
}
|