我需要为某些md-select
的弹出菜单定义一个特殊类(而不是所有)。但我不知道该怎么做。
以下是典型用法的代码示例,此处我无法为将出现的菜单容器定义类。
<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>
实际上,我想更改弹出菜单的宽度。默认情况下,它受md-select
的宽度限制。
答案 0 :(得分:5)
您好请看以下plunkr,以下选择器似乎可以正常影响整个组件
https://plnkr.co/edit/sp7mKuaeztfAgtujARcw?p=preview
<style type="text/css">
md-input-container,
md-input-container > * {
width: 100% !important;
}
</style>
修改:在这里,这只会影响选择下拉列表
https://plnkr.co/edit/sp7mKuaeztfAgtujARcw?p=preview
<style type="text/css">
._md-select-menu-container
{
width: 100% !important;
}
</style>
最终编辑:只需将md-container-class =“myclass”指令添加到您的md-select
https://plnkr.co/edit/sp7mKuaeztfAgtujARcw?p=preview
<style type="text/css">
.myclass {
width: 100% !important;
}
</style>
<md-select md-container-class="myclass" ng-model="selectedItem" md-selected-text="getSelectedText()">
<md-optgroup label="items">
<md-option ng-value="item" ng-repeat="item in items">Item {{item}}</md-option>
</md-optgroup>
</md-select>