Commit df62c2bc by Xavier Antoviaque

CSS refresh - Second pass of fixes

parent 0e86cd83
.mentoring .title {
.mentoring .title * {
display: inline-block;
}
.mentoring .messages {
display: none;
margin-top: 10px;
border: 1px solid rgb(221, 221, 221);
padding: 12px 15px 20px;
border-top: 2px solid #eaeaea;
padding: 12px 0px 20px;
}
.mentoring .messages .title1 {
......@@ -57,6 +57,8 @@
margin-left: 10px;
display: inline-block;
vertical-align: middle;
font-size: 13px;
font-weight: bold;
}
.mentoring .attempts > span {
......
......@@ -29,7 +29,7 @@
position: absolute;
top: 0;
right: 0;
background: none repeat scroll 0 0 #5C9DD5;
background: none repeat scroll 0 0 #66A5B5;
font-family: arial;
font-size: 14px;
height: 100%;
......@@ -55,9 +55,12 @@
cursor: pointer;
position: absolute;
top: 5px;
right: 0px;
right: 3px;
width: 18px;
height: 21px;
font-family: FontAwesome;
font-style: normal;
text-align: center;
}
.mentoring .questionnaire .choice-tips p,
......
......@@ -96,7 +96,7 @@ function MCQBlock(runtime, element) {
if (_.isNull(result.submission)) {
messageView.showMessage('<div class="message-content">You have not provided an answer.</div>' +
'<i class="close icon-remove-sign fa-times-circle"></i>');
'<div class="close icon-remove-sign fa-times-circle"></div>');
}
else if (result.tips) {
var tips = _.find(result.tips, function(obj) {
......@@ -141,7 +141,7 @@ function MRQBlock(runtime, element) {
if (result.message) {
messageView.showMessage('<div class="message-content">' + result.message + '</div>'+
'<i class="close icon-remove-sign fa-times-circle"></i>');
'<div class="close icon-remove-sign fa-times-circle"></div>');
}
var questionnaireDOM = $('fieldset.questionnaire', element),
......
......@@ -5,8 +5,8 @@
</div>
{% if self.title %}
<div class="title">
<h2 class="title main">{{ self.title.content }}</h2>
<span class="title weight">{% if self.weight %} ({{ self.weight }} Points Possible) {% endif %}</span>
<h2 class="main">{{ self.title.content }}</h2>
<span class="weight">{% if self.weight %} ({{ self.weight }} Points Possible) {% endif %}</span>
</div>
{% endif %}
{% for name, c in named_children %}
......
<div class="tip-choice-group">
<div class="close"></div>
{% for tip_fragment in tips_fragments %}
{{ tip_fragment.body_html|safe }}
{% endfor %}
</div>
<div class="close icon-remove-sign fa-times-circle"></div>
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