From 684cd67e76a08bcd888205b73729824a1487f19c Mon Sep 17 00:00:00 2001 From: "codl (Corentin Delcourt)" Date: Wed, 14 Oct 2015 11:49:51 +0200 Subject: [PATCH] css: fix playlist scrolling performance in chrome In chrome (and probably other webkit/blink-based browsers) the scrolling performance of the playlist is awful when there are a lot of items in the playlist and the individual item buttons are displayed. This change forces the playlist to be on its own compositing layer, improving performance significantly. --- www/css/cytube.css | 1 + 1 file changed, 1 insertion(+) diff --git a/www/css/cytube.css b/www/css/cytube.css index a8c62cc2..62b3c491 100644 --- a/www/css/cytube.css +++ b/www/css/cytube.css @@ -156,6 +156,7 @@ list-style: none outside none; max-height: 500px; overflow-y: auto; + transform: translateZ(0); }