increase font size for textareas

This commit is contained in:
albert
2013-02-19 21:51:13 -05:00
parent 86164c5200
commit f119048493
2 changed files with 10 additions and 9 deletions

View File

@@ -18,6 +18,7 @@ form.simple_form {
textarea { textarea {
width: 30em; width: 30em;
font-size: 1.2em;
} }
label { label {

View File

@@ -9,17 +9,17 @@
<div class="body prose"> <div class="body prose">
<%= format_text(comment.body) %> <%= format_text(comment.body) %>
</div> </div>
<menu> <menu>
<li><%= link_to "Reply", new_comment_path(:post_id => comment.post_id), :class => "reply-link", "data-comment-id" => comment.id %></li>
<% if comment.editable_by?(CurrentUser.user) %>
<li><%= link_to "Delete", comment_path(comment.id), :confirm => "Do you really want to delete this comment?", :method => :delete, :remote => true %></li>
<li><%= link_to "Edit", edit_comment_path(comment.id) %></li>
<% end %>
<li><%= link_to "Vote up", comment_votes_path(:comment_id => comment.id, :score => "up"), :method => :post, :remote => true %></li>
<li><%= link_to "Vote down", comment_votes_path(:comment_id => comment.id, :score => "down"), :method => :post, :remote => true %></li>
<% if @comment || @comments %> <% if @comment || @comments %>
<li><%= link_to "View post", post_path(post) %></li> <li><%= link_to "View post", post_path(post) %></li>
<% else %>
<li><%= link_to "Reply", new_comment_path(:post_id => comment.post_id), :class => "reply-link", "data-comment-id" => comment.id %></li>
<% if comment.editable_by?(CurrentUser.user) %>
<li><%= link_to "Delete", comment_path(comment.id), :confirm => "Do you really want to delete this comment?", :method => :delete, :remote => true %></li>
<li><%= link_to "Edit", edit_comment_path(comment.id) %></li>
<% end %>
<li><%= link_to "Vote up", comment_votes_path(:comment_id => comment.id, :score => "up"), :method => :post, :remote => true %></li>
<li><%= link_to "Vote down", comment_votes_path(:comment_id => comment.id, :score => "down"), :method => :post, :remote => true %></li>
<% end %> <% end %>
</menu> </menu>
</div> </div>