Skip to content
This repository has been archived by the owner on Nov 9, 2017. It is now read-only.

Commit

Permalink
HAWKULAR-236 Feedback messages style
Browse files Browse the repository at this point in the history
  • Loading branch information
cardosogabriel committed May 25, 2015
1 parent 061a8de commit fe8a138
Showing 1 changed file with 77 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -822,4 +822,80 @@ section {
.form-horizontal .inline-row .duration {
margin-right: 35px;
}
}
}

/* Toastr Overrides */

#toast-container > div {
border-radius: 1px;
border-style: solid;
border-width: 2px;
box-shadow: 0 0 25px rgba(0,0,0,0.3);
color: #333333;
filter: alpha(opacity=80);
-ms-filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=80);
opacity: 0.95;
transition: opacity 0.5s ease;
}

#toast-container > div:hover {
box-shadow: 0 0 25px rgba(0,0,0,0.5);
}

#toast-container > .toast-info,
#toast-container > .toast-success,
#toast-container > .toast-warning,
#toast-container > .toast-error {
background-image: none!important;
}

#toast-container > .toast-info:after,
#toast-container > .toast-success:after,
#toast-container > .toast-warning:after,
#toast-container > .toast-error:after {
position: absolute;
left: 16px;
top: 16px;
font-family: "FontAwesome";
font-size: 20px;
}

.toast-info {
background-color: #ffffff;
border-color: #999999;
}

#toast-container > .toast-info:after {
content: "";
color: #999999;
}

.toast-success {
background-color: #ebf5ea;
border-color: #3f9c35;
}

#toast-container > .toast-success:after {
content: "";
color: #3f9c35;
}

.toast-warning {
background-color: #fdf1e6;
border-color: #ec7a08;
}

#toast-container > .toast-warning:after {
content: "";
color: #ec7a08;
}

.toast-error {
background-color: #fbebeb;
border-color: #cc0000;
}

#toast-container > .toast-error:after {
content: "";
color: #cc0000;
}

0 comments on commit fe8a138

Please sign in to comment.