I need to define a special class for some md-select popup menus (not for all). But I do not know how to do this.
Here is an example of typical usage code, and there is no place where I can define a class for the menu container that will appear.
<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>
In fact, I want to change the width of the popup menu. By default, it is limited to the width of md-select.
source
share