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:
@@ -1,7 +1,8 @@
|
||||
.articles-list {
|
||||
padding: 1rem;
|
||||
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 {
|
||||
|
||||
Reference in New Issue
Block a user