Merge "[fix] [Visual Editor] [LESS] [content] create stacking context differently"

This commit is contained in:
jenkins-bot 2019-08-08 20:59:47 +00:00 committed by Gerrit Code Review
commit 276c48c267
1 changed files with 4 additions and 2 deletions

View File

@ -47,7 +47,9 @@
}
.content {
// Create a new stacking context.
transform: scaleY( 1 );
// Create a new stacking context. `transform: translateZ( 0 );` would be preferred but that
// triggers a browser bug which affects the edit cards in Visual Editor:
// https://bugs.chromium.org/p/chromium/issues/detail?id=20574
position: relative;
z-index: @z-indexBase;
}