increase font size for textareas
This commit is contained in:
@@ -18,6 +18,7 @@ form.simple_form {
|
|||||||
|
|
||||||
textarea {
|
textarea {
|
||||||
width: 30em;
|
width: 30em;
|
||||||
|
font-size: 1.2em;
|
||||||
}
|
}
|
||||||
|
|
||||||
label {
|
label {
|
||||||
|
|||||||
@@ -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>
|
||||||
|
|||||||
Reference in New Issue
Block a user