<?xml version="1.0" encoding="UTF-8"?>
<commit>
  <added type="array"/>
  <modified type="array">
    <modified>
      <diff>@@ -4,7 +4,7 @@
 %&gt;
 
 		&lt;% if with_controls &amp;&amp; logged_in? &amp;&amp; current_user.can_edit?(post) %&gt;
-		&lt;p class=&quot;meta&quot;&gt;
+		&lt;p class=&quot;postControls&quot;&gt;
       &lt;%= link_to(&quot;Edit post&quot;, edit_post_url(post), :class =&gt; &quot;option&quot;) %&gt; 
       &lt;%= link_to(&quot;Delete post&quot;, post_url(post), :class =&gt; &quot;option&quot;, :method =&gt; :delete, :confirm =&gt; &quot;Are you sure you'd like to delete this post?&quot;) %&gt;
 			&lt;%= link_to(&quot;Featuring...&quot;, &quot;#featuring-controls&quot;)%&gt;</diff>
      <filename>app/views/posts/_meta.html.erb</filename>
    </modified>
    <modified>
      <diff>@@ -46,24 +46,24 @@
 
    &lt;% if logged_in? &amp;&amp; current_user.can_edit?(@post) %&gt;
 	 &lt;div id=&quot;featuring-controls&quot;&gt;
-	   &lt;h1&gt;Featuring...&lt;/h1&gt;
    &lt;% if !@post.has_images?%&gt;
 		  &lt;p&gt;(No images to feature).&lt;/p&gt;
 		 &lt;% else %&gt;
-		   &lt;h2&gt;Images to feature:&lt;/h2&gt;
+		   &lt;h2&gt;Feature images:&lt;/h2&gt;
+		   &lt;p&gt;You can feature images from a post on the group's page and on the main home page&lt;/p&gt;
 			 &lt;div class='image-controls'&gt;
 		  	 &lt;% @post.images.each do |image| %&gt;
-		  	   &lt;span id=&quot;image-&lt;%=image.id%&gt;&quot;&gt;
+		  	   &lt;p id=&quot;image-&lt;%=image.id%&gt;&quot;&gt;
 		         &lt;%= link_to image_tag_for(image, :medium_square), image.src, :title =&gt; &quot;Open orignal image on remote site&quot; %&gt;
 		         &lt;% if logged_in? &amp;&amp; current_user.can_edit?(@post) %&gt;
-			      	 &lt;%= link_to 'Delete?', image_path(image), :method=&gt;:delete, :class=&gt;'option', :confirm=&gt;'Delete this image?' %&gt;
+			      	 &lt;%= link_to 'Delete this image?', image_path(image), :method=&gt;:delete, :class=&gt;'admin', :confirm=&gt;'Delete this image?' %&gt;
 							 &lt;% if image.featured? %&gt;
-		             &lt;%= link_to 'Unfeature', unfeature_image_path(image), :method=&gt;:put, :class=&gt;'option' %&gt;
+		             &lt;%= link_to 'Unfeature', unfeature_image_path(image), :method=&gt;:put, :class=&gt;'admin' %&gt;
 							 &lt;% else %&gt;
-		             &lt;%= link_to 'Feature', feature_image_path(image), :method=&gt;:put, :class=&gt;'option' %&gt;
+		             &lt;%= link_to 'Feature on group and home page', feature_image_path(image), :method=&gt;:put, :class=&gt;'admin' %&gt;
 							 &lt;% end %&gt;
 		      	 &lt;% end %&gt;	
-		  		 &lt;/span&gt;
+		  		 &lt;/p&gt;
 		  	 &lt;% end %&gt;
 			   &lt;div class=&quot;clearThis&quot;&gt; &lt;/div&gt;
 			 &lt;/div&gt;
@@ -72,17 +72,17 @@
       &lt;p&gt;(No text to feature).&lt;/p&gt;
    &lt;% else %&gt;
 	   &lt;div&gt;
-	    &lt;h2&gt;Text (&lt;%if @post.featured?%&gt;featured&lt;%else%&gt;not featured&lt;%end%&gt;&lt;/h2&gt;
+	    &lt;h2&gt;Feature text content: (&lt;%if @post.featured?%&gt;currently featured&lt;%else%&gt;currently not featured&lt;%end%&gt;)&lt;/h2&gt;
 			&lt;div&gt;&lt;p&gt;&lt;%=plain_text(@post.text) %&gt;&lt;/p&gt;&lt;/div&gt;
 		   &lt;div class=&quot;clearThis&quot;&gt; &lt;/div&gt;
      &lt;/div&gt; 
       &lt;%if @post.featured?%&gt;
-        &lt;%= link_to(&quot;Unfeature post text&quot;, unfeature_post_url(@post), :class =&gt; &quot;option&quot;, :method =&gt; :put) %&gt;
+        &lt;%= link_to(&quot;Unfeature post text&quot;, unfeature_post_url(@post), :class =&gt; &quot;admin&quot;, :method =&gt; :put) %&gt;
       &lt;% else %&gt;
-        &lt;%= link_to(&quot;Feature post text&quot;, feature_post_url(@post), :class =&gt; &quot;option&quot;, :method =&gt; :put) %&gt;
+        &lt;%= link_to(&quot;Feature post text&quot;, feature_post_url(@post), :class =&gt; &quot;admin&quot;, :method =&gt; :put) %&gt;
       &lt;% end %&gt;
    &lt;% end %&gt;
-   &lt;%= link_to(&quot;Edit text&quot;, edit_post_url(@post), :class =&gt; &quot;option&quot;) %&gt; 
+   &lt;%= link_to(&quot;Edit text&quot;, edit_post_url(@post), :class =&gt; &quot;admin&quot;) %&gt; 
 
   	 &lt;% end %&gt;
   &lt;/div&gt;	 </diff>
      <filename>app/views/posts/show.html.erb</filename>
    </modified>
    <modified>
      <diff>@@ -264,6 +264,10 @@ div.largeForm textarea {
 	width: 50%;
 }
 
+div.largeForm select {
+	font-size: 1.5em;
+}
+
 
 
 div.largeForm .submitBlock {
@@ -291,27 +295,6 @@ div.largeForm .submitBlock input[type=&quot;submit&quot;] {
 
 /* @group Tags */
 
-p.tags {
-	color: #666;
-}
-
-
-
-p.tags a.tag {
-	background-color: #dce9f5;
-	padding: 0.3em 0.7em;
-	-webkit-border-radius: 2px;
-	-moz-border-radius: 2px;
-	margin-left: 0.3em;
-}
-
-div.tags a.tag {
-	float: left;
-}
-
-a.tag:hover {
-	text-decoration: underline;
-}
 
 a.delete {
 	color: #999;
@@ -325,52 +308,6 @@ a.delete:hover {
 
 /* @end */
 
-/* @group Tag Cloud */
-
-div.tagCloud {
-	padding-bottom: 2em;
-}
-
-ul.tagCloud {
-	list-style: none;
-	padding: 0px;
-	margin: 0px 0px 1em 0px;
-	line-height: 1.8em;
-}
-
-.tagCloud li {
-	display: inline;
-	margin-right: 1em;
-}
-
-ul.tagCloud a {
-	text-decoration: none;
-	word-spacing: -0.1em;
-}
-
-.tagCloud a:hover {
-	text-decoration: underline;
-}
-
-.tagCloud li.cloud1 a {
-	font-size: 100%;
-}
-
-.tagCloud li.cloud2 a {
-	font-size: 140%;
-}
-
-.tagCloud li.cloud3 a {
-	font-size: 170%;
-}
-
-.tagCloud li.cloud4 a {
-	font-size: 200%;
-}
-
-/* @end */
-
-
 
 
 
@@ -593,58 +530,59 @@ p#meta {
 }
 
 
-#recentlyFeatured {
-border-bottom: 1px dashed #DDD;
-margin-bottom: 3em;
+.postControls {
+	margin: 0 0 2em 0;
 }
 
-
-#recentlyFeatured h3 {
-  margin:0px;
-}
-
-#recentlyFeatured div.post {
-  border-top: 1px dashed #DDD;
-  padding: 1em 0 0 0;
+.postControls a, a.admin {
+	margin-right: 0.3em;
+	background-color: #999;
+	padding: 0.3em 0.5em;
+	-webkit-border-radius: 3px;
+	-moz-border-radius: 3px;
+	color: #FFF;
+	text-decoration: none;
+	font-size: 0.9em;
 }
 
 
+div.image-controls img {
+  	vertical-align: middle;
+  	margin-right: 1em;
+}
 
-
-
-
-#comments {
-	margin-top: 4em;
+#featuring-controls {
+  	margin-top: 3em;
+  	background-color: #EEE;
+  	padding: 1px 1.5em 2em 1.5em;
 }
 
+div.image-controls {
+  	border-bottom: 1px dashed #CCC;
+}
 
+div.image-controls p {
+	border-top: 1px dashed #CCC;
+	padding: 1em 0;
+	margin: 0;
+}
 
-#comments p.meta {
-	font-size: 1em;
+#recentlyFeatured {
+border-bottom: 1px dashed #DDD;
+margin-bottom: 3em;
 }
 
 
-.comment {
-	clear: left;
+#recentlyFeatured h3 {
+  margin:0px;
 }
 
-.comment p.avatar {
-	float: left;
-	padding-bottom: 2em;
-	text-align: center;
-	overflow: visible;
-	margin: 0px;
+#recentlyFeatured div.post {
+  border-top: 1px dashed #DDD;
+  padding: 1em 0 0 0;
 }
 
-.comment p.avatar img {
-	display: block;
-	margin-bottom: 0.5em;
-}
 
-.comment .postContent {
-	margin-left: 80px;
-	padding: 0.8em 0px 3em 3em;
-}
 
 
 
@@ -1180,13 +1118,6 @@ a.squareImage .inGroup {
   }
   
   
-  
-  
-div.image-controls {
-  margin-top: 5em;
-  border-top: 1px dashed #DDD;
-  padding-top: 0.5em;
-}
 
 div#flash {
 	background-color: #FFF;
@@ -1200,13 +1131,4 @@ div#flash p {
   	text-align: center;
 }
 
-div.image-controls span {
-  float: left;
-  margin: 0 10px 10px 0;
-}
-
-div.image-controls a {
-  display: block;
-  margin-top: 0.3em;
-}
  </diff>
      <filename>public/stylesheets/wminarch.css</filename>
    </modified>
  </modified>
  <removed type="array"/>
  <parents type="array">
    <parent>
      <id>60226553b65518f8944827fbe990f828d06ba042</id>
    </parent>
  </parents>
  <author>
    <name>Alexander Kohlhofer</name>
    <email>alex@alex.local</email>
  </author>
  <url>http://github.com/red56/the-connected-website/commit/40dfd65fc1c38c9e96568a659ecf9a3912122df5</url>
  <id>40dfd65fc1c38c9e96568a659ecf9a3912122df5</id>
  <committed-date>2009-06-10T05:52:18-07:00</committed-date>
  <authored-date>2009-06-10T05:52:18-07:00</authored-date>
  <message>added styling and layout to post moderation and featuring</message>
  <tree>e6b57d981c4cf26db2721e601115ed1ec921bc78</tree>
  <committer>
    <name>Alexander Kohlhofer</name>
    <email>alex@alex.local</email>
  </committer>
</commit>
