OSDN Git Service

project form fixed
authorgitlabhq <m@gitlabhq.com>
Tue, 8 Nov 2011 17:23:13 +0000 (12:23 -0500)
committergitlabhq <m@gitlabhq.com>
Tue, 8 Nov 2011 17:23:13 +0000 (12:23 -0500)
app/assets/stylesheets/projects.css.scss
app/views/projects/_form.html.haml
app/views/projects/new.html.erb [deleted file]
app/views/projects/new.html.haml [new file with mode: 0644]

index 3fe6b23..1d6d43f 100644 (file)
@@ -710,3 +710,14 @@ body.project-page #notes-list .note span.note-title{display: block;}
 body.project-page #notes-list .note span.note-title{margin-bottom: 10px}
 body.project-page #notes-list .note span.note-author{color: #999; font-weight: normal; font-style: italic;}
 body.project-page #notes-list .note span.note-author strong{font-weight: bold; font-style: normal;}
+
+
+/** NEW PROJECT **/
+.new-project-hodler { 
+  .icon span { 
+    background-position: -31px -70px;
+  }
+  td {
+    border-bottom: 1px solid #DEE2E3;
+  }
+}
index 2ddfda4..d909cf2 100644 (file)
@@ -1,7 +1,9 @@
 = form_for(@project, :remote => true) do |f|
   %div.form_content
     - unless @project.new_record?
-      %h1 Edit Project
+      %h2.icon  
+        %span
+        = @project.name
     - if @project.errors.any?
       #error_explanation
         %h2
@@ -10,7 +12,7 @@
         %ul
           - @project.errors.full_messages.each do |msg|
             %li= msg
-    %table.round-borders
+    %table
       %tr
         %td= f.label :name
         %td= f.text_field :name, :placeholder => "Example Project"
       %tr
         %td= f.label :tag_list
         %td= f.text_area :tag_list, :placeholder => "project tags", :style => "height:50px", :id => :tag_field
+      %tr
+        %td= f.label :description
+        %td= f.text_area :description, :placeholder => "project description", :style => "height:50px"
 
-    .field
-      = f.label :description
-      %br/
-      = f.text_area :description, :style => "height:140px;width:932px;"
-    .clear
-      %hr.prepend-top
+    %br
     .actions
-      = f.submit :class => "lbutton vm"
+      = f.submit :class => "button"
 
   %div{ :class => "ajax_loader",  :style => "display:none;height:200px;"}
     %center
diff --git a/app/views/projects/new.html.erb b/app/views/projects/new.html.erb
deleted file mode 100644 (file)
index 2d34363..0000000
+++ /dev/null
@@ -1 +0,0 @@
-<%= render 'form' %>
diff --git a/app/views/projects/new.html.haml b/app/views/projects/new.html.haml
new file mode 100644 (file)
index 0000000..65639a5
--- /dev/null
@@ -0,0 +1,8 @@
+.new-project-hodler
+  .container_4
+    %h2.icon  
+      %span
+      New Project
+
+    %div.clear
+    = render 'form'