-
Notifications
You must be signed in to change notification settings - Fork 8.3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Browse the repository at this point in the history
* Fixes relative z-index of spy panel and filter editor * Position sidebar above main content so collapser button remains clickable
- Loading branch information
Showing
3 changed files
with
8 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,11 @@ | ||
/** | ||
* 1. The local nav contains tooltips which should pop over the filter bar. | ||
* 2. The filter and local nav components should always appear above the dashboard grid items. | ||
* 3. The filter and local nav components should always appear above the discover content. | ||
* 4. The sidebar collapser button should appear above the main Discover content but below the top elements. | ||
*/ | ||
@filterBarDepth: 2; /* 1 */ | ||
@localNavDepth: 3; /* 1 */ | ||
@filterBarDepth: 3; /* 1 */ | ||
@localNavDepth: 4; /* 1 */ | ||
@dashboardGridDepth: 1; /* 2 */ | ||
@discoverWrapperDepth: 1; /* 3 */ | ||
@discoverSidebarDepth: 2; /* 4 */ |