Преглед изворни кода

Fix "New" menu shown behind the multiselect header in the file list

The "New" menu is a descendant of the controls bar, and the controls bar
and the multiselect header belong to the same stacking context. As they
had the same z-index but the multiselect header appears after the
controls bar in the DOM the controls bar and its descendants, including
the "New" menu, were rendered behind the multiselect header. Now the
controls bar has a z-index value higher than the one used for the
multiselect header to ensure that the "New" menu is rendered in front of
the multiselect header.

Signed-off-by: Daniel Calviño Sánchez <danxuliu@gmail.com>
tags/v13.0.0RC1
Daniel Calviño Sánchez пре 6 година
родитељ
комит
696dad8c3e
1 измењених фајлова са 1 додато и 1 уклоњено
  1. 1
    1
      core/css/styles.scss

+ 1
- 1
core/css/styles.scss Прегледај датотеку

@@ -234,7 +234,7 @@ body {
padding: 0;
margin: 0;
background-color: rgba($color-main-background, 0.95);
z-index: 55;
z-index: 60;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;

Loading…
Откажи
Сачувај