mirror of
https://github.com/moodle/moodle.git
synced 2025-08-06 17:36:38 +02:00
MDL-36804 mod_assign - allow students to resubmit work and display a submission + grading history
This is based on work by Davo Smith with input from Fernando Oliveira (Thanks guys!).
This commit is contained in:
parent
bf6c1d0997
commit
df211804f1
26 changed files with 1839 additions and 262 deletions
|
@ -17,6 +17,8 @@ div.gradingsummary {
|
|||
div.submissionstatus .generaltable,
|
||||
div.submissionlinks .generaltable,
|
||||
div.feedback .generaltable,
|
||||
div.submissionsummarytable .generaltable,
|
||||
div.attempthistory table,
|
||||
div.gradingsummary .generaltable {
|
||||
width: 100%;
|
||||
}
|
||||
|
@ -30,7 +32,6 @@ div.gradingsummary .generaltable {
|
|||
margin-top: 1em;
|
||||
}
|
||||
|
||||
|
||||
div.submissionsummarytable table tbody tr td.c0 {
|
||||
width: 30%;
|
||||
}
|
||||
|
@ -73,6 +74,12 @@ div.submissionlocked {
|
|||
background-color: #efefcf;
|
||||
}
|
||||
|
||||
td.submissionreopened,
|
||||
div.submissionreopened {
|
||||
color: black;
|
||||
background-color: #efefef;
|
||||
}
|
||||
|
||||
td.submissiongraded,
|
||||
div.submissiongraded {
|
||||
color: black;
|
||||
|
@ -160,3 +167,84 @@ td.submissioneditable {
|
|||
.jsenabled .quickgradingform form .commentscontainer textarea {
|
||||
display: inline;
|
||||
}
|
||||
|
||||
#page-mod-assign-view .previousfeedbackwarning {
|
||||
font-size: 140%;
|
||||
font-weight: bold;
|
||||
text-align: center;
|
||||
color: #500;
|
||||
}
|
||||
|
||||
#page-mod-assign-view .submissionhistory {
|
||||
background-color: #b0b0b0;
|
||||
}
|
||||
|
||||
#page-mod-assign-view .submissionhistory .cell.historytitle {
|
||||
background-color: #808080;
|
||||
}
|
||||
|
||||
#page-mod-assign-view .submissionhistory .cell {
|
||||
background-color: #d0d0d0;
|
||||
}
|
||||
|
||||
#page-mod-assign-view .submissionhistory .singlebutton {
|
||||
display: inline-block;
|
||||
float: right;
|
||||
}
|
||||
|
||||
#page-mod-assign-view.dir-rtl .submissionhistory .singlebutton {
|
||||
float: left;
|
||||
}
|
||||
|
||||
#page-mod-assign-view .submissionsummarytable .singlebutton {
|
||||
display: inline-block;
|
||||
}
|
||||
|
||||
.jsenabled .mod-assign-history-link {
|
||||
display: block;
|
||||
cursor: pointer;
|
||||
margin-bottom: 7px;
|
||||
}
|
||||
|
||||
.jsenabled .mod-assign-history-link h4 {
|
||||
display: inline;
|
||||
}
|
||||
|
||||
#page-mod-assign-view.jsenabled .attempthistory h4 {
|
||||
margin-bottom: 7px;
|
||||
text-align: left;
|
||||
}
|
||||
|
||||
#page-mod-assign-view.jsenabled.dir_rtl .attempthistory h4 {
|
||||
text-align: right;
|
||||
}
|
||||
|
||||
.dir-rtl.jsenabled .mod-assign-history-link h4 {
|
||||
text-align: right;
|
||||
}
|
||||
|
||||
.jsenabled .mod-assign-history-link-open {
|
||||
padding: 0 5px 0 20px; background: url([[pix:t/expanded]]) 2px center no-repeat;
|
||||
}
|
||||
|
||||
.jsenabled .mod-assign-history-link-closed {
|
||||
padding: 0 5px 0 20px; background: url([[pix:t/collapsed]]) 2px center no-repeat;
|
||||
}
|
||||
|
||||
.dir-rtl.jsenabled .mod-assign-history-link-closed {
|
||||
padding: 0 20px 0 5px; background: url([[pix:t/collapsed_rtl]]) 2px center no-repeat;
|
||||
}
|
||||
|
||||
#page-mod-assign-view .submithelp {
|
||||
padding: 1em;
|
||||
}
|
||||
|
||||
#page-mod-assign-view .feedbacktitle {
|
||||
font-weight: bold;
|
||||
}
|
||||
|
||||
#page-mod-assign-view .submitconfirm,
|
||||
#page-mod-assign-view .submissionlinks,
|
||||
#page-mod-assign-view .submissionaction {
|
||||
text-align: center;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue