74249687
Luigi Serra
Cross browser con...
|
1
2
3
4
5
6
7
8
|
.material-tooltip {
padding: 10px 8px;
font-size: 1rem;
z-index: 2000;
background-color: transparent;
border-radius: 2px;
color: #fff;
min-height: 36px;
|
c5169e0e
Renato De Donato
a new hope
|
9
10
|
line-height: 1rem;
// max-width: 350px;
|
74249687
Luigi Serra
Cross browser con...
|
11
12
13
14
|
opacity: 0;
display: none;
position: absolute;
text-align: center;
|
74249687
Luigi Serra
Cross browser con...
|
15
16
17
|
overflow: hidden;
left:0;
top:0;
|
c5169e0e
Renato De Donato
a new hope
|
18
|
|
74249687
Luigi Serra
Cross browser con...
|
19
20
21
22
23
24
25
26
27
28
29
30
|
will-change: top, left;
}
.backdrop {
position: absolute;
opacity: 0;
display: none;
height: 7px;
width: 14px;
border-radius: 0 0 14px 14px;
background-color: #323232;
z-index: -1;
|
c5169e0e
Renato De Donato
a new hope
|
31
|
@include transform-origin( 50% 10%);
|
74249687
Luigi Serra
Cross browser con...
|
32
33
34
|
will-change: transform, opacity;
}
|