blob: 92f3e329025e6938c66d8efc3101e93310e070f9 (
plain)
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
|
.formattedTextBox-tooltip {
position: absolute;
pointer-events: all;
height: 100%;
overflow: hidden;
z-index: 20;
background: white;
border: 1px solid silver;
border-radius: 7px;
margin-bottom: 7px;
-webkit-transform: translateX(-50%);
transform: translateX(-50%);
box-shadow: 3px 3px 1.5px grey;
max-width: 400px;
max-height: 235px;
height: max-content;
.formattedTextBox-tooltipText {
height: max-content;
text-overflow: ellipsis;
}
}
.formattedTextBox-tooltip:before {
content: '';
height: 0px;
width: 0px;
position: absolute;
left: 50%;
margin-left: -5px;
bottom: -6px;
border: 5px solid transparent;
border-bottom-width: 0px;
border-top-color: silver;
}
.formattedTextBox-tooltip:after {
content: '';
height: 0px;
width: 0px;
position: absolute;
left: 50%;
margin-left: -5px;
bottom: -4.5px;
border: 5px solid transparent;
border-bottom-width: 0px;
border-top-color: white;
}
|