mirror of
https://github.com/discourse/discourse.git
synced 2025-02-20 11:48:26 -06:00
FIX: subtle fade in + scale up animation on user cards for Safari
This commit is contained in:
parent
8ebab581ad
commit
833d4f5247
@ -13,12 +13,17 @@
|
||||
background-position: center center;
|
||||
min-height: 175px;
|
||||
opacity: 0;
|
||||
transform: scale(.7);
|
||||
transition: opacity .2s, transform .2s;
|
||||
-webkit-transform: scale(.7);
|
||||
-ms-transform: scale(.7);
|
||||
transform: scale(.7);
|
||||
-webkit-transition: opacity .2s, -webkit-transform .2s;
|
||||
transition: opacity .2s, transform .2s;
|
||||
|
||||
&.show {
|
||||
opacity: 1;
|
||||
transform: scale(1);
|
||||
-webkit-transform: scale(1);
|
||||
-ms-transform: scale(1);
|
||||
transform: scale(1);
|
||||
}
|
||||
|
||||
.card-content {
|
||||
|
Loading…
Reference in New Issue
Block a user