1

fix(css): raise .articles-list z-index so dossier dropdown overlays article content

The dropdown in dossier-summary (position 'down') was hidden by the article body due to equal stacking contexts. .articles-list (z-index: 2) sat below .article-content (z-index: 2). Raising to z-index: 5 ensures the .page-select flyout (z-index: 10) can render above.
This commit is contained in:
2025-09-11 00:20:26 +02:00
parent 2ea31fe3a8
commit e449af3318

View File

@@ -1,7 +1,8 @@
.articles-list { .articles-list {
padding: 1rem; padding: 1rem;
position: relative; position: relative;
z-index: 2; /* Place au-dessus de .article-content (z-index: 2) pour que les dropdowns ne soient pas masqués */
z-index: 5;
} }
.articles-grid { .articles-grid {
@@ -103,4 +104,4 @@
width: 100%; width: 100%;
margin-top: .5rem; margin-top: .5rem;
/* Force ces éléments à coller en bas */ /* Force ces éléments à coller en bas */
} }