<p-toast>
窗口的默认大小很小,我希望能够对其进行调整,因为我的吐司消息可能很长。我还需要能够自定义Toast窗口的样式,但似乎无法使CSS正常工作。
this.messageService.addAll([
{key: 'tc', severity: 'info', summary: '30 Nov 2020', detail: 'Very very very long task message to display number one that user needs to see blah blah blah'},
{key: 'tc', severity: 'success', summary: '30 Nov 2020', detail: 'Very very very long task message to display number two that needs to be bigger and more prominent'}
]);
我已经根据文档尝试了几种方法。
内嵌html
<p-toast position="top-center" width="90%" key="tc"></p-toast>
使用ngStyle
<p-toast position="top-center" [ngStyle]="{ 'width': '90%' }" key="tc"></p-toast>
组件中的CSS
@Component({
selector: 'task',
templateUrl: './task.component.html',
styleUrls: ['./task.component.css'],
styles: [`
:host ::ng-deep .custom-toast .ui-toast-message {
color: #ffffff;
width: 100%;
background: #FFD07B;
}` ],
providers: [MessageService]
})
<p-toast position="top-center" style="custom-toast" key="tc"></p-toast>
添加到style.css
.custom-toast {
width: 90%;
background: #FFD07B;
}
:host ::ng-deep .custom-toast .ui-toast-message {
width: 90%;
background: #FFD07B;
}
<p-toast position="top-center" class="custom-toast" key="tc"></p-toast>
没有一个有效。
我在语法中的某个地方犯了错误吗?如何准确调整Toast窗口的样式(颜色,字体,特别是大小)?
编辑:这是stackblitz link,其中包含我尝试过的所有内容。不确定我是否做对了。
答案 0 :(得分:0)
您的'.ui-toast-message'类的类型为'display:block;'。 您首先需要将其更改为“ display:flex;”
所以您的课程可能看起来像
:host ::ng-deep .custom-toast .ui-toast-message {
display: flex;
width: 500px; // whatever width you need
}
和您的角度代码
<p-toast position="top-center" class="custom-toast" key="tc"></p-toast>
编辑:工作示例StackBlitz
答案 1 :(得分:0)
因此,经过反复修改,我终于找到了解决方案。我需要在styles.css中添加对toast容器的附加引用。
html基本上保持不变。
<p-toast class="custom-toast"></p-toast>
Styles.css 进行了更改,以向吐司容器添加引用。
// centers the toast window to the middle of the screen
.custom-toast .ui-toast {
position: fixed;
top: 20%;
left: 50%;
transform: translate(-50%, -50%);
width: 50%;
}
// adjusts font, color and other elements of the toast window if needed
.custom-toast .ui-toast-message-content {
font-family: 'Courier New', Courier, monospace;
background: #FFD07B;
}
答案 2 :(得分:0)
我遇到了同样的问题,请在您的代码中插入这样的样式
<style>
.ui.toast {
width: 500px!important;
}
</style>
记住你所有的吐司都有这个宽度,不用的时候去掉。