tooltip.css
1.21 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
.tooltip {
position: absolute;
width: -moz-fit-content;
width: -webkit-fit-content;
width: fit-content;
max-width:280px;
padding: 15px 10px 15px 20px;
background: #172638;
color: white;
font-family: Arial, sans-serif;
font-size: 13px;
border-radius: 5px;
border: 0px !important;
z-index: 1070;
margin: -10px 0;
}
.tooltip-bottom:after {
content: " ";
height: 0;
width: 0;
margin-left: -6px;
position: absolute;
bottom: 100%;
left: 50%;
border: solid transparent;
border-bottom-color: #172638;
border-width: 6px;
}
.tooltip:after {
content: " ";
height: 0;
width: 0;
margin-left: -6px;
position: absolute;
top: 100%;
left: 50%;
border: solid transparent;
border-top-color: #172638;
border-width: 6px;
}
/*Fix temporary - class="tooltip" send e-mail administrator community*/
.action-contact-new .tooltip{
position:initial;
background:none;
color:#172537;
font-family: Arial, sans-serif;
max-width: 520px;
padding: 15px 20px;
margin: 20px 0 30px 0;
border: 1px dotted #ccc !important;
border-left: 5px solid #FF0366 !important;
line-height: 20px;
}
.action-contact-new .tooltip:after{
content:none;
}
/*************************************/