使用过的库的更新(ngx-fundamental)破坏了“动画”,因为它们添加了!important,使我可以隐藏面板。
如何通过Angular的样式({})覆盖此重要提示?
animations: [
trigger('openClosePanel', [
state('open', style({
opacity: 100
})),
state('closed', style({
opacity: 0,
display: 'none', // I need to add !important here
})),
transition('*=>open', animate('300ms')),
transition('*=>closed', animate('200ms')),
])
]
Image of Style in console of Chrome
谢谢!