Skip to content
Snippets Groups Projects
Commit ea8eed17 authored by rhenck's avatar rhenck
Browse files

[editor] Make section menu only appear on selected sections

parent 3cb52a89
No related branches found
No related tags found
No related merge requests found
......@@ -6,7 +6,8 @@
[style.background-color]="page.backgroundColor">
<div cdkDropListGroup>
<div *ngFor="let section of page.sections; let i = index" [style.position]="'relative'">
<aspect-section-menu [class.open]="hoveredSection === i" class="section-menu" fxLayout="column"
<aspect-section-menu [class.open]="selectionService.selectedPageSectionIndex === i && hoveredSection === i"
class="section-menu" fxLayout="column"
[style.left.px]="-45" [style.z-index]="1" [style.position]="'absolute'"
[section]="section" [sectionIndex]="i"
[allowMoveUp]="i != 0"
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment