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

Commit

Permalink
Fixed translate3d
Browse files Browse the repository at this point in the history
  • Loading branch information
zhukov committed Oct 14, 2015
1 parent 3ec36be commit d7b1dd0
Showing 1 changed file with 7 additions and 4 deletions.
11 changes: 7 additions & 4 deletions app/less/app.less
Original file line number Diff line number Diff line change
Expand Up @@ -2452,11 +2452,12 @@ img.img_fullsize {
-webkit-box-shadow: 0px 1px 0px 0px rgba(83,169,234,1);
-moz-box-shadow: 0px 1px 0px 0px rgba(83,169,234,1);
box-shadow: 0px 1px 0px 0px rgba(83,169,234,1);
transform: translateX(0);
.transform(translate3d(0,0,0));

transition: transform ease-in-out 0.2s;

.composer_emoji_tooltip_tabs_stickers_active & {
transform: translateX(100%);
.transform(translate3d(100%,0,0));
}
}

Expand Down Expand Up @@ -2556,11 +2557,13 @@ img.img_fullsize {
.composer_emoji_tooltip_tabs_contents {
position: absolute;
width: 200%;
transform: translateX(0);
.transform(translate3d(0,0,0));

transition: transform ease-in-out 0.2s;

.composer_emoji_tooltip_tabs_stickers_active & {
transform: translateX(-284px);
.transform(translate3d(-284px,0,0));

}
}
.composer_emoji_tooltip_tab_emoji_content,
Expand Down

0 comments on commit d7b1dd0

Please sign in to comment.