Subversion Repositories Integrator Subversion

Rev

Details | Last modification | View Log | RSS feed

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