我在项目中使用selectBoxIt组件。我想更改样式,如下所示:
我使用下一个代码来实现此组件:
<select id="appVersions">
<option ng-repeat="app in appVersions" value="{{app.version}}">APP vr.{{app.version}}</option>
</select>
var apps = $('#appVersions').selectBoxIt({
theme: 'jqueryui',
autoWidth: true
});
$timeout(function () {
apps.data('selectBox-selectBoxIt').refresh();
});
但是在他转换为默认样式之后,如何更改样式?
非常感谢。
最佳答案
为标签添加ID选择
#appVersions .selectboxit-container {
margin-top: 10px;
margin-left: 70px;
background-color: $main-background;
}
#appVersions .selectboxit-container span #SelectBoxItText {
color: #FFB201;
font-weight: bold;
}
#appVersions ul li a {
color: #FFB201;
}
#appVersions ul li a:hover {
font-weight: bold;
}
#appVersions ul {
background-color: $main-background;
}