Skip to content

Commit

Permalink
Bug 1295769 - Zoom indicator zoom effect could be smoother. r=ktbee
Browse files Browse the repository at this point in the history
MozReview-Commit-ID: IiSIfftHLV3

--HG--
extra : rebase_source : b8caec2d745c0a5deca848d2b8605eca448e24fb
  • Loading branch information
dolske committed Aug 16, 2016
1 parent 74fa6d7 commit ff50531
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 5 deletions.
7 changes: 5 additions & 2 deletions browser/themes/linux/browser.css
Original file line number Diff line number Diff line change
Expand Up @@ -957,10 +957,13 @@ toolbaritem[cui-areatype="menu-panel"] > :-moz-any(@nestedButtons@) > .toolbarbu
/* ::::: URL Bar Zoom Reset Button ::::: */
@keyframes urlbar-zoom-reset-pulse {
0% {
transform: scale(0);
transform: scale(0);
}
75% {
transform: scale(1.5);
}
100% {
transform: scale(1.5);
transform: scale(1.0);
}
}

Expand Down
5 changes: 4 additions & 1 deletion browser/themes/osx/browser.css
Original file line number Diff line number Diff line change
Expand Up @@ -1662,9 +1662,12 @@ toolbar .toolbarbutton-1 > .toolbarbutton-menubutton-button {
0% {
transform: scale(0);
}
100% {
75% {
transform: scale(1.5);
}
100% {
transform: scale(1.0);
}
}

#urlbar-zoom-button {
Expand Down
7 changes: 5 additions & 2 deletions browser/themes/windows/browser.css
Original file line number Diff line number Diff line change
Expand Up @@ -1391,10 +1391,13 @@ html|*.urlbar-input:-moz-lwtheme::-moz-placeholder,
/* ::::: URL Bar Zoom Reset Button ::::: */
@keyframes urlbar-zoom-reset-pulse {
0% {
transform: scale(0);
transform: scale(0);
}
75% {
transform: scale(1.5);
}
100% {
transform: scale(1.5);
transform: scale(1.0);
}
}

Expand Down

0 comments on commit ff50531

Please sign in to comment.