Bug 1618903 - Stack grid item rule shouldn't apply to anonymous children. r=dholbert

Differential Revision: https://phabricator.services.mozilla.com/D64786

--HG--
extra : moz-landing-system : lando
This commit is contained in:
Emilio Cobos Álvarez 2020-02-28 18:33:56 +00:00
Родитель aac08c9008
Коммит f8f69f8ceb
1 изменённых файлов: 2 добавлений и 1 удалений

Просмотреть файл

@ -383,7 +383,8 @@ stack {
position: relative; position: relative;
} }
stack > *|* { /* We shouldn't style native anonymous children like scrollbars or what not */
stack > *|*:not(:-moz-native-anonymous) {
grid-area: 1 / 1; grid-area: 1 / 1;
z-index: 0; z-index: 0;