Commit 37b95b592c4b9a002fbfcbcb2367b22039d73dc4
1 parent
7ec15a32
Exists in
master
and in
7 other branches
Ajustes nos estilos
Showing
1 changed file
with
3 additions
and
2 deletions
Show diff stats
ferramentas/metaestat/index.js
... | ... | @@ -2501,7 +2501,8 @@ i3GEOF.metaestat = { |
2501 | 2501 | if(!mostraIconeinfo || mostraIconeinfo === ""){ |
2502 | 2502 | mostraIconeinfo = "sim"; |
2503 | 2503 | } |
2504 | - ins = "<select id='"+idcombo+"' style='box-shadow:0 1px 5px gray;width:"+largura+"px' onchange='"+stronchange+"'><option value=''>---</option>"; | |
2504 | + ins = "<div class=styled-select style='width:"+largura+"px;float:left;' >"; | |
2505 | + ins += "<select style='height:22px;' id='"+idcombo+"' onchange='"+stronchange+"'><option value=''>---</option>"; | |
2505 | 2506 | for(i=0;i<n;i++){ |
2506 | 2507 | if(dados[i].codigo_variavel === i3GEOF.metaestat.CODIGO_VARIAVEL){ |
2507 | 2508 | selecionado = "SELECTED"; |
... | ... | @@ -2511,7 +2512,7 @@ i3GEOF.metaestat = { |
2511 | 2512 | } |
2512 | 2513 | ins += "<option "+selecionado+" title='"+dados[i].descricao+"' value='"+dados[i].codigo_variavel+"'>"+dados[i].nome+"</option>"; |
2513 | 2514 | } |
2514 | - ins += "</select>"; | |
2515 | + ins += "</select></div>"; | |
2515 | 2516 | if(mostraIconeinfo == "sim"){ |
2516 | 2517 | ins += "<img src='"+i3GEO.configura.locaplic+"/imagens/ic_identifica.png' style='position:relative;cursor:pointer;left:5px;top:4px;' onclick='i3GEOF.metaestat.principal.maisInfo()' title='"+$trad(3,i3GEOF.metaestat.dicionario)+"'/>"; |
2517 | 2518 | } | ... | ... |