Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
D
display_builder
Manage
Activity
Members
Labels
Plan
Wiki
Custom issue tracker
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Model registry
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
GitLab community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
project
display_builder
Merge requests
!38
Issue
#3536519
by mogtofu33: better z-index, better drawer component, use Drupal displace lib
Code
Review changes
Check out branch
Open in Workspace
Download
Patches
Plain diff
Expand sidebar
Merged
Issue
#3536519
by mogtofu33: better z-index, better drawer component, use Drupal displace lib
issue/display_builder-3536519:3536519-z-index-problems
into
1.0.x
Overview
0
Commits
1
Pipelines
2
Changes
15
Merged
Issue #3536519 by mogtofu33: better z-index, better drawer component, use Drupal displace lib
Jean Valverde
requested to merge
issue/display_builder-3536519:3536519-z-index-problems
into
1.0.x
1 month ago
Overview
0
Commits
1
Pipelines
2
Changes
15
Closes
#3536519
0
0
Merge request reports
Compare
1.0.x
1.0.x (base)
and
latest version
latest version
ceed31ab
1 commit,
1 month ago
15 files
+
194
−
82
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
15
assets/css/db_drawer.css
0 → 100644
+
31
−
0
View file @ ceed31ab
Edit in single-file editor
Open in Web IDE
/* Normal display. */
.display-builder
.shoelace-drawer
{
&::part(base)
{
z-index
:
calc
(
var
(
--db-z-index
,
1
)
+
1
);
margin-top
:
var
(
--drupal-displace-offset-top
,
0
);
}
}
/* Admin toolbar vertical, we pass hover, admin toolbar z-index is 501. */
.toolbar-tray-open.toolbar-vertical
.display-builder
.shoelace-drawer
{
&::part(base)
{
z-index
:
502
;
}
}
.toolbar-loading
.display-builder
.shoelace-drawer
{
&::part(base)
{
z-index
:
1252
;
}
}
/* Fullscreen display */
.display-builder.display-builder--fullscreen
.shoelace-drawer
{
&::part(base)
{
/* Ignore the top toolbar, only check the Display Builder toolbar. */
margin-top
:
var
(
--db-toolbar-height
,
0
);
}
}
.toolbar-loading
.display-builder.display-builder--fullscreen
{
z-index
:
1252
;
}
Loading