Commit aabe8fc6 by Sarina Canelake

UX explaining inst dash email subject length (128 characters)

parent 185cf42e
...@@ -14,15 +14,15 @@ ...@@ -14,15 +14,15 @@
right: 2em; right: 2em;
} }
section.instructor-dashboard-content { section.instructor-dashboard-content {
@extend .content; @extend .content;
padding: 40px; padding: 40px;
width: 100%; width: 100%;
h1 { h1 {
@extend .top-header; @extend .top-header;
} }
} }
// form fields // form fields
.list-fields { .list-fields {
...@@ -37,7 +37,16 @@ ...@@ -37,7 +37,16 @@
&:last-child { &:last-child {
margin-bottom: 0; margin-bottom: 0;
} }
.tip {
display: block;
margin-top: ($baseline/4);
color: tint(rgb(127,127,127),50%);
@include font-size(12);
}
} }
} }
// ==================== // ====================
......
...@@ -16,7 +16,7 @@ ...@@ -16,7 +16,7 @@
position: absolute; position: absolute;
top: 17px; top: 17px;
right: 15px; right: 15px;
font-size: 11pt; @include font-size(14);
} }
// system feedback - messages // system feedback - messages
...@@ -254,6 +254,12 @@ section.instructor-dashboard-content-2 { ...@@ -254,6 +254,12 @@ section.instructor-dashboard-content-2 {
&:last-child { &:last-child {
margin-bottom: 0; margin-bottom: 0;
} }
.tip {
display: block;
margin-top: ($baseline/4);
color: tint(rgb(127,127,127),50%);
@include font-size(12);
}
} }
} }
} }
...@@ -432,7 +438,7 @@ section.instructor-dashboard-content-2 { ...@@ -432,7 +438,7 @@ section.instructor-dashboard-content-2 {
.last-updated { .last-updated {
line-height: 2.2em; line-height: 2.2em;
font-size: 10pt; @include font-size(10);
} }
.display-graph .graph-placeholder { .display-graph .graph-placeholder {
...@@ -470,7 +476,7 @@ section.instructor-dashboard-content-2 { ...@@ -470,7 +476,7 @@ section.instructor-dashboard-content-2 {
} }
.title { .title {
font-size: 16pt; @include font-size(16);
} }
.label { .label {
......
...@@ -522,10 +522,11 @@ function goto( mode) ...@@ -522,10 +522,11 @@ function goto( mode)
<li class="field"> <li class="field">
<label for="id_subject">${_("Subject: ")}</label> <label for="id_subject">${_("Subject: ")}</label>
%if subject: %if subject:
<input type="text" id="id_subject" name="subject" maxlength="100" size="75" value="${subject}"> <input type="text" id="id_subject" name="subject" maxlength="128" size="75" value="${subject}">
%else: %else:
<input type="text" id="id_subject" name="subject" maxlength="100" size="75"> <input type="text" id="id_subject" name="subject" maxlength="128" size="75">
%endif %endif
<span class="tip">${_("(Max 128 characters)")}</span>
</li> </li>
<li class="field"> <li class="field">
......
...@@ -24,7 +24,12 @@ ...@@ -24,7 +24,12 @@
<br/> <br/>
<li class="field"> <li class="field">
<label for="id_subject">${_("Subject: ")}</label><br/> <label for="id_subject">${_("Subject: ")}</label><br/>
<input type="text" id="id_subject" name="subject"> %if subject:
<input type="text" id="id_subject" name="subject" maxlength="128" size="75" value="${subject}">
%else:
<input type="text" id="id_subject" name="subject" maxlength="128" size="75">
%endif
<span class="tip">${_("(Max 128 characters)")}</span>
</li> </li>
<li class="field"> <li class="field">
<label>Message:</label> <label>Message:</label>
......
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