File tree Expand file tree Collapse file tree 1 file changed +10
-8
lines changed
lib/web/css/source/components Expand file tree Collapse file tree 1 file changed +10
-8
lines changed Original file line number Diff line number Diff line change 48
48
right : 0 ;
49
49
top : 0 ;
50
50
visibility : hidden ;
51
+ opacity : 0 ;
52
+ -webkit-transition : visibility 0s .3s , opacity .3s ease ;
53
+ transition : visibility 0s .3s , opacity .3s ease ;
51
54
52
55
& ._show {
53
56
visibility : visible ;
57
+ opacity : 1 ;
58
+ -webkit-transition : opacity .3s ease ;
59
+ transition : opacity .3s ease ;
54
60
55
61
.modal-inner-wrap {
56
62
-webkit-transform : translate (0 , 0 );
83
89
position : static ;
84
90
-webkit-transform : translateX (100% );
85
91
transform : translateX (100% );
86
- transition-duration : .3s ;
87
- -webkit-transition-property : -webkit-transform , visibility;
88
- transition-property : transform, visibility;
89
- transition-timing-function : ease-in-out ;
92
+ -webkit-transition : -webkit-transform .3s ease-in-out ;
93
+ transition : transform .3s ease-in-out ;
90
94
width : auto ;
91
95
}
92
96
}
115
119
right : 0 ;
116
120
-webkit-transform : translateY (-200% );
117
121
transform : translateY (-200% );
118
- transition-duration : .2s ;
119
- -webkit-transition-property : -webkit-transform , visibility;
120
- transition-property : transform, visibility;
121
- transition-timing-function : ease ;
122
+ -webkit-transition : -webkit-transform .2s ease ;
123
+ transition : transform .2s ease ;
122
124
123
125
}
124
126
}
You can’t perform that action at this time.
0 commit comments