You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Sep 5, 2024. It is now read-only.
Currently .md-whiteframe-<xxx>dp used only as a class specifier.
<md-whiteframeclass="md-whiteframe-1dp">
using .md-whiteframe-1dp
</md-whiteframe><md-whiteframeclass="md-whiteframe-2dp">
using .md-whiteframe-2dp
</md-whiteframe>
This is very confusing since all the other components and tags are Element or Attribute directives.
Much like the Layout directives, we should support the following directive notation:
<divmd-whiteframe="3"> ... </div>
which will render as
<divclass="md-whiteframe-3dp"> ... </div>
This is more congruent with the other components and directives in Angular Material.
Use of the md-whiteframe directive without a value should default to 4 (aka 4dp)