Version Description
Mobile bug fixed
Download this release
Release Info
Developer | galdub |
Plugin | myStickymenu |
Version | 2.4.9 |
Comparing to | |
See all releases |
Code changes from version 2.4.8 to 2.4.9
- class-review-box.php +278 -278
- css/admin-setting.css +1 -1
- css/jquery.ui.datepicker.css +6 -6
- css/mystickymenu-admin.css +2277 -2277
- css/select2.min.css +9 -9
- js/detectmobilebrowser.js +6 -6
- js/iris-script.js +58 -58
- js/mystickymenu-admin.js +380 -380
- js/mystickymenu.js +452 -452
- js/mystickymenu.min.js +1 -1
- 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 +239 -239
- mystickymenu-fonts.php +924 -924
- mystickymenu-popup.php +45 -45
- mystickymenu.php +1411 -1411
- mystickymeny-new-welcomebar.php +63 -63
- readme.txt +499 -497
- recommended-plugins.php +492 -492
- uninstall.php +7 -7
- upgrade-to-pro.php +167 -167
- welcome-bar.php +1845 -1845
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 $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 $this->plugin_slug ?>">
|
210 |
-
<button class="<?php echo $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 $this->plugin_slug ?>-premio-review-dismiss-btn, .<?php echo $this->plugin_slug ?>-premio-review-box-future-btn", function(){
|
238 |
-
jQuery(".<?php echo $this->plugin_slug ?>-review-box-popup").show();
|
239 |
-
});
|
240 |
-
jQuery(document).on("click", ".<?php echo $this->plugin_slug ?>-close-review-box-popup", function(){
|
241 |
-
jQuery(".<?php echo $this->plugin_slug ?>-review-box-popup").hide();
|
242 |
-
});
|
243 |
-
jQuery(document).on("click", ".<?php echo $this->plugin_slug ?>-close-thanks-btn", function(){
|
244 |
-
jQuery(".<?php echo $this->plugin_slug ?>-review-box-popup").remove();
|
245 |
-
jQuery(".<?php echo $this->plugin_slug ?>-premio-review-box").remove();
|
246 |
-
});
|
247 |
-
jQuery(document).on("click",".<?php echo $this->plugin_slug ?>-premio-review-box-hide-btn",function(){
|
248 |
-
jQuery("#default-review-box-<?php echo $this->plugin_slug ?>").hide();
|
249 |
-
jQuery("#review-thanks-<?php echo $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 $this->plugin_slug ?>-review-box-options a", function(){
|
260 |
-
var dataDays = jQuery(this).attr("data-days");
|
261 |
-
jQuery(".<?php echo $this->plugin_slug ?>-review-box-popup").remove();
|
262 |
-
jQuery(".<?php echo $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 $this->plugin_slug ?>-review-box-popup").remove();
|
270 |
-
jQuery(".<?php echo $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 $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 $this->plugin_slug ?>">
|
210 |
+
<button class="<?php echo $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 $this->plugin_slug ?>-premio-review-dismiss-btn, .<?php echo $this->plugin_slug ?>-premio-review-box-future-btn", function(){
|
238 |
+
jQuery(".<?php echo $this->plugin_slug ?>-review-box-popup").show();
|
239 |
+
});
|
240 |
+
jQuery(document).on("click", ".<?php echo $this->plugin_slug ?>-close-review-box-popup", function(){
|
241 |
+
jQuery(".<?php echo $this->plugin_slug ?>-review-box-popup").hide();
|
242 |
+
});
|
243 |
+
jQuery(document).on("click", ".<?php echo $this->plugin_slug ?>-close-thanks-btn", function(){
|
244 |
+
jQuery(".<?php echo $this->plugin_slug ?>-review-box-popup").remove();
|
245 |
+
jQuery(".<?php echo $this->plugin_slug ?>-premio-review-box").remove();
|
246 |
+
});
|
247 |
+
jQuery(document).on("click",".<?php echo $this->plugin_slug ?>-premio-review-box-hide-btn",function(){
|
248 |
+
jQuery("#default-review-box-<?php echo $this->plugin_slug ?>").hide();
|
249 |
+
jQuery("#review-thanks-<?php echo $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 $this->plugin_slug ?>-review-box-options a", function(){
|
260 |
+
var dataDays = jQuery(this).attr("data-days");
|
261 |
+
jQuery(".<?php echo $this->plugin_slug ?>-review-box-popup").remove();
|
262 |
+
jQuery(".<?php echo $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 $this->plugin_slug ?>-review-box-popup").remove();
|
270 |
+
jQuery(".<?php echo $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();
|
css/admin-setting.css
CHANGED
@@ -1 +1 @@
|
|
1 |
-
@import url(https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&display=swap);*,:after,:before{box-sizing:border-box}#wpwrap{background:#6572db;background:-moz-linear-gradient(-45deg,#6572db 0,#ee86c6 67%,#ee86c6 100%);background:-webkit-gradient(left top,right bottom,color-stop(0,#6572db),color-stop(67%,#ee86c6),color-stop(100%,#ee86c6));background:-webkit-linear-gradient(-45deg,#6572db 0,#ee86c6 67%,#ee86c6 100%);background:-o-linear-gradient(-45deg,#6572db 0,#ee86c6 67%,#ee86c6 100%);background:-ms-linear-gradient(-45deg,#6572db 0,#ee86c6 67%,#ee86c6 100%);background:linear-gradient(135deg,#6572db 0,#ee86c6 67%,#ee86c6 100%)}.pricing-table{margin:0 0 45px;color:#28375a;font-size:16px;line-height:25px;font-family:Lato,sans-serif}.price-title{font-weight:700;font-size:24px;line-height:30px;color:#28375a;text-align:center}.price-table{background:#fff;box-sizing:border-box;border-radius:10px}.price-table-top{padding:20px;position:relative;border-radius:10px}.price-table.basic-feature{box-shadow:0 12px 44px rgba(108,203,255,.2);border:2px solid #b9eafd}.price-table.basic-feature .price-table-top{background:url(../images/basic-price-bg.png) no-repeat left top}.price-table.plus-feature{border:2px solid #f9d9bd;box-shadow:0 12px 44px rgba(239,140,106,.2)}.price-table.plus-feature .price-table-top{background:url(../images/plus-price.png) no-repeat left top}.price-table.agency-feature{border:2px solid #cfd3fb;box-shadow:0 12px 44px rgba(96,93,236,.2)}.price-table.agency-feature .price-table-top{background:url(../images/agency-price.png) no-repeat left top}.price-tables{margin:30px 0 50px}.plan-name{font-size:30px;line-height:36px;font-weight:700;color:#28375a}.plan-price{position:absolute;right:18px;top:8px;font-weight:700;font-size:60px;line-height:72px;color:#42b9fa}.price-table.plus-feature .plan-price{color:#ef8c6a}.price-table.agency-feature .plan-price{color:#605dec}.price-table.agency-feature .plan-name{color:#fff}.price-head{line-height:72px;padding:5px 0 25px 0}.price-offer,.price-websites{line-height:18px;font-size:15px}.cus-tooltip{cursor:pointer;display:inline-block;position:relative}.cus-tooltip .tooltip__content{background-color:#1849ab;border-radius:4px;bottom:150%;color:#fff;left:0;margin-left:15px;opacity:0;padding:5px 10px;position:absolute;transition:opacity .25s;visibility:hidden;width:auto;z-index:1;text-align:left;margin-right:15px;font-size:14px;line-height:20px}.cus-tooltip .tooltip__content::after{border-width:5px;border-style:solid;border-color:#1849ab transparent transparent transparent;content:"";left:25px;margin-left:-5px;position:absolute;top:100%}.cus-tooltip:hover .tooltip__content{opacity:1;visibility:visible}.price-table-middle ul{list-style:none;margin:0;padding:0}.price-table-middle ul li{display:block;width:100%;border-bottom:solid 1px #e9e9e9;padding:15px 0;margin:0}.price-table-middle ul li a{padding:0 15px;color:#28375a;font-size:16px;line-height:19px;display:block;text-decoration:none}span.has-tooltip{color:#605dec}.price-table-bottom{padding:15px}.custom-dd-btn{background:#fff;border:1px solid #e9e9e9;border-radius:6px;height:40px;line-height:40px;width:100%;text-align:left;padding:0 15px}.custom-dd{margin-bottom:15px}.price-table-bottom a{background:#fff;border:1px solid #42b9fa;color:#42b9fa;border-radius:20px;height:40px;line-height:38px;padding:0 15px;display:block;text-align:center;transition:all .25s linear}.price-table-bottom a:hover{color:#fff;background:#42b9fa}.price-table.plus-feature .price-table-bottom a{background:#ef8c6a;border:1px solid #ef8c6a;color:#fff}.price-table.plus-feature .price-table-bottom a:hover{background:#fff;color:#ef8c6a}.price-table.agency-feature .price-table-bottom a{background:#fff;border:1px solid #605dec;color:#605dec}.price-table.agency-feature .price-table-bottom a:hover{background:#605dec;color:#fff}.container{max-width:1180px;width:100%;padding:30px;background:#fff;border-radius:15px;margin:
|
1 |
+
@import url(https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&display=swap);*,:after,:before{box-sizing:border-box}#wpwrap{background:#6572db;background:-moz-linear-gradient(-45deg,#6572db 0,#ee86c6 67%,#ee86c6 100%);background:-webkit-gradient(left top,right bottom,color-stop(0,#6572db),color-stop(67%,#ee86c6),color-stop(100%,#ee86c6));background:-webkit-linear-gradient(-45deg,#6572db 0,#ee86c6 67%,#ee86c6 100%);background:-o-linear-gradient(-45deg,#6572db 0,#ee86c6 67%,#ee86c6 100%);background:-ms-linear-gradient(-45deg,#6572db 0,#ee86c6 67%,#ee86c6 100%);background:linear-gradient(135deg,#6572db 0,#ee86c6 67%,#ee86c6 100%)}.pricing-table{margin:0 0 45px;color:#28375a;font-size:16px;line-height:25px;font-family:Lato,sans-serif}.price-title{font-weight:700;font-size:24px;line-height:30px;color:#28375a;text-align:center}.price-table{background:#fff;box-sizing:border-box;border-radius:10px}.price-table-top{padding:20px;position:relative;border-radius:10px}.price-table.basic-feature{box-shadow:0 12px 44px rgba(108,203,255,.2);border:2px solid #b9eafd}.price-table.basic-feature .price-table-top{background:url(../images/basic-price-bg.png) no-repeat left top}.price-table.plus-feature{border:2px solid #f9d9bd;box-shadow:0 12px 44px rgba(239,140,106,.2)}.price-table.plus-feature .price-table-top{background:url(../images/plus-price.png) no-repeat left top}.price-table.agency-feature{border:2px solid #cfd3fb;box-shadow:0 12px 44px rgba(96,93,236,.2)}.price-table.agency-feature .price-table-top{background:url(../images/agency-price.png) no-repeat left top}.price-tables{margin:30px 0 50px}.plan-name{font-size:30px;line-height:36px;font-weight:700;color:#28375a}.plan-price{position:absolute;right:18px;top:8px;font-weight:700;font-size:60px;line-height:72px;color:#42b9fa}.price-table.plus-feature .plan-price{color:#ef8c6a}.price-table.agency-feature .plan-price{color:#605dec}.price-table.agency-feature .plan-name{color:#fff}.price-head{line-height:72px;padding:5px 0 25px 0}.price-offer,.price-websites{line-height:18px;font-size:15px}.cus-tooltip{cursor:pointer;display:inline-block;position:relative}.cus-tooltip .tooltip__content{background-color:#1849ab;border-radius:4px;bottom:150%;color:#fff;left:0;margin-left:15px;opacity:0;padding:5px 10px;position:absolute;transition:opacity .25s;visibility:hidden;width:auto;z-index:1;text-align:left;margin-right:15px;font-size:14px;line-height:20px}.cus-tooltip .tooltip__content::after{border-width:5px;border-style:solid;border-color:#1849ab transparent transparent transparent;content:"";left:25px;margin-left:-5px;position:absolute;top:100%}.cus-tooltip:hover .tooltip__content{opacity:1;visibility:visible}.price-table-middle ul{list-style:none;margin:0;padding:0}.price-table-middle ul li{display:block;width:100%;border-bottom:solid 1px #e9e9e9;padding:15px 0;margin:0}.price-table-middle ul li a{padding:0 15px;color:#28375a;font-size:16px;line-height:19px;display:block;text-decoration:none}span.has-tooltip{color:#605dec}.price-table-bottom{padding:15px}.custom-dd-btn{background:#fff;border:1px solid #e9e9e9;border-radius:6px;height:40px;line-height:40px;width:100%;text-align:left;padding:0 15px}.custom-dd{margin-bottom:15px}.price-table-bottom a{background:#fff;border:1px solid #42b9fa;color:#42b9fa;border-radius:20px;height:40px;line-height:38px;padding:0 15px;display:block;text-align:center;transition:all .25s linear}.price-table-bottom a:hover{color:#fff;background:#42b9fa}.price-table.plus-feature .price-table-bottom a{background:#ef8c6a;border:1px solid #ef8c6a;color:#fff}.price-table.plus-feature .price-table-bottom a:hover{background:#fff;color:#ef8c6a}.price-table.agency-feature .price-table-bottom a{background:#fff;border:1px solid #605dec;color:#605dec}.price-table.agency-feature .price-table-bottom a:hover{background:#605dec;color:#fff}.container{max-width:1180px;width:100%;padding:30px;background:#fff;border-radius:15px;margin:50px auto}.row{margin-right:-15px;margin-left:-15px}.col-md-4{padding-right:15px;padding-left:15px;width:33.33333333%;float:left}.select2-container--default .select2-selection--single{background:#fff;border:1px solid #e9e9e9;border-radius:6px;height:40px;line-height:40px;width:100%;text-align:left;padding:0 15px;outline:0}span.select2.select2-container{width:100%!important}.website-package{padding:0 15px;line-height:18px}.select2-container--default .select2-results__option--highlighted[aria-selected]{background-color:#5897fb;color:#fff}.website-package .select2-container--default .select2-results>.select2-results__options{margin-top:5px}.custom-dd .select2-container--default .select2-selection--single .select2-selection__arrow{height:20px;top:10px;right:1px;width:20px}@media (min-width:768px){.col-sm-4{width:100%;float:none}}a,a:focus,a:hover{text-decoration:none}.select2-container--default .select2-selection--single .select2-selection__rendered{color:#444;line-height:38px}.select2-results__option{user-select:none;-webkit-user-select:none;font-size:14px;padding:8px 25px;margin:0}.select2-dropdown{border:1px solid #e9e9e9}.price-after{padding:0;text-align:center;font-size:16px;line-height:25px;font-family:Lato,sans-serif}.price-after p,.price-after span{font-size:16px;line-height:25px;margin:0;padding:0}.clearfix{clear:both}.price-after span{display:inline-block;vertical-align:text-top;font-size:20px;color:#42b9fa}.payments{padding:20px 0 10px}.folder-testimonial-list{width:100%;margin:30px auto 0;font-family:Lato,sans-serif}.folder-testimonial{position:relative}.folder-testimonial .testimonial-image{position:absolute;height:60px;width:60px;top:50%;margin-top:-30px;z-index:1;overflow:hidden;border-radius:30px}.folder-testimonial .testimonial-image img{width:100%;height:auto}.folder-testimonial .testimonial-data{position:relative;margin-left:30px;font-size:16px;line-height:22px;padding:10px 10px 10px 40px;background:#f5f5f5;border-radius:4px}.testimonial-title{font-weight:700;font-size:18px;padding:0 0 5px}.testimonial-author{font-size:16px;font-style:italic;font-weight:500;padding:5px 0 0}.plan-price span{font-size:16px;color:#28375a}.price-table-middle{margin-top:20px}.agency-feature .price-table-middle{margin-top:0}.website-package .select2-container--default .select2-selection--single{border:1px solid #6156f6;box-shadow:0 12px 44px rgba(96,93,236,.2)}.website-package .select2-container--default .select2-selection--single .select2-selection__rendered{color:#6156f6}.website-package .select2-container--default .select2-selection--single .select2-selection__arrow b{border-color:#6156f6 transparent transparent transparent}.website-package .select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow b{border-color:transparent transparent #6156f6 transparent;border-width:0 4px 5px 4px}
|
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.css
CHANGED
@@ -1,2278 +1,2278 @@
|
|
1 |
-
@font-face {
|
2 |
-
font-family: 'poppinsregular';
|
3 |
-
src: url('../fonts/poppins-regular-webfont.woff2') format('woff2'),
|
4 |
-
url('../fonts/poppins-regular-webfont.woff') format('woff');
|
5 |
-
font-weight: normal;
|
6 |
-
font-style: normal;
|
7 |
-
|
8 |
-
}
|
9 |
-
|
10 |
-
@font-face {
|
11 |
-
font-family: 'poppinsbold';
|
12 |
-
src: url('../fonts/poppins-bold-webfont.woff2') format('woff2'),
|
13 |
-
url('../fonts/poppins-bold-webfont.woff') format('woff');
|
14 |
-
font-weight: normal;
|
15 |
-
font-style: normal;
|
16 |
-
|
17 |
-
}
|
18 |
-
|
19 |
-
@font-face {
|
20 |
-
font-family: 'poppins_lightregular';
|
21 |
-
src: url('../fonts/poppins-light-webfont.woff2') format('woff2'),
|
22 |
-
url('../fonts/poppins-light-webfont.woff') format('woff');
|
23 |
-
font-weight: normal;
|
24 |
-
font-style: normal;
|
25 |
-
|
26 |
-
}
|
27 |
-
|
28 |
-
#custom-handle {
|
29 |
-
width: 3em;
|
30 |
-
height: 1.6em;
|
31 |
-
top: 50%;
|
32 |
-
margin-top: -.8em;
|
33 |
-
text-align: center;
|
34 |
-
line-height: 1.6em;
|
35 |
-
}
|
36 |
-
|
37 |
-
#mystickymenu {
|
38 |
-
font-family: 'poppinsregular', sans-serif;
|
39 |
-
}
|
40 |
-
|
41 |
-
.main-content {
|
42 |
-
float: left;
|
43 |
-
width: 65%;
|
44 |
-
}
|
45 |
-
|
46 |
-
.main-sidebar {
|
47 |
-
float: right;
|
48 |
-
width: 30%;
|
49 |
-
background: #ffffff;
|
50 |
-
border: 1px solid #e5e5e5;
|
51 |
-
box-shadow: 0 1px 1px rgba(0, 0, 0, 0.04);
|
52 |
-
}
|
53 |
-
|
54 |
-
.main-sidebar h3 {
|
55 |
-
margin: 0;
|
56 |
-
padding: 8px 12px;
|
57 |
-
border-bottom: 1px solid #ececec;
|
58 |
-
}
|
59 |
-
|
60 |
-
.main-sidebar .inner {
|
61 |
-
padding: 10px;
|
62 |
-
}
|
63 |
-
|
64 |
-
.main-sidebar p {
|
65 |
-
padding: 8px;
|
66 |
-
margin: 0;
|
67 |
-
border-top: solid 1px #e5e5e5;
|
68 |
-
}
|
69 |
-
|
70 |
-
/*.mystickyinput {padding-top: 6px;}*/
|
71 |
-
@media screen and (max-width: 782px) {
|
72 |
-
.main-content, .main-sidebar {
|
73 |
-
width: 100%;
|
74 |
-
float: none;
|
75 |
-
clear: both;
|
76 |
-
}
|
77 |
-
}
|
78 |
-
|
79 |
-
.myssticky-remove-hand {
|
80 |
-
cursor: default;
|
81 |
-
}
|
82 |
-
|
83 |
-
/* */
|
84 |
-
.mystickymenu-content-section input[type="number"]#myfixed_zindex {
|
85 |
-
-moz-appearance: textfield-multiline;
|
86 |
-
}
|
87 |
-
|
88 |
-
.mystickymenu-content-section input[type="number"] {
|
89 |
-
-moz-appearance: textfield;
|
90 |
-
}
|
91 |
-
|
92 |
-
.mystickymenu-content-section input[type="number"]::-webkit-inner-spin-button, .mystickymenu-content-section input[type="number"]::-webkit-outer-spin-button {
|
93 |
-
-webkit-appearance: none;
|
94 |
-
margin: 0;
|
95 |
-
}
|
96 |
-
|
97 |
-
.mystickymenu-content-section .mysticky-number {
|
98 |
-
display: inline-block;
|
99 |
-
margin: 0 0 10px;
|
100 |
-
position: relative;
|
101 |
-
}
|
102 |
-
|
103 |
-
#mystickymenu .mystickymenu-content-section .mysticky-number {
|
104 |
-
/*width: 90px;*/
|
105 |
-
}
|
106 |
-
|
107 |
-
#mystickymenu input[type=number] {
|
108 |
-
color: #A7A7A7;
|
109 |
-
border-radius: 21px;
|
110 |
-
background-color: #ffffff;
|
111 |
-
border: 1px solid #DCE2E2;
|
112 |
-
font-size: 14px;
|
113 |
-
font-weight: 400;
|
114 |
-
height: 42px;
|
115 |
-
padding: 0 10px 0 12px;
|
116 |
-
margin: 0;
|
117 |
-
width: 310px;
|
118 |
-
box-shadow: none;
|
119 |
-
}
|
120 |
-
|
121 |
-
.pt_number {
|
122 |
-
display: inline-block;
|
123 |
-
vertical-align: top;
|
124 |
-
margin-top: 7px;
|
125 |
-
}
|
126 |
-
|
127 |
-
.mysticky-welcomebar-setting-content-right input[type="text"]:disabled {
|
128 |
-
color: #a0a5aa;
|
129 |
-
border-color: #ddd;
|
130 |
-
background-color: #f7f7f7;
|
131 |
-
}
|
132 |
-
|
133 |
-
.mystickymenu-content-section .mysticky-number:focus {
|
134 |
-
outline: 0;
|
135 |
-
}
|
136 |
-
|
137 |
-
.mystickymenu-content-section .mysticky-number .pt_number {
|
138 |
-
float: left;
|
139 |
-
position: relative;
|
140 |
-
height: 30px;
|
141 |
-
}
|
142 |
-
|
143 |
-
.mystickymenu-content-section .mysticky-number .pt_number .pt_numberbutton {
|
144 |
-
position: relative;
|
145 |
-
cursor: pointer;
|
146 |
-
border-left: 1px solid #b7b7b7;
|
147 |
-
width: 15px;
|
148 |
-
text-align: center;
|
149 |
-
color: #333;
|
150 |
-
font-size: 14px;
|
151 |
-
line-height: 1.1;
|
152 |
-
-webkit-transform: translateX(-100%);
|
153 |
-
transform: translateX(-100%);
|
154 |
-
-webkit-user-select: none;
|
155 |
-
-moz-user-select: none;
|
156 |
-
-ms-user-select: none;
|
157 |
-
user-select: none;
|
158 |
-
}
|
159 |
-
|
160 |
-
.mystickymenu-content-section .mysticky-number .pt_number .pt_numberbutton:active {
|
161 |
-
box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);
|
162 |
-
-webkit-box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);
|
163 |
-
}
|
164 |
-
|
165 |
-
.mystickymenu-content-section .mysticky-number .pt_number .pt_numberbutton.pt_numberup {
|
166 |
-
position: absolute;
|
167 |
-
height: 50%;
|
168 |
-
top: 0;
|
169 |
-
border-bottom: 1px solid #b7b7b7;
|
170 |
-
}
|
171 |
-
|
172 |
-
.mystickymenu-content-section .mysticky-number .pt_number .pt_numberbutton.pt_numberdown {
|
173 |
-
position: absolute;
|
174 |
-
bottom: 0px;
|
175 |
-
height: 50%;
|
176 |
-
}
|
177 |
-
|
178 |
-
/* */
|
179 |
-
|
180 |
-
input#mysticky_class_selector {
|
181 |
-
border-radius: 24px;
|
182 |
-
border: 1px solid #E6E5EC;
|
183 |
-
height: 46px;
|
184 |
-
padding: 0 26px;
|
185 |
-
width: 49%
|
186 |
-
}
|
187 |
-
|
188 |
-
.mystickymenu-content-section {
|
189 |
-
background-color: #F9FCFC;
|
190 |
-
border-radius: 7px;
|
191 |
-
margin-bottom: 20px;
|
192 |
-
border: 1px solid #E1E6E6;
|
193 |
-
}
|
194 |
-
|
195 |
-
input#myfixed_disable_small_screen {
|
196 |
-
border-radius: 21px;
|
197 |
-
}
|
198 |
-
|
199 |
-
input#mysticky_active_on_height_home {
|
200 |
-
border-radius: 21px;
|
201 |
-
}
|
202 |
-
|
203 |
-
textarea#myfixed_cssstyle {
|
204 |
-
width: 100%;
|
205 |
-
margin-top: 12px;
|
206 |
-
border-radius: 10px;
|
207 |
-
background-color: #fff;
|
208 |
-
height: 120px;
|
209 |
-
resize: none;
|
210 |
-
border: 1px solid #DCE2E2;
|
211 |
-
padding: 10px 10px;
|
212 |
-
}
|
213 |
-
|
214 |
-
label {
|
215 |
-
font-size: 15px;
|
216 |
-
}
|
217 |
-
|
218 |
-
.sticky-class-sec tr td {
|
219 |
-
width: 50%;
|
220 |
-
}
|
221 |
-
|
222 |
-
.px-wrap {
|
223 |
-
position: relative;
|
224 |
-
display: inline-block;
|
225 |
-
vertical-align: top;
|
226 |
-
}
|
227 |
-
|
228 |
-
.mystickymenu-content-option {
|
229 |
-
padding: 20px 20px 0;
|
230 |
-
}
|
231 |
-
|
232 |
-
.mystickymenu-heading {
|
233 |
-
padding-bottom: 20px;
|
234 |
-
}
|
235 |
-
|
236 |
-
.myStickymenu-header-title {
|
237 |
-
background-color: #B2D2FC;
|
238 |
-
padding: 13px 20px;
|
239 |
-
border-radius: 10px 10px 0 0;
|
240 |
-
}
|
241 |
-
|
242 |
-
.myStickymenu-header-title h3 {
|
243 |
-
margin: 0;
|
244 |
-
color: #1F4B84;
|
245 |
-
font-size: 18px;
|
246 |
-
font-weight: 600;
|
247 |
-
line-height: 1.2;
|
248 |
-
}
|
249 |
-
|
250 |
-
.mystickymenu-heading p {
|
251 |
-
background-color: #D6EFFF;
|
252 |
-
color: #1F4B84;
|
253 |
-
border-radius: 0 0 10px 10px;
|
254 |
-
padding: 13px 20px;
|
255 |
-
margin: 0;
|
256 |
-
font-size: 14px;
|
257 |
-
line-height: 28px;
|
258 |
-
}
|
259 |
-
|
260 |
-
.mystickynumber {
|
261 |
-
position: relative;
|
262 |
-
padding-left: 30px;
|
263 |
-
}
|
264 |
-
|
265 |
-
.pt_numberbutton.pt_numberup {
|
266 |
-
height: 25px;
|
267 |
-
width: 25px;
|
268 |
-
line-height: 25px;
|
269 |
-
background-color: #808080;
|
270 |
-
border-radius: 50%;
|
271 |
-
position: relative;
|
272 |
-
margin-left: 5px;
|
273 |
-
display: inline-block;
|
274 |
-
color: white;
|
275 |
-
font-size: 21px;
|
276 |
-
cursor: pointer;
|
277 |
-
text-align: center;
|
278 |
-
margin-top: 2px;
|
279 |
-
}
|
280 |
-
|
281 |
-
.pt_numberbutton.pt_numberdown {
|
282 |
-
height: 25px;
|
283 |
-
width: 25px;
|
284 |
-
line-height: 25px;
|
285 |
-
background-color: #808080;
|
286 |
-
border-radius: 50%;
|
287 |
-
position: absolute;
|
288 |
-
top: 8px;
|
289 |
-
left: 0;
|
290 |
-
display: inline-block;
|
291 |
-
color: white;
|
292 |
-
font-size: 21px;
|
293 |
-
cursor: pointer;
|
294 |
-
text-align: center;
|
295 |
-
}
|
296 |
-
|
297 |
-
span.input-px {
|
298 |
-
height: 42px;
|
299 |
-
width: 57px;
|
300 |
-
background-color: #808080;
|
301 |
-
position: absolute;
|
302 |
-
right: 0;
|
303 |
-
top: 0px;
|
304 |
-
display: inline-block;
|
305 |
-
vertical-align: top;
|
306 |
-
font-size: 14px;
|
307 |
-
border-radius: 0 21px 21px 0;
|
308 |
-
color: #fff;
|
309 |
-
line-height: 42px;
|
310 |
-
text-align: center;
|
311 |
-
}
|
312 |
-
|
313 |
-
.mysticky_device_upgrade {
|
314 |
-
background-color: #f0ecfb;
|
315 |
-
border-radius: 20px;
|
316 |
-
padding: 15px 40px 20px 20px;
|
317 |
-
}
|
318 |
-
|
319 |
-
.mystickymenu-content-section.mystickymenu-content-upgrade {
|
320 |
-
background-color: #f4f4fd;
|
321 |
-
}
|
322 |
-
|
323 |
-
.myStickymenu-upgrade a {
|
324 |
-
background: #E1DAF6;
|
325 |
-
border-radius: 20px;
|
326 |
-
color: #7559C0;
|
327 |
-
padding-top: 2px;
|
328 |
-
padding-bottom: 6px;
|
329 |
-
padding-left: 10px;
|
330 |
-
padding-right: 10px;
|
331 |
-
font-weight: bold;
|
332 |
-
text-transform: uppercase;
|
333 |
-
font-size: 12px;
|
334 |
-
display: inline-block;
|
335 |
-
vertical-align: top;
|
336 |
-
line-height: 1;
|
337 |
-
}
|
338 |
-
.myStickymenu-upgrade {
|
339 |
-
float: right;
|
340 |
-
}
|
341 |
-
|
342 |
-
.myStickymenu-upgrade a:before {
|
343 |
-
content: "\f160";
|
344 |
-
font-family: dashicons;
|
345 |
-
position: relative;
|
346 |
-
top: 3px;
|
347 |
-
font-size: 16px;
|
348 |
-
}
|
349 |
-
|
350 |
-
.mystickymenu-input-section ul.mystickymenu-input-multicheckbox li {
|
351 |
-
display: inline-block;
|
352 |
-
width: 21%;
|
353 |
-
}
|
354 |
-
|
355 |
-
input#submit.button.button-primary {
|
356 |
-
background: #00c67c;
|
357 |
-
border-color: #00c67c;
|
358 |
-
text-transform: uppercase;
|
359 |
-
border-radius: 31px;
|
360 |
-
font-size: 26px;
|
361 |
-
padding-left: 23px;
|
362 |
-
padding-right: 23px;
|
363 |
-
height: 60px;
|
364 |
-
width: 200px;
|
365 |
-
border: 0;
|
366 |
-
box-shadow: none;
|
367 |
-
font-weight: 600;
|
368 |
-
text-shadow: none;
|
369 |
-
}
|
370 |
-
|
371 |
-
input.button.button-secondary.confirm {
|
372 |
-
background: #969696;
|
373 |
-
border-color: #969696;
|
374 |
-
text-transform: uppercase;
|
375 |
-
font-size: 26px;
|
376 |
-
padding-left: 23px;
|
377 |
-
padding-right: 23px;
|
378 |
-
float: right;
|
379 |
-
color: white;
|
380 |
-
margin-right: 10px;
|
381 |
-
height: 60px;
|
382 |
-
width: 200px;
|
383 |
-
border-radius: 31px;
|
384 |
-
font-weight: 600;
|
385 |
-
}
|
386 |
-
|
387 |
-
table ul.mystickymenu-input-multicheckbox {
|
388 |
-
width: 100%;
|
389 |
-
display: inline-flex;
|
390 |
-
}
|
391 |
-
|
392 |
-
p.myStickymenu-review a {
|
393 |
-
font-size: 20px;
|
394 |
-
}
|
395 |
-
|
396 |
-
table ul.mystickymenu-input-multicheckbox li {
|
397 |
-
padding-right: 21px;
|
398 |
-
}
|
399 |
-
|
400 |
-
table {
|
401 |
-
width: 100%;
|
402 |
-
}
|
403 |
-
|
404 |
-
#mystickymenu table tr td {
|
405 |
-
padding: 20px;
|
406 |
-
}
|
407 |
-
|
408 |
-
div#mystickymenu {
|
409 |
-
overflow-x: hidden;
|
410 |
-
overflow-y: hidden;
|
411 |
-
}
|
412 |
-
|
413 |
-
label.mysticky_title {
|
414 |
-
font-weight: 500;
|
415 |
-
font-size: 18px;
|
416 |
-
line-height: 1.2;
|
417 |
-
color: #4F4F4F;
|
418 |
-
}
|
419 |
-
|
420 |
-
.mystickymenu-content-option p label.mysticky_text {
|
421 |
-
margin-left: 0px;
|
422 |
-
}
|
423 |
-
|
424 |
-
span.mysticky_text {
|
425 |
-
font-size: 14px;
|
426 |
-
color: #9E9E9E;
|
427 |
-
margin-left: 20px;
|
428 |
-
font-style: italic;
|
429 |
-
}
|
430 |
-
|
431 |
-
label.mysticky_text {
|
432 |
-
font-size: 14px;
|
433 |
-
/*color: #9E9E9E;*/
|
434 |
-
margin-left: 20px;
|
435 |
-
font-style: italic;
|
436 |
-
}
|
437 |
-
|
438 |
-
select#mystickymenu-select {
|
439 |
-
border-radius: 24px;
|
440 |
-
border: 1px solid #E6E5EC;
|
441 |
-
height: 46px;
|
442 |
-
box-shadow: none;
|
443 |
-
padding: 0 26px;
|
444 |
-
width: 49%;
|
445 |
-
display: inline-block;
|
446 |
-
vertical-align: top;
|
447 |
-
}
|
448 |
-
|
449 |
-
.mystickymenu-input-section {
|
450 |
-
margin-top: 9px;
|
451 |
-
}
|
452 |
-
|
453 |
-
label.mysticky_title.css-style-title {
|
454 |
-
font-size: 20px;
|
455 |
-
}
|
456 |
-
|
457 |
-
span.wp-color-result-text {
|
458 |
-
display: none;
|
459 |
-
}
|
460 |
-
|
461 |
-
button.button.wp-color-result {
|
462 |
-
border-radius: 50%;
|
463 |
-
height: 30px !important;
|
464 |
-
}
|
465 |
-
button.button.wp-color-result .color-alpha {
|
466 |
-
border-radius: 50% !important;
|
467 |
-
height: 28px !important;
|
468 |
-
}
|
469 |
-
|
470 |
-
.mystickymenu-content-section h3 {
|
471 |
-
margin-left: 20px;
|
472 |
-
font-weight: 600;
|
473 |
-
font-size: 26px;
|
474 |
-
line-height: 1.2;
|
475 |
-
color: #4F4F4F;
|
476 |
-
margin: 0;
|
477 |
-
padding: 24px 20px;
|
478 |
-
}
|
479 |
-
|
480 |
-
.form-table {
|
481 |
-
margin-top: 0;
|
482 |
-
}
|
483 |
-
|
484 |
-
ul.mystickymenu-input-multicheckbox li span {
|
485 |
-
font-size: 16px;
|
486 |
-
color: #4F4F4F;
|
487 |
-
}
|
488 |
-
|
489 |
-
.mystickymenu-input-section label {
|
490 |
-
/*color: #9E9E9E;*/
|
491 |
-
font-size: 16px;
|
492 |
-
}
|
493 |
-
#mystickymenu .mystickymenu-input-section input.mystickymenu_normal_text{
|
494 |
-
border-radius: 0px;
|
495 |
-
height: 35px;
|
496 |
-
margin: 10px;
|
497 |
-
}
|
498 |
-
#mystickymenu .mystickymenu-input-section span.description{
|
499 |
-
font-style: normal;
|
500 |
-
font-size: 16px;
|
501 |
-
}
|
502 |
-
.myStickymenu-upgrade a {
|
503 |
-
text-decoration: none;
|
504 |
-
color: #7559C0;
|
505 |
-
}
|
506 |
-
|
507 |
-
#mystickymenu p.submit {
|
508 |
-
margin-top: 0;
|
509 |
-
padding-top: 0;
|
510 |
-
float: right;
|
511 |
-
}
|
512 |
-
|
513 |
-
td {
|
514 |
-
vertical-align: top !important;
|
515 |
-
}
|
516 |
-
|
517 |
-
p.description {
|
518 |
-
color: rgba(79, 79, 79, 0.5);
|
519 |
-
font-size: 12px;
|
520 |
-
line-height: 1.2;
|
521 |
-
margin: 5px 0 0;
|
522 |
-
}
|
523 |
-
|
524 |
-
div#slider.ui-slider {
|
525 |
-
width: 229px;
|
526 |
-
background-color: #DCE2E2;
|
527 |
-
height: 2px;
|
528 |
-
border: 0;
|
529 |
-
border-radius: 2px;
|
530 |
-
position: relative;
|
531 |
-
}
|
532 |
-
|
533 |
-
.mystickymenu-content-section .ui-state-active, .ui-widget-content .ui-state-active {
|
534 |
-
color: #454545;
|
535 |
-
}
|
536 |
-
|
537 |
-
#mystickymenu #custom-handle {
|
538 |
-
width: 1.6em;
|
539 |
-
border-radius: 50%;
|
540 |
-
background-color: #fff;
|
541 |
-
box-shadow: 0 0 6px rgba(0, 0, 0, 0.16);
|
542 |
-
border: 0;
|
543 |
-
position: absolute;
|
544 |
-
}
|
545 |
-
.sticky-header-menu {
|
546 |
-
text-align: center;
|
547 |
-
padding: 0 0 20px 0;
|
548 |
-
}
|
549 |
-
.sticky-header-menu ul {
|
550 |
-
display: inline-block;
|
551 |
-
padding: 1px;
|
552 |
-
background-color: #D6EFFF;
|
553 |
-
-webkit-border-radius: 23px;
|
554 |
-
-moz-border-radius: 23px;
|
555 |
-
border-radius: 23px;
|
556 |
-
}
|
557 |
-
.sticky-header-menu ul li {
|
558 |
-
display: inline-block;
|
559 |
-
margin: 0;
|
560 |
-
}
|
561 |
-
.sticky-header-menu ul li a {
|
562 |
-
display: inline-block;
|
563 |
-
padding: 0 20px;
|
564 |
-
line-height: 40px;
|
565 |
-
height: 40px;
|
566 |
-
font-size: 16px;
|
567 |
-
text-decoration: none;
|
568 |
-
-webkit-border-radius: 20px;
|
569 |
-
-moz-border-radius: 20px;
|
570 |
-
border-radius: 20px;
|
571 |
-
}
|
572 |
-
.sticky-header-menu ul li a:hover {
|
573 |
-
background: #f0ecfb;
|
574 |
-
color: #7559C0;
|
575 |
-
}
|
576 |
-
.sticky-header-menu ul li a.active {
|
577 |
-
background: #E1DAF6;
|
578 |
-
color: #7559C0;
|
579 |
-
}
|
580 |
-
/*.sticky-header-content {
|
581 |
-
display: none;
|
582 |
-
}*/
|
583 |
-
.mysticky-welcomebar-setting-content-right label.mysticky-welcomebar-switch {
|
584 |
-
width: 55px;
|
585 |
-
}
|
586 |
-
|
587 |
-
/*New Welcomebar Page css*/
|
588 |
-
.mystickymenu-new-widget-wrap, .mystickymenu-new-widget-wrap * {
|
589 |
-
box-sizing: border-box;
|
590 |
-
}
|
591 |
-
.mystickymenu-new-widget-wrap {
|
592 |
-
border-radius: 10px;
|
593 |
-
box-shadow: 0 0 6px #ccc;
|
594 |
-
padding: 10px;
|
595 |
-
margin: 20px auto 0 auto;
|
596 |
-
width: 100%;
|
597 |
-
max-width: 776px;
|
598 |
-
background: #fff url(../images/new_widget_bg.png) no-repeat right bottom;
|
599 |
-
background-size: auto 100%;
|
600 |
-
font-family: Poppins;
|
601 |
-
line-height: 20px;
|
602 |
-
}
|
603 |
-
.mystickymenu-new-widget-wrap h2 {
|
604 |
-
font-style: normal;
|
605 |
-
font-weight: 600;
|
606 |
-
font-size: 20px;
|
607 |
-
line-height: 30px;
|
608 |
-
color: #1e1e1e;
|
609 |
-
margin: 0;
|
610 |
-
text-align: center;
|
611 |
-
}
|
612 |
-
a.new-upgrade-button {
|
613 |
-
height: 40px;
|
614 |
-
background: #7761DF;
|
615 |
-
border-radius: 100px;
|
616 |
-
border: solid 1px #7761DF;
|
617 |
-
display: inline-block;
|
618 |
-
text-align: center;
|
619 |
-
color: #fff;
|
620 |
-
line-height: 40px;
|
621 |
-
margin: 10px 0 10px 10px;
|
622 |
-
padding: 0 25px;
|
623 |
-
text-decoration: none;
|
624 |
-
text-transform: uppercase;
|
625 |
-
}
|
626 |
-
.mystickymenu-new-widget-row ul {
|
627 |
-
display: flex;
|
628 |
-
align-items: center;
|
629 |
-
flex-wrap: wrap;
|
630 |
-
margin-top: 0;
|
631 |
-
margin-bottom: 0;
|
632 |
-
}
|
633 |
-
.mystickymenu-new-widget-row ul li {
|
634 |
-
width: 33.33%;
|
635 |
-
padding: 10px 10px 0px;
|
636 |
-
margin-bottom: 0;
|
637 |
-
}
|
638 |
-
.mystickymenu-feature {
|
639 |
-
margin: 30px 0 0 0;
|
640 |
-
background: #fff;
|
641 |
-
border: 1px solid #605dec;
|
642 |
-
box-sizing: border-box;
|
643 |
-
border-radius: 4px;
|
644 |
-
padding: 30px 15px 10px 15px;
|
645 |
-
min-height: 186px;
|
646 |
-
position: relative;
|
647 |
-
}
|
648 |
-
.mystickymenu-feature-top {
|
649 |
-
width: 50px;
|
650 |
-
height: 50px;
|
651 |
-
border: solid 1px #605dec;
|
652 |
-
border-radius: 50%;
|
653 |
-
position: absolute;
|
654 |
-
left: 0;
|
655 |
-
right: 0;
|
656 |
-
margin: 0 auto;
|
657 |
-
top: -25px;
|
658 |
-
background: #fff;
|
659 |
-
z-index: 11;
|
660 |
-
padding: 10px;
|
661 |
-
}
|
662 |
-
.feature-title {
|
663 |
-
font-family: Poppins;
|
664 |
-
font-style: normal;
|
665 |
-
font-weight: 700;
|
666 |
-
font-size: 13px;
|
667 |
-
line-height: 18px;
|
668 |
-
color: #1e1e1e;
|
669 |
-
}
|
670 |
-
.feature-description {
|
671 |
-
font-family: Poppins;
|
672 |
-
font-style: normal;
|
673 |
-
font-weight: 400;
|
674 |
-
font-size: 13px;
|
675 |
-
line-height: 18px;
|
676 |
-
color: #1e1e1e;
|
677 |
-
}
|
678 |
-
.mystickymenu-feature-top img {
|
679 |
-
width: auto;
|
680 |
-
height: auto;
|
681 |
-
max-width: 100%;
|
682 |
-
max-height: 100%;
|
683 |
-
}
|
684 |
-
/* Finish new Welcome bar screen css */
|
685 |
-
@media only screen and (min-width: 1024px) and (max-width: 1200px) {
|
686 |
-
.pt_numberbutton.pt_numberdown {
|
687 |
-
position: relative;
|
688 |
-
margin-left: -75px;
|
689 |
-
top: -29px;
|
690 |
-
}
|
691 |
-
|
692 |
-
.pt_numberbutton.pt_numberup {
|
693 |
-
position: relative;
|
694 |
-
top: -29px;
|
695 |
-
left: 70px;
|
696 |
-
}
|
697 |
-
|
698 |
-
/* span.input-px { */
|
699 |
-
/* position: relative; */
|
700 |
-
/* left: 112px; */
|
701 |
-
/* top: -24px !important; */
|
702 |
-
/* margin-left: -20px; */
|
703 |
-
/* } */
|
704 |
-
}
|
705 |
-
|
706 |
-
|
707 |
-
|
708 |
-
#rpt_pricr {
|
709 |
-
width: 100%;
|
710 |
-
max-width: 1024px;
|
711 |
-
margin: 0 auto;
|
712 |
-
padding: 25px 25px 25px 25px;
|
713 |
-
background: #fff;
|
714 |
-
|
715 |
-
-webkit-border-radius: 5px;
|
716 |
-
-moz-border-radius: 5px;
|
717 |
-
border-radius: 5px;
|
718 |
-
}
|
719 |
-
#rpt_pricr h2 {
|
720 |
-
padding: 50px 0 30px;
|
721 |
-
text-align: center;
|
722 |
-
font-size: 24px;
|
723 |
-
}
|
724 |
-
.rpt_plans .rpt_plan {
|
725 |
-
-moz-box-sizing: border-box;
|
726 |
-
-webkit-box-sizing: border-box
|
727 |
-
}
|
728 |
-
|
729 |
-
.rpt_2_plans .rpt_plan {
|
730 |
-
margin-right: 2%;
|
731 |
-
width: 49%;
|
732 |
-
float: left
|
733 |
-
}
|
734 |
-
|
735 |
-
.rpt_2_plans .rpt_plan:last-child {
|
736 |
-
margin-right: 0
|
737 |
-
}
|
738 |
-
|
739 |
-
.rpt_3_plans .rpt_plan {
|
740 |
-
margin-right: 2%;
|
741 |
-
width: 32%;
|
742 |
-
float: left
|
743 |
-
}
|
744 |
-
|
745 |
-
.rpt_3_plans .rpt_plan:last-child {
|
746 |
-
margin-right: 0
|
747 |
-
}
|
748 |
-
|
749 |
-
.rpt_4_plans .rpt_plan {
|
750 |
-
margin-right: 1%;
|
751 |
-
width: 24.25%;
|
752 |
-
float: left
|
753 |
-
}
|
754 |
-
|
755 |
-
.rpt_4_plans .rpt_plan:last-child {
|
756 |
-
margin-right: 0
|
757 |
-
}
|
758 |
-
|
759 |
-
.rpt_5_plans .rpt_plan {
|
760 |
-
margin-right: .5%;
|
761 |
-
width: 19.6%;
|
762 |
-
float: left
|
763 |
-
}
|
764 |
-
|
765 |
-
.rpt_5_plans .rpt_plan:last-child {
|
766 |
-
margin-right: 0
|
767 |
-
}
|
768 |
-
|
769 |
-
.rpt_style_bic .rpt_plan, .rpt_style_loc .rpt_plan {
|
770 |
-
-webkit-box-shadow: 1px 1px 3px 0 rgba(50, 50, 50, .19);
|
771 |
-
-moz-box-shadow: 1px 1px 3px 0 rgba(50, 50, 50, .19);
|
772 |
-
box-shadow: 1px 1px 3px 0 rgba(50, 50, 50, .19)
|
773 |
-
}
|
774 |
-
|
775 |
-
.rpt_plans .rpt_plan .rpt_title img {
|
776 |
-
margin-right: 10px;
|
777 |
-
position: relative;
|
778 |
-
vertical-align: middle
|
779 |
-
}
|
780 |
-
|
781 |
-
.rpt_plans .rpt_plan .rpt_title {
|
782 |
-
background: #6371db;
|
783 |
-
font-weight: 300;
|
784 |
-
padding: 24px 18px;
|
785 |
-
font-size: 26px;
|
786 |
-
color: #fff;
|
787 |
-
line-height: 35px;
|
788 |
-
height: auto;
|
789 |
-
}
|
790 |
-
|
791 |
-
.rpt_plans .rpt_plan .rpt_title span {
|
792 |
-
display: inline-block;
|
793 |
-
position: relative;
|
794 |
-
top: -10px
|
795 |
-
}
|
796 |
-
|
797 |
-
.rpt_style_basic .rpt_plan .rpt_title {
|
798 |
-
border-bottom: #6371db solid 1px;
|
799 |
-
border-top-left-radius: 8px;
|
800 |
-
border-top-right-radius: 8px;
|
801 |
-
}
|
802 |
-
|
803 |
-
.rpt_style_spec .rpt_plan .rpt_title {
|
804 |
-
color: #fff
|
805 |
-
}
|
806 |
-
|
807 |
-
.rpt_style_bic .rpt_plan .rpt_title, .rpt_style_loc .rpt_plan .rpt_title, .rpt_style_swl .rpt_plan .rpt_title {
|
808 |
-
background: #333
|
809 |
-
}
|
810 |
-
|
811 |
-
.rpt_plans .rpt_sm_title .rpt_plan .rpt_title {
|
812 |
-
font-size: 20px;
|
813 |
-
line-height: 18px
|
814 |
-
}
|
815 |
-
|
816 |
-
.rpt_plans .rpt_xsm_title .rpt_plan .rpt_title {
|
817 |
-
font-size: 15px;
|
818 |
-
line-height: 15px
|
819 |
-
}
|
820 |
-
|
821 |
-
.rpt_4_plans .rpt_plan .rpt_title {
|
822 |
-
font-size: 17px;
|
823 |
-
line-height: 15px
|
824 |
-
}
|
825 |
-
|
826 |
-
.rpt_4_plans .rpt_sm_title .rpt_plan .rpt_title {
|
827 |
-
font-size: 15px;
|
828 |
-
line-height: 13px
|
829 |
-
}
|
830 |
-
|
831 |
-
.rpt_4_plans .rpt_xsm_title .rpt_plan .rpt_title {
|
832 |
-
font-size: 13px;
|
833 |
-
line-height: 11px
|
834 |
-
}
|
835 |
-
|
836 |
-
.rpt_5_plans .rpt_plan .rpt_title {
|
837 |
-
font-size: 15px;
|
838 |
-
line-height: 13px
|
839 |
-
}
|
840 |
-
|
841 |
-
.rpt_5_plans .rpt_sm_title .rpt_plan .rpt_title {
|
842 |
-
font-size: 13px;
|
843 |
-
line-height: 11px
|
844 |
-
}
|
845 |
-
|
846 |
-
.rpt_5_plans .rpt_xsm_title .rpt_plan .rpt_title {
|
847 |
-
font-size: 12px;
|
848 |
-
line-height: 10px
|
849 |
-
}
|
850 |
-
|
851 |
-
.rpt_plans .rpt_recommended_plan .rpt_title {
|
852 |
-
background: #6371db
|
853 |
-
}
|
854 |
-
|
855 |
-
.rpt_plans .rpt_plan .rpt_head .rpt_price .rpt_currency {
|
856 |
-
position: relative;
|
857 |
-
top: -44px;
|
858 |
-
left: -10px;
|
859 |
-
font-size: 35px;
|
860 |
-
line-height: 0
|
861 |
-
}
|
862 |
-
|
863 |
-
.rpt_4_plans .rpt_plan .rpt_head .rpt_price .rpt_currency {
|
864 |
-
top: -36px
|
865 |
-
}
|
866 |
-
|
867 |
-
.rpt_5_plans .rpt_plan .rpt_head .rpt_price .rpt_currency {
|
868 |
-
top: -26px
|
869 |
-
}
|
870 |
-
|
871 |
-
.rpt_sm_price .rpt_plan .rpt_head .rpt_price .rpt_currency {
|
872 |
-
font-size: 30px;
|
873 |
-
top: -44px;
|
874 |
-
left: -4px
|
875 |
-
}
|
876 |
-
|
877 |
-
.rpt_xsm_price .rpt_plan .rpt_head .rpt_price .rpt_currency {
|
878 |
-
font-size: 25px;
|
879 |
-
top: -30px;
|
880 |
-
left: -4px
|
881 |
-
}
|
882 |
-
|
883 |
-
.rpt_xxsm_price .rpt_plan .rpt_head .rpt_price .rpt_currency {
|
884 |
-
font-size: 21px;
|
885 |
-
top: -14px;
|
886 |
-
left: -4px
|
887 |
-
}
|
888 |
-
|
889 |
-
.rpt_style_basic .rpt_plan .rpt_head {
|
890 |
-
background: #ec86c6
|
891 |
-
}
|
892 |
-
|
893 |
-
.rpt_style_spec .rpt_plan .rpt_head {
|
894 |
-
background: #fff
|
895 |
-
}
|
896 |
-
|
897 |
-
.rpt_style_swl .rpt_plan .rpt_head {
|
898 |
-
background: #fff
|
899 |
-
}
|
900 |
-
|
901 |
-
.rpt_plans .rpt_plan .rpt_head .rpt_price {
|
902 |
-
padding: 6px 10px;
|
903 |
-
font-size: 74px;
|
904 |
-
line-height: 80px;
|
905 |
-
font-weight: 300;
|
906 |
-
text-align: center;
|
907 |
-
color: #ffffff
|
908 |
-
}
|
909 |
-
|
910 |
-
.rpt_style_basic .rpt_plan .rpt_head .rpt_price, .rpt_style_spec .rpt_plan .rpt_head .rpt_price {
|
911 |
-
text-shadow: 1px 2px 7px rgba(0, 0, 0, .6)
|
912 |
-
}
|
913 |
-
|
914 |
-
.rpt_style_swl .rpt_plan .rpt_head .rpt_price {
|
915 |
-
color: #000
|
916 |
-
}
|
917 |
-
|
918 |
-
.rpt_plans .rpt_sm_price .rpt_plan .rpt_head .rpt_price {
|
919 |
-
font-size: 62px
|
920 |
-
}
|
921 |
-
|
922 |
-
.rpt_plans .rpt_xsm_price .rpt_plan .rpt_head .rpt_price {
|
923 |
-
font-size: 56px
|
924 |
-
}
|
925 |
-
|
926 |
-
.rpt_plans .rpt_xxsm_price .rpt_plan .rpt_head .rpt_price {
|
927 |
-
font-size: 38px
|
928 |
-
}
|
929 |
-
|
930 |
-
.rpt_4_plans .rpt_plan .rpt_head .rpt_price {
|
931 |
-
font-size: 69px;
|
932 |
-
line-height: 80px
|
933 |
-
}
|
934 |
-
|
935 |
-
.rpt_4_plans .rpt_sm_price .rpt_plan .rpt_head .rpt_price {
|
936 |
-
font-size: 53px;
|
937 |
-
line-height: 65px
|
938 |
-
}
|
939 |
-
|
940 |
-
.rpt_4_plans .rpt_xsm_price .rpt_plan .rpt_head .rpt_price {
|
941 |
-
font-size: 47px;
|
942 |
-
line-height: 64px
|
943 |
-
}
|
944 |
-
|
945 |
-
.rpt_4_plans .rpt_xxsm_price .rpt_plan .rpt_head .rpt_price {
|
946 |
-
font-size: 31px;
|
947 |
-
line-height: 60px
|
948 |
-
}
|
949 |
-
|
950 |
-
.rpt_5_plans .rpt_plan .rpt_head .rpt_price {
|
951 |
-
font-size: 59px;
|
952 |
-
line-height: 80px
|
953 |
-
}
|
954 |
-
|
955 |
-
.rpt_5_plans .rpt_sm_price .rpt_plan .rpt_head .rpt_price {
|
956 |
-
font-size: 44px;
|
957 |
-
line-height: 60px
|
958 |
-
}
|
959 |
-
|
960 |
-
.rpt_5_plans .rpt_xsm_price .rpt_plan .rpt_head .rpt_price {
|
961 |
-
font-size: 37px;
|
962 |
-
line-height: 53px
|
963 |
-
}
|
964 |
-
|
965 |
-
.rpt_5_plans .rpt_xxsm_price .rpt_plan .rpt_head .rpt_price {
|
966 |
-
font-size: 24px;
|
967 |
-
line-height: 50px
|
968 |
-
}
|
969 |
-
|
970 |
-
.rpt_plans .rpt_recommended_plan .rpt_head .rpt_price {
|
971 |
-
font-size: 98px
|
972 |
-
}
|
973 |
-
|
974 |
-
.rpt_4_plans .rpt_recommended_plan .rpt_head .rpt_price {
|
975 |
-
font-size: 74px
|
976 |
-
}
|
977 |
-
|
978 |
-
.rpt_5_plans .rpt_recommended_plan .rpt_head .rpt_price {
|
979 |
-
font-size: 67px
|
980 |
-
}
|
981 |
-
|
982 |
-
.rpt_plans .rpt_sm_price .rpt_recommended_plan .rpt_head .rpt_price {
|
983 |
-
font-size: 83px
|
984 |
-
}
|
985 |
-
|
986 |
-
.rpt_4_plans .rpt_sm_price .rpt_recommended_plan .rpt_head .rpt_price {
|
987 |
-
font-size: 60px
|
988 |
-
}
|
989 |
-
|
990 |
-
.rpt_5_plans .rpt_sm_price .rpt_recommended_plan .rpt_head .rpt_price {
|
991 |
-
font-size: 54px
|
992 |
-
}
|
993 |
-
|
994 |
-
.rpt_plans .rpt_xsm_price .rpt_recommended_plan .rpt_head .rpt_price {
|
995 |
-
font-size: 55px
|
996 |
-
}
|
997 |
-
|
998 |
-
.rpt_4_plans .rpt_xsm_price .rpt_recommended_plan .rpt_head .rpt_price {
|
999 |
-
font-size: 49px
|
1000 |
-
}
|
1001 |
-
|
1002 |
-
.rpt_5_plans .rpt_xsm_price .rpt_recommended_plan .rpt_head .rpt_price {
|
1003 |
-
font-size: 41px
|
1004 |
-
}
|
1005 |
-
|
1006 |
-
.rpt_plans .rpt_xxsm_price .rpt_recommended_plan .rpt_head .rpt_price {
|
1007 |
-
font-size: 42px
|
1008 |
-
}
|
1009 |
-
|
1010 |
-
.rpt_4_plans .rpt_xxsm_price .rpt_recommended_plan .rpt_head .rpt_price {
|
1011 |
-
font-size: 34px
|
1012 |
-
}
|
1013 |
-
|
1014 |
-
.rpt_5_plans .rpt_xxsm_price .rpt_recommended_plan .rpt_head .rpt_price {
|
1015 |
-
font-size: 26px
|
1016 |
-
}
|
1017 |
-
|
1018 |
-
.rpt_plans .rpt_plan .rpt_head .rpt_recurrence {
|
1019 |
-
font-size: 13px;
|
1020 |
-
font-weight: 300;
|
1021 |
-
line-height: 18px;
|
1022 |
-
padding: 20px 10px 10px;
|
1023 |
-
color: #ffffff;
|
1024 |
-
text-align: center
|
1025 |
-
}
|
1026 |
-
|
1027 |
-
.rpt_style_spec .rpt_plan .rpt_head .rpt_recurrence {
|
1028 |
-
color: #d3d3d3
|
1029 |
-
}
|
1030 |
-
|
1031 |
-
.rpt_style_bic .rpt_plan .rpt_head .rpt_recurrence, .rpt_style_loc .rpt_plan .rpt_head .rpt_recurrence {
|
1032 |
-
color: #f5f5f5
|
1033 |
-
}
|
1034 |
-
|
1035 |
-
.rpt_style_swl .rpt_plan .rpt_head .rpt_recurrence {
|
1036 |
-
color: grey
|
1037 |
-
}
|
1038 |
-
|
1039 |
-
.rpt_plans .rpt_sm_recurrence .rpt_plan .rpt_head .rpt_recurrence {
|
1040 |
-
font-size: 11px;
|
1041 |
-
padding: 20px 40px 4px
|
1042 |
-
}
|
1043 |
-
|
1044 |
-
.rpt_plans .rpt_plan .rpt_head .rpt_subtitle {
|
1045 |
-
font-size: 16px;
|
1046 |
-
line-height: 20px;
|
1047 |
-
font-weight: 300;
|
1048 |
-
text-align: center;
|
1049 |
-
padding: 10px 30px 20px
|
1050 |
-
}
|
1051 |
-
|
1052 |
-
.rpt_plans .rpt_sm_subtitle .rpt_plan .rpt_head .rpt_subtitle {
|
1053 |
-
font-size: 14px
|
1054 |
-
}
|
1055 |
-
|
1056 |
-
.rpt_plans .rpt_xsm_subtitle .rpt_plan .rpt_head .rpt_subtitle {
|
1057 |
-
font-size: 12px
|
1058 |
-
}
|
1059 |
-
|
1060 |
-
.rpt_4_plans .rpt_plan .rpt_head .rpt_subtitle {
|
1061 |
-
font-size: 16px;
|
1062 |
-
line-height: 18px;
|
1063 |
-
padding: 10px 10px 20px
|
1064 |
-
}
|
1065 |
-
|
1066 |
-
.rpt_4_plans .rpt_sm_subtitle .rpt_plan .rpt_head .rpt_subtitle {
|
1067 |
-
font-size: 14px;
|
1068 |
-
line-height: 17px
|
1069 |
-
}
|
1070 |
-
|
1071 |
-
.rpt_4_plans .rpt_xsm_subtitle .rpt_plan .rpt_head .rpt_subtitle {
|
1072 |
-
font-size: 13px;
|
1073 |
-
line-height: 16px
|
1074 |
-
}
|
1075 |
-
|
1076 |
-
.rpt_5_plans .rpt_plan .rpt_head .rpt_subtitle {
|
1077 |
-
font-size: 15px;
|
1078 |
-
line-height: 18px;
|
1079 |
-
padding: 10px 10px 20px
|
1080 |
-
}
|
1081 |
-
|
1082 |
-
.rpt_5_plans .rpt_sm_subtitle .rpt_plan .rpt_head .rpt_subtitle {
|
1083 |
-
font-size: 13px;
|
1084 |
-
line-height: 17px
|
1085 |
-
}
|
1086 |
-
|
1087 |
-
.rpt_5_plans .rpt_xsm_subtitle .rpt_plan .rpt_head .rpt_subtitle {
|
1088 |
-
font-size: 12px;
|
1089 |
-
line-height: 16px
|
1090 |
-
}
|
1091 |
-
|
1092 |
-
.rpt_plans .rpt_plan .rpt_head .rpt_description {
|
1093 |
-
font-size: 14px;
|
1094 |
-
line-height: 20px;
|
1095 |
-
padding: 10px 20px;
|
1096 |
-
font-weight: 300;
|
1097 |
-
text-align: center;
|
1098 |
-
color: #ffffff
|
1099 |
-
}
|
1100 |
-
|
1101 |
-
.rpt_plans .rpt_sm_description .rpt_plan .rpt_head .rpt_description {
|
1102 |
-
font-size: 12px
|
1103 |
-
}
|
1104 |
-
|
1105 |
-
.rpt_style_bic .rpt_plan .rpt_head .rpt_description, .rpt_style_loc .rpt_plan .rpt_head .rpt_description {
|
1106 |
-
color: #f5f5f5
|
1107 |
-
}
|
1108 |
-
|
1109 |
-
.rpt_4_plans .rpt_plan .rpt_head .rpt_description {
|
1110 |
-
font-size: 13px;
|
1111 |
-
line-height: 18px
|
1112 |
-
}
|
1113 |
-
|
1114 |
-
.rpt_4_plans .rpt_sm_description .rpt_plan .rpt_head .rpt_description {
|
1115 |
-
font-size: 12px;
|
1116 |
-
line-height: 17px
|
1117 |
-
}
|
1118 |
-
|
1119 |
-
.rpt_5_plans .rpt_plan .rpt_head .rpt_description {
|
1120 |
-
font-size: 12px;
|
1121 |
-
line-height: 18px
|
1122 |
-
}
|
1123 |
-
|
1124 |
-
.rpt_5_plans .rpt_sm_description .rpt_plan .rpt_head .rpt_description {
|
1125 |
-
font-size: 11px;
|
1126 |
-
line-height: 17px
|
1127 |
-
}
|
1128 |
-
|
1129 |
-
.rpt_plans .rpt_plan .rpt_features {
|
1130 |
-
padding: 20px;
|
1131 |
-
background: #f0ecfb;
|
1132 |
-
text-align: center
|
1133 |
-
}
|
1134 |
-
|
1135 |
-
.rpt_plans .rpt_plan .rpt_features .rpt_feature {
|
1136 |
-
font-size: 16px;
|
1137 |
-
padding: 6px 16px;
|
1138 |
-
border-bottom: 1px dotted #d3d3d3
|
1139 |
-
}
|
1140 |
-
.rpt_plans .rpt_plan .rpt_features .rpt_feature a {
|
1141 |
-
color: #333333;
|
1142 |
-
}
|
1143 |
-
|
1144 |
-
.rpt_plans .rpt_plan .rpt_features .rpt_feature:last-child {
|
1145 |
-
border-bottom: none
|
1146 |
-
}
|
1147 |
-
|
1148 |
-
.rpt_plans .rpt_sm_features .rpt_plan .rpt_features .rpt_feature {
|
1149 |
-
font-size: 14px
|
1150 |
-
}
|
1151 |
-
|
1152 |
-
.rpt_style_bic .rpt_plan .rpt_features, .rpt_style_loc .rpt_plan .rpt_features, .rpt_style_swl .rpt_plan .rpt_features {
|
1153 |
-
background: #fff
|
1154 |
-
}
|
1155 |
-
|
1156 |
-
.rpt_style_swl .rpt_plan .rpt_features .rpt_feature {
|
1157 |
-
padding: 5px 16px
|
1158 |
-
}
|
1159 |
-
|
1160 |
-
.rpt_4_plans .rpt_plan .rpt_features .rpt_feature {
|
1161 |
-
padding: 6px 10px;
|
1162 |
-
font-size: 14px
|
1163 |
-
}
|
1164 |
-
|
1165 |
-
.rpt_4_plans .rpt_sm_features .rpt_plan .rpt_features .rpt_feature {
|
1166 |
-
font-size: 12px
|
1167 |
-
}
|
1168 |
-
|
1169 |
-
.rpt_5_plans .rpt_plan .rpt_features .rpt_feature {
|
1170 |
-
padding: 6px 10px;
|
1171 |
-
font-size: 13px
|
1172 |
-
}
|
1173 |
-
|
1174 |
-
.rpt_5_plans .rpt_sm_features .rpt_plan .rpt_features .rpt_feature {
|
1175 |
-
font-size: 11px
|
1176 |
-
}
|
1177 |
-
|
1178 |
-
.rpt_plans .rpt_plan .rpt_foot {
|
1179 |
-
display: block;
|
1180 |
-
padding: 10px 30px;
|
1181 |
-
border-top: #7559C0 solid 2px;
|
1182 |
-
background: #7559C0;
|
1183 |
-
text-align: center;
|
1184 |
-
color: #fff;
|
1185 |
-
font-size: 24px;
|
1186 |
-
text-decoration: none;
|
1187 |
-
font-weight: 300;
|
1188 |
-
transition: All .5s ease;
|
1189 |
-
-webkit-transition: All .5s ease;
|
1190 |
-
-moz-transition: All .5s ease;
|
1191 |
-
-o-transition: All .5s ease
|
1192 |
-
}
|
1193 |
-
|
1194 |
-
.rpt_plans .rpt_sm_button .rpt_plan .rpt_foot {
|
1195 |
-
font-size: 19px
|
1196 |
-
}
|
1197 |
-
|
1198 |
-
.rpt_style_basic .rpt_plan .rpt_foot {
|
1199 |
-
border-bottom-left-radius: 8px;
|
1200 |
-
border-bottom-right-radius: 8px
|
1201 |
-
}
|
1202 |
-
|
1203 |
-
.rpt_style_swl .rpt_plan .rpt_foot {
|
1204 |
-
border-top: none;
|
1205 |
-
padding: 10px 30px 20px;
|
1206 |
-
color: #000;
|
1207 |
-
background: #333
|
1208 |
-
}
|
1209 |
-
|
1210 |
-
.rpt_4_plans .rpt_plan .rpt_foot {
|
1211 |
-
padding: 4px 20px;
|
1212 |
-
font-size: 19px
|
1213 |
-
}
|
1214 |
-
|
1215 |
-
.rpt_4_plans .rpt_sm_button .rpt_plan .rpt_foot, .rpt_5_plans .rpt_plan .rpt_foot {
|
1216 |
-
padding: 4px 20px;
|
1217 |
-
font-size: 17px
|
1218 |
-
}
|
1219 |
-
|
1220 |
-
.rpt_5_plans .rpt_sm_button .rpt_plan .rpt_foot {
|
1221 |
-
font-size: 16px
|
1222 |
-
}
|
1223 |
-
|
1224 |
-
.rpt_plans .rpt_plan .rpt_foot:hover {
|
1225 |
-
opacity: .8
|
1226 |
-
}
|
1227 |
-
|
1228 |
-
.rpt_style_swl .rpt_plan .rpt_foot:hover {
|
1229 |
-
opacity: 1
|
1230 |
-
}
|
1231 |
-
|
1232 |
-
.rpt_plans .rpt_recommended_plan .rpt_foot {
|
1233 |
-
font-size: 30px;
|
1234 |
-
padding: 16px 0
|
1235 |
-
}
|
1236 |
-
|
1237 |
-
.rpt_plans .rpt_sm_button .rpt_recommended_plan .rpt_foot {
|
1238 |
-
font-size: 26px
|
1239 |
-
}
|
1240 |
-
|
1241 |
-
.rpt_4_plans .rpt_recommended_plan .rpt_foot {
|
1242 |
-
font-size: 22px;
|
1243 |
-
font-weight: 300;
|
1244 |
-
padding: 10px 0
|
1245 |
-
}
|
1246 |
-
|
1247 |
-
.rpt_4_plans .rpt_sm_button .rpt_recommended_plan .rpt_foot {
|
1248 |
-
font-size: 19px;
|
1249 |
-
padding: 10px 0
|
1250 |
-
}
|
1251 |
-
|
1252 |
-
.rpt_5_plans .rpt_recommended_plan .rpt_foot {
|
1253 |
-
font-size: 20px;
|
1254 |
-
font-weight: 300;
|
1255 |
-
padding: 10px 0
|
1256 |
-
}
|
1257 |
-
|
1258 |
-
.rpt_5_plans .rpt_sm_button .rpt_recommended_plan .rpt_foot {
|
1259 |
-
font-size: 18px;
|
1260 |
-
padding: 10px 0
|
1261 |
-
}
|
1262 |
-
|
1263 |
-
.rpt_custom_btn {
|
1264 |
-
border-bottom-left-radius: 5px;
|
1265 |
-
border-bottom-right-radius: 5px;
|
1266 |
-
text-align: center;
|
1267 |
-
padding: 16px 20px
|
1268 |
-
}
|
1269 |
-
|
1270 |
-
.rpt_plans .rpt_recommended_plan {
|
1271 |
-
position: relative;
|
1272 |
-
top: -10px
|
1273 |
-
}
|
1274 |
-
|
1275 |
-
.rpt_recommended_plan img.rpt_recommended {
|
1276 |
-
position: absolute !important;
|
1277 |
-
right: 10px !important
|
1278 |
-
}
|
1279 |
-
|
1280 |
-
.rpt_style_bic .rpt_recommended_plan, .rpt_style_loc .rpt_recommended_plan {
|
1281 |
-
-webkit-box-shadow: 1px 1px 6px 0 rgba(50, 50, 50, .39);
|
1282 |
-
-moz-box-shadow: 1px 1px 6px 0 rgba(50, 50, 50, .39);
|
1283 |
-
box-shadow: 1px 1px 6px 0 rgba(50, 50, 50, .39)
|
1284 |
-
}
|
1285 |
-
|
1286 |
-
a.rpt_tooltip {
|
1287 |
-
display: block;
|
1288 |
-
outline: 0;
|
1289 |
-
position: relative
|
1290 |
-
}
|
1291 |
-
|
1292 |
-
a.rpt_tooltip strong {
|
1293 |
-
line-height: 30px
|
1294 |
-
}
|
1295 |
-
|
1296 |
-
a.rpt_tooltip > span.intool {
|
1297 |
-
width: 90%;
|
1298 |
-
padding: 10px;
|
1299 |
-
margin-top: 56px;
|
1300 |
-
opacity: 0;
|
1301 |
-
visibility: hidden;
|
1302 |
-
z-index: 10;
|
1303 |
-
position: absolute;
|
1304 |
-
top: -15px;
|
1305 |
-
display: block;
|
1306 |
-
color: #f5f5f5;
|
1307 |
-
font-size: 13px;
|
1308 |
-
line-height: 20px;
|
1309 |
-
background: #333;
|
1310 |
-
font-weight: 300;
|
1311 |
-
text-align: center
|
1312 |
-
}
|
1313 |
-
|
1314 |
-
a.rpt_tooltip:hover {
|
1315 |
-
cursor: zoom-in
|
1316 |
-
}
|
1317 |
-
|
1318 |
-
a.rpt_tooltip .rpt_tooltip_plus {
|
1319 |
-
text-decoration: none !important;
|
1320 |
-
display: inline;
|
1321 |
-
font-size: 12px;
|
1322 |
-
font-weight: 700;
|
1323 |
-
position: relative;
|
1324 |
-
top: -6px
|
1325 |
-
}
|
1326 |
-
|
1327 |
-
.rpt_feature:hover a.rpt_tooltip > span.intool {
|
1328 |
-
opacity: .98;
|
1329 |
-
text-decoration: none;
|
1330 |
-
visibility: visible;
|
1331 |
-
overflow: visible
|
1332 |
-
}
|
1333 |
-
|
1334 |
-
a.rpt_tooltip span.intool b {
|
1335 |
-
width: 10px;
|
1336 |
-
height: 10px;
|
1337 |
-
margin-left: 35%;
|
1338 |
-
margin-top: -15px;
|
1339 |
-
position: absolute;
|
1340 |
-
-webkit-transform: rotate(-45deg);
|
1341 |
-
-moz-transform: rotate(-45deg);
|
1342 |
-
-o-transform: rotate(-45deg);
|
1343 |
-
transform: rotate(-45deg);
|
1344 |
-
display: none \0/;
|
1345 |
-
background: #333
|
1346 |
-
}
|
1347 |
-
|
1348 |
-
.rpt_3_plans a.rpt_tooltip > span.intool {
|
1349 |
-
margin-left: -1%
|
1350 |
-
}
|
1351 |
-
|
1352 |
-
.rpt_4_plans a.rpt_tooltip > span.intool {
|
1353 |
-
margin-left: 0
|
1354 |
-
}
|
1355 |
-
|
1356 |
-
.rpt_5_plans a.rpt_tooltip > span.intool {
|
1357 |
-
margin-left: -2%
|
1358 |
-
}
|
1359 |
-
|
1360 |
-
.entry-content .rpt_plan a, .rpt_plan a {
|
1361 |
-
border-bottom: none !important;
|
1362 |
-
text-decoration: none;
|
1363 |
-
}
|
1364 |
-
|
1365 |
-
.rpt_plans .rpt_plan .rpt_icon {
|
1366 |
-
max-width: 30px;
|
1367 |
-
max-height: 30px
|
1368 |
-
}
|
1369 |
-
|
1370 |
-
.rpt_plans .rpt_plan img {
|
1371 |
-
display: inline;
|
1372 |
-
margin: 0 10px 0 0;
|
1373 |
-
padding: 0;
|
1374 |
-
-webkit-box-shadow: 0 0 0 0 transparent;
|
1375 |
-
-moz-box-shadow: 0 0 0 0 transparent;
|
1376 |
-
box-shadow: 0 0 0 0 transparent;
|
1377 |
-
border: none
|
1378 |
-
}
|
1379 |
-
|
1380 |
-
.mystickymenu-testimonial {
|
1381 |
-
position: relative;
|
1382 |
-
}
|
1383 |
-
.mystickymenu-testimonial .testimonial-data {
|
1384 |
-
position: relative;
|
1385 |
-
}
|
1386 |
-
.mystickymenu-testimonial .testimonial-data {
|
1387 |
-
position: relative;
|
1388 |
-
margin-left: 30px;
|
1389 |
-
padding: 10px 10px 10px 40px;
|
1390 |
-
background: #f5f5f5;
|
1391 |
-
font-size: 16px;
|
1392 |
-
line-height: 22px;
|
1393 |
-
}
|
1394 |
-
.mystickymenu-testimonial .testimonial-image {
|
1395 |
-
position: absolute;
|
1396 |
-
height: 60px;
|
1397 |
-
width: 60px;
|
1398 |
-
overflow: hidden;
|
1399 |
-
border-radius: 30px;
|
1400 |
-
top: 50%;
|
1401 |
-
margin-top: -30px;
|
1402 |
-
z-index: 1;
|
1403 |
-
}
|
1404 |
-
.mystickymenu-testimonial .testimonial-image img {
|
1405 |
-
width: 100%;
|
1406 |
-
height: auto;
|
1407 |
-
}
|
1408 |
-
.mystickymenu-testimonial-list {
|
1409 |
-
width: 100%;
|
1410 |
-
max-width: 1080px;
|
1411 |
-
margin: 30px auto;
|
1412 |
-
}
|
1413 |
-
.testimonial-title {
|
1414 |
-
font-weight: bold;
|
1415 |
-
font-size: 18px;
|
1416 |
-
padding: 0 0 5px 0;
|
1417 |
-
}
|
1418 |
-
.testimonial-author {
|
1419 |
-
font-size: 16px;
|
1420 |
-
font-style: italic;
|
1421 |
-
font-weight: 500;
|
1422 |
-
padding: 5px 0 0 0;
|
1423 |
-
}
|
1424 |
-
p.udner-title strong {
|
1425 |
-
font-size: 30px;
|
1426 |
-
padding-bottom: 40px;
|
1427 |
-
display: block;
|
1428 |
-
color: #b97fcf;
|
1429 |
-
text-align: center;
|
1430 |
-
}
|
1431 |
-
p.udner-title {
|
1432 |
-
margin: 0;
|
1433 |
-
padding: 0;
|
1434 |
-
}
|
1435 |
-
@media only screen and (max-width: 640px) {
|
1436 |
-
.rpt_plans .rpt_plan {
|
1437 |
-
width: 96%;
|
1438 |
-
margin: 10px 2% 20px !important
|
1439 |
-
}
|
1440 |
-
|
1441 |
-
.rpt_plans .rpt_plan .rpt_title {
|
1442 |
-
position: relative;
|
1443 |
-
font-size: 26px !important;
|
1444 |
-
line-height: 35px !important
|
1445 |
-
}
|
1446 |
-
|
1447 |
-
.rpt_plans .rpt_plan .rpt_head .rpt_price {
|
1448 |
-
font-size: 74px !important;
|
1449 |
-
line-height: 100px !important
|
1450 |
-
}
|
1451 |
-
|
1452 |
-
.rpt_plans .rpt_plan .rpt_head .rpt_subtitle {
|
1453 |
-
font-size: 17px !important;
|
1454 |
-
line-height: 28px !important;
|
1455 |
-
padding: 10px 40px 20px
|
1456 |
-
}
|
1457 |
-
|
1458 |
-
.rpt_plans .rpt_plan .rpt_head .rpt_description {
|
1459 |
-
font-size: 15px !important;
|
1460 |
-
line-height: 26px !important;
|
1461 |
-
padding: 0 40px 30px
|
1462 |
-
}
|
1463 |
-
|
1464 |
-
.rpt_plans .rpt_plan .rpt_features .rpt_feature {
|
1465 |
-
padding: 6px 16px;
|
1466 |
-
font-size: 14px !important
|
1467 |
-
}
|
1468 |
-
|
1469 |
-
.rpt_plans .rpt_plan .rpt_foot {
|
1470 |
-
padding: 10px 40px;
|
1471 |
-
text-align: center;
|
1472 |
-
color: #fff;
|
1473 |
-
font-size: 20px
|
1474 |
-
}
|
1475 |
-
|
1476 |
-
.rpt_plans .rpt_recommended_plan .rpt_foot {
|
1477 |
-
font-size: 30px;
|
1478 |
-
font-weight: 300;
|
1479 |
-
padding: 20px 0
|
1480 |
-
}
|
1481 |
-
|
1482 |
-
.rpt_plan .rpt_head .rpt_price .rpt_currency {
|
1483 |
-
top: -36px !important;
|
1484 |
-
left: -10px !important;
|
1485 |
-
font-size: 35px !important
|
1486 |
-
}
|
1487 |
-
}
|
1488 |
-
|
1489 |
-
#rpt_pricr .rpt_plan_ori .rpt_features .rpt_feature, #rpt_pricr .rpt_plan_ori .rpt_features .rpt_feature a, #rpt_pricr .rpt_plan_ori .rpt_foot, #rpt_pricr .rpt_plan_ori .rpt_head .rpt_description, #rpt_pricr .rpt_plan_ori .rpt_head .rpt_price, #rpt_pricr .rpt_plan_ori .rpt_head .rpt_price .rpt_currency, #rpt_pricr .rpt_plan_ori .rpt_head .rpt_recurrence, #rpt_pricr .rpt_plan_ori .rpt_head .rpt_subtitle, #rpt_pricr .rpt_plan_ori .rpt_title {
|
1490 |
-
font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif !important;
|
1491 |
-
font-weight: 300 !important
|
1492 |
-
}
|
1493 |
-
|
1494 |
-
.client-testimonial {
|
1495 |
-
margin: 20px auto 0px;
|
1496 |
-
-webkit-border-radius: 5px;
|
1497 |
-
-moz-border-radius: 5px;
|
1498 |
-
border-radius: 5px;
|
1499 |
-
}
|
1500 |
-
.client-testimonial span.dashicons.dashicons-yes {
|
1501 |
-
background: #00bd00;
|
1502 |
-
color: #fff;
|
1503 |
-
border-radius: 50%;
|
1504 |
-
-webkit-border-radius: 50%;
|
1505 |
-
-moz-border-radius: 50%;
|
1506 |
-
}
|
1507 |
-
.client-testimonial p.text-center {
|
1508 |
-
text-align: center;
|
1509 |
-
margin: 6px 0;
|
1510 |
-
font-size: 14px;
|
1511 |
-
}
|
1512 |
-
.client-testimonial .payment {
|
1513 |
-
margin: 20px 0;
|
1514 |
-
text-align: center;
|
1515 |
-
}
|
1516 |
-
.testimonial-image {
|
1517 |
-
width: 10%;
|
1518 |
-
display: inline-block;
|
1519 |
-
vertical-align: middle;
|
1520 |
-
}
|
1521 |
-
.testimonial-content {
|
1522 |
-
width: 85%;
|
1523 |
-
display: inline-block;
|
1524 |
-
vertical-align: middle;
|
1525 |
-
padding-left: 15px;
|
1526 |
-
}
|
1527 |
-
.testimonial-image img {
|
1528 |
-
border-radius: 50%;
|
1529 |
-
-webkit-border-radius: 50%;
|
1530 |
-
-moz-border-radius: 50%;
|
1531 |
-
width: 100%;
|
1532 |
-
height: auto;
|
1533 |
-
}
|
1534 |
-
.client-testimonial .author {
|
1535 |
-
font-weight: bold;
|
1536 |
-
padding: 5px 0 0 0;
|
1537 |
-
font-size: 14px;
|
1538 |
-
}
|
1539 |
-
.testimonial-box {
|
1540 |
-
padding: 15px;
|
1541 |
-
background: #d6efff;
|
1542 |
-
-webkit-border-radius: 5px;
|
1543 |
-
-moz-border-radius: 5px;
|
1544 |
-
border-radius: 5px;
|
1545 |
-
}
|
1546 |
-
|
1547 |
-
/*01-08-2019 welcome bar css*/
|
1548 |
-
#sticky-header-welcome-bar *, #sticky-header-welcome-bar ::before, #sticky-header-welcome-bar ::after {
|
1549 |
-
-webkit-box-sizing: border-box;
|
1550 |
-
-moz-box-sizing: border-box;
|
1551 |
-
box-sizing: border-box;
|
1552 |
-
}
|
1553 |
-
#sticky-header-welcome-bar .iris-picker, #sticky-header-welcome-bar .iris-picker * {
|
1554 |
-
-moz-box-sizing: content-box;
|
1555 |
-
-webkit-box-sizing: content-box;
|
1556 |
-
box-sizing: content-box;
|
1557 |
-
}
|
1558 |
-
.mysticky-welcomebar-switch {
|
1559 |
-
display: inline-block;
|
1560 |
-
width:55px;
|
1561 |
-
height:30px;
|
1562 |
-
position: relative;
|
1563 |
-
}
|
1564 |
-
.mysticky-welcomebar-switch input {
|
1565 |
-
opacity: 0;
|
1566 |
-
width: 0;
|
1567 |
-
height: 0;
|
1568 |
-
}
|
1569 |
-
.mysticky-welcomebar-switch .slider {
|
1570 |
-
border-radius: 15px;
|
1571 |
-
position: absolute;
|
1572 |
-
cursor: pointer;
|
1573 |
-
top: 0;
|
1574 |
-
left: 0;
|
1575 |
-
right: 0;
|
1576 |
-
bottom: 0;
|
1577 |
-
background-color: #ccc;
|
1578 |
-
border: 2px solid #ccc;
|
1579 |
-
-webkit-transition: .4s;
|
1580 |
-
transition: .4s;
|
1581 |
-
}
|
1582 |
-
.mysticky-welcomebar-switch .slider:before {
|
1583 |
-
border-radius: 50%;
|
1584 |
-
position: absolute;
|
1585 |
-
content: "";
|
1586 |
-
height: 24px;
|
1587 |
-
width: 24px;
|
1588 |
-
left: 2px;
|
1589 |
-
top: 1px;
|
1590 |
-
background-color: #ffffff;
|
1591 |
-
-webkit-transition: .4s;
|
1592 |
-
transition: .4s;
|
1593 |
-
}
|
1594 |
-
.mysticky-welcomebar-switch input:checked + .slider {
|
1595 |
-
background-color: #7761DF;
|
1596 |
-
border: 2px solid #7761DF;
|
1597 |
-
}
|
1598 |
-
.mysticky-welcomebar-switch input:focus + .slider {
|
1599 |
-
box-shadow: 0 0 1px #2196F3;
|
1600 |
-
}
|
1601 |
-
.mysticky-welcomebar-switch input:checked + .slider:before {
|
1602 |
-
-webkit-transform: translateX(24px);
|
1603 |
-
-ms-transform: translateX(24px);
|
1604 |
-
transform: translateX(24px);
|
1605 |
-
}
|
1606 |
-
.mysticky-welcomebar-form {
|
1607 |
-
background-color: #f8fcfd;
|
1608 |
-
border: 1px solid #E1E6E6;
|
1609 |
-
padding: 20px;
|
1610 |
-
border-radius: 7px;
|
1611 |
-
position: relative;
|
1612 |
-
}
|
1613 |
-
.mysticky-welcomebar-header-title h3 {
|
1614 |
-
margin: 0;
|
1615 |
-
font-size: 26px;
|
1616 |
-
color: #4F4F4F;
|
1617 |
-
line-height: 1.2;
|
1618 |
-
display: inline-block;
|
1619 |
-
vertical-align: top;
|
1620 |
-
}
|
1621 |
-
.mysticky-welcomebar-header-title h3 + .mysticky-welcomebar-switch {
|
1622 |
-
margin-left: 20px;
|
1623 |
-
}
|
1624 |
-
.mysticky-welcomebar-subheader-title {
|
1625 |
-
padding: 40px 0 30px;
|
1626 |
-
}
|
1627 |
-
.mysticky-welcomebar-subheader-title h4 {
|
1628 |
-
margin: 0;
|
1629 |
-
font-weight: 400;
|
1630 |
-
font-size: 22px;
|
1631 |
-
line-height: 1.2;
|
1632 |
-
color: #4F4F4F;
|
1633 |
-
}
|
1634 |
-
.mysticky-welcomebar-setting-content {
|
1635 |
-
display: flex;
|
1636 |
-
/*align-items: center;*/
|
1637 |
-
padding-bottom: 20px;
|
1638 |
-
}
|
1639 |
-
.mysticky-welcomebar-setting-content.show-on-apper {
|
1640 |
-
align-items: flex-start;
|
1641 |
-
}
|
1642 |
-
.mysticky-welcomebar-setting-content > label {
|
1643 |
-
font-size: 18px;
|
1644 |
-
line-height: 1.2;
|
1645 |
-
color: #4F4F4F;
|
1646 |
-
font-weight: 500;
|
1647 |
-
margin-top: 10px;
|
1648 |
-
width: 210px;
|
1649 |
-
padding-right: 10px;
|
1650 |
-
}
|
1651 |
-
.mysticky-welcomebar-setting-content.show-on-apper > label {
|
1652 |
-
margin-top: 10px;
|
1653 |
-
}
|
1654 |
-
.mysticky-welcomebar-setting-content-right {
|
1655 |
-
width: 100%;
|
1656 |
-
align-items: center;
|
1657 |
-
display: flex;
|
1658 |
-
}
|
1659 |
-
.mysticky-welcomebar-setting-wrap .myStickymenu-upgrade {
|
1660 |
-
display: inline-block;
|
1661 |
-
vertical-align: top;
|
1662 |
-
float: none;
|
1663 |
-
margin-left: 20px;
|
1664 |
-
}
|
1665 |
-
.mysticky-welcomebar-setting-wrap .mysticky-welcomebar-setting-position .myStickymenu-upgrade {
|
1666 |
-
margin-left: 50px;
|
1667 |
-
}
|
1668 |
-
.mysticky-welcomebar-setting-wrap .mysticky-welcomebar-setting-remove-getbar .myStickymenu-upgrade {
|
1669 |
-
margin-left: 130px;
|
1670 |
-
}
|
1671 |
-
.mysticky-welcomebar-setting-content-right.mysticky-welcomebar-colorpicker .wp-picker-container{
|
1672 |
-
display: inline-block;
|
1673 |
-
}
|
1674 |
-
.mysticky-welcomebar-setting-content-right label {
|
1675 |
-
display: inline-block;
|
1676 |
-
vertical-align: top;
|
1677 |
-
width: 100px;
|
1678 |
-
padding-right: 10px;
|
1679 |
-
}
|
1680 |
-
.mysticky-welcomebar-setting-content-right .wp-picker-input-wrap label {
|
1681 |
-
width: auto;
|
1682 |
-
}
|
1683 |
-
.mysticky-welcomebar-setting-content-right .mysticky-welcomebar-trigger-wrap label {
|
1684 |
-
width: auto;
|
1685 |
-
}
|
1686 |
-
#mystickymenu .mysticky-welcomebar-setting-content-right .px-wrap input {
|
1687 |
-
padding-right: 60px;
|
1688 |
-
}
|
1689 |
-
.mysticky-welcomebar-setting-content-right select ,
|
1690 |
-
.mysticky-welcomebar-setting-content-right input[type="text"] ,
|
1691 |
-
.mysticky-welcomebar-setting-content-right textarea {
|
1692 |
-
width: 310px;
|
1693 |
-
height: 42px;
|
1694 |
-
border-radius: 20px;
|
1695 |
-
color: #32373c;
|
1696 |
-
display: block;
|
1697 |
-
padding: 0 10px;
|
1698 |
-
box-shadow: none;
|
1699 |
-
border: 1px solid #DCE2E2;
|
1700 |
-
margin: 0;
|
1701 |
-
font-size: 14px;
|
1702 |
-
font-weight: 400;
|
1703 |
-
}
|
1704 |
-
.mysticky-welcomebar-setting-content-right select {
|
1705 |
-
padding-right: 22px;
|
1706 |
-
}
|
1707 |
-
.mysticky-welcomebar-setting-content-right textarea {
|
1708 |
-
height: 100px;
|
1709 |
-
border-radius: 10px;
|
1710 |
-
padding-top: 9px;
|
1711 |
-
}
|
1712 |
-
#mystickymenu .wp-picker-container input[type="text"].wp-color-picker {
|
1713 |
-
border-radius: 0;
|
1714 |
-
height: 32px;
|
1715 |
-
border: 1px solid #DCE2E2;
|
1716 |
-
}
|
1717 |
-
#mystickymenu .wp-picker-input-wrap .button {
|
1718 |
-
height: 32px;
|
1719 |
-
}
|
1720 |
-
#mystickymenu .form-table .wp-picker-input-wrap label {
|
1721 |
-
padding-right: 10px;
|
1722 |
-
}
|
1723 |
-
.mysticky-welcomebar-setting-action {
|
1724 |
-
display: inline-block;
|
1725 |
-
vertical-align: top;
|
1726 |
-
}
|
1727 |
-
.mysticky-welcomebar-setting-action + .mysticky-welcomebar-setting-action {
|
1728 |
-
padding-left: 10px;
|
1729 |
-
}
|
1730 |
-
.mysticky-welcomebar-redirect label {
|
1731 |
-
width: auto;
|
1732 |
-
padding-right: 0;
|
1733 |
-
padding-top: 10px;
|
1734 |
-
}
|
1735 |
-
.mysticky-welcomebar-expirydate {
|
1736 |
-
position: relative;
|
1737 |
-
display: inline-block;
|
1738 |
-
vertical-align: top;
|
1739 |
-
}
|
1740 |
-
.mysticky-welcomebar-setting-content-right .mysticky-welcomebar-expirydate input {
|
1741 |
-
padding-left: 55px;
|
1742 |
-
}
|
1743 |
-
.mysticky-welcomebar-expirydate .dashicons {
|
1744 |
-
position: absolute;
|
1745 |
-
top: 0;
|
1746 |
-
left: 0;
|
1747 |
-
bottom: 0;
|
1748 |
-
color: #a7a7a7;
|
1749 |
-
border-right: 1px solid #a7a7a7;
|
1750 |
-
width: 46px;
|
1751 |
-
height: 100%;
|
1752 |
-
line-height: 40px;
|
1753 |
-
}
|
1754 |
-
a.create-rule {
|
1755 |
-
background-color: #7761DF;
|
1756 |
-
color: #fff;
|
1757 |
-
display: inline-block;
|
1758 |
-
margin: 10px 0 0;
|
1759 |
-
vertical-align: top;
|
1760 |
-
text-decoration: none;
|
1761 |
-
padding: 5px 12px;
|
1762 |
-
border-radius: 20px;
|
1763 |
-
box-shadow: none;
|
1764 |
-
outline: none;
|
1765 |
-
}
|
1766 |
-
.mysticky-welcomebar-upgrade-main {
|
1767 |
-
position: relative;
|
1768 |
-
vertical-align: top;
|
1769 |
-
width: 100%;
|
1770 |
-
padding-right: 10px;
|
1771 |
-
padding-bottom: 0;
|
1772 |
-
}
|
1773 |
-
.mysticky-welcomebar-upgrade-main .myStickymenu-upgrade {
|
1774 |
-
float: right;
|
1775 |
-
}
|
1776 |
-
.mysticky-welcomebar-page-option {
|
1777 |
-
margin-bottom: 20px;
|
1778 |
-
position: relative;
|
1779 |
-
}
|
1780 |
-
.mysticky-welcomebar-page-option select {
|
1781 |
-
width: 230px;
|
1782 |
-
}
|
1783 |
-
.mysticky-welcomebar-page-option .myStickymenu-upgrade {
|
1784 |
-
display: none;
|
1785 |
-
position: absolute;
|
1786 |
-
top: 9px;
|
1787 |
-
left: 50%;
|
1788 |
-
-webkit-transform: translateX(-50%);
|
1789 |
-
-moz-transform: translateX(-50%);
|
1790 |
-
transform: translateX(-50%);
|
1791 |
-
text-align: center;
|
1792 |
-
margin-left: 0;
|
1793 |
-
}
|
1794 |
-
.mysticky-welcomebar-page-option .myStickymenu-upgrade a {
|
1795 |
-
padding-top: 5px;
|
1796 |
-
padding-bottom: 7px;
|
1797 |
-
padding-left: 20px;
|
1798 |
-
padding-right: 20px;
|
1799 |
-
font-size: 14px;
|
1800 |
-
box-shadow: 0 0 3px #999;
|
1801 |
-
}
|
1802 |
-
.mysticky-welcomebar-page-option:hover .myStickymenu-upgrade {
|
1803 |
-
display: block;
|
1804 |
-
}
|
1805 |
-
.mysticky-welcomebar-page-option .url-content {
|
1806 |
-
/*display: flex;*/
|
1807 |
-
overflow:hidden;
|
1808 |
-
align-items: center;
|
1809 |
-
}
|
1810 |
-
.mysticky-welcomebar-page-option .url-content > div {
|
1811 |
-
padding: 0 5px;
|
1812 |
-
float: left;
|
1813 |
-
|
1814 |
-
}
|
1815 |
-
|
1816 |
-
.mysticky-welcomebar-page-option .url-content .mysticky-welcomebar-url-values,
|
1817 |
-
.mysticky-welcomebar-page-option .url-content .mysticky-welcomebar-url-option{
|
1818 |
-
width: 20%;
|
1819 |
-
}
|
1820 |
-
.mysticky-welcomebar-page-option .url-content > div.mysticky-welcomebar-url-box {
|
1821 |
-
width: 28%;
|
1822 |
-
text-align: right;
|
1823 |
-
margin-top: 10px;
|
1824 |
-
}
|
1825 |
-
|
1826 |
-
/*.mysticky-welcomebar-page-option .url-content select {
|
1827 |
-
width: 120px;
|
1828 |
-
}
|
1829 |
-
*/
|
1830 |
-
.mysticky-welcomebar-page-option .url-content input[type="text"] {
|
1831 |
-
height: 38px;
|
1832 |
-
padding: 0 15px;
|
1833 |
-
border-radius: 0;
|
1834 |
-
}
|
1835 |
-
|
1836 |
-
.mysticky-page-option .myStickymenu-upgrade {
|
1837 |
-
float: none;
|
1838 |
-
position: absolute;
|
1839 |
-
top: 0;
|
1840 |
-
left: 50%;
|
1841 |
-
/* right: 0; */
|
1842 |
-
text-align: center;
|
1843 |
-
/* background-color: rgba(0,0,0,0.6); */
|
1844 |
-
bottom: 0;
|
1845 |
-
border-radius: 10px;
|
1846 |
-
display: none;
|
1847 |
-
align-items: center;
|
1848 |
-
justify-content: center;
|
1849 |
-
-webkit-transform: translateX(-50%);
|
1850 |
-
-moz-transform: translateX(-50%);
|
1851 |
-
transform: translateX(-50%);
|
1852 |
-
}
|
1853 |
-
.mysticky-page-option:hover .myStickymenu-upgrade {
|
1854 |
-
display: flex;
|
1855 |
-
}
|
1856 |
-
.mysticky-page-option .myStickymenu-upgrade a {
|
1857 |
-
padding-top: 5px;
|
1858 |
-
padding-bottom: 7px;
|
1859 |
-
padding-left: 20px;
|
1860 |
-
padding-right: 20px;
|
1861 |
-
font-size: 14px;
|
1862 |
-
box-shadow: 0 0 3px #999;
|
1863 |
-
}
|
1864 |
-
.mysticky-page-option {
|
1865 |
-
background-color: #fff;
|
1866 |
-
padding: 10px;
|
1867 |
-
margin-bottom: 10px;
|
1868 |
-
border: 1px solid #DCE2E2;
|
1869 |
-
border-radius: 10px;
|
1870 |
-
position: relative;
|
1871 |
-
}
|
1872 |
-
.mysticky-page-option .url-content {
|
1873 |
-
display: flex;
|
1874 |
-
align-items: center;
|
1875 |
-
}
|
1876 |
-
.mysticky-page-option .url-content > div {
|
1877 |
-
padding: 0 5px;
|
1878 |
-
}
|
1879 |
-
.mysticky-page-option .url-content > div.mysticky-welcomebar-url-box {
|
1880 |
-
width: 260px;
|
1881 |
-
text-align: right;
|
1882 |
-
}
|
1883 |
-
.mysticky-page-option .url-content > div.mysticky-welcomebar-url-box {
|
1884 |
-
width: 300px;
|
1885 |
-
}
|
1886 |
-
.mysticky-page-option .url-content select {
|
1887 |
-
width: 250px;
|
1888 |
-
}
|
1889 |
-
.mysticky-page-option .url-content input[type="text"] {
|
1890 |
-
height: 38px;
|
1891 |
-
padding: 0 15px;
|
1892 |
-
border-radius: 0;
|
1893 |
-
}
|
1894 |
-
.mystickymenu-page-target-wrap {
|
1895 |
-
padding-bottom: 20px;
|
1896 |
-
}
|
1897 |
-
|
1898 |
-
.mysticky-welcomebar-remove-rule ,
|
1899 |
-
.mysticky-remove-rule {
|
1900 |
-
color: #fff;
|
1901 |
-
background-color: #666;
|
1902 |
-
text-decoration: none;
|
1903 |
-
display: inline-block;
|
1904 |
-
vertical-align: top;
|
1905 |
-
width: 38px;
|
1906 |
-
height: 38px;
|
1907 |
-
text-align: center;
|
1908 |
-
border-radius: 4px;
|
1909 |
-
font-size: 22px;
|
1910 |
-
line-height: 35px;
|
1911 |
-
}
|
1912 |
-
.mysticky-welcomebar-page-options {
|
1913 |
-
display: inline-block;
|
1914 |
-
vertical-align: top;
|
1915 |
-
}
|
1916 |
-
.mysticky-welcomebar-setting-right {
|
1917 |
-
position: absolute;
|
1918 |
-
top: 32px;
|
1919 |
-
right: 50px;
|
1920 |
-
width: 500px;
|
1921 |
-
}
|
1922 |
-
.mysticky-welcomebar-header-title::after {
|
1923 |
-
content: "";
|
1924 |
-
display: block;
|
1925 |
-
clear: both;
|
1926 |
-
}
|
1927 |
-
.mysticky-welcomebar-preview-window {
|
1928 |
-
float: right;
|
1929 |
-
}
|
1930 |
-
.mysticky-welcomebar-header-title {
|
1931 |
-
padding-bottom: 20px;
|
1932 |
-
}
|
1933 |
-
.mysticky-welcomebar-preview-window ul {
|
1934 |
-
margin: 0;
|
1935 |
-
padding: 0;
|
1936 |
-
}
|
1937 |
-
.mysticky-welcomebar-preview-window ul li {
|
1938 |
-
color: #7761DF;
|
1939 |
-
display: inline-block;
|
1940 |
-
vertical-align: top;
|
1941 |
-
width: 36px;
|
1942 |
-
height: 36px;
|
1943 |
-
background-color: #DFDDF7;
|
1944 |
-
border-radius: 50%;
|
1945 |
-
text-align: center;
|
1946 |
-
line-height: 36px;
|
1947 |
-
margin-bottom: 0;
|
1948 |
-
margin-left: 10px;
|
1949 |
-
}
|
1950 |
-
.mysticky-welcomebar-preview-window ul li.preview-active {
|
1951 |
-
color: #fff;
|
1952 |
-
background-color: #7761DF;
|
1953 |
-
}
|
1954 |
-
.mysticky-welcomebar-preview-window ul li .dashicons {
|
1955 |
-
line-height: 36px;
|
1956 |
-
}
|
1957 |
-
.mysticky-welcomebar-preview-screen {
|
1958 |
-
background-color: #ffffff;
|
1959 |
-
border: 1px solid #DCE2E2;
|
1960 |
-
border-radius: 10px;
|
1961 |
-
margin: 0 auto;
|
1962 |
-
padding: 0;
|
1963 |
-
height: 400px;
|
1964 |
-
position: relative;
|
1965 |
-
overflow: hidden;
|
1966 |
-
max-width: 100%;
|
1967 |
-
-webkit-transition: all 0.5s ease 0s;
|
1968 |
-
-moz-transition: all 0.5s ease 0s;
|
1969 |
-
transition: all 0.5s ease 0s;
|
1970 |
-
}
|
1971 |
-
.mysticky-welcomebar-preview-screen.mysticky-welcomebar-preview-mobile-screen {
|
1972 |
-
max-width: 320px;
|
1973 |
-
}
|
1974 |
-
.mysticky-welcomebar-submit {
|
1975 |
-
float: right;
|
1976 |
-
padding-top: 50px;
|
1977 |
-
margin-right: -20px;
|
1978 |
-
}
|
1979 |
-
.mysticky-welcomebar-form-reset .mysticky-welcomebar-submit {
|
1980 |
-
margin-right: 0;
|
1981 |
-
padding-top: 30px;
|
1982 |
-
}
|
1983 |
-
.mysticky-welcomebar-submit input.button-secondary {
|
1984 |
-
background: #969696;
|
1985 |
-
border-color: #969696;
|
1986 |
-
color: #ffffff;
|
1987 |
-
text-transform: uppercase;
|
1988 |
-
border-radius: 31px;
|
1989 |
-
font-size: 26px;
|
1990 |
-
margin-right: 10px;
|
1991 |
-
padding-left: 23px;
|
1992 |
-
padding-right: 23px;
|
1993 |
-
height: 60px;
|
1994 |
-
width: 200px;
|
1995 |
-
border: 0;
|
1996 |
-
box-shadow: none;
|
1997 |
-
font-weight: 600;
|
1998 |
-
text-shadow: none;
|
1999 |
-
}
|
2000 |
-
.mysticky-welcomebar-page-option .url-content > div.mysticky-welcomebar-url-buttons {
|
2001 |
-
padding-right: 0;
|
2002 |
-
}
|
2003 |
-
.ui-dialog-buttonset .green-btn.ui-button {
|
2004 |
-
background-color: #00c67c;
|
2005 |
-
border-color: #00c67c;
|
2006 |
-
color: #fff;
|
2007 |
-
}
|
2008 |
-
.mysticky-welcomebar-setting-content-right.mysticky-welcomebar-setting-redirect-wrap {
|
2009 |
-
display: block;
|
2010 |
-
}
|
2011 |
-
.mysticky-welcomebar-setting-wrap .mysticky-welcomebar-setting-redirect-wrap .myStickymenu-upgrade {
|
2012 |
-
margin-top: 7px;
|
2013 |
-
}
|
2014 |
-
.updates-form-form {
|
2015 |
-
min-height: calc(100vh - 280px);
|
2016 |
-
}
|
2017 |
-
.popup-form-content {
|
2018 |
-
background: #ffffff;
|
2019 |
-
min-height: 100px;
|
2020 |
-
width: 450px;
|
2021 |
-
text-align: center;
|
2022 |
-
margin-top: 50px;
|
2023 |
-
border: solid 1px #c1c1c1;
|
2024 |
-
}
|
2025 |
-
.updates-content-buttons button {
|
2026 |
-
margin: 10px 3px !important;
|
2027 |
-
float: left;
|
2028 |
-
}
|
2029 |
-
.updates-content-buttons a span {
|
2030 |
-
-webkit-animation: fa-spin 0.75s infinite linear;
|
2031 |
-
animation: fa-spin 0.75s infinite linear;
|
2032 |
-
}
|
2033 |
-
.updates-content-buttons a:hover, .updates-content-buttons a:focus {
|
2034 |
-
color: #ffffff;
|
2035 |
-
background-image: linear-gradient(rgba(0,0,0,.1),rgba(0,0,0,.1));
|
2036 |
-
}
|
2037 |
-
.updates-content-buttons a:focus {
|
2038 |
-
outline: 0;
|
2039 |
-
box-shadow: 0 0 0 2px #fff, 0 0 0 4px rgba(50,100,150,.4);
|
2040 |
-
}
|
2041 |
-
.updates-content-buttons button.form-cancel-btn {
|
2042 |
-
float: right !important;
|
2043 |
-
}
|
2044 |
-
.form-submit-btn {
|
2045 |
-
background-color: #3085d6;
|
2046 |
-
}
|
2047 |
-
.updates-content-buttons a span {
|
2048 |
-
-webkit-animation: fa-spin 0.75s infinite linear;
|
2049 |
-
animation: fa-spin 0.75s infinite linear;
|
2050 |
-
}
|
2051 |
-
.add-update-mystickymenu-title {
|
2052 |
-
font-size: 20px;
|
2053 |
-
line-height: 30px;
|
2054 |
-
padding: 20px 20px 0;
|
2055 |
-
}
|
2056 |
-
.mystickymenu-form-input {
|
2057 |
-
padding: 10px 20px;
|
2058 |
-
}
|
2059 |
-
.mystickymenu-form-input input {
|
2060 |
-
width: 100%;
|
2061 |
-
transition: border-color .3s,box-shadow .3s;
|
2062 |
-
border: 1px solid #d9d9d9;
|
2063 |
-
border-radius: .1875em;
|
2064 |
-
font-size: 1.125em;
|
2065 |
-
box-shadow: inset 0 1px 1px rgba(0,0,0,.06);
|
2066 |
-
box-sizing: border-box;
|
2067 |
-
height: 2.625em;
|
2068 |
-
margin: 1em auto;
|
2069 |
-
}
|
2070 |
-
.updates-content-buttons {
|
2071 |
-
background: #c1c1c1;
|
2072 |
-
padding: 0 20px;
|
2073 |
-
}
|
2074 |
-
div#wp-mysticky_bar_text-wrap {
|
2075 |
-
width: 40%;
|
2076 |
-
}
|
2077 |
-
|
2078 |
-
.mystickymenu-popup {
|
2079 |
-
position: fixed;
|
2080 |
-
width: 100%;
|
2081 |
-
height: 100%;
|
2082 |
-
top: 0;
|
2083 |
-
left: 0;
|
2084 |
-
z-index: 100001;
|
2085 |
-
background: rgba(0, 0, 0, .75)
|
2086 |
-
}
|
2087 |
-
|
2088 |
-
.mystickymenu-popup-box {
|
2089 |
-
padding: 0;
|
2090 |
-
width: 600px;
|
2091 |
-
max-width: 100%;
|
2092 |
-
margin: auto;
|
2093 |
-
top: 50%;
|
2094 |
-
position: absolute;
|
2095 |
-
left: 0;
|
2096 |
-
right: 0;
|
2097 |
-
border-radius: 5px;
|
2098 |
-
transform: translate(0, -50%);
|
2099 |
-
-webkit-transform: translate(0, -50%);
|
2100 |
-
-moz-transform: translate(0, -50%);
|
2101 |
-
text-align: center;
|
2102 |
-
background: #fcfcfc
|
2103 |
-
}
|
2104 |
-
|
2105 |
-
.mystickymenu-popup-header {
|
2106 |
-
padding: 15px;
|
2107 |
-
font-size: 20px;
|
2108 |
-
border-bottom: solid 1px #e6e6e6
|
2109 |
-
}
|
2110 |
-
|
2111 |
-
.mystickymenu-popup-content {
|
2112 |
-
background: #fff;
|
2113 |
-
padding: 15px;
|
2114 |
-
font-size: 14px;
|
2115 |
-
line-height: 20px
|
2116 |
-
}
|
2117 |
-
|
2118 |
-
.mystickymenu-popup-content iframe {
|
2119 |
-
margin: 30px 0
|
2120 |
-
}
|
2121 |
-
|
2122 |
-
.mystickymenu-popup-footer {
|
2123 |
-
padding: 15px;
|
2124 |
-
border-top: solid 1px #e6e6e6
|
2125 |
-
}
|
2126 |
-
|
2127 |
-
.mystickymenu-popup-footer button {
|
2128 |
-
border: none;
|
2129 |
-
padding: 10px 20px;
|
2130 |
-
border-radius: 4px;
|
2131 |
-
background: #00c478;
|
2132 |
-
color: #fff;
|
2133 |
-
cursor: pointer;
|
2134 |
-
}
|
2135 |
-
|
2136 |
-
.close-mystickymenu-popup {
|
2137 |
-
margin: 0;
|
2138 |
-
padding: 0;
|
2139 |
-
background: 0 0;
|
2140 |
-
border: none;
|
2141 |
-
float: right;
|
2142 |
-
background: #000;
|
2143 |
-
border-radius: 50%;
|
2144 |
-
color: #fff;
|
2145 |
-
text-align: center;
|
2146 |
-
width: 24px;
|
2147 |
-
height: 24px;
|
2148 |
-
cursor: pointer;
|
2149 |
-
}
|
2150 |
-
|
2151 |
-
.close-mystickymenu-popup span {
|
2152 |
-
line-height: 24px
|
2153 |
-
}
|
2154 |
-
@-webkit-keyframes fa-spin {
|
2155 |
-
0% {
|
2156 |
-
-webkit-transform: rotate(0deg);
|
2157 |
-
transform: rotate(0deg);
|
2158 |
-
}
|
2159 |
-
100% {
|
2160 |
-
-webkit-transform: rotate(359deg);
|
2161 |
-
transform: rotate(359deg);
|
2162 |
-
}
|
2163 |
-
}
|
2164 |
-
@media only screen and (max-width: 1490px) {
|
2165 |
-
.mysticky-welcomebar-setting-action + .mysticky-welcomebar-setting-action {
|
2166 |
-
padding-left: 10px;
|
2167 |
-
}
|
2168 |
-
.mysticky-welcomebar-setting-right {
|
2169 |
-
width: 400px;
|
2170 |
-
}
|
2171 |
-
}
|
2172 |
-
@media only screen and (max-width: 1355px) {
|
2173 |
-
.mysticky-welcomebar-page-option .url-content select {
|
2174 |
-
width: 130px;
|
2175 |
-
}
|
2176 |
-
.mysticky-welcomebar-page-option .url-content input[type="text"] {
|
2177 |
-
width: 180px;
|
2178 |
-
}
|
2179 |
-
.mysticky-welcomebar-setting-action {
|
2180 |
-
display: block;
|
2181 |
-
}
|
2182 |
-
.mysticky-welcomebar-setting-action + .mysticky-welcomebar-setting-action {
|
2183 |
-
padding-left: 0;
|
2184 |
-
padding-top: 10px;
|
2185 |
-
}
|
2186 |
-
}
|
2187 |
-
@media only screen and (max-width: 1200px) {
|
2188 |
-
.mysticky-welcomebar-page-option .url-content select {
|
2189 |
-
width: 110px;
|
2190 |
-
}
|
2191 |
-
.mysticky-welcomebar-page-option .url-content > div.mysticky-welcomebar-url-box {
|
2192 |
-
width: 230px;
|
2193 |
-
}
|
2194 |
-
.mysticky-welcomebar-page-option {
|
2195 |
-
padding: 10px 3px;
|
2196 |
-
}
|
2197 |
-
.mysticky-welcomebar-page-option .url-content input[type="text"] {
|
2198 |
-
width: 150px;
|
2199 |
-
}
|
2200 |
-
}
|
2201 |
-
@media only screen and (max-width: 1100px) {
|
2202 |
-
.mysticky-welcomebar-setting-right {
|
2203 |
-
width: 340px;
|
2204 |
-
right: 40px;
|
2205 |
-
}
|
2206 |
-
}
|
2207 |
-
@media only screen and (max-width: 1024px) {
|
2208 |
-
.mysticky-welcomebar-setting-right {
|
2209 |
-
right: 40px;
|
2210 |
-
width: 310px;
|
2211 |
-
}
|
2212 |
-
.mysticky-welcomebar-setting-content > label {
|
2213 |
-
font-size: 16px;
|
2214 |
-
width: 200px;
|
2215 |
-
padding-right: 10px;
|
2216 |
-
}
|
2217 |
-
.mysticky-welcomebar-preview-screen.mysticky-welcomebar-preview-mobile-screen {
|
2218 |
-
max-width: 250px;
|
2219 |
-
}
|
2220 |
-
}
|
2221 |
-
|
2222 |
-
|
2223 |
-
|
2224 |
-
.mysticky-custom-fields-tooltip{
|
2225 |
-
position: relative;
|
2226 |
-
margin-left: 20px;
|
2227 |
-
}
|
2228 |
-
.mysticky-custom-fields-tooltip:hover p {
|
2229 |
-
bottom: 100%;
|
2230 |
-
opacity: 1;
|
2231 |
-
visibility: visible;
|
2232 |
-
}
|
2233 |
-
|
2234 |
-
.mysticky-custom-fields-tooltip a.mysticky-tooltip {
|
2235 |
-
width: 20px;
|
2236 |
-
height: 20px;
|
2237 |
-
line-height: 20px;
|
2238 |
-
border-radius: 35px;
|
2239 |
-
padding: 0;
|
2240 |
-
text-align: center;
|
2241 |
-
font-size: 12px;
|
2242 |
-
display: inline-block;
|
2243 |
-
color: #ffffff;
|
2244 |
-
text-decoration: none;
|
2245 |
-
}
|
2246 |
-
.mysticky-custom-fields-tooltip a.mysticky-tooltip .dashicons{
|
2247 |
-
text-transform: uppercase;
|
2248 |
-
color: #1E1E1E;
|
2249 |
-
}
|
2250 |
-
.mysticky-custom-fields-tooltip p {
|
2251 |
-
margin: 0;
|
2252 |
-
margin-bottom: 0px;
|
2253 |
-
background-color: #000;
|
2254 |
-
width: 380px;
|
2255 |
-
padding: 10px 10px;
|
2256 |
-
border-radius: 8px;
|
2257 |
-
color: #fff;
|
2258 |
-
position: absolute;
|
2259 |
-
bottom: 200%;
|
2260 |
-
left: -20px;
|
2261 |
-
margin-bottom: 10px;
|
2262 |
-
-webkit-transition: all 0.5s ease 0s;
|
2263 |
-
-moz-transition: all 0.5s ease 0s;
|
2264 |
-
transition: all 0.5s ease 0s;
|
2265 |
-
opacity: 0;
|
2266 |
-
visibility: hidden;
|
2267 |
-
}
|
2268 |
-
.mysticky-custom-fields-tooltip p::before {
|
2269 |
-
content: "";
|
2270 |
-
border-top: 10px solid #000;
|
2271 |
-
border-left: 10px solid transparent;
|
2272 |
-
|