attempt to reduce story text misuse

Makes it a less prominent element on the page and instructions darker.
Recently a lot of submitters have been using the box for comments.
This commit is contained in:
Peter Bhat Harkins 2020-06-20 07:36:32 -05:00
parent 4aa92ecffb
commit 1b55c6fc36
2 changed files with 5 additions and 1 deletions

View File

@ -144,6 +144,10 @@ textarea:focus {
color: #303030;
outline: 0;
}
textarea::placeholder {
color: #333;
opacity: 0.8;
}
textarea:disabled {
background-color: #f0f0f0;
}

View File

@ -67,7 +67,7 @@
<% unless defined?(suggesting) %>
<div class="boxline">
<%= f.label :description, "Text:", :class => "required" %>
<%= f.text_area :description, :rows => 15, :placeholder => "Use this for stories without a URL, to link additional context, or to paste abstracts from PDF papers.
<%= f.text_area :description, :rows => 8, :placeholder => "Use this for stories without a URL, to link additional context, or to paste abstracts from PDF papers.
Please don't use this to promote the story, summarize the post, or explain why you posted it.
See the guidelines below for more." %>