mirror of
https://github.com/discourse/discourse.git
synced 2026-08-09 12:38:21 -05:00
FIX: subtle fade in + scale up animation on user cards for Safari
This commit is contained in:
@@ -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 {
|
||||
|
||||
Reference in New Issue
Block a user