Quellcode durchsuchen

fix(vertical-filmstrip): enable hardware acceleration for icons

Icons on the thumbnails can flicker when scrolling through videos.
To give rendering a bit more power, and thereby help with rendering
icons without flickering, force hardware acceleration.
j8
Leonard Kim vor 8 Jahren
Ursprung
Commit
ae67b2b28e
1 geänderte Dateien mit 6 neuen und 1 gelöschten Zeilen
  1. 6
    1
      css/_vertical_filmstrip_overrides.scss

+ 6
- 1
css/_vertical_filmstrip_overrides.scss Datei anzeigen

65
             left: 0;
65
             left: 0;
66
             top: auto;
66
             top: auto;
67
             right: auto;
67
             right: auto;
68
-            transform: rotate(-90deg);
68
+            transform: translate3d(0,0,0) rotate(-90deg);
69
         }
69
         }
70
 
70
 
71
         #remoteVideos {
71
         #remoteVideos {
74
         }
74
         }
75
 
75
 
76
         .videocontainer {
76
         .videocontainer {
77
+            &__toolbar,
78
+            &__toptoolbar {
79
+                transform: translate3d(0,0,0);
80
+            }
81
+
77
             /**
82
             /**
78
              * Move status icons to the bottom right of the thumbnail.
83
              * Move status icons to the bottom right of the thumbnail.
79
              */
84
              */

Laden…
Abbrechen
Speichern