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 @@ ...@@ -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 { .leanModal_box {
@extend .modal; @extend .modal;
} }
...@@ -20,17 +20,15 @@ ...@@ -20,17 +20,15 @@
<% <%
discussion_link = get_discussion_link(course) if course else None discussion_link = get_discussion_link(course) if course else None
%> %>
% if discussion_link:
<p> <p>For <strong>questions on course lectures, homework, tools, or materials for this course</strong>, post in the
Have a course-specific question? <a href="${discussion_link}" target="_blank"/>course discussion forum</a>.
<a href="${discussion_link}" target="_blank"/>
Post it on the course forums.
</a>
</p> </p>
<hr> <p>Have <strong>general questions about edX</strong>? You can find lots of helpful information in the edX
% endif <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> <hr>
<div class="help-buttons"> <div class="help-buttons">
...@@ -58,9 +56,10 @@ discussion_link = get_discussion_link(course) if course else None ...@@ -58,9 +56,10 @@ discussion_link = get_discussion_link(course) if course else None
<label data-field="email">E-mail*</label> <label data-field="email">E-mail*</label>
<input name="email" type="text"> <input name="email" type="text">
% endif % endif
<label data-field="subject">Subject*</label> <label data-field="subject">Briefly describe your issue*</label>
<input name="subject" type="text"> <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> <textarea name="details"></textarea>
<input name="tag" type="hidden"> <input name="tag" type="hidden">
<div class="submit"> <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