_bootstrap-toastr.scss
847 字节
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
/***
Toastr Notifications
***/
.toast {
-webkit-box-shadow: none !important;
-moz-box-shadow: none !important;
box-shadow: none !important;
}
.toast {
background-color: #030303;
}
.toast-success {
background-color: #51a351;
}
.toast-error {
background-color: #bd362f;
}
.toast-info {
background-color: #2f96b4;
}
.toast-warning {
background-color: #f89406;
}
.toast .toast-close-button {
display: inline-block;
margin-top: 0px;
margin-right: 0px;
text-indent: -100000px;
width: 11px;
height: 16px;
background-repeat: no-repeat !important;
background-image: url("../img/portlet-remove-icon-white.png") !important;
}
.toast-top-center {
top: 12px;
margin: 0 auto;
left: 50%;
margin-left: -150px;
}
.toast-bottom-center {
bottom: 12px;
margin: 0 auto;
left: 50%;
margin-left: -150px;
}