PluginProbe
Integration for Mailchimp and Contact Form 7, WPForms, Elementor, Ninja Forms / trunk
Integration for Mailchimp and Contact Form 7, WPForms, Elementor, Ninja Forms vtrunk
1.0 1.0.1 1.0.4 1.0.5 1.0.6 1.0.7 1.1.2 1.1.6 1.1.7 1.1.8 1.1.9 1.2.0 1.2.1 1.2.2 1.2.3 trunk
cf7-mailchimp / css / tooltip.css

tooltip.css in Integration for Mailchimp and Contact Form 7, WPForms, Elementor, Ninja Forms trunk, at css/tooltip.css

112 lines 2.4 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 /* TipTip CSS - Version 1.2 */
2
3 #tiptip_holder {
4 display: none;
5 position: absolute;
6 top: 0;
7 left: 0;
8 z-index: 99999;
9 }
10
11 #tiptip_holder.tip_top {
12 padding-bottom: 5px;
13 }
14
15 #tiptip_holder.tip_bottom {
16 padding-top: 5px;
17 }
18
19 #tiptip_holder.tip_right {
20 padding-left: 5px;
21 }
22
23 #tiptip_holder.tip_left {
24 padding-right: 5px;
25 }
26
27 #tiptip_content {
28 font-size: 11px;
29 color: #fff;
30 text-shadow: 0 0 2px #000;
31 padding: 4px 8px;
32 border: 0px solid rgba(255,255,255,1);
33 background-color: rgb(25,25,25);
34 background-color: rgba(25,25,25,1);
35 border-radius: 0px;
36 -webkit-border-radius: 0px;
37 -moz-border-radius: 0px;
38 text-align: left;
39
40 }
41
42 #tiptip_arrow, #tiptip_arrow_inner {
43 position: absolute;
44 border-color: transparent;
45 border-style: solid;
46 border-width: 6px;
47 height: 0;
48 width: 0;
49 }
50
51 #tiptip_holder.tip_top #tiptip_arrow {
52 border-top-color: #fff;
53 border-top-color: rgba(255,255,255,0.35);
54 }
55
56 #tiptip_holder.tip_bottom #tiptip_arrow {
57 border-bottom-color: #fff;
58 border-bottom-color: rgba(255,255,255,0.35);
59 }
60
61 #tiptip_holder.tip_right #tiptip_arrow {
62 border-right-color: #fff;
63 border-right-color: rgba(255,255,255,0.35);
64 }
65
66 #tiptip_holder.tip_left #tiptip_arrow {
67 border-left-color: #fff;
68 border-left-color: rgba(255,255,255,0.35);
69 }
70
71 #tiptip_holder.tip_top #tiptip_arrow_inner {
72 margin-top: -7px;
73 margin-left: -6px;
74 border-top-color: rgb(25,25,25);
75 border-top-color: rgba(25,25,25,1);
76 }
77
78 #tiptip_holder.tip_bottom #tiptip_arrow_inner {
79 margin-top: -5px;
80 margin-left: -6px;
81 border-bottom-color: rgb(25,25,25);
82 border-bottom-color: rgba(25,25,25,1);
83 }
84
85 #tiptip_holder.tip_right #tiptip_arrow_inner {
86 margin-top: -6px;
87 margin-left: -5px;
88 border-right-color: rgb(25,25,25);
89 border-right-color: rgba(25,25,25,1);
90 }
91
92 #tiptip_holder.tip_left #tiptip_arrow_inner {
93 margin-top: -6px;
94 margin-left: -7px;
95 border-left-color: rgb(25,25,25);
96 border-left-color: rgba(25,25,25,1);
97 }
98
99 /* Webkit Hacks */
100 @media screen and (-webkit-min-device-pixel-ratio:0) {
101 #tiptip_content {
102 padding: 4px 8px 5px 8px;
103 background-color: rgba(45,45,45,1);
104 }
105 #tiptip_holder.tip_bottom #tiptip_arrow_inner {
106 border-bottom-color: rgba(45,45,45,1);
107 }
108 #tiptip_holder.tip_top #tiptip_arrow_inner {
109 border-top-color: rgba(20,20,20,1);
110 }
111 }
112