diff --git a/app/assets/stylesheets/common.scss b/app/assets/stylesheets/common.scss
index 1fabe3b7ffc16b83f87271369f9c959ea93993b7..03a1e7082a8a20615ddb8b27c01623a4cf12a4ce 100644
--- a/app/assets/stylesheets/common.scss
+++ b/app/assets/stylesheets/common.scss
@@ -1092,13 +1092,12 @@ p.time {
     position: absolute;
     right:14px;
     top:7px;
-    height: 30px;
   }
 
   div.attachments {
     position:relative;
     width: 350px;
-    height: 30px;
+    height: 36px;
     overflow:hidden;
     margin:0 0 5px !important;
   }
diff --git a/app/views/issues/_form.html.haml b/app/views/issues/_form.html.haml
index 6d44eb090b0cf94db26ec4e5a78ce3f9142bc3da..543bab1f7c06b825a777cb8cdf147468cdfdcf83 100644
--- a/app/views/issues/_form.html.haml
+++ b/app/views/issues/_form.html.haml
@@ -15,7 +15,7 @@
     .clearfix
       = f.label :description, "Issue Details"
       .input
-        = f.text_area :description, :maxlength => 2000, :class => "xxlarge"
+        = f.text_area :description, :maxlength => 2000, :class => "xxlarge", :rows => 10
         %p.hint Markdown is enabled.
 
     .clearfix
diff --git a/app/views/issues/show.html.haml b/app/views/issues/show.html.haml
index ac91955df3bba3f99ce2905110d6f0a49d3b3b5b..6201852d5d7c087b32da1ab6ee0ea2683f65e1e7 100644
--- a/app/views/issues/show.html.haml
+++ b/app/views/issues/show.html.haml
@@ -44,7 +44,7 @@
         %strong.author= link_to_issue_assignee(@issue)
       
     %div
-      - if @issue.description
+      - if @issue.description.present?
         %hr
         = markdown @issue.description
 
diff --git a/app/views/merge_requests/show.html.haml b/app/views/merge_requests/show.html.haml
index 792ee9de50c5614718ed56bf7183329c517ce5e7..4f1d49b80024bb30a3582b75ab1042338aafb597 100644
--- a/app/views/merge_requests/show.html.haml
+++ b/app/views/merge_requests/show.html.haml
@@ -30,22 +30,12 @@
 
 .merge_request_box
   .merge_request_status_holder
-    - if @merge_request.closed
-      %h5
+    %h5
+      - if @merge_request.closed
         .alert-message.error.status_info Closed
-        - if @merge_request.merged?
-          %span
-            Merged by #{@merge_request.merge_event.author_name} 
-            %small #{time_ago_in_words(@merge_request.merge_event.created_at)} ago.
-        - elsif @merge_request.closed_event
-          %span
-            Closed by #{@merge_request.closed_event.author_name} 
-            %small #{time_ago_in_words(@merge_request.closed_event.created_at)} ago.
-        %br
-    - else 
-      %h5
+      - else 
         .alert-message.success.status_info Open
-        = @merge_request.title
+      = @merge_request.title
 
 
   %div
@@ -57,7 +47,19 @@
       %cite.cgray and currently assigned to 
       = image_tag gravatar_icon(@merge_request.assignee_email), :width => 16, :class => "lil_av"
       %strong.author= link_to_merge_request_assignee(@merge_request)
-      
+
+
+  - if @merge_request.closed
+    %hr
+    - if @merge_request.merged?
+      %span
+        Merged by #{@merge_request.merge_event.author_name} 
+        %small #{time_ago_in_words(@merge_request.merge_event.created_at)} ago.
+    - elsif @merge_request.closed_event
+      %span
+        Closed by #{@merge_request.closed_event.author_name} 
+        %small #{time_ago_in_words(@merge_request.closed_event.created_at)} ago.
+    %br
 
 
 = render "merge_requests/commits"
diff --git a/app/views/notes/_form.html.haml b/app/views/notes/_form.html.haml
index 33d36eba86c8b30f0319fde7772636a88e9f8828..0bc35eb03c2e093161421006320bc443161c3f56 100644
--- a/app/views/notes/_form.html.haml
+++ b/app/views/notes/_form.html.haml
@@ -25,9 +25,9 @@
     .span8
       %h5 Attachment:
       .clearfix
-        .attachments.entry
+        .attachments
           %div.file_name File name...
-          %button.file_upload.btn.primary.small Upload File
+          %button.file_upload.btn.small Upload File
           .input= f.file_field :attachment, :class => "input-file"
         %span Any file less then 10 MB
 
diff --git a/spec/requests/commits_notes_spec.rb b/spec/requests/commits_notes_spec.rb
index 23ca045e26713bd3fcf8799c014b2ed0bf651eaa..fde42a8f55eba5738d34072591a816a0e9c7c131 100644
--- a/spec/requests/commits_notes_spec.rb
+++ b/spec/requests/commits_notes_spec.rb
@@ -13,7 +13,7 @@ describe "Issues" do
     before do
       visit project_commit_path(project, commit)
       fill_in "note_note", :with => "I commented this commit"
-      click_button "Add note"
+      click_button "Add Comment"
     end
 
     it "should conatin new note" do
diff --git a/spec/requests/issues_notes_spec.rb b/spec/requests/issues_notes_spec.rb
index 9ebad39473a9f1d7c98bf64436c1a3808efb8ab7..538098e60bd7a5d7dfaedb26252b386026e5effb 100644
--- a/spec/requests/issues_notes_spec.rb
+++ b/spec/requests/issues_notes_spec.rb
@@ -17,7 +17,7 @@ describe "Issues" do
     before do
       visit project_issue_path(project, @issue)
       fill_in "note_note", :with => "I commented this issue"
-      click_button "Add note"
+      click_button "Add Comment"
     end
 
     it "should conatin new note" do
diff --git a/spec/requests/issues_spec.rb b/spec/requests/issues_spec.rb
index f3f38fd9646c159c40617723eb528bd0126d6a95..5c59675b4592cd6b8f03bcc78b674f5f3f526038 100644
--- a/spec/requests/issues_spec.rb
+++ b/spec/requests/issues_spec.rb
@@ -92,10 +92,10 @@ describe "Issues" do
           select @user.name, :from => "issue_assignee_id" 
         end
 
-        it { expect { click_button "Save" }.to change {Issue.count}.by(1) }
+        it { expect { click_button "Submit new issue" }.to change {Issue.count}.by(1) }
 
         it "should add new issue to table" do
-          click_button "Save"
+          click_button "Submit new issue"
 
           page.should_not have_content("Add new issue")
           page.should have_content @user.name
@@ -105,7 +105,7 @@ describe "Issues" do
 
         it "should call send mail" do
           Notify.should_not_receive(:new_issue_email)
-          click_button "Save"
+          click_button "Submit new issue"
         end
       end
 
@@ -116,10 +116,10 @@ describe "Issues" do
           select @user2.name, :from => "issue_assignee_id" 
         end
 
-        it { expect { click_button "Save" }.to change {Issue.count}.by(1) }
+        it { expect { click_button "Submit new issue" }.to change {Issue.count}.by(1) }
 
         it "should add new issue to table" do
-          click_button "Save"
+          click_button "Submit new issue"
 
           page.should_not have_content("Add new issue")
           page.should have_content @user2.name
@@ -129,11 +129,11 @@ describe "Issues" do
 
         it "should call send mail" do
           Notify.should_receive(:new_issue_email).and_return(stub(:deliver => true))
-          click_button "Save"
+          click_button "Submit new issue"
         end
 
         it "should send valid email to user" do
-          click_button "Save"
+          click_button "Submit new issue"
           issue = Issue.last
           email = ActionMailer::Base.deliveries.last
           email.subject.should have_content("New Issue was created")
@@ -177,12 +177,13 @@ describe "Issues" do
     describe "fill in" do
       before do
         fill_in "issue_title", :with => "bug 345"
+        fill_in "issue_description", :with => "bug description"
       end
 
-      it { expect { click_button "Save" }.to_not change {Issue.count} }
+      it { expect { click_button "Save changes" }.to_not change {Issue.count} }
 
       it "should update issue fields" do
-        click_button "Save"
+        click_button "Save changes"
 
         page.should have_content @user.name
         page.should have_content "bug 345"
diff --git a/spec/requests/projects_wall_spec.rb b/spec/requests/projects_wall_spec.rb
index b0ea6e6225aec2b1f585ce38aa80f0b90bdd5989..b2708fd1a57a57144bbd06195c478cffe15c1385 100644
--- a/spec/requests/projects_wall_spec.rb
+++ b/spec/requests/projects_wall_spec.rb
@@ -23,7 +23,7 @@ describe "Projects", "Wall" do
     before do
       visit wall_project_path(project)
       fill_in "note_note", :with => "my post on wall"
-      click_button "Add note"
+      click_button "Add Comment"
     end
 
     it "should conatin new note" do