blob: f2735124658eb1b55126aa3aea227396657b5949 (
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
48
49
50
51
52
53
|
@mixin effects-slidein{
/**
* SLIDE IN + FADE
* When hovering the main button, the child buttons slide out from beneath
* the main button while transitioning from transparent to opaque.
*
*/
.mfb-component--tl.mfb-slidein,
.mfb-component--tr.mfb-slidein{
.mfb-component__list li{
opacity: 0;
transition: all $slide-speed;
}
&[data-mfb-toggle="hover"]:hover,
&[data-mfb-state="open"]{
.mfb-component__list{
li{
opacity: 1;
}
@for $i from 1 through $number-of-child-buttons {
$distance: $button-space * $i;
li:nth-child( #{$i} ) {
-webkit-transform: translateY( $distance );
transform: translateY( $distance ); }
}
}
}
}
.mfb-component--bl.mfb-slidein,
.mfb-component--br.mfb-slidein{
.mfb-component__list li{
opacity: 0;
transition: all $slide-speed;
}
&[data-mfb-toggle="hover"]:hover,
&[data-mfb-state="open"]{
.mfb-component__list{
li{
opacity: 1;
}
@for $i from 1 through $number-of-child-buttons {
$distance: -1 * $button-space * $i;
li:nth-child( #{$i} ) { -webkit-transform: translateY( $distance );
transform: translateY( $distance ); }
}
}
}
}
}
|