PluginProbe ʕ •ᴥ•ʔ
My Sticky Bar – Floating Notification Bar & Sticky Header (formerly myStickymenu) / 2.8.2
My Sticky Bar – Floating Notification Bar & Sticky Header (formerly myStickymenu) v2.8.2
2.9.1 2.9.0 2.8.9 2.8.8 trunk 1.0 1.1 1.2 1.3 1.4 1.5 1.6 1.7 1.8 1.8.1 1.8.2 1.8.3 1.8.4 1.8.5 1.8.6 1.8.7 1.8.8 1.8.9 1.9 1.9.1 2.0 2.0.1 2.0.3 2.0.4 2.0.5 2.0.6 2.1 2.1.1 2.1.2 2.1.3 2.1.4 2.1.5 2.1.6 2.1.7 2.1.8 2.2 2.2.1 2.2.2 2.2.3 2.2.4 2.2.5 2.2.6 2.2.7 2.2.8 2.2.9 2.3 2.3.1 2.3.2 2.3.3 2.3.4 2.3.5 2.3.6 2.3.7 2.3.8 2.3.9 2.4 2.4.1 2.4.2 2.4.3 2.4.4 2.4.5 2.4.6 2.4.7 2.4.8 2.4.9 2.5 2.5.1 2.5.2 2.5.3 2.5.4 2.5.5 2.5.6 2.5.7 2.5.8 2.5.9 2.6 2.6.1 2.6.2 2.6.3 2.6.4 2.6.5 2.6.6 2.6.7 2.6.8 2.6.9 2.7 2.7.1 2.7.2 2.7.3 2.7.4 2.7.5 2.7.6 2.7.7 2.7.8 2.7.9 2.8.0 2.8.1 2.8.2 2.8.3 2.8.4 2.8.5 2.8.6 2.8.7
mystickymenu / css / help.css
mystickymenu / css Last commit date
admin-setting-rtl.css 2 years ago admin-setting.css 2 years ago help.css 1 year ago jquery.ui.datepicker.css 2 years ago mystickybar-admin-rtl.css 1 year ago mystickybar-admin.css 1 year ago mystickymenu-admin-rtl.css 1 year ago mystickymenu-admin.css 1 year ago mystickymenu-help-rtl.css 2 years ago mystickymenu-help.css 2 years ago pricing-table.css 1 year ago select2.min.css 2 years ago star-rating-svg.css 2 years ago
help.css
448 lines
1 :root {
2 --premio-help-primary-color: #6558F5;
3 --premio-help-hover-color: #8479F7;
4 }
5 body{
6 background-color: #fff;
7 }
8 /* Old CSS */
9 /* Help btn */
10 #wpfooter {
11 display: none;
12 }
13 .plugins-php .premio-help-wrap, .plugins-php .premio-help-button-wrap{
14 display: none;
15 }
16 .plugins-php #wpfooter {
17 display: block;
18 }
19
20 .premio-help-form {
21 position: fixed;
22 right: 25px;
23 border: 1px solid #e9edf0;
24 bottom: 100px;
25 background: #fff;
26 -webkit-border-radius: 10px;
27 -moz-border-radius: 10px;
28 border-radius: 10px;
29 width: 320px;
30 z-index: 1001;
31 direction: ltr;
32 visibility: hidden;
33 opacity: 0;
34 transition: .4s;
35 -webkit-transition: .4s;
36 -moz-transition: .4s
37 }
38
39 .premio-help-form.active {
40 opacity: 1;
41 visibility: visible;
42 pointer-events: inherit
43 }
44
45 .premio-help-header {
46 background: #f4f4f4;
47 border-bottom: solid 1px #e9edf0;
48 padding: 5px 20px;
49 -webkit-border-radius: 10px;
50 -moz-border-radius: 10px;
51 border-radius: 10px 10px 0 0;
52 font-size: 16px;
53 text-align: right
54 }
55
56 .premio-help-header b {
57 float: left
58 }
59
60 .premio-help-content {
61 margin-bottom: 10px;
62 padding: 20px 20px 10px
63 }
64
65 .premio-help-form p {
66 margin: 0 0 1em
67 }
68
69 .premio-form-field {
70 margin-bottom: 10px
71 }
72
73 .premio-form-field input,
74 .premio-form-field textarea {
75 -webkit-border-radius: 5px;
76 -moz-border-radius: 5px;
77 border-radius: 5px;
78 padding: 5px;
79 width: 100%;
80 box-sizing: border-box;
81 border: 1px solid #c5c5c5
82 }
83
84 .premio-form-field textarea {
85 height: 70px
86 }
87
88 .premio-help-button-submit {
89 border: none;
90 padding: 8px 0;
91 width: 100%;
92 background-color: var(--premio-help-primary-color);
93 color: #fff;
94 border-radius: 18px;
95 transition: 0.4s;
96 }
97 .premio-help-button-submit:hover{
98 background-color: var(--premio-help-hover-color);
99 }
100
101 .premio-help-form .error-message {
102 font-weight: 400;
103 font-size: 14px
104 }
105
106 .premio-help-form input.input-error,
107 .premio-help-form textarea.input-error {
108 border-color: #dc3232
109 }
110
111 p.error-p,
112 p.success-p {
113 margin: 0;
114 font-size: 14px;
115 text-align: center
116 }
117
118 /* Help From */
119 p.success-p {
120 color: green
121 }
122
123 p.error-p {
124 color: #dc3232
125 }
126
127 html[dir=rtl] .premio-help-button {
128 left: 20px;
129 right: auto
130 }
131
132 html[dir=rtl] .premio-help-form {
133 left: 85px;
134 right: auto
135 }
136
137 /* Old CSS */
138
139 .premio-footer-help {
140 position: absolute;
141 bottom: 0;
142 left: 0;
143 right: 0;
144 padding: 0 80px;
145 color: #50575e;
146 margin-top: 50px;
147 }
148
149 .premio-footer-help * {
150 box-sizing: border-box
151 }
152
153 .premio-help-wrap {
154 display: flex;
155 justify-content: space-between;
156 padding-left: 180px;
157 height: 60px;
158 }
159
160 .premio-help-menu {
161 display: flex;
162 gap: 24px;
163 padding: 20px 20px 10px;
164 }
165
166 .premio-help-menu a {
167 color: var(--premio-help-primary-color);
168 text-align: center;
169 /* font-family: Poppins; */
170 font-size: 12px;
171 font-style: normal;
172 font-weight: 600;
173 line-height: 140%;
174 text-decoration: none;
175 }
176 .premio-help-menu a:hover {
177 color: var(--premio-help-hover-color);
178 }
179
180 .premio-help-menu a:focus {
181 outline: none !important;
182 border: none !important;
183 box-shadow: none !important;
184 }
185
186 .premio-help-content p {
187 color: #83A1B7;
188 text-align: center;
189 /* font-family: Poppins; */
190 font-size: 14px;
191 font-style: normal;
192 font-weight: 400;
193 line-height: 140%;
194 margin: 0 !important;
195 }
196
197 .premio-help-content p a {
198 color: var(--premio-help-primary-color);
199 font-weight: 700;
200 text-decoration: none;
201 transition: 0.4s;
202 }
203 .premio-help-content p a:hover{
204 color: var(--premio-help-hover-color);
205 }
206
207 .premio-help-button-wrap {
208 height: 64px;
209 width: 64px;
210 position: fixed;
211 bottom: 25px;
212 right: 25px;
213 z-index: 99;
214 }
215
216 .premio-help-button-wrap img {
217 height: 100%;
218 width: 100%;
219 margin: 0 auto;
220 }
221
222 .premio-help-button,
223 .premio-help-close-btn {
224 background-color: var(--premio-help-primary-color);
225 display: inline-block;
226 height: 64px;
227 width: 64px;
228 padding: 11px;
229 border-radius: 50%;
230 transition: 0.4s;
231 }
232 .premio-help-button:hover {
233 background-color: var(--premio-help-hover-color);
234 }
235
236 .premio-help-button.hide {
237 display: none;
238 }
239
240 .premio-help-close-btn {
241 background-color: #000 !important;
242 padding: 16px;
243 display: none;
244 }
245
246 .premio-help-close-btn.show {
247 display: inline-block;
248 }
249
250 .premio-help-button-wrap span.tooltiptext {
251 position: absolute;
252 background: #000;
253 font-size: 12px;
254 color: #fff;
255 top: -40px;
256 max-width: 140%;
257 text-align: center;
258 left: -14%;
259 border-radius: 5px;
260 direction: ltr;
261 visibility: visible;
262 opacity: 1;
263 padding: 8px 12px;
264 font-weight: 600;
265 line-height: 1.5;
266 }
267
268 .premio-help-button-wrap span.tooltiptext:after {
269 top: auto;
270 bottom: -9px;
271 content: "";
272 transform: translateX(-50%);
273 border-width: 10px 5px 0;
274 border-style: solid;
275 border-color: #000 transparent transparent;
276 left: 75%;
277 position: absolute;
278 }
279
280 .premio-form-field input,
281 .premio-form-field textarea {
282 min-height: 1px;
283 line-height: 1.4;
284 -webkit-border-radius: 5px;
285 -moz-border-radius: 5px;
286 border-radius: 5px;
287 padding: 5px 10px;
288 display: block;
289 width: 100%;
290 box-sizing: border-box;
291 border: 1px solid #c5c5c5;
292 }
293
294 .help-form-footer {
295 text-align: center;
296 }
297
298 .help-form-footer p {
299 margin: 0;
300 padding: 0;
301 }
302
303 .help-form-footer p+p {
304 margin: 0;
305 padding: 10px 0;
306 }
307
308 .premio-help-form input.input-error,
309 .premio-help-form textarea.input-error {
310 border-color: #dc3232;
311 }
312
313
314 .premio-help-absulate-content {
315 position: absolute;
316 right: 0;
317 bottom: 100%;
318 width: 200px;
319 visibility: hidden;
320 opacity: 0;
321 transform: translateY(10px);
322 /* optional slide effect */
323 transition: opacity 0.4s ease, transform 0.4s ease;
324 pointer-events: none;
325 /* prevent interaction when hidden */
326 }
327
328 /* .premio-help-button-wrap:hover .premio-help-absulate-content, */
329 .premio-help-absulate-content.active {
330 visibility: visible;
331 opacity: 1;
332 transform: translateY(0);
333 pointer-events: auto;
334 }
335
336 .premio-help-absulate-content-single {
337 opacity: 0;
338 visibility: hidden;
339 pointer-events: none;
340 transform: translateY(20px);
341 text-decoration: none !important;
342 }
343 .premio-help-absulate-content-single:focus {
344 box-shadow: none;
345 }
346
347 .premio-help-absulate-content.active .premio-help-absulate-content-single {
348 animation: slideInBottom 0.4s forwards ease;
349 pointer-events: auto;
350 visibility: visible;
351 }
352
353 .premio-help-absulate-content.hide .premio-help-absulate-content-single {
354 animation: slideOutTop 0.4s forwards ease;
355 }
356
357 @keyframes slideInBottom {
358 0% {
359 opacity: 0;
360 transform: translateY(20px);
361 visibility: visible;
362 }
363
364 100% {
365 opacity: 1;
366 transform: translateY(0);
367 visibility: visible;
368 }
369 }
370
371 @keyframes slideOutTop {
372 0% {
373 opacity: 1;
374 transform: translateY(0);
375 visibility: visible;
376 }
377
378 100% {
379 opacity: 0;
380 transform: translateY(20px);
381 visibility: hidden;
382 }
383 }
384
385 .premio-help-absulate-content a {
386 display: flex;
387 justify-content: end;
388 gap: 8px;
389 align-items: center;
390 margin-bottom: 8px;
391 }
392
393 .premio-help-absulate-content-single span {
394 background-color: var(--premio-help-primary-color);
395 color: #fff;
396 transition: 0.4s;
397 }
398
399 .premio-help-absulate-content-single:hover span{
400 background-color: var(--premio-help-hover-color);
401 }
402 .premio-help-absulate-content-single .icon-img {
403 padding: 16px;
404 height: 64px;
405 width: 64px;
406 display: inline-block;
407 border-radius: 50%;
408 }
409
410 .premio-help-absulate-content-single .icon-img.pro {
411 background: var(--Main-gradient, linear-gradient(180deg, #F69D01 0%, #F65901 100%));
412 }
413
414 .premio-help-absulate-content-single .text {
415 padding: 8px 16px;
416 border-radius: 8px;
417 box-shadow: 0px 12px 16px -4px rgba(10, 13, 18, 0.08), 0px 4px 6px -2px rgba(10, 13, 18, 0.03);
418 }
419
420 .premio-form-response p {
421 margin: 10px 0;
422 }
423
424 @media (max-width: 960px) {
425 .premio-help-wrap {
426 padding-left: 20px;
427 }
428 }
429
430 @media (max-width: 576px) {
431 .premio-help-menu {
432 gap: 8px;
433 padding: 0;
434 }
435
436 .premio-help-content {
437 padding: 0;
438 }
439 }
440
441 @media (max-width: 480px) {
442 .premio-help-menu {
443 display: none;
444 }
445 }
446
447
448