Commit 1d8e46f0 by Victor Shnayder

Merge pull request #13 from edx/victor/help-button-text

Change help button text, fixing LMS-319
parents 4c6e482d e01991ec
......@@ -300,8 +300,29 @@
}
}
}
#help_wrapper {
padding: 0 ($baseline*1.5) ($baseline*1.5) ($baseline*1.5);
header {
margin-bottom: $baseline;
padding-right: 0;
padding-left: 0;
}
}
.tip {
font-size: 12px;
display: block;
color: $dark-gray;
}
}
.leanModal_box {
@extend .modal;
}
......@@ -20,17 +20,15 @@
<%
discussion_link = get_discussion_link(course) if course else None
%>
% if discussion_link:
<p>
Have a course-specific question?
<a href="${discussion_link}" target="_blank"/>
Post it on the course forums.
</a>
<p>For <strong>questions on course lectures, homework, tools, or materials for this course</strong>, post in the
<a href="${discussion_link}" target="_blank"/>course discussion forum</a>.
</p>
<hr>
% endif
<p>Have <strong>general questions about edX</strong>? You can find lots of helpful information in the edX
<a href="/help" target="_blank">FAQ</a>.</p>
<p>Have a general question about edX? <a href="/help" target="_blank">Check the FAQ</a>.</p>
<p>Have a <strong>question about something specific</strong>? You can contact the edX general
support team directly:</p>
<hr>
<div class="help-buttons">
......@@ -58,9 +56,10 @@ discussion_link = get_discussion_link(course) if course else None
<label data-field="email">E-mail*</label>
<input name="email" type="text">
% endif
<label data-field="subject">Subject*</label>
<label data-field="subject">Briefly describe your issue*</label>
<input name="subject" type="text">
<label data-field="details">Details*</label>
<label data-field="details">Tell us the details*
<span class="tip">Include error messages, steps which lead to the issue, etc</span></label>
<textarea name="details"></textarea>
<input name="tag" type="hidden">
<div class="submit">
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment