Index: modules/toolbar/toolbar.css
===================================================================
RCS file: /cvs/drupal/drupal/modules/toolbar/toolbar.css,v
retrieving revision 1.1
diff -u -p -r1.1 toolbar.css
--- modules/toolbar/toolbar.css	4 Jul 2009 05:37:30 -0000	1.1
+++ modules/toolbar/toolbar.css	4 Jul 2009 21:24:57 -0000
@@ -147,16 +147,6 @@ div#toolbar div.toolbar-shortcuts ul li 
   background: url(toolbar.png) 0 -20px repeat-x;
 }
 
-div#toolbar div.toolbar-shortcuts span.icon {
-  float: left;
-  background: #444;
-  width: 30px;
-  height: 30px;
-  margin-right: 5px;
-  -moz-border-radius: 5px;
-  -webkit-border-radius: 5px;
-}
-
 /**
  * IE 6 Fixes.
  *
Index: modules/toolbar/toolbar.module
===================================================================
RCS file: /cvs/drupal/drupal/modules/toolbar/toolbar.module,v
retrieving revision 1.1
diff -u -p -r1.1 toolbar.module
--- modules/toolbar/toolbar.module	4 Jul 2009 05:37:30 -0000	1.1
+++ modules/toolbar/toolbar.module	4 Jul 2009 21:24:57 -0000
@@ -130,22 +130,21 @@ function toolbar_get_menu_tree() {
 /**
  * Generate a links array from a menu tree array.
  *
- * Based on menu_navigation_links(). Adds in path based IDs, icon placeholders
- * and overlay classes for the links.
+ * Based on menu_navigation_links(). Adds in path based IDs, and overlay
+ * classes for the links.
  */
 function toolbar_menu_navigation_links($tree) {
   $links = array();
   foreach ($tree as $item) {
     if (!$item['link']['hidden'] && $item['link']['access']) {
       $class = '';
-      // Make sure we have a path specific ID in place, so we can attach icons
-      // and behaviors to the items.
+      // Make sure we have a path specific ID in place, so we can attach
+      // behaviors to the items.
       $id = str_replace(array('/', '<', '>'), array('-', '', ''), $item['link']['href']);
 
       $link = $item['link']['localized_options'];
       $link['href'] = $item['link']['href'];
-      // Add icon placeholder.
-      $link['title'] = '<span class="icon"></span>' . $item['link']['title'];
+      $link['title'] = $item['link']['title'];
       // Add admin link ID and to-overlay class for the overlay.
       $link['attributes'] = array('id' => 'toolbar-link-' . $id, 'class' => 'to-overlay');
       $link['html'] = TRUE;
