Laravel yoeunes/toastr 获取白色背景和白色文本
Laravel yoeunes/toastr getting white background and white text
我正在使用 laravel 7。这里我使用了 yoeunes/toastr ( https://packagist.org/packages/yoeunes/toastr ) 。但是 toastr 的背景颜色和文字颜色是白色的。还尝试了其他烤面包机。发生同样的事情。当我删除所有布局文件(js、jquery、css 链接头文件)时,toastr 工作正常。但是对于布局文件,toastr 不工作。
我将代码用作文档
在 布局文件(js、jquery、css 链接头文件)后使用 @toastr_css。
扩展布局后,在这样的部分使用@toastr_css
@extends('layouts')
@section('content')
@toastr_css
....your code....
@jquery
@toastr_js
@toastr_render
@endsection
那么它不会影响你的布局文件
作为替代方案,您可以在 site.css 中使用以下代码:
/***toastr - NOTIFICATION **************************************************/
.toast-success {
background-color: #51a351 !important;
}
.toast-error {
background-color: #bd362f !important;
}
我正在使用 laravel 7。这里我使用了 yoeunes/toastr ( https://packagist.org/packages/yoeunes/toastr ) 。但是 toastr 的背景颜色和文字颜色是白色的。还尝试了其他烤面包机。发生同样的事情。当我删除所有布局文件(js、jquery、css 链接头文件)时,toastr 工作正常。但是对于布局文件,toastr 不工作。
我将代码用作文档
在 布局文件(js、jquery、css 链接头文件)后使用 @toastr_css。 扩展布局后,在这样的部分使用@toastr_css
@extends('layouts')
@section('content')
@toastr_css
....your code....
@jquery
@toastr_js
@toastr_render
@endsection
那么它不会影响你的布局文件
作为替代方案,您可以在 site.css 中使用以下代码:
/***toastr - NOTIFICATION **************************************************/
.toast-success {
background-color: #51a351 !important;
}
.toast-error {
background-color: #bd362f !important;
}