I'm trying to figure out how to define a custom class for specific md-select
popup menus, not all of them. However, I'm at a loss on how to accomplish this.
In the code snippet below, there doesn't seem to be a clear way to assign a class for the menu container that will show up.
<md-input-container md-no-float class="md-block defaultInputSelect filterType">
<md-select ng-model="value.filter_type" md-on-close="viewChanged()">
<md-option ng-repeat="(key, value) in filterTypes" value="{{value}}">
{{filterTypesNames[key]}}
</md-option>
</md-select>
</md-input-container>
My main goal is to adjust the width of the popup menu, as currently it's constrained by the md-select
width.