/* This file contain some custom styling for the gritter to inject the gritter icons using CSS. */
.gritter-error, .gritter-success, .gritter-info {
  .gritter-without-image {
    &:before {
    float: left;
    padding-right: 10px;
    }
    p {
      overflow: hidden;
      word-wrap: break-word;
    }
  }
}
/* Insert the image as a content for each gritter type based on the class applied to it */
.gritter-error .gritter-without-image:before {
  content: url(/static/images/vendor/gritter/error.png);
}
.gritter-success .gritter-without-image:before {
    content: url(/static/images/vendor/gritter/success.png);
}
.gritter-info .gritter-without-image:before {
    content: url(/static/images/vendor/gritter/info.png);
}