? .DS_Store
? 193482-system-messages.patch
? misc/system-error.png
? misc/system-info.png
? misc/system-ok.png
? misc/system-warning.png
? modules/.DS_Store
? modules/system/.DS_Store
? sites/.DS_Store
? sites/default/files
? sites/default/settings.php
Index: modules/system/system-messages-rtl.css
===================================================================
RCS file: modules/system/system-messages-rtl.css
diff -N modules/system/system-messages-rtl.css
--- /dev/null	1 Jan 1970 00:00:00 -0000
+++ modules/system/system-messages-rtl.css	26 Apr 2009 17:20:31 -0000
@@ -0,0 +1,7 @@
+/* $Id$ */
+
+div.messages,
+div.status {
+  padding: 0.25em 32px 0.25em 0.5em;
+  background-position: right 0.33em;
+}
Index: modules/system/system-messages.css
===================================================================
RCS file: modules/system/system-messages.css
diff -N modules/system/system-messages.css
--- /dev/null	1 Jan 1970 00:00:00 -0000
+++ modules/system/system-messages.css	26 Apr 2009 17:20:31 -0000
@@ -0,0 +1,30 @@
+/* $Id$ */
+
+div.messages,
+div.status,
+div.warning,
+div.error {
+  color: #000;
+  margin: 0 1em 5px 1em;
+  min-height: 21px;
+  padding: 0.25em 0.5em 0.25em 32px; /* LTR */
+  background-color: #e8e8ff;
+  background-image: url(../../misc/system-info.png);
+  background-position: 8px 0.33em; /* LTR */
+  background-repeat: no-repeat;
+}
+
+div.warning {
+  background-color: #fcfca7;
+  background-image: url(../../misc/system-warning.png);
+}
+
+div.error {
+  background-color: #fcc;
+  background-image: url(../../misc/system-error.png);
+}
+
+div.messages ul {
+  margin-top: 0;
+  margin-bottom: 0;
+}
Index: modules/system/system.css
===================================================================
RCS file: /cvs/drupal/drupal/modules/system/system.css,v
retrieving revision 1.54
diff -u -p -r1.54 system.css
--- modules/system/system.css	11 Apr 2009 22:19:45 -0000	1.54
+++ modules/system/system.css	26 Apr 2009 17:20:32 -0000
@@ -63,10 +63,7 @@ div.tree-child-horizontal {
 .error {
   color: #e55;
 }
-div.error {
-  border: 1px solid #d77;
-}
-div.error, tr.error {
+tr.error {
   background: #fcc;
   color: #200;
   padding: 2px;
@@ -74,10 +71,7 @@ div.error, tr.error {
 .warning {
   color: #e09010;
 }
-div.warning {
-  border: 1px solid #f0c020;
-}
-div.warning, table tr.warning {
+table tr.warning {
   background: #ffd;
   color: #220;
   padding: 2px;
Index: modules/system/system.module
===================================================================
RCS file: /cvs/drupal/drupal/modules/system/system.module,v
retrieving revision 1.686
diff -u -p -r1.686 system.module
--- modules/system/system.module	26 Apr 2009 14:54:31 -0000	1.686
+++ modules/system/system.module	26 Apr 2009 17:20:33 -0000
@@ -800,6 +800,7 @@ function system_init() {
   drupal_add_css(drupal_get_path('module', 'system') . '/defaults.css');
   drupal_add_css(drupal_get_path('module', 'system') . '/system.css');
   drupal_add_css(drupal_get_path('module', 'system') . '/system-menus.css');
+  drupal_add_css(drupal_get_path('module', 'system') . '/system-messages.css');
 }
 
 /**
