如何设置md-select图标的样式?

时间:2016-06-05 11:23:25

标签: css angularjs material-design angular-material

我使用angular-material,特别是<md-select/>组件 我想设计它的图标:
enter image description here

我们曾经使用类.md-select-icon来覆盖它的css,但它似乎是错误的方法,并且最近类已被更改以反映它们用于&#34;私有&#34;使用(.md-select-icon重命名为._md-select-icon

问题是 - 如何以正确的方式自定覆盖.md-select图标?

谢谢!

2 个答案:

答案 0 :(得分:1)

.md-select-value .md-select-icon {
    background: #fff url("image/common/selector/normal.png") no-repeat 90% 50%;
    color: white;
    text-align: left;
    margin: 0 0 0 0;
  }

答案 1 :(得分:0)

如果有人在寻找基于字体的解决方案,请使用以下CSS。

.md-select-value .md-select-icon:after {
    font-family: Material Icons;
    font-size: 24px;
    content: 'keyboard_arrow_down';
    display: inline;
    top: 5px;
    transform: scale(1);
    font-feature-settings: 'liga'; /* Support for IE. From material-icons.css. */
}