remove translateZ hack

while it does improve repaint performance on *some* setups (OS X+Chrome+Low-DPI),
it seems to have no effect on most (OS X+FF, OS X+Chrome+High-DPI, Linux+Chrome),
and the opposite effect on others (Linux+FF).
This commit is contained in:
Min RK 2015-01-29 11:31:24 -08:00
parent 0496a3ba84
commit fd8db4f282
2 changed files with 0 additions and 11 deletions

View File

@ -79,12 +79,6 @@ body {
}
#site {
// avoid repaints on size with translateZ(0)
-webkit-transform: translateZ(0);
-moz-transform: translateZ(0);
-ms-transform: translateZ(0);
-o-transform: translateZ(0);
transform: translateZ(0);
width: 100%;
display: none;
.border-box-sizing();

View File

@ -8454,11 +8454,6 @@ body {
height: 28px;
}
#site {
-webkit-transform: translateZ(0);
-moz-transform: translateZ(0);
-ms-transform: translateZ(0);
-o-transform: translateZ(0);
transform: translateZ(0);
width: 100%;
display: none;
box-sizing: border-box;