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.
我正在尝试将通知窗口/通知的宽度更改为 800 像素,但我不能。这是默认宽度的窗口
我添加到我的 .css 文件中:
.noty-message{ width:800px; height:800px; }
什么都没有改变。当我尝试添加
.noty_bar { width: 800px; }
然后我的窗口看起来像那样。如何设置通知对象的宽度?
我正在使用layout: 'topRight'and type: 'alert',这将迫使它们为 800px 宽:
layout: 'topRight'
type: 'alert'
#noty_topRight_layout_container, #noty_topRight_layout_container > li, #noty_bar, #noty_type_alert { width: 800px !important; }
如果您想为其他布局和通知类型更改它,则必须更改“topRight”和“alert”子字符串,但这种方法应该有效。