PluginProbe ʕ •ᴥ•ʔ
Smash Balloon Social Post Feed – Simple Social Feeds for WordPress / 4.10.0
Smash Balloon Social Post Feed – Simple Social Feeds for WordPress v4.10.0
4.12.0 4.10.0 4.9.0 4.8.1 trunk 1.0 1.1 1.12.1 1.2.3 1.2.4 1.2.5 1.2.7 1.2.8 1.2.9 1.3.0 1.3.1 1.3.2 1.3.3 1.3.4 1.3.5 1.3.6 1.3.7 1.4.0 1.4.1 1.4.2 1.4.3 1.4.4 1.4.5 1.4.6 1.4.7 1.4.8 1.5 1.5.1 1.5.2 1.5.9 1.6.0 1.6.1 1.6.2 1.6.3 1.6.4 1.6.4.1 1.6.5 1.6.5.1 1.6.6 1.6.6.1 1.6.6.2 1.6.6.3 1.6.7 1.6.7.1 1.6.8 1.6.8.1 1.6.8.2 1.7.0 1.7.1 1.7.2 1.8.0 1.8.1 1.8.2 1.8.2.1 1.8.2.2 1.8.2.3 1.9.0 1.9.1 1.9.3 1.9.4 1.9.5 1.9.6 1.9.7 1.9.8 1.9.8.1 1.9.9 1.9.9.1 1.9.9.2 1.9.9.3 2.0 2.0.1 2.1 2.1.1 2.1.2 2.1.3 2.10 2.11 2.11.1 2.12 2.12.1 2.12.2 2.12.3 2.12.4 2.13 2.14 2.14.1 2.15 2.15.1 2.16 2.16.1 2.17 2.17.1 2.18 2.18.1 2.18.2 2.18.3 2.19 2.19.1 2.19.2 2.19.3 2.2 2.2.1 2.3 2.3.1 2.3.10 2.3.2 2.3.3 2.3.4 2.3.6 2.3.7 2.3.8 2.3.9 2.4 2.4.1 2.4.1.1 2.4.1.2 2.4.2 2.4.3 2.4.4 2.4.5 2.4.6 2.5 2.5.1 2.5.2 2.6 2.6.1 2.6.2 2.6.3 2.6.4 2.7 2.7.1 2.7.2 2.8 2.9 2.9.1 4.0 4.0.1 4.0.2 4.0.3 4.0.4 4.0.5 4.1 4.1.1 4.1.2 4.1.3 4.1.4 4.1.5 4.1.6 4.1.7 4.1.8 4.1.9 4.2 4.2.1 4.2.2 4.2.3 4.2.4 4.2.5 4.2.6 4.3.0 4.3.1 4.3.2 4.3.3 4.3.4 4.7.5 4.7.6 4.7.7
custom-facebook-feed / admin / builder / assets / css / tooltipster.css
custom-facebook-feed / admin / builder / assets / css Last commit date
builder.css 3 weeks ago global.css 3 weeks ago preview.css 3 weeks ago tooltipster.css 3 weeks ago
tooltipster.css
489 lines
1 /* This is the core CSS of Tooltipster */
2
3 /* GENERAL STRUCTURE RULES (do not edit this section) */
4
5 .tooltipster-base {
6 /* this ensures that a constrained height set by functionPosition,
7 if greater that the natural height of the tooltip, will be enforced
8 in browsers that support display:flex */
9 display: flex;
10 pointer-events: none;
11 /* this may be overriden in JS for fixed position origins */
12 position: absolute;
13 }
14
15 .tooltipster-box {
16 /* see .tooltipster-base. flex-shrink 1 is only necessary for IE10-
17 and flex-basis auto for IE11- (at least) */
18 flex: 1 1 auto;
19 }
20
21 .tooltipster-content {
22 /* prevents an overflow if the user adds padding to the div */
23 box-sizing: border-box;
24 /* these make sure we'll be able to detect any overflow */
25 max-height: 100%;
26 max-width: 100%;
27 overflow: auto;
28 }
29
30 .tooltipster-ruler {
31 /* these let us test the size of the tooltip without overflowing the window */
32 bottom: 0;
33 left: 0;
34 overflow: hidden;
35 position: fixed;
36 right: 0;
37 top: 0;
38 visibility: hidden;
39 }
40
41 /* ANIMATIONS */
42
43 /* Open/close animations */
44
45 /* fade */
46
47 .tooltipster-fade {
48 opacity: 0;
49 -webkit-transition-property: opacity;
50 -moz-transition-property: opacity;
51 -o-transition-property: opacity;
52 -ms-transition-property: opacity;
53 transition-property: opacity;
54 }
55 .tooltipster-fade.tooltipster-show {
56 opacity: 1;
57 }
58
59 /* grow */
60
61 .tooltipster-grow {
62 -webkit-transform: scale(0,0);
63 -moz-transform: scale(0,0);
64 -o-transform: scale(0,0);
65 -ms-transform: scale(0,0);
66 transform: scale(0,0);
67 -webkit-transition-property: -webkit-transform;
68 -moz-transition-property: -moz-transform;
69 -o-transition-property: -o-transform;
70 -ms-transition-property: -ms-transform;
71 transition-property: transform;
72 -webkit-backface-visibility: hidden;
73 }
74 .tooltipster-grow.tooltipster-show {
75 -webkit-transform: scale(1,1);
76 -moz-transform: scale(1,1);
77 -o-transform: scale(1,1);
78 -ms-transform: scale(1,1);
79 transform: scale(1,1);
80 -webkit-transition-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
81 -webkit-transition-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1.15);
82 -moz-transition-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1.15);
83 -ms-transition-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1.15);
84 -o-transition-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1.15);
85 transition-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1.15);
86 }
87
88 /* swing */
89
90 .tooltipster-swing {
91 opacity: 0;
92 -webkit-transform: rotateZ(4deg);
93 -moz-transform: rotateZ(4deg);
94 -o-transform: rotateZ(4deg);
95 -ms-transform: rotateZ(4deg);
96 transform: rotateZ(4deg);
97 -webkit-transition-property: -webkit-transform, opacity;
98 -moz-transition-property: -moz-transform;
99 -o-transition-property: -o-transform;
100 -ms-transition-property: -ms-transform;
101 transition-property: transform;
102 }
103 .tooltipster-swing.tooltipster-show {
104 opacity: 1;
105 -webkit-transform: rotateZ(0deg);
106 -moz-transform: rotateZ(0deg);
107 -o-transform: rotateZ(0deg);
108 -ms-transform: rotateZ(0deg);
109 transform: rotateZ(0deg);
110 -webkit-transition-timing-function: cubic-bezier(0.230, 0.635, 0.495, 1);
111 -webkit-transition-timing-function: cubic-bezier(0.230, 0.635, 0.495, 2.4);
112 -moz-transition-timing-function: cubic-bezier(0.230, 0.635, 0.495, 2.4);
113 -ms-transition-timing-function: cubic-bezier(0.230, 0.635, 0.495, 2.4);
114 -o-transition-timing-function: cubic-bezier(0.230, 0.635, 0.495, 2.4);
115 transition-timing-function: cubic-bezier(0.230, 0.635, 0.495, 2.4);
116 }
117
118 /* fall */
119
120 .tooltipster-fall {
121 -webkit-transition-property: top;
122 -moz-transition-property: top;
123 -o-transition-property: top;
124 -ms-transition-property: top;
125 transition-property: top;
126 -webkit-transition-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
127 -webkit-transition-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1.15);
128 -moz-transition-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1.15);
129 -ms-transition-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1.15);
130 -o-transition-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1.15);
131 transition-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1.15);
132 }
133 .tooltipster-fall.tooltipster-initial {
134 top: 0 !important;
135 }
136 .tooltipster-fall.tooltipster-show {
137 }
138 .tooltipster-fall.tooltipster-dying {
139 -webkit-transition-property: all;
140 -moz-transition-property: all;
141 -o-transition-property: all;
142 -ms-transition-property: all;
143 transition-property: all;
144 top: 0 !important;
145 opacity: 0;
146 }
147
148 /* slide */
149
150 .tooltipster-slide {
151 -webkit-transition-property: left;
152 -moz-transition-property: left;
153 -o-transition-property: left;
154 -ms-transition-property: left;
155 transition-property: left;
156 -webkit-transition-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
157 -webkit-transition-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1.15);
158 -moz-transition-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1.15);
159 -ms-transition-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1.15);
160 -o-transition-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1.15);
161 transition-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1.15);
162 }
163 .tooltipster-slide.tooltipster-initial {
164 left: -40px !important;
165 }
166 .tooltipster-slide.tooltipster-show {
167 }
168 .tooltipster-slide.tooltipster-dying {
169 -webkit-transition-property: all;
170 -moz-transition-property: all;
171 -o-transition-property: all;
172 -ms-transition-property: all;
173 transition-property: all;
174 left: 0 !important;
175 opacity: 0;
176 }
177
178 /* Update animations */
179
180 /* We use animations rather than transitions here because
181 transition durations may be specified in the style tag due to
182 animationDuration, and we try to avoid collisions and the use
183 of !important */
184
185 /* fade */
186
187 @keyframes tooltipster-fading {
188 0% {
189 opacity: 0;
190 }
191 100% {
192 opacity: 1;
193 }
194 }
195
196 .tooltipster-update-fade {
197 animation: tooltipster-fading 400ms;
198 }
199
200 /* rotate */
201
202 @keyframes tooltipster-rotating {
203 25% {
204 transform: rotate(-2deg);
205 }
206 75% {
207 transform: rotate(2deg);
208 }
209 100% {
210 transform: rotate(0);
211 }
212 }
213
214 .tooltipster-update-rotate {
215 animation: tooltipster-rotating 600ms;
216 }
217
218 /* scale */
219
220 @keyframes tooltipster-scaling {
221 50% {
222 transform: scale(1.1);
223 }
224 100% {
225 transform: scale(1);
226 }
227 }
228
229 .tooltipster-update-scale {
230 animation: tooltipster-scaling 600ms;
231 }
232
233 /**
234 * DEFAULT STYLE OF THE SIDETIP PLUGIN
235 *
236 * All styles are "namespaced" with .tooltipster-sidetip to prevent
237 * conflicts between plugins.
238 */
239
240 /* .tooltipster-box */
241
242 .tooltipster-sidetip .tooltipster-box {
243 background: #565656;
244 border: 2px solid black;
245 border-radius: 4px;
246 }
247
248 .tooltipster-sidetip.tooltipster-left .tooltipster-box {
249 margin-right: 8px;
250 }
251
252 .tooltipster-sidetip.tooltipster-right .tooltipster-box {
253 margin-left: 8px;
254 }
255
256 .tooltipster-sidetip.tooltipster-top .tooltipster-box {
257 margin-bottom: 8px;
258 }
259
260 /* .tooltipster-content */
261
262 .tooltipster-sidetip .tooltipster-content {
263 color: white;
264 line-height: 18px;
265 padding: 6px 14px;
266 }
267
268 /* .tooltipster-arrow : will keep only the zone of .tooltipster-arrow-uncropped that
269 corresponds to the arrow we want to display */
270
271 .tooltipster-sidetip .tooltipster-arrow {
272 overflow: hidden;
273 position: absolute;
274 }
275
276 .tooltipster-sidetip.tooltipster-bottom .tooltipster-arrow {
277 height: 10px;
278 /* half the width, for centering */
279 margin-left: -10px;
280 top: 0;
281 width: 20px;
282 }
283
284 .tooltipster-sidetip.tooltipster-left .tooltipster-arrow {
285 height: 20px;
286 margin-top: -10px;
287 right: 0;
288 /* top 0 to keep the arrow from overflowing .tooltipster-base when it has not
289 been positioned yet */
290 top: 0;
291 width: 10px;
292 }
293
294 .tooltipster-sidetip.tooltipster-right .tooltipster-arrow {
295 height: 20px;
296 margin-top: -10px;
297 left: 0;
298 /* same as .tooltipster-left .tooltipster-arrow */
299 top: 0;
300 width: 10px;
301 }
302
303 .tooltipster-sidetip.tooltipster-top .tooltipster-arrow {
304 bottom: 0;
305 height: 10px;
306 margin-left: -10px;
307 width: 20px;
308 }
309
310 /* common rules between .tooltipster-arrow-background and .tooltipster-arrow-border */
311
312 .tooltipster-sidetip .tooltipster-arrow-background, .tooltipster-sidetip .tooltipster-arrow-border {
313 height: 0;
314 position: absolute;
315 width: 0;
316 }
317
318 /* .tooltipster-arrow-background */
319
320 .tooltipster-sidetip .tooltipster-arrow-background {
321 border: 10px solid transparent;
322 }
323
324 .tooltipster-sidetip.tooltipster-bottom .tooltipster-arrow-background {
325 border-bottom-color: #565656;
326 left: 0;
327 top: 3px;
328 }
329
330 .tooltipster-sidetip.tooltipster-left .tooltipster-arrow-background {
331 border-left-color: #565656;
332 left: -3px;
333 top: 0;
334 }
335
336 .tooltipster-sidetip.tooltipster-right .tooltipster-arrow-background {
337 border-right-color: #565656;
338 left: 3px;
339 top: 0;
340 }
341
342 .tooltipster-sidetip.tooltipster-top .tooltipster-arrow-background {
343 border-top-color: #565656;
344 left: 0;
345 top: -3px;
346 }
347
348 /* .tooltipster-arrow-border */
349
350 .tooltipster-sidetip .tooltipster-arrow-border {
351 border: 10px solid transparent;
352 left: 0;
353 top: 0;
354 }
355
356 .tooltipster-sidetip.tooltipster-bottom .tooltipster-arrow-border {
357 border-bottom-color: black;
358 }
359
360 .tooltipster-sidetip.tooltipster-left .tooltipster-arrow-border {
361 border-left-color: black;
362 }
363
364 .tooltipster-sidetip.tooltipster-right .tooltipster-arrow-border {
365 border-right-color: black;
366 }
367
368 .tooltipster-sidetip.tooltipster-top .tooltipster-arrow-border {
369 border-top-color: black;
370 }
371
372 /* tooltipster-arrow-uncropped */
373
374 .tooltipster-sidetip .tooltipster-arrow-uncropped {
375 position: relative;
376 }
377
378 .tooltipster-sidetip.tooltipster-bottom .tooltipster-arrow-uncropped {
379 top: -10px;
380 }
381
382 .tooltipster-sidetip.tooltipster-right .tooltipster-arrow-uncropped {
383 left: -10px;
384 }
385
386 .wp-editor .cff-tooltip-wizard{
387 -webkit-transform: translateY(63px) translateX(17px);
388 transform: translateY(63px) translateX(17px);
389 }
390 .cff-tooltip-wizard.tooltipster-sidetip .tooltipster-box{
391 background: #fff!important;
392 border: 1px solid #eee!important;
393 border-radius: 2px!important;
394 box-shadow: 0px 1px 18px rgba(0,0,0,0.2)!important;
395 }
396 .cff-tooltip-wizard.tooltipster-sidetip .tooltipster-content{
397 color: #434960!important;
398 line-height: 18px;
399 padding: 6px 20px!important;
400 position: relative;
401 }
402 .cff-tooltip-wizard .cff-tooltip-wizard-head {
403 color: #141B38;
404 font-size: 15px;
405 margin-bottom: 8px;
406 width: 100%;
407 float: left;
408 display: block
409 }
410 .cff-tooltip-wizard .cff-tooltip-wizard-txt{
411 margin-bottom: 15px;
412 }
413
414 .cff-tooltip-wizard .cff-tooltip-wizard-actions button{
415 background: #F3F4F5!important;
416 cursor: pointer!important;
417 border: 1px solid #DCDDE1!important;
418 padding: 5px 20px!important;
419 }
420 .cff-tooltip-wizard .cff-tooltip-wizard-actions{
421 margin-bottom: 10px;
422 }
423
424 .cff-tooltip-wizard.tooltipster-sidetip .tooltipster-box:before, .cff-tooltip-wizard.tooltipster-sidetip .tooltipster-box:after {
425 content: '';
426 position: absolute;
427 width: 20px;
428 height: 20px;
429 left: 20%;
430 top: -8px;
431 background: #fff;
432 box-shadow: 0px 1px 18px rgba(0,0,0,0.2);
433 z-index: 3;
434 -webkit-transform: rotate(45deg);
435 transform: rotate(45deg);
436 }
437
438 .cff-tooltip-wizard.tooltipster-sidetip .tooltipster-box:after {
439 background: #fff;
440 z-index: 999;
441 top: 2px;
442 margin-left: -10px;
443 width: 40px;
444 box-shadow: unset;
445 -webkit-transform: rotate(0deg);
446 transform: rotate(0deg);
447 }
448 .cff-tooltip-wizard.tooltipster-sidetip .tooltipster-arrow{
449 display: none;
450 }
451 #cff-gutenberg-tooltip-content{
452 display: none;
453 }
454 .cff-tlp-wizard-cls{
455 position: absolute;
456 width: 20px;
457 height: 20px;
458 right: 14px;
459 top: 14px;
460 cursor: pointer;
461 }
462 .cff-tlp-wizard-cls:before, .cff-tlp-wizard-cls:after{
463 content: '';
464 position: absolute;
465 width: 16px;
466 height: 2px;
467 background: #141B38;
468 left: 3px;
469 top: 7px;
470 -webkit-transform: rotate(45deg);
471 transform: rotate(45deg);
472 }
473 .cff-tlp-wizard-cls:after{
474 -webkit-transform: rotate(-45deg);
475 transform: rotate(-45deg);
476 }
477 .cff-tooltip-wizard.tooltipster-sidetip #cff-gutenberg-tooltip-content{
478 display: block;
479 }
480
481 .cff-tooltip-wizard.tooltipster-sidetip {
482 margin-top: 56px;
483 margin-left: 124px;
484 }
485
486 .is-fullscreen-mode .cff-tooltip-wizard.tooltipster-sidetip {
487 margin-top: 26px;
488 margin-left: 24px;
489 }