Closed
Description
Is there any support or planned support for md-toolbar
in dialog/modal/popups? In angularjs-material
this was a built-in feature:
What I observe in angular-material2
is a padding that applies to the whole dialog box which prevents the toolbar from properly extending from end to end:
<md-toolbar [color]="['primary']">md-toolbar</md-toolbar>
<h1 md-dialog-title>md-dialog-title</h1>
<md-dialog-content>
md-dialog-content
</md-dialog-content>
<md-dialog-actions>
<button md-raised-button [color]="['primary']" disabled>Send Feedback</button>
<button md-button md-dialog-close [color]="['warn']">Cancel</button>
</md-dialog-actions>