ARTICLE AD BOX
Update, My bad!, I confused between fixed and sticky, so forget this answer
A position fixed is related to the div that contains the div
As aside is inside dynamic-form-drawer, you can not get it in this way
I imagine the solution is that the app-context-icons have a position absolute and z-index less than 0
Then app-manage-menu-list will be "over" [app-context-icons], so, to you can "click" in the icons, you need app-mannage-menu-list will be a width=0
NOTE: I'm not pretty sure that work
//in your "context-icons-tabs.css" [app-context-icons-tabs] { position:relative; } [app-context-icons] { position:absolute; z-index:-1 } [app-manage-menu-list], [dynamic-form-drawer] { width:0; //else your icons are not "clickable" }NOTE: See that you can use as selector of .css the angular "tag"
59.1k4 gold badges39 silver badges82 bronze badges
3 Comments
Explore related questions
See similar questions with these tags.

