Skip to content

Commit

Permalink
Update pf-notification-drawer to element instead of attrib per change…
Browse files Browse the repository at this point in the history
… to component from directive
  • Loading branch information
benjaminapetersen committed Jul 28, 2017
1 parent 966a1c4 commit 51028b3
Show file tree
Hide file tree
Showing 2 changed files with 21 additions and 19 deletions.
7 changes: 6 additions & 1 deletion app/styles/_notifications.less
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,12 @@
}

notification-drawer-wrapper {
z-index: 10; // the overview shields are set to 9
z-index: 1050; // the overview shields are set to 9
pf-notification-drawer {
.drawer-pf {
z-index: 1050;
}
}
}

.drawer-pf-notification:hover {
Expand Down
33 changes: 15 additions & 18 deletions app/views/directives/notifications/notification-drawer-wrapper.html
Original file line number Diff line number Diff line change
@@ -1,18 +1,15 @@
<div>
<div
style="z-index: 100;"
pf-notification-drawer
drawer-hidden="drawerHidden"
allow-expand="allowExpand"
draw-expanded="drawerExpanded"
drawer-title="{{drawerTitle}}"
notification-groups="notificationGroups"
action-button-title="{{actionButtonTitle}}"
action-button-callback="actionButtonCallback"
heading-include="{{headingInclude}}"
subheading-include="{{subheadingInclude}}"
notification-body-include="{{notificationBodyInclude}}"
notification-footer-include="{{notificationFooterInclude}}"
custom-scope="customScope">
</div>
</div>
<pf-notification-drawer
style="z-index: 100;"
drawer-hidden="drawerHidden"
allow-expand="allowExpand"
draw-expanded="drawerExpanded"
drawer-title="{{drawerTitle}}"
notification-groups="notificationGroups"
action-button-title="{{actionButtonTitle}}"
action-button-callback="actionButtonCallback"
heading-include="{{headingInclude}}"
subheading-include="{{subheadingInclude}}"
notification-body-include="{{notificationBodyInclude}}"
notification-footer-include="{{notificationFooterInclude}}"
custom-scope="customScope">
</pf-notification-drawer>

0 comments on commit 51028b3

Please sign in to comment.