Commit 172bc5cf by Vik Paruchuri

Change naming, edit border radius

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