使用打字稿在 angular 6 中自定义 Ngx-toastr

Customise Ngx-toastr in angular 6 with typescript

Hii 所有我在 angular 6 中使用 typescript 实现 Ngx-toastr 我的问题是我不能让它像我想要的那样漂亮,因为我不知道哪个 css 被覆盖在 ngx-toastr class 我在 Style.css 文件 上写了一些 css ngx-toastr 并且我想要 border-radius: 15px; 但内部部分没有使用 border-radius: 15px; 圆角 我从互联网上搜索了很多资源但没有得到正确的输出并且我无法更改其他 toastr 因为在我的项目中 350+ Component 我不想用方法更改每个文件,这就是为什么我想自定义现有的 toastr CSS.

这是我的Css代码

.toast-container .ngx-toastr {
    position: relative;
    overflow: hidden;
    margin: 0 0 6px;
    padding: 15px 15px 15px 50px;
    width: 300px;
    border-radius: 15px !important;
    background-position: 15px center;
    background-repeat: no-repeat;
    background-size: 24px;
    box-shadow: 0 0 12px #999;
    color: #fff;
    border-image-source: linerar-gradient(red,purple) !important;
    border: 4px solid green !important;
    border-image-source: linear-gradient(red, purple) !important;
    border-image-slice: 20 !important;
}

.toast-success {
    background-color: #51a351;
}

但我的期望是我想要与这张照片中的一样,如果你想检查然后访问这个 link 并单击 RESET 按钮以显示 toastr Click Here to visit that site

这是我的StackBlitz Code

从 css

中删除 "border-image-source"
.toast-container .ngx-toastr {
    position: relative;
    overflow: hidden;
    margin: 0 0 6px;
    padding: 15px 15px 15px 50px;
    width: 300px;
    border-radius: 15px !important;
    background-position: 15px center;
    background-repeat: no-repeat;
    background-size: 24px;
    box-shadow: 0 0 12px #999;
    color: #fff;
    border: 4px solid green !important;
}

您也可以根据自己的要求定制吐司。请按照下面的 link 来定制吐司。

https://github.com/scttcper/ngx-toastr/blob/master/src/app/pink.toast.ts

在您的 Style.css 文件中覆盖此 CSS 之后。我能够通过覆盖此 CSS

来自定义此 ngx-toastr

Note: Before overrride this css please check toastr class from dev tool console or inspect the element

.toast-container {
  background-image: linear-gradient(purple,red) !important;
  border-radius: 22px !important; 
  box-shadow: -5px 8px 16px 0px rgba(0,0,0,0.3) !important;
  margin-bottom: 2px !important;
}

.toast-container .toast {
  margin: 2px !important;
  box-shadow: none !important;
  border-radius: 20px !important;
  background-color: #fff !important;
}

.toast-success{
  background-image: none !important;
}

.toast-success::after{
  content: '\f00c' !important;
  font-family: 'FontAwesome' !important;
  position: absolute !important;
  top: 14px !important;
  left: 15px !important;
  color: #333 !important;
  font-size: 1.5em !important;
}

.toast-title{
  color: purple !important;
  font-size: 16px !important;
}

.toast-message{
  color:#8f8f8f !important;
}

移除白框阴影即可使用,

.toast-container .ngx-toastr {
  box-shadow: 0 0 12px #3b3b3b !important;
}