fix colors label - refs BT#13280

pull/3063/head
Alex Aragon 8 years ago
parent 5855a9cfd1
commit 76a82ec6f5
  1. 6
      app/Resources/public/css/themes/rainbow/default.css
  2. 10
      main/exercise/multiple_answer_combination.class.php

@ -701,14 +701,16 @@ footer #footer_right{
border-radius: 0;
font-size: 12px;
}
table.matching tr td span.label-danger{
table.matching tr td span.label-danger,
table.table-striped tr td span.label-danger{
background-color: #162a83;
color: #FFF !important;
border-radius: 0;
width: 100%;
display: inline-block;
}
table.matching tr td span.label-success{
table.matching tr td span.label-success,
table.table-striped tr td span.label-success{
background-color: #96BD0D;
color: #FFF !important;
border-radius: 0;

@ -229,11 +229,11 @@ class MultipleAnswerCombination extends Question
$header = parent::return_header($exercise, $counter, $score);
$header .= '<table class="'.$this->question_table_class.'">
<tr>
<th>'.get_lang("Choice").'</th>
<th>'. get_lang("ExpectedChoice").'</th>
<th>'. get_lang("Answer").'</i></th>';
$header .= '<th>'.get_lang('Status').'</th>';
$header .= '<th>'.get_lang("Comment").'</th>';
<th width="10%">'.get_lang("Choice").'</th>
<th width="20%">'. get_lang("ExpectedChoice").'</th>
<th width="30%">'. get_lang("Answer").'</i></th>';
$header .= '<th width="10%">'.get_lang('Status').'</th>';
$header .= '<th width="30%">'.get_lang("Comment").'</th>';
$header .= '</tr>';
return $header;

Loading…
Cancel
Save