Commit f5ade3ba54819c2b2e1610ee795741bfd82d956e

Authored by Edmar Moretti
1 parent 27d32def

Ajustes no relatório descritivo sobre as variáveis cadastradas

Showing 1 changed file with 4 additions and 4 deletions   Show diff stats
admin/php/classe_metaestat.php
... ... @@ -1706,13 +1706,13 @@ class Metaestat{
1706 1706 $var_cor = "var_cor1";
1707 1707 foreach($dados as $variavel){
1708 1708 $html[] = "<div class='".$var_cor."'>";
1709   - $html[] = "<h1>".$variavel["titulo"];
1710   - $html[] = "<span style='color:rgb(190,190,190)'> (<i>".$variavel["descricao"]."</i>)</span></h1>";
  1709 + $html[] = "<h1 style=padding:3px; ><b>".$variavel["titulo"];
  1710 + $html[] = "</b><br><span style='color:rgb(100,100,100)'>".$variavel["descricao"]."</span></h1>";
1711 1711 $filhos = $variavel["filhos"];
1712 1712 foreach($filhos as $f){
1713 1713 $html[] = "<h2 style='position:relative;left:10px;'>ID: <u>".$f["id"]."</u> - ".$f["titulo"]."</h2>";
1714   - $html[] = "<div style='position:relative;left:20px;'>";
1715   - $html[] = "<p><i>".$f["descricao"]."</i></p>";
  1714 + $html[] = "<div style='position:relative;padding-left:20px;'>";
  1715 + $html[] = "<p>".$f["descricao"]."</p>";
1716 1716 if($detalhes == "sim"){
1717 1717 $html[] = "<p><b>Fontes:</b></p>";
1718 1718 foreach($f["fontes"] as $fonte){
... ...