Commit fce496626fbdc11fa463dd503bcb1b54bd9ce337
1 parent
443dbcd3
Exists in
master
and in
7 other branches
ajustes nos estilos das caixas de seleção
Showing
7 changed files
with
13 additions
and
18 deletions
Show diff stats
admin/admin.db
No preview for this file type
css/geral.css
css/i3geo6.css
css/i3geo6.css.php
css/i3geo_ferramentas6.css
ferramentas/filtro/index.js
... | ... | @@ -175,7 +175,7 @@ i3GEOF.filtro = { |
175 | 175 | 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>"; |
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 = " <div class='styled-select' style='width:95px;margin-left:5px;position:relative;top:-7px;'><select>"; | |
255 | + operador = " <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 = " <div class='styled-select' style='width:95px;margin-left:5px;position:relative;top:-7px;' ><select>"; | |
267 | + conector = " <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> </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> | ... | ... |