Index: includes/theme.maintenance.inc
===================================================================
RCS file: /cvs/drupal/drupal/includes/theme.maintenance.inc,v
retrieving revision 1.65
diff -u -r1.65 theme.maintenance.inc
--- includes/theme.maintenance.inc	22 Aug 2010 12:46:21 -0000	1.65
+++ includes/theme.maintenance.inc	23 Aug 2010 12:24:53 -0000
@@ -80,6 +80,7 @@
   drupal_add_css(drupal_get_path('module', 'system') . '/system.css');
   drupal_add_css(drupal_get_path('module', 'system') . '/system-behavior.css');
   drupal_add_css(drupal_get_path('module', 'system') . '/system-menus.css');
+  drupal_add_css(drupal_get_path('module', 'system') . '/system-messages.css');
   drupal_add_css(drupal_get_path('module', 'system') . '/maintenance.css');
   drupal_add_css(drupal_get_path('module', 'system') . '/admin.css');
 }
Index: modules/dblog/dblog.admin.inc
===================================================================
RCS file: /cvs/drupal/drupal/modules/dblog/dblog.admin.inc,v
retrieving revision 1.39
diff -u -r1.39 dblog.admin.inc
--- modules/dblog/dblog.admin.inc	24 Apr 2010 14:49:13 -0000	1.39
+++ modules/dblog/dblog.admin.inc	23 Aug 2010 12:24:53 -0000
@@ -15,16 +15,6 @@
 function dblog_overview() {
   $filter = dblog_build_filter_query();
   $rows = array();
-  $icons = array(
-    WATCHDOG_DEBUG     => '',
-    WATCHDOG_INFO      => '',
-    WATCHDOG_NOTICE    => '',
-    WATCHDOG_WARNING   => theme('image', array('path' => 'misc/watchdog-warning.png', 'alt' => t('warning'), 'title' => t('warning'))),
-    WATCHDOG_ERROR     => theme('image', array('path' => 'misc/watchdog-error.png', 'alt' => t('error'), 'title' => t('error'))),
-    WATCHDOG_CRITICAL  => theme('image', array('path' => 'misc/watchdog-error.png', 'alt' => t('critical'), 'title' => t('critical'))),
-    WATCHDOG_ALERT     => theme('image', array('path' => 'misc/watchdog-error.png', 'alt' => t('alert'), 'title' => t('alert'))),
-    WATCHDOG_EMERGENCY => theme('image', array('path' => 'misc/watchdog-error.png', 'alt' => t('emergency'), 'title' => t('emergency'))),
-  );
   $classes = array(
     WATCHDOG_DEBUG     => 'dblog-debug',
     WATCHDOG_INFO      => 'dblog-info',
@@ -65,7 +55,7 @@
     $rows[] = array('data' =>
       array(
         // Cells
-        $icons[$dblog->severity],
+        array('class' => 'icon'),
         t($dblog->type),
         format_date($dblog->timestamp, 'short'),
         theme('dblog_message', array('event' => $dblog, 'link' => TRUE)),
Index: modules/dblog/dblog.css
===================================================================
RCS file: /cvs/drupal/drupal/modules/dblog/dblog.css,v
retrieving revision 1.9
diff -u -r1.9 dblog.css
--- modules/dblog/dblog.css	28 Apr 2010 20:08:38 -0000	1.9
+++ modules/dblog/dblog.css	23 Aug 2010 12:24:53 -0000
@@ -46,3 +46,14 @@
 tr.dblog-error .active {
   background: #eeb9b9;
 }
+
+table#admin-dblog td.icon {
+  background: no-repeat center;
+  width: 16px;
+}
+table#admin-dblog tr.dblog-warning td.icon {
+  background-image: url(../../misc/message-16-warning.png);
+}
+table#admin-dblog tr.dblog-error td.icon {
+  background-image: url(../../misc/message-16-error.png);
+}
Index: modules/system/system-messages.css
===================================================================
RCS file: /cvs/drupal/drupal/modules/system/system-messages.css,v
retrieving revision 1.3
diff -u -r1.3 system-messages.css
--- modules/system/system-messages.css	22 Aug 2010 12:55:04 -0000	1.3
+++ modules/system/system-messages.css	23 Aug 2010 12:24:53 -0000
@@ -1,17 +1,53 @@
 /* $Id */
 
 div.messages {
-  background-color: #dfd;
-  color: #000;
-  margin-bottom: 0.25em;
-  padding: 0.25em 0.5em;
+  background: no-repeat 7px 7px;
+  border: 1px solid;
+  list-style: none;
+  margin: 6px 0;
+  padding: 9px 9px 9px 38px;
+}
+div.messages ul {
+  margin: 0 0 0 1.5em;
+}
+div.status {  /* hue 90 */
+  background-color: #daeec5;
+  background-image: url(../../misc/message-24-ok.png);
+  border-color: #8fd349;
+  color: #244700;
+}
+div.status a {
+  color: #244700;
+  font-weight: bold;
+}
+div.warning {  /* hue 53 */
+  background-color: #fff6ae;
+  background-image: url(../../misc/message-24-warning.png);
+  border-color: #eedc56;
+  color: #473f00;
+}
+div.warning a {
+  color: #473f00;
+  font-weight: bold;
+}
+div.error {  /* hue 6 */
+  background-color: #ffb9b1;
+  background-image: url(../../misc/message-24-error.png);
+  border-color: #c41400;
+  color: #470700;
+}
+div.error a {
+  color: #470700;
+  font-weight: bold;
+}
+div.error p.error {
+  color: #333;
 }
 
 .error {
   color: #e55;
 }
 
-div.error,
 table tr.error {
   background-color: #fcc;
 }
@@ -20,7 +56,6 @@
   color: #e09010;
 }
 
-div.warning,
 tr.warning {
   background-color: #fcfca7;
 }
@@ -29,7 +64,6 @@
   color: #008000;
 }
 
-div.ok,
 tr.ok {
   background-color: #dfd;
   color: #020;
Index: modules/system/system.css
===================================================================
RCS file: /cvs/drupal/drupal/modules/system/system.css,v
retrieving revision 1.78
diff -u -r1.78 system.css
--- modules/system/system.css	2 Aug 2010 11:22:22 -0000	1.78
+++ modules/system/system.css	23 Aug 2010 12:24:53 -0000
@@ -107,7 +107,7 @@
 .form-item input.error,
 .form-item textarea.error,
 .form-item select.error {
-  border: 2px solid red;
+  border: 2px solid #c41400;
 }
 .form-item .description {
   font-size: 0.85em;
@@ -139,7 +139,7 @@
 }
 .marker,
 .form-required {
-  color: #f00;
+  color: #c41400;
 }
 .more-help-link {
   text-align: right; /* LTR */
Index: themes/bartik/css/style.css
===================================================================
RCS file: /cvs/drupal/drupal/themes/bartik/css/style.css,v
retrieving revision 1.5
diff -u -r1.5 style.css
--- themes/bartik/css/style.css	22 Aug 2010 14:03:57 -0000	1.5
+++ themes/bartik/css/style.css	23 Aug 2010 12:24:53 -0000
@@ -851,7 +851,8 @@
   margin: 0 auto;
 }
 div.messages {
-  padding: 1.2em 2em 1em;
+  background-position: 0.8em center;
+  padding:  1.2em 2em 1em 3.4em ;
   margin: 8px 0;
 }
 div.status, tr.status {
Index: themes/garland/style.css
===================================================================
RCS file: /cvs/drupal/drupal/themes/garland/style.css,v
retrieving revision 1.84
diff -u -r1.84 style.css
--- themes/garland/style.css	28 Jul 2010 01:40:39 -0000	1.84
+++ themes/garland/style.css	23 Aug 2010 12:24:53 -0000
@@ -292,7 +292,7 @@
 
 div.messages {
   margin: .75em 0 .75em;
-  padding: .1em .5em .15em;
+  padding: 0.1em 2.2em 0.15em;
 }
 
 .messages ul {
@@ -1207,6 +1207,8 @@
 }
 
 div.status {
+  background-image: url(../../misc/message-16-ok.png);
+  background-position: 0.5em center;
   background-color: #fff;
   border-color: #c7f2c8;
   color: #33a333;
@@ -1222,8 +1224,15 @@
   background-color: #FFCCCC;
 }
 
+div.error {
+  background-image: url(../../misc/message-16-error.png);
+  background-position: 0.5em center;
+}
+
 div.warning {
+  background-image: url(../../misc/message-16-warning.png);
   background-color: #ffd;
+  background-position: 0.5em center;
   border: 1px solid #f0c020;
   color: #220;
 }
Index: themes/seven/style.css
===================================================================
RCS file: /cvs/drupal/drupal/themes/seven/style.css,v
retrieving revision 1.65
diff -u -r1.65 style.css
--- themes/seven/style.css	18 Aug 2010 00:44:52 -0000	1.65
+++ themes/seven/style.css	23 Aug 2010 12:24:53 -0000
@@ -234,35 +234,6 @@
 }
 
 /**
- * Messages.
- */
-div.messages {
-  padding: 9px;
-  margin: 0.5em 0 0;
-  color: #036;
-  background: #f8fff0;
-  border-left: 16px solid #be7;
-}
-div.warning {
-  color: #840;
-  background: #fffce5;
-  border-left: 16px solid #ed5;
-}
-div.error {
-  color: #8c2e0b;
-  background: #fef5f1;
-  border-left: 16px solid #ed541d;
-}
-div.error p.error {
-  color: #333;
-}
-div.status {
-  color: #234600;
-  background: #f8fff0;
-  border-left: 16px solid #be7;
-}
-
-/**
  * Page title.
  */
 #page-title {
? sites/all/modules/devel/decode_entities.patch
? sites/all/modules/mimedetect/media_section.patch
? sites/all/modules/storage_api/diff
? sites/all/modules/storage_api/temp
? sites/all/modules/storage_api/services/php-cloudfiles
? sites/all/modules/type_local_nids/diff
