Skip to content
This repository was archived by the owner on Oct 25, 2023. It is now read-only.

Commit d7b1dd0

Browse files
committed
Fixed translate3d
1 parent 3ec36be commit d7b1dd0

File tree

1 file changed

+7
-4
lines changed

1 file changed

+7
-4
lines changed

‎app/less/app.less

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2452,11 +2452,12 @@ img.img_fullsize {
24522452
-webkit-box-shadow: 0px 1px 0px 0px rgba(83,169,234,1);
24532453
-moz-box-shadow: 0px 1px 0px 0px rgba(83,169,234,1);
24542454
box-shadow: 0px 1px 0px 0px rgba(83,169,234,1);
2455-
transform: translateX(0);
2455+
.transform(translate3d(0,0,0));
2456+
24562457
transition: transform ease-in-out 0.2s;
24572458

24582459
.composer_emoji_tooltip_tabs_stickers_active & {
2459-
transform: translateX(100%);
2460+
.transform(translate3d(100%,0,0));
24602461
}
24612462
}
24622463

@@ -2556,11 +2557,13 @@ img.img_fullsize {
25562557
.composer_emoji_tooltip_tabs_contents {
25572558
position: absolute;
25582559
width: 200%;
2559-
transform: translateX(0);
2560+
.transform(translate3d(0,0,0));
2561+
25602562
transition: transform ease-in-out 0.2s;
25612563

25622564
.composer_emoji_tooltip_tabs_stickers_active & {
2563-
transform: translateX(-284px);
2565+
.transform(translate3d(-284px,0,0));
2566+
25642567
}
25652568
}
25662569
.composer_emoji_tooltip_tab_emoji_content,

0 commit comments

Comments
 (0)