<?xml version="1.0" encoding="UTF-8"?>
<commit>
  <added type="array"/>
  <modified type="array">
    <modified>
      <diff>@@ -10,10 +10,8 @@
 				&lt;%= fb_profile_pic item.user, :class =&gt; 'friend_avatar' %&gt;
 				&lt;div class=&quot;friend_item_indent&quot;&gt;
 					&lt;div class=&quot;fbbluebox&quot;&gt;
-	 					&lt;span class=&quot;friend_name&quot;&gt;
-							&lt;%= link_to(fb_name(item.user, :capitalize=&gt;true, :use_you=&gt;false, 
-												:linked=&gt;false), user_items_path(item.user)) %&gt; posted
-						&lt;/span&gt;
+						&lt;%= link_to (fb_name(item.user, :capitalize=&gt;true, :use_you=&gt;false),
+												user_items_path(item.user), :class=&gt;&quot;friend_name&quot;) %&gt; posted
 						&lt;% if !item.comments_count.nil? %&gt;
 								&lt;span class=&quot;user_item_comments&quot;&gt;
 									&lt;% if item.comments_count == 1 %&gt;</diff>
      <filename>app/views/items/index.fbml.erb</filename>
    </modified>
    <modified>
      <diff>@@ -1,13 +1,14 @@
 &lt;h2&gt;
 	&lt;%= fb_profile_pic @user %&gt;
 	&lt;% if !@items.empty? %&gt;
-		&lt;%= fb_name @user, 	:possessive=&gt;true, :use_you=&gt;true, :reflexive=&gt;true, :capitalize=&gt;true, 
-												:linked=&gt;true, :show_network=&gt;true %&gt; Items:
+		&lt;%= link_to (fb_name(@user, :capitalize=&gt;true, :use_you=&gt;true, :reflexive=&gt;true, 
+												:possessive=&gt;true, :show_network=&gt;true)), 
+								my_items_items_path, :class=&gt;&quot;user_name&quot; %&gt; Items:
 	&lt;% else %&gt;
 		You currently have no items posted. Click &lt;%= link_to &quot;here&quot;, new_item_path %&gt; to add some.
 	&lt;% end %&gt;
 &lt;/h2&gt;
-&lt;/br&gt;
+&lt;br/&gt;&lt;br/&gt;
 &lt;div id=&quot;user_item_list&quot;&gt;
 	&lt;% if !@items.empty? %&gt;
 		&lt;% for item in @items %&gt;
@@ -15,18 +16,16 @@
 				&lt;div class=&quot;user_item_indent&quot;&gt;
 					&lt;div class=&quot;user_item&quot;&gt;
 						&lt;div class=&quot;user_item_header&quot;&gt;
-						&lt;span&gt;
 							&lt;%= link_to item.title, (item_path(item) unless item.title.nil?), :class=&gt;&quot;user_item_title&quot; %&gt;
-						&lt;/span&gt;
-						&lt;% if !item.comments_count.nil? %&gt;
-								&lt;span class=&quot;user_item_comments&quot;&gt;
-									&lt;% if item.comments_count == 1 %&gt;
-										&lt;%= item.comments_count %&gt; comment
-									&lt;% else %&gt;
-										&lt;%= item.comments_count %&gt; comments
-									&lt;% end %&gt;
-								&lt;/span&gt;
-						&lt;% end %&gt;
+							&lt;% if !item.comments_count.nil? %&gt;
+									&lt;span class=&quot;user_item_comments&quot;&gt;
+										&lt;% if item.comments_count == 1 %&gt;
+											&lt;%= item.comments_count %&gt; comment
+										&lt;% else %&gt;
+											&lt;%= item.comments_count %&gt; comments
+										&lt;% end %&gt;
+									&lt;/span&gt;
+							&lt;% end %&gt;
 						&lt;/div&gt;
 						&lt;div class=&quot;item_post_time&quot;&gt;
 							posted at &lt;%= item.created_at.strftime('%l:%M %p') %&gt;</diff>
      <filename>app/views/items/my_items.fbml.erb</filename>
    </modified>
    <modified>
      <diff>@@ -23,10 +23,10 @@
 		
 		&lt;div&gt;
 			&lt;% if @item.user == current_user %&gt;
-				&lt;%= link_to &quot;Edit&quot;, edit_item_path(@item) %&gt;
+				&lt;%= link_to &quot;Edit&quot;, edit_item_path(@item), :class=&gt;&quot;fbbutton&quot; %&gt;
 				&lt;%= link_to(&quot;Delete&quot;, {:action =&gt; &quot;destroy&quot;, :id =&gt; @item },
 						:confirm =&gt; &quot;Are you sure you want to delete this item?&quot;, 
-						:method =&gt; :delete) %&gt;
+						:method =&gt; :delete, :class=&gt;&quot;fbbutton&quot;) %&gt;
 			&lt;% end %&gt;
 		&lt;/div&gt;
 	&lt;/div&gt;</diff>
      <filename>app/views/items/show.fbml.erb</filename>
    </modified>
    <modified>
      <diff>@@ -116,6 +116,17 @@
 	color: #3b5998;
 }
 
+.fbbutton:visited {
+	background-color: #3B5998;
+	border-color: #D9DFEA #0E1F5B #0E1F5B #D9DFEA;
+	border-style: solid;
+	border-width: 1px;
+	color: #ffffff;
+	font-family: &quot;lucida grande&quot;,tahoma,verdana,arial,sans-serif;
+	font-size: 11px;
+	padding: 2px 15px 3px;
+	text-align: center;
+}
 
 /* ================= */
 /* User Item List    */
@@ -127,6 +138,19 @@
 	min-height: 200px;
 }
 
+a.user_name {
+	color: #3B5998;
+}
+
+a.user_name:visited {
+	color: #3B5998;
+}
+
+a.user_name:hover {
+	color: #3B5998;
+	background-color: transparent;
+}
+
 .user_item_indent {
 	margin-left: 55px;
 }
@@ -138,9 +162,19 @@
 a.user_item_title {
 	font-size: 15px;
 	font-weight: bold;
+	color: #3B5998;
 	min-width: 600px;
 }
 
+a.user_item_title:visited {
+	color: #3B5998;
+}
+
+a.user_item_title:hover {
+	color: #3B5998;
+	background-color: transparent;
+}
+
 .user_item_comments {
 	text-align: right;
 	float: right;
@@ -163,7 +197,7 @@ a.user_item_title {
 
 #friend_item_list {
 	list-style: none;
-    width: 90%;
+  width: 90%;
 }
 
 .friend_avatar {
@@ -172,13 +206,21 @@ a.user_item_title {
 	margin: 0;
 }
 
-.friend_item_indent {
-	margin-left: 55px;
+a.friend_name {
+	color: #3B5998;
+}
+
+a.friend_name:visited {
+	color: #3B5998;
 }
 
-.friend_name {
-	font-size: 12px;
-  font-weight: bold;
+a.friend_name:hover {
+	color: #3B5998;
+	background-color: transparent;
+}
+
+.friend_item_indent {
+	margin-left: 55px;
 }
 
 .friend_post_time {
@@ -192,6 +234,16 @@ a.user_item_title {
 a.friend_item_title {
 	font-size: 15px;
 	font-weight: bold;
+	color: #3B5998;
+}
+
+a.friend_item_title:visited {
+	color: #3B5998;;
+}
+
+a.friend_item_title:hover {
+	color: #3B5998;
+	background-color: transparent;
 }
 
 .friend_item_price { }</diff>
      <filename>public/stylesheets/style.css</filename>
    </modified>
  </modified>
  <removed type="array"/>
  <parents type="array">
    <parent>
      <id>577c6b5c819e31acb8028f219c443b1e7823e1f8</id>
    </parent>
  </parents>
  <author>
    <name>Steve Hoffmann</name>
    <email>shoffmann@bendbulletin.com</email>
  </author>
  <url>http://github.com/shoffmann/Garage-Sale/commit/e43a5b83555f25e18b6434c323840cde7a1e1298</url>
  <id>e43a5b83555f25e18b6434c323840cde7a1e1298</id>
  <committed-date>2009-11-05T16:49:42-08:00</committed-date>
  <authored-date>2009-11-05T16:49:42-08:00</authored-date>
  <message>Fixed link colors for users and edit/delete buttons</message>
  <tree>65a09f0417ceaa4ff13ae464185f00ada8240774</tree>
  <committer>
    <name>Steve Hoffmann</name>
    <email>shoffmann@bendbulletin.com</email>
  </committer>
</commit>
