Commit fce496626fbdc11fa463dd503bcb1b54bd9ce337

Authored by Edmar Moretti
1 parent 443dbcd3

ajustes nos estilos das caixas de seleção

admin/admin.db
No preview for this file type
css/geral.css
... ... @@ -1248,6 +1248,7 @@ h1 {
1248 1248 -webkit-appearance: none;
1249 1249 -moz-appearance: none;
1250 1250 text-indent: 0.01px;
  1251 + white-space: nowrap;
1251 1252 text-overflow: ellipsis;
1252 1253 font-size: 12px;
1253 1254 appearance: none;
... ...
css/i3geo6.css
... ... @@ -1107,6 +1107,7 @@ line-height: 1.5;
1107 1107 -webkit-appearance: none;
1108 1108 -moz-appearance: none;
1109 1109 text-indent: 0.01px;
  1110 +white-space: nowrap;
1110 1111 text-overflow: ellipsis;
1111 1112 font-size: 12px;
1112 1113 appearance: none;
... ...
css/i3geo6.css.php
... ... @@ -1107,6 +1107,7 @@ line-height: 1.5;
1107 1107 -webkit-appearance: none;
1108 1108 -moz-appearance: none;
1109 1109 text-indent: 0.01px;
  1110 +white-space: nowrap;
1110 1111 text-overflow: ellipsis;
1111 1112 font-size: 12px;
1112 1113 appearance: none;
... ...
css/i3geo_ferramentas6.css
... ... @@ -1248,6 +1248,7 @@ h1 {
1248 1248 -webkit-appearance: none;
1249 1249 -moz-appearance: none;
1250 1250 text-indent: 0.01px;
  1251 + white-space: nowrap;
1251 1252 text-overflow: ellipsis;
1252 1253 font-size: 12px;
1253 1254 appearance: none;
... ...
ferramentas/filtro/index.js
... ... @@ -175,7 +175,7 @@ i3GEOF.filtro = {
175 175 titulo = "<span class='i3GEOconeFerramenta i3GEOiconeFiltro'></span>" + "<div id='i3GEOFfiltroComboCabeca' class='comboTemasCabecalho'> ------</div>&nbsp;&nbsp;&nbsp;"+$trad("t29")+" <a class=ajuda_usuario target=_blank href='" + i3GEO.configura.locaplic + "/ajuda_usuario.php?idcategoria=5&idajuda=38' >&nbsp;&nbsp;&nbsp;</a>";
176 176 }
177 177 janela = i3GEO.janela.cria(
178   - "570px",
  178 + "580px",
179 179 "250px",
180 180 "",
181 181 "",
... ... @@ -252,7 +252,7 @@ i3GEOF.filtro = {
252 252 "display:block"
253 253 );
254 254 };
255   - operador = "&nbsp;<div class='styled-select' style='width:95px;margin-left:5px;position:relative;top:-7px;'><select>";
  255 + operador = "&nbsp;<div class='styled-select150' style='margin-left:5px;position:relative;top:-7px;'><select>";
256 256 operador += "<option value='='>"+$trad('igual',i3GEOF.filtro.dicionario)+"</option>";
257 257 operador += "<option value='!='>dif</option>";
258 258 operador += "<option value='<'>"+$trad('menor',i3GEOF.filtro.dicionario)+"</option>";
... ... @@ -264,7 +264,7 @@ i3GEOF.filtro = {
264 264 operador += "<option value='not ilike'>not like (Postgis)</option>";
265 265 operador += "<option value='~='>regExp</option></select></div>";
266 266  
267   - conector = "&nbsp;<div class='styled-select' style='width:95px;margin-left:5px;position:relative;top:-7px;' ><select>";
  267 + conector = "&nbsp;<div class='styled-select' style='width:30px;margin-left:5px;position:relative;top:-7px;' ><select>";
268 268 conector += "<option value='and'>"+$trad('e',i3GEOF.filtro.dicionario)+"</option>";
269 269 conector += "<option value='or'>"+$trad('ou',i3GEOF.filtro.dicionario)+"</option>";
270 270 conector += "<option value='not'>"+$trad('nao',i3GEOF.filtro.dicionario)+"</option></select></div>";
... ... @@ -285,7 +285,7 @@ i3GEOF.filtro = {
285 285 ntr.appendChild(ntd);
286 286  
287 287 ntd1 = document.createElement("td");
288   - ntd1.innerHTML = "<div class='styled-select' style='width:120px;margin-left:5px;'>"+i3GEOF.filtro.comboTemas+"</div>";
  288 + ntd1.innerHTML = "<div class='styled-select150' style='margin-left:5px;'>"+i3GEOF.filtro.comboTemas+"</div>";
289 289 ntr.appendChild(ntd1);
290 290  
291 291 ntd2 = document.createElement("td");
... ...
ferramentas/filtro/template_mst.html
... ... @@ -21,20 +21,11 @@
21 21 <tr>
22 22 <td></td>
23 23 <td></td>
24   - <td style='background-color: yellow'>{{{item}}}</td>
25   - <td style='background-color: yellow'>{{{operador}}}</td>
26   - <td style='background-color: yellow'>{{{valor}}}</td>
27   - <td style='background-color: yellow'></td>
28   - <td style='background-color: yellow'>{{{conector}}}</td>
29   - </tr>
30   - <tr>
31   - <td>&nbsp;</td>
32   - <td></td>
33   - <td></td>
34   - <td></td>
35   - <td></td>
36   - <td></td>
37   - <td></td>
  24 + <td >{{{item}}}</td>
  25 + <td >{{{operador}}}</td>
  26 + <td >{{{valor}}}</td>
  27 + <td ></td>
  28 + <td >{{{conector}}}</td>
38 29 </tr>
39 30 </table>
40 31 </div>
... ...