Bug 991254 - [about:home] RTL + HiDPI shows the Restore Previous Session button really large. r=mikedeboer

This commit is contained in:
Jared Wein 2014-04-04 16:01:39 -07:00
parent 0b7e8ca305
commit dc6dbc597c

View File

@ -386,6 +386,11 @@ body[narrow] #restorePreviousSession::before {
transform-origin: 0 0;
}
.launchButton:-moz-dir(rtl)::before,
#aboutMozilla:-moz-dir(rtl)::before {
transform: scale(.5) translateX(32px);
}
#downloads::before {
content: url("chrome://browser/content/abouthome/downloads@2x.png");
}
@ -422,6 +427,11 @@ body[narrow] #restorePreviousSession::before {
content: url("chrome://browser/content/abouthome/restore@2x.png");
}
#restorePreviousSession:-moz-dir(rtl)::before {
transform: scale(-0.5, 0.5) translateX(24px);
transform-origin: top center;
}
#aboutMozilla::before {
content: url("chrome://browser/content/abouthome/mozilla@2x.png");
}