From 37cdf31121e7b8a80f33b975174a790fd57b3570 Mon Sep 17 00:00:00 2001 From: Marco 'Lubber' Wienkoop Date: Thu, 30 Jan 2020 13:15:55 +0100 Subject: [PATCH] fix(shape): make sure chrome renders the z-translated faces properly When doing CSS 3D transforms there is an old chrome bug which does not handle translateZ properly in some cases. This had the side effect of not seeing some shape faces when transitions took place right after each other and seemed to be vanished --- src/definitions/modules/shape.less | 1 + 1 file changed, 1 insertion(+) diff --git a/src/definitions/modules/shape.less b/src/definitions/modules/shape.less index 0ae7c77398..4d0b8ab107 100755 --- a/src/definitions/modules/shape.less +++ b/src/definitions/modules/shape.less @@ -31,6 +31,7 @@ transition: @transition; } +.ui.shape .side, .ui.shape .sides { transform-style: preserve-3d; }