18

我想让 toastr 的弹出窗口看起来与 Bootstrap 警报相同或非常接近。我怎样才能做到这一点?

4

3 回答 3

33

包括引导警报的 CSS,然后在您的 toastr 选项中,更改 toastClass 和 iconClasses 的值:

toastr.options = {
    toastClass: 'alert',
    iconClasses: {
        error: 'alert-error',
        info: 'alert-info',
        success: 'alert-success',
        warning: 'alert-warning'
    }
},

然后在 toastr 的 CSS 中,删除阴影#toast-container > div,使其最终看起来像:

#toast-container > div {
    width: 300px;
}

如果需要,您可以保留填充,或者将其添加到您自己的 CSS 文件中,而不是编辑 toastr(最好是确保之后加载您的)。

于 2013-02-25T12:48:08.340 回答
5

为了使它们与 bootstrap 3.2.0 相同,我使用了所选答案的组合 - 尽管alert-error应该是alert-danger- 和这个 gist,它用 fontawesome 图标替换了图标

https://gist.github.com/askehansen/9528424

为了让它们看起来完全一样,我也

  • 将 toast 的不透明度设置为 1
  • 更改标题和消息颜色以匹配引导程序

CSS是

#toast-container > div {
    opacity: 1;
    -ms-filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
    filter: alpha(opacity=100);
}

#toast-container > .alert {
    background-image: none !important;
}

#toast-container > .alert:before {
    position: fixed;
    font-family: FontAwesome;
    font-size: 24px;
    float: left;
    color: #FFF;
    padding-right: 0.5em;
    margin: auto 0.5em auto -1.5em;
}

#toast-container > .alert-info:before {
    content: "\f05a";
}
#toast-container > .alert-info:before,
#toast-container > .alert-info {
    color: #31708f;
}

#toast-container > .alert-success:before {
    content: "\f00c";
}
#toast-container > .alert-success:before,
#toast-container > .alert-success {
    color: #3c763d;
}

#toast-container > .alert-warning:before {
    content: "\f06a";
}
#toast-container > .alert-warning:before,
#toast-container > .alert-warning {
    color: #8a6d3b;
}

#toast-container > .alert-danger:before {
    content: "\f071";
}
#toast-container > .alert-danger:before,
#toast-container > .alert-danger {
    color: #a94442;
}
于 2014-11-11T20:55:24.807 回答
2

这篇文章有点旧,但我想我会添加另一个可能的解决方案。

我发现默认的引导程序“警报”配色方案对于 toastr 消息来说有点轻。我使用了一个自定义的 LESS 文件并执行了以下操作来使它们变暗。

#toast-container {
   @darken-amount: 10%;

   .toast-error {
      background-color: darken(@brand-danger, @darken-amount);
   }

   .toast-warning {
      background-color: darken(@brand-warning, @darken-amount);
   }

   .toast-success {
      background-color: darken(@brand-success, @darken-amount);
   }

   .toast-info {
     background-color: darken(@brand-info, @darken-amount);
   }
}

或者,您还可以更改消息中文本的颜色:

.toast-message {
   color: #000;
}
于 2014-11-06T18:53:29.767 回答