##// END OF EJS Templates
use translateZ(0) to avoid repaints of `#site` on scroll.
Min RK -
Show More
@@ -78,6 +78,12 b' body {'
78 }
78 }
79
79
80 #site {
80 #site {
81 // avoid repaints on size with translateZ(0)
82 -webkit-transform: translateZ(0);
83 -moz-transform: translateZ(0);
84 -ms-transform: translateZ(0);
85 -o-transform: translateZ(0);
86 transform: translateZ(0);
81 width: 100%;
87 width: 100%;
82 display: none;
88 display: none;
83 .border-box-sizing();
89 .border-box-sizing();
@@ -8324,6 +8324,11 b' body {'
8324 height: 28px;
8324 height: 28px;
8325 }
8325 }
8326 #site {
8326 #site {
8327 -webkit-transform: translateZ(0);
8328 -moz-transform: translateZ(0);
8329 -ms-transform: translateZ(0);
8330 -o-transform: translateZ(0);
8331 transform: translateZ(0);
8327 width: 100%;
8332 width: 100%;
8328 display: none;
8333 display: none;
8329 box-sizing: border-box;
8334 box-sizing: border-box;
General Comments 0
You need to be logged in to leave comments. Login now