Commit 68fde01a1b8b62fcf58bb93d3a4c70cafa3d7ff4

style post edit updated
  
7575 .new_comment
7676 textarea
7777 height: 10em
78 .edit_page
78 .edit_page,
79 .edit_post
7980 textarea
80 height: 30em
81 width: 400px
82 +font-size(1px)
83 overflow-y: scroll
81 height: 340px
82 width: 100%
8483 .datum p
8584 text-align: right
8685 +font-size(12px)
116116 border-top: 1px solid
117117 padding: 8px 0 18px 0
118118 margin-top: 20px
119
120.wym_iframe
121 +normal-ul
  
11%p
2 %b= f.label :title
3 = f.text_field :title
2 %b= form.label :title
3 = form.text_field :title
44%p
5 %b= f.label :slug
6 = f.text_field :slug
5 %b= form.label :slug
6 = form.text_field :slug
77%p
8 %b= f.label :body
9 = f.text_area :body
8 %b= form.label :body
9 = form.text_area :body
  
33- content_for :title do
44 = @page.title
55
6- form_for @page, :method => :put do |f|
7 = render :partial => 'form', :locals => {:f => f}
8 %p= submit_tag 'Update', :class => :wymupdate
6- form_for @page, :method => :put do |form|
7 = render form
8 %p= submit_tag 'Update'
  
55
66= error_messages_for :post
77
8- form_for(:post, :url => post_path(@post), :html => { :method => :put }) do |f|
9 = render :partial => 'form', :object => f
8- form_for @post, :method => :put do |form|
9 = render form
1010 %p
1111 = submit_tag "Update", :class => :wymupdate
1212
  
4444#Main .content .title { margin-bottom: 20px; }
4545#Main .content .title h1 { font-size: 76.923%; }
4646#Main .content .new_comment textarea { height: 10em; }
47#Main .content .edit_page textarea { height: 30em; width: 400px; font-size: 7.692%; overflow-y: scroll; }
47#Main .content .edit_page textarea, #Main .content .edit_post textarea { height: 340px; width: 100%; }
4848#Main .content .datum p { text-align: right; font-size: 92.308%; }
4949#Main .content #comments h2 { font-size: 138.462%; }
5050#Main .content #comments .datetime { font-size: 61.538%; text-align: right; }
5757#Main .navigation ul { margin: 0; }
5858
5959#Footer { float: left; margin-right: 0px; width: 975px; border-top: 1px solid; padding: 8px 0 18px 0; margin-top: 20px; }
60
61.wym_iframe ol, .wym_iframe ul, .wym_iframe dl { margin-left: 2em; }
62.wym_iframe ul li { list-style: disc outside; }