Commit c827bd9808e5e9a5ce211fbc5b0696451462eae7
1 parent
ffb0184d
Exists in
master
and in
7 other branches
--no commit message
Showing
2 changed files
with
6 additions
and
6 deletions
Show diff stats
ferramentas/filtro/index.js
... | ... | @@ -149,7 +149,7 @@ i3GEOF.filtro = { |
149 | 149 | //cria a janela flutuante |
150 | 150 | titulo = "<span class='i3GEOconeFerramenta i3GEOiconeFiltro'></span>" + "<div id='i3GEOFfiltroComboCabeca' class='comboTemasCabecalho'> ------</div> "+$trad("t29")+" <a class=ajuda_usuario target=_blank href='" + i3GEO.configura.locaplic + "/ajuda_usuario.php?idcategoria=5&idajuda=38' > </a>"; |
151 | 151 | janela = i3GEO.janela.cria( |
152 | - "480px", | |
152 | + "570px", | |
153 | 153 | "250px", |
154 | 154 | "", |
155 | 155 | "", |
... | ... | @@ -225,7 +225,7 @@ i3GEOF.filtro = { |
225 | 225 | "display:block" |
226 | 226 | ); |
227 | 227 | }; |
228 | - operador = " <div class='styled-select' style='width:60px;margin-left:5px;position:relative;top:-7px;'><select>"; | |
228 | + operador = " <div class='styled-select' style='width:95px;margin-left:5px;position:relative;top:-7px;'><select>"; | |
229 | 229 | operador += "<option value='='>"+$trad('igual',i3GEOF.filtro.dicionario)+"</option>"; |
230 | 230 | operador += "<option value='!='>dif</option>"; |
231 | 231 | operador += "<option value='<'>"+$trad('menor',i3GEOF.filtro.dicionario)+"</option>"; |
... | ... | @@ -237,7 +237,7 @@ i3GEOF.filtro = { |
237 | 237 | operador += "<option value='not ilike'>not like (Postgis)</option>"; |
238 | 238 | operador += "<option value='~='>regExp</option></select></div>"; |
239 | 239 | |
240 | - conector = " <div class='styled-select' style='width:60px;margin-left:5px;position:relative;top:-7px;' ><select>"; | |
240 | + conector = " <div class='styled-select' style='width:95px;margin-left:5px;position:relative;top:-7px;' ><select>"; | |
241 | 241 | conector += "<option value='and'>"+$trad('e',i3GEOF.filtro.dicionario)+"</option>"; |
242 | 242 | conector += "<option value='or'>"+$trad('ou',i3GEOF.filtro.dicionario)+"</option>"; |
243 | 243 | conector += "<option value='not'>"+$trad('nao',i3GEOF.filtro.dicionario)+"</option></select></div>"; | ... | ... |
ferramentas/selecao/index.js
... | ... | @@ -1038,7 +1038,7 @@ i3GEOF.selecao = { |
1038 | 1038 | "display:block" |
1039 | 1039 | ); |
1040 | 1040 | }; |
1041 | - operador = "<div class='styled-select' style='width:60px;margin-left:5px;'><select>"; | |
1041 | + operador = "<div class='styled-select' style='width:95px;margin-left:5px;'><select>"; | |
1042 | 1042 | operador += "<option value='='>=</option>"; |
1043 | 1043 | operador += "<option value='!='> != </option>"; |
1044 | 1044 | operador += "<option value='<'> < </option>"; |
... | ... | @@ -1050,7 +1050,7 @@ i3GEOF.selecao = { |
1050 | 1050 | operador += "<option value='not ilike'>not like (Postgis)</option>"; |
1051 | 1051 | operador += "<option value='~='> regExp </option></select></div>"; |
1052 | 1052 | |
1053 | - conector = "<div class='styled-select' style='width:60px;margin-left:5px;' ><select>"; | |
1053 | + conector = "<div class='styled-select' style='width:95px;margin-left:5px;' ><select>"; | |
1054 | 1054 | conector += "<option value='and'>and</option>"; |
1055 | 1055 | conector += "<option value='or'>or</option>"; |
1056 | 1056 | conector += "<option value='not'>not</option></select></div>"; |
... | ... | @@ -1075,7 +1075,7 @@ i3GEOF.selecao = { |
1075 | 1075 | "none", |
1076 | 1076 | i3GEO.temaAtivo, |
1077 | 1077 | function(retorno){ |
1078 | - ntd1.innerHTML = "<div class='styled-select' style='width:90px;margin-left:5px;' >" + retorno.dados + "</div>"; | |
1078 | + ntd1.innerHTML = "<div class='styled-select' style='width:95px;margin-left:5px;' >" + retorno.dados + "</div>"; | |
1079 | 1079 | } |
1080 | 1080 | ); |
1081 | 1081 | ntr.appendChild(ntd1); | ... | ... |