Commit 172bc5cf by Vik Paruchuri

Change naming, edit border radius

parent c059a316
...@@ -42,9 +42,9 @@ section.combined-open-ended { ...@@ -42,9 +42,9 @@ section.combined-open-ended {
div.problemwrapper { div.problemwrapper {
border: 1px solid; border: 1px solid;
border-color: lightgray; border-color: lightgray;
-webkit-border-radius: 20px; -webkit-border-radius: 10px;
-moz-border-radius: 20px; -moz-border-radius: 10px;
border-radius: 20px; border-radius: 10px;
padding: 5px; padding: 5px;
.status-bar .status-bar
{ {
...@@ -54,7 +54,7 @@ div.problemwrapper { ...@@ -54,7 +54,7 @@ div.problemwrapper {
.problemtype{ .problemtype{
display: inline; display: inline;
margin-right: 135px; float: left;
} }
.status-container .status-container
...@@ -62,9 +62,18 @@ div.problemwrapper { ...@@ -62,9 +62,18 @@ div.problemwrapper {
padding-bottom: 5px; padding-bottom: 5px;
display: inline-block; display: inline-block;
} }
.problemtype-container{
width: 40%
}
.assessments-container{
width: 30%
}
} }
.item-container .item-container
{ {
@clearfix
padding-bottom: 10px; padding-bottom: 10px;
display: inline-block; display: inline-block;
padding: 15px; padding: 15px;
...@@ -98,8 +107,13 @@ section.legend-container { ...@@ -98,8 +107,13 @@ section.legend-container {
section.combined-open-ended-status { section.combined-open-ended-status {
padding: 20px 20px 20px 0px; padding: 20px 20px 20px 0px;
.statusitem { .statusitem {
&:first-child{
border-bottom-right-radius: 10px;
}
&:last-child{
border-top-left-radius: 10px;
}
color: #2C2C2C; color: #2C2C2C;
background-color : #d4d4d4; background-color : #d4d4d4;
font-size: .9em; font-size: .9em;
......
...@@ -31,10 +31,10 @@ ACCEPT_FILE_UPLOAD = False ...@@ -31,10 +31,10 @@ ACCEPT_FILE_UPLOAD = False
TRUE_DICT = ["True", True, "TRUE", "true"] TRUE_DICT = ["True", True, "TRUE", "true"]
HUMAN_TASK_TYPE = { HUMAN_TASK_TYPE = {
'selfassessment': "Self Assessment", 'selfassessment': "Self",
'openended': "edX Assessment", 'openended': "edX",
'ml_grading.conf' : "AI Assessment", 'ml_grading.conf' : "AI",
'peer_grading.conf' : "Peer Assessment", 'peer_grading.conf' : "Peer",
} }
HUMAN_STATES = { HUMAN_STATES = {
......
...@@ -7,9 +7,18 @@ ...@@ -7,9 +7,18 @@
</div> </div>
<div class="problemwrapper"> <div class="problemwrapper">
<div class="status-bar"> <div class="status-bar">
Assessments: <div class="status-container"> <table>
${status|n} <td class="problemtype-container">
</div> <div class="problemtype">
Open Response Assessment
</div>
</td>
<td class="assessments-container">
Assessments: <div class="status-container">
${status|n}
</div>
</td>
</table>
</div> </div>
<div class="item-container"> <div class="item-container">
......
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