<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* $Id: messages.css,v 1.5 2009/02/16 19:50:35 johnalbin Exp $ */

/**
 * @file
 * Message Styling
 *
 * Sensible styling for Drupal's error/warning/status messages.
 */


div.messages, /* Important messages (status, warning, and error) for the user */
div.status,
div.warning,
div.error
{
  min-height: 21px;
  margin: 0 0 5px 0;
  border: 2px solid #ff7;
  padding: 5px 5px 5px 35px;
  color: #000;
  background-color: #ffc;
  background-image: url(../images/messages-status.png);
  background-repeat: no-repeat;
  background-position: 5px 5px;
}

div.status /* Normal priority messages */
{
}

div.warning /* Medium priority messages */
{
  border-color: #fc0;
  background-image: url(../images/messages-warning.png);
}

div.warning,
tr.warning,
tbody.system-status-report tr.warning

{
  color: #000; /* Drupal core uses #220 */
  background-color: #ffc;
}

div.error /* High priority messages. See also the .error declaration in pages.css. */
{
  /* border: 1px solid #d77; */ /* Drupal core uses: 1px solid #d77 */
  border-color: #c00;
  background-image: url(../images/messages-error.png);
}

div.error,
tr.error,
tbody.system-status-report tr.error
{
  color: #900; /* Drupal core uses #200 */
  background-color: #fee;
}

div.messages ul
{
  margin-top: 0;
  margin-bottom: 0;
}
</pre></body></html>