Open
Description
The current notification-drawer.html
template wraps the user defined heading.html
(from headingInclude
) in an h4
, which is restrictive for styling beyond a simple heading.
In progress web console PR here.
Here is where we are going with the openshift web-console:
From notification-drawer.html
it would be ideal to eliminate the h4
. If preferred for out of the box styling, move it inside the heading.html
example template:
<div class="panel-heading">
<h4 class="panel-title">
<a ng-if="!$ctrl.singleGroup" ng-click="$ctrl.toggleCollapse(notificationGroup)" ng-class="{collapsed: !notificationGroup.open}" ng-include src="$ctrl.headingInclude"></a>
<span ng-if="$ctrl.singleGroup" ng-include src="$ctrl.headingInclude"></span>
</h4>
<span class="panel-counter" ng-include src="$ctrl.subheadingInclude"></span>
</div>
@jeff-phillips-18 thoughts?