PluginProbe ʕ •ᴥ•ʔ
Custom Twitter Feeds – A Tweets Widget or X Feed Widget / 2.8.0
Custom Twitter Feeds – A Tweets Widget or X Feed Widget v2.8.0
2.8.0 2.7.0 2.6.1 2.6.0 1.0 1.0.1 1.1 1.1.1 1.1.2 1.1.3 1.1.4 1.1.5 1.1.6 1.1.7 1.1.8 1.2 1.2.1 1.2.10 1.2.11 1.2.2 1.2.3 1.2.4 1.2.5 1.2.6 1.2.7 1.2.8 1.2.9 1.3 1.4 1.4.1 1.5 1.5.1 1.6 1.6.1 1.7 1.8 1.8.1 1.8.2 1.8.3 1.8.4 2.0 2.0.1 2.0.2 2.0.3 2.0.4 2.0.5 2.0.6 2.0.7 2.1 2.1.1 2.1.2 2.2 2.2.1 2.2.2 2.2.3 2.2.4 2.2.5 2.3.0 2.3.1 2.5.4 2.5.5 trunk
custom-twitter-feeds / admin / builder / assets / css / tooltipster.css
custom-twitter-feeds / 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
513 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 @media (min-width: 960px) {
386 body .ctf-tooltip-wizard.tooltipster-sidetip {
387 left: 50px !important;
388 top: 74px !important;
389 }
390 }
391 .wp-editor .ctf-tooltip-wizard{
392 -webkit-transform: translateY(63px) translateX(17px);
393 transform: translateY(63px) translateX(17px);
394 }
395 .ctf-tooltip-wizard.tooltipster-sidetip .tooltipster-box{
396 background: #fff!important;
397 border: 1px solid #eee!important;
398 border-radius: 2px!important;
399 box-shadow: 0px 1px 18px rgba(0,0,0,0.2)!important;
400 }
401 .ctf-tooltip-wizard.tooltipster-sidetip .tooltipster-content{
402 color: #434960!important;
403 line-height: 18px;
404 padding: 6px 20px!important;
405 position: relative;
406 }
407 .ctf-tooltip-wizard .ctf-tooltip-wizard-head {
408 color: #141B38;
409 font-size: 15px;
410 margin-bottom: 8px;
411 width: 100%;
412 float: left;
413 display: block
414 }
415 .ctf-tooltip-wizard .ctf-tooltip-wizard-txt{
416 margin-bottom: 15px;
417 }
418
419 .ctf-tooltip-wizard .ctf-tooltip-wizard-actions button{
420 background: #F3F4F5!important;
421 cursor: pointer!important;
422 border: 1px solid #DCDDE1!important;
423 padding: 5px 20px!important;
424 }
425 .ctf-tooltip-wizard .ctf-tooltip-wizard-actions{
426 margin-bottom: 10px;
427 }
428
429 .ctf-tooltip-wizard.tooltipster-sidetip .tooltipster-box:before, .ctf-tooltip-wizard.tooltipster-sidetip .tooltipster-box:after {
430 content: '';
431 position: absolute;
432 width: 20px;
433 height: 20px;
434 left: 20%;
435 top: -8px;
436 background: #fff;
437 box-shadow: 0px 1px 18px rgba(0,0,0,0.2);
438 z-index: 3;
439 -webkit-transform: rotate(45deg);
440 transform: rotate(45deg);
441 }
442
443 .ctf-tooltip-wizard.tooltipster-sidetip .tooltipster-box:after {
444 background: #fff;
445 z-index: 999;
446 top: 2px;
447 margin-left: -10px;
448 width: 40px;
449 box-shadow: unset;
450 -webkit-transform: rotate(0deg);
451 transform: rotate(0deg);
452 }
453 .ctf-tooltip-wizard.tooltipster-sidetip .tooltipster-arrow{
454 display: none;
455 }
456 #ctf-gutenberg-tooltip-content{
457 display: none;
458 }
459 .ctf-tlp-wizard-cls{
460 position: absolute;
461 width: 20px;
462 height: 20px;
463 right: 14px;
464 top: 14px;
465 cursor: pointer;
466 }
467 .ctf-tlp-wizard-cls:before, .ctf-tlp-wizard-cls:after{
468 content: '';
469 position: absolute;
470 width: 16px;
471 height: 2px;
472 background: #141B38;
473 left: 3px;
474 top: 7px;
475 -webkit-transform: rotate(45deg);
476 transform: rotate(45deg);
477 }
478 .ctf-tlp-wizard-cls:after{
479 -webkit-transform: rotate(-45deg);
480 transform: rotate(-45deg);
481 }
482 .ctf-tooltip-wizard.tooltipster-sidetip #ctf-gutenberg-tooltip-content{
483 display: block;
484 }
485
486 .ctf-tooltip-wizard.tooltipster-sidetip {
487 margin-top: 40px;
488 margin-left: 74px;
489 }
490
491 .is-fullscreen-mode .ctf-tooltip-wizard.tooltipster-sidetip {
492 margin-top: 10px;
493 margin-left: -28px;
494 }
495 @media (max-width: 960px) {
496 .ctf-tooltip-wizard.tooltipster-sidetip {
497 margin-left: 0;
498 }
499 }
500
501 @media (max-width: 782px) {
502 .ctf-tooltip-wizard.tooltipster-sidetip .tooltipster-box:before,
503 .ctf-tooltip-wizard.tooltipster-sidetip .tooltipster-box:after {
504 left: 30px;
505 }
506 }
507
508 @media (max-width: 599px) {
509 .ctf-tooltip-wizard.tooltipster-sidetip .tooltipster-box:before,
510 .ctf-tooltip-wizard.tooltipster-sidetip .tooltipster-box:after {
511 left: 15px;
512 }
513 }