从角度动画中的外部包覆盖重要样式

时间:2019-05-24 16:38:44

标签: css angular

使用过的库的更新(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

谢谢!

0 个答案:

没有答案