Index: STARTERKIT/css/messages.css =================================================================== RCS file: /cvs/drupal/contributions/themes/zen/STARTERKIT/css/messages.css,v retrieving revision 1.3 diff -u -r1.3 messages.css --- STARTERKIT/css/messages.css 12 Aug 2009 08:37:42 -0000 1.3 +++ STARTERKIT/css/messages.css 13 Sep 2010 19:54:39 -0000 @@ -7,46 +7,24 @@ * Sensible styling for Drupal's error/warning/status messages. */ - -div.messages, -div.status, -div.warning, -div.error /* Important messages (status, warning, and error) for the user */ { - min-height: 21px; - margin: 0 1em 5px 1em; - border: 2px solid #ff7; - padding: 5px 5px 5px 35px; /* LTR */ - color: #000; - background-color: #ffc; - background-image: url(../images/messages-status.png); - background-repeat: no-repeat; - background-position: 5px 5px; /* LTR */ -} - -div.status /* Normal priority messages */ { -} - -div.warning /* Medium priority messages */ { - border-color: #fc0; - background-image: url(../images/messages-warning.png); -} - -div.warning, -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 { - color: #900; /* Drupal core uses #200 */ - background-color: #fee; +div.messages { + margin-bottom: .9em; + padding: .9em .9em .9em 40px; + border: 1px solid #be7; + background: #f8fff0 url(../images/protocons/24px/status/ok.png) no-repeat 8px 8px; + color: #234600; +} +div.warning { + border-color: #ed5; + background-color: #fffce5; + background-image: url(../images/protocons/24px/status/warning.png); + color: #840; +} +div.error { + border-color: #ed541d; + background-color: #fef5f1; + background-image: url(../images/protocons/24px/status/error.png); + color: #8c2e0b; } div.messages ul { Index: STARTERKIT/css/messages-rtl.css =================================================================== RCS file: /cvs/drupal/contributions/themes/zen/STARTERKIT/css/messages-rtl.css,v retrieving revision 1.3 diff -u -r1.3 messages-rtl.css --- STARTERKIT/css/messages-rtl.css 12 Aug 2009 08:37:42 -0000 1.3 +++ STARTERKIT/css/messages-rtl.css 13 Sep 2010 19:54:39 -0000 @@ -5,11 +5,10 @@ * RTL companion for the messages.css file. */ - -div.messages, -div.status, +div.error, div.warning, -div.error /* Important messages (status, warning, and error) for the user */ { - padding: 5px 35px 5px 5px; - background-position: 99.5% 5px; +div.status { + padding-right: 40px; + padding-left: .9em; + background-position: 99.1% 8px; }