blob: cff35300d55290b9c3b2b520039eac9f6dfee7d0 (
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
|
@keyframes o-btn-ripple {
100% {
opacity: 0;
transform: scale(2.5);
}
}
.o_ripple_item {
display: none;
position: absolute;
z-index: -1;
border-radius: 100%;
opacity: .3;
background: currentColor;
pointer-events: none;
transform: scale(0);
}
.o_js_ripple_effect {
transform-style: preserve-3d;
position: relative !important;
overflow: hidden !important;
.o_ripple_item {
display: block;
animation: o-btn-ripple ease-in;
}
}
|