Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
E
edx-platform
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
edx
edx-platform
Commits
adb320c8
Commit
adb320c8
authored
Oct 24, 2013
by
Sarina Canelake
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #1461 from edx/sarina/email-subject-ux
UX explaining inst dash email subject length (128 characters)
parents
185cf42e
aabe8fc6
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
30 additions
and
9 deletions
+30
-9
lms/static/sass/course/instructor/_instructor.scss
+12
-3
lms/static/sass/course/instructor/_instructor_2.scss
+9
-3
lms/templates/courseware/instructor_dashboard.html
+3
-2
lms/templates/instructor/instructor_dashboard_2/send_email.html
+6
-1
No files found.
lms/static/sass/course/instructor/_instructor.scss
View file @
adb320c8
...
...
@@ -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
);
}
}
}
// ====================
...
...
lms/static/sass/course/instructor/_instructor_2.scss
View file @
adb320c8
...
...
@@ -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
{
...
...
lms/templates/courseware/instructor_dashboard.html
View file @
adb320c8
...
...
@@ -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=
"1
00
"
size=
"75"
value=
"${subject}"
>
<input
type=
"text"
id=
"id_subject"
name=
"subject"
maxlength=
"1
28
"
size=
"75"
value=
"${subject}"
>
%else:
<input
type=
"text"
id=
"id_subject"
name=
"subject"
maxlength=
"1
00
"
size=
"75"
>
<input
type=
"text"
id=
"id_subject"
name=
"subject"
maxlength=
"1
28
"
size=
"75"
>
%endif
<span
class=
"tip"
>
${_("(Max 128 characters)")}
</span>
</li>
<li
class=
"field"
>
...
...
lms/templates/instructor/instructor_dashboard_2/send_email.html
View file @
adb320c8
...
...
@@ -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>
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment