UX explaining inst dash email subject length (128 characters)
This commit is contained in:
@@ -14,15 +14,15 @@
|
||||
right: 2em;
|
||||
}
|
||||
|
||||
section.instructor-dashboard-content {
|
||||
@extend .content;
|
||||
section.instructor-dashboard-content {
|
||||
@extend .content;
|
||||
padding: 40px;
|
||||
width: 100%;
|
||||
|
||||
h1 {
|
||||
@extend .top-header;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
// form fields
|
||||
.list-fields {
|
||||
@@ -37,7 +37,16 @@
|
||||
&:last-child {
|
||||
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 @@
|
||||
position: absolute;
|
||||
top: 17px;
|
||||
right: 15px;
|
||||
font-size: 11pt;
|
||||
@include font-size(14);
|
||||
}
|
||||
|
||||
// system feedback - messages
|
||||
@@ -254,6 +254,12 @@ section.instructor-dashboard-content-2 {
|
||||
&:last-child {
|
||||
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 {
|
||||
|
||||
.last-updated {
|
||||
line-height: 2.2em;
|
||||
font-size: 10pt;
|
||||
@include font-size(10);
|
||||
}
|
||||
|
||||
.display-graph .graph-placeholder {
|
||||
@@ -470,7 +476,7 @@ section.instructor-dashboard-content-2 {
|
||||
}
|
||||
|
||||
.title {
|
||||
font-size: 16pt;
|
||||
@include font-size(16);
|
||||
}
|
||||
|
||||
.label {
|
||||
|
||||
@@ -522,10 +522,11 @@ function goto( mode)
|
||||
<li class="field">
|
||||
<label for="id_subject">${_("Subject: ")}</label>
|
||||
%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:
|
||||
<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
|
||||
<span class="tip">${_("(Max 128 characters)")}</span>
|
||||
</li>
|
||||
|
||||
<li class="field">
|
||||
|
||||
@@ -24,7 +24,12 @@
|
||||
<br/>
|
||||
<li class="field">
|
||||
<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 class="field">
|
||||
<label>Message:</label>
|
||||
|
||||
Reference in New Issue
Block a user