Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
选择项目时如何设置 Angular UI-Select 小部件的高度。我有一个包含图像和内容的选定项目的自定义模板,它被切断了。
有什么地方可以选择吗?我觉得它应该扩展以适应模板。
我刚刚通过使用css解决了这个问题
.ui-select-choices .item { height: auto !important }
并使用!importantcss 函数,因为 ui-select 有很多内联样式,修复起来非常繁琐。如果您使用自己的模板,请尽量不要使用.item该类并使用独特的东西,例如.select-choice-item下次您可能想在您正在使用的模板中提供结构,以便我们可以用更具体的解决方案回答您。
!important
.item
.select-choice-item