Commit c0a104ec10d7edca915e0fedab458967719c51b7
1 parent
d0559edf
Exists in
master
and in
7 other branches
Correções de layout na ferramenta seleção
Showing
2 changed files
with
5 additions
and
3 deletions
Show diff stats
classesjs/classe_util.js
... | ... | @@ -1541,7 +1541,7 @@ i3GEO.util = { |
1541 | 1541 | tema = retorno[i].name; |
1542 | 1542 | } |
1543 | 1543 | if(retorno[i].escondido !== "sim") |
1544 | - {comboTemas += "<option value="+tema+" >"+nome+"</option>";} | |
1544 | + {comboTemas += "<option title='"+nome+"' value="+tema+" >"+nome+"</option>";} | |
1545 | 1545 | } |
1546 | 1546 | comboTemas += "</select>"; |
1547 | 1547 | temp = {dados:comboTemas,tipo:"dados"}; | ... | ... |
ferramentas/selecao/index.js
... | ... | @@ -179,7 +179,7 @@ i3GEOF.selecao = { |
179 | 179 | ' </select>' + |
180 | 180 | ' <span id=i3GEOselecaoNsel style="position:relative;top:5px;" >0</span></p>' + |
181 | 181 | ' <p class=paragrafo >Temas:<div id=i3GEOselecaoComboTemas style=text-align:left; ></div>' + |
182 | - ' <p class=paragrafo >Distância utilizada ao selecionar por ponto (em metros):' + | |
182 | + ' <br><p class=paragrafo >Distância utilizada ao selecionar por ponto (em metros):' + | |
183 | 183 | $inputText("","","i3GEOselecaotoleranciapt","",3,"0") + |
184 | 184 | ' </p><div id=i3GEOselecaomen1 style=left:0px;width:100%; >' + |
185 | 185 | ' <p class=paragrafo >Escolha o(s) tema(s) alvo(s) e o tipo de operação. ' + |
... | ... | @@ -309,7 +309,8 @@ i3GEOF.selecao = { |
309 | 309 | "i3GEOselecaoComboTemas", |
310 | 310 | "", |
311 | 311 | true, |
312 | - "ligados" | |
312 | + "ligados", | |
313 | + "width:440px;font-size:10px" | |
313 | 314 | ); |
314 | 315 | }, |
315 | 316 | /* |
... | ... | @@ -601,6 +602,7 @@ i3GEOF.selecao = { |
601 | 602 | if(typeof(console) !== 'undefined') |
602 | 603 | {console.info("i3GEO.navega.selecao.porbox()");} |
603 | 604 | var retorna = function(retorno){ |
605 | + i3GEO.janela.fechaAguarde("i3GEO.atualiza"); | |
604 | 606 | var nsel; |
605 | 607 | if(i3GEO.Interface.ATUAL === "padrao") |
606 | 608 | {i3GEO.atualiza(retorno);} | ... | ... |