forked from ezsystems/ezplatform-admin-ui
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
EZP-30214: Add Content Tree to Bookmarks, Trash & Search (ezsystems#877)
* Add Content Tree to Bookmarks, Trash & Search * Delete admin.location.content.tree.js * Move Contnet Tree container div to left_sidebar twig block * Restore fix * Add Content Tree to Drafts view * Add scrollable-table wrapper * Change side-menu width to calculateRem(80px)
- Loading branch information
Showing
11 changed files
with
233 additions
and
222 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
File renamed without changes.
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,38 +1,13 @@ | ||
.ez-main-row { | ||
display: grid; | ||
grid-template-columns: 1fr calculateRem(80px); | ||
grid-template-rows: auto; | ||
grid-template-areas: 'ez-content-container ez-context-menu'; | ||
|
||
.ez-content-container { | ||
grid-area: ez-content-container; | ||
} | ||
display: flex; | ||
flex-wrap: nowrap; | ||
|
||
.ez-side-menu, | ||
.ez-context-menu { | ||
grid-area: ez-context-menu; | ||
} | ||
|
||
.ez-has-two-sidebars & { | ||
grid-template-columns: calculateRem(80px) 1fr calculateRem(80px); | ||
grid-template-areas: 'ez-side-menu ez-content-container ez-context-menu'; | ||
|
||
.ez-side-menu { | ||
grid-area: ez-side-menu; | ||
} | ||
flex: 0 0 calculateRem(80px); | ||
} | ||
|
||
.ez-has-no-sidebars & { | ||
grid-template-columns: 1fr; | ||
grid-template-areas: 'ez-content-container'; | ||
|
||
.ez-context-menu, | ||
.ez-side-menu { | ||
display: none; | ||
} | ||
} | ||
|
||
&.ez-dashboard-row { | ||
grid-template-columns: 1fr; | ||
grid-template-areas: 'ez-content-container'; | ||
.ez-content-container { | ||
flex: 1 1 auto; | ||
} | ||
} |
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
Oops, something went wrong.