Skip to content
This repository has been archived by the owner on Jan 31, 2019. It is now read-only.

[bug 732196] added temp slowness message for sad feedback #43

Merged
merged 3 commits into from Mar 2, 2012
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
13 changes: 12 additions & 1 deletion apps/feedback/templates/feedback/feedback-form.html
Expand Up @@ -40,7 +40,18 @@ <h1>
{{ form.url.errors }}
</div>
{% endif %}

{% if type == 'sad' %}
<div class="feedback-message">
{% trans %}
Please be as specific as you can in the allotted space.
For example, if you are giving feedback about slowness,
please tell us about relevant websites, if you notice it
at the beginning or later in the browsing session and if
there are any actions that you perform in Firefox that
are particularly problematic.
{% endtrans %}
</div>
{% endif %}
<div class="privacy-wrapper">
<p class="privacy">
<span>
Expand Down
3 changes: 3 additions & 0 deletions media/css/feedback.css
Expand Up @@ -215,6 +215,9 @@ article .fade {
background: -moz-linear-gradient(rgba(255,255,255,0), #fff);
}

div.feedback-message {
line-height: 1.5;
}

input[type=text], input[type=url], textarea {
border: 1px solid #BFD0D8;
Expand Down