Commit 8e28c0458f460ba94b3179a2539ef3bd7e98eeae
1 parent
bdccb603
Exists in
master
and in
7 other branches
-
Showing
3 changed files
with
43 additions
and
18 deletions
Show diff stats
classesjs/classe_arvoredecamadas.js
| ... | ... | @@ -2101,10 +2101,8 @@ i3GEO.arvoreDeCamadas = { |
| 2101 | 2101 | + "' class='" |
| 2102 | 2102 | + estilo |
| 2103 | 2103 | + "' >"; |
| 2104 | - estilo = navm ? "cursor:pointer;vertical-align:15%;" : "cursor:pointer;"; | |
| 2105 | - html += "<input class=inputsb style='" | |
| 2106 | - + estilo | |
| 2107 | - + "' type='checkbox' name=\"layer\" value='" | |
| 2104 | + //estilo = navm ? "cursor:pointer;vertical-align:15%;" : "cursor:pointer;"; | |
| 2105 | + html += "<input type='checkbox' name=\"layer\" value='" | |
| 2108 | 2106 | + tema.name |
| 2109 | 2107 | + "' " |
| 2110 | 2108 | + "id='"+tema.name+"ckbox'" |
| ... | ... | @@ -2174,7 +2172,7 @@ i3GEO.arvoreDeCamadas = { |
| 2174 | 2172 | if (i3GEO.arvoreDeCamadas.FUNCOES.fonte === true |
| 2175 | 2173 | && tema.features.toLowerCase() !== "sim" |
| 2176 | 2174 | && tema.name != "mundo") { |
| 2177 | - html += " <img class='ajuda_usuario' style='top:-2px;' src='" | |
| 2175 | + html += " <img class='Fonte' src='" | |
| 2178 | 2176 | + i3GEO.configura.locaplic + "/imagens/branco.gif" |
| 2179 | 2177 | + "' title='" |
| 2180 | 2178 | + $trad("a9") |
| ... | ... | @@ -2188,17 +2186,15 @@ i3GEO.arvoreDeCamadas = { |
| 2188 | 2186 | if (tema.download.toLowerCase() === "sim" |
| 2189 | 2187 | || tema.download === "" |
| 2190 | 2188 | && tema.features.toLowerCase() !== "sim") { |
| 2191 | - html += " <img style='" | |
| 2192 | - + estilo | |
| 2193 | - + "' src=" | |
| 2194 | - + i3GEO.configura.locaplic + "/imagens/down1.gif" | |
| 2189 | + html += " <img class='Download' src=" | |
| 2190 | + + i3GEO.configura.locaplic + "/imagens/branco.gif" | |
| 2195 | 2191 | + " title='download' onclick='i3GEO.tema.dialogo.download(\"" |
| 2196 | 2192 | + tema.name |
| 2197 | 2193 | + "\")' onmouseover=\"javascript:i3GEO.ajuda.mostraJanela('" |
| 2198 | 2194 | + $trad("t6") |
| 2199 | 2195 | + "','download')\" onmouseout=\"javascript:i3GEO.ajuda.mostraJanela('')\" />"; |
| 2200 | 2196 | } |
| 2201 | - estilo = navm ? "cursor:move;vertical-align:35%;padding-top:0px;color:black;" : "cursor:move;vertical-align:20%;color:black;"; | |
| 2197 | + estilo = "";//navm ? "cursor:move;vertical-align:35%;padding-top:0px;color:black;" : "cursor:move;vertical-align:20%;color:black;"; | |
| 2202 | 2198 | if (tema.AGUARDALEGENDA) { |
| 2203 | 2199 | html += " <span id='ArvoreTituloTema" |
| 2204 | 2200 | + tema.name | ... | ... |
css/geral.css
| 1 | 1 | .i3GEOarvCamTema { |
| 2 | - text-align:left; | |
| 3 | - font-size:11px; | |
| 4 | - vertical-align:top; | |
| 2 | + font-size: 12px; | |
| 3 | + margin: auto; | |
| 4 | + text-align: left; | |
| 5 | + cursor: pointer; | |
| 6 | + top: 1px; | |
| 5 | 7 | } |
| 8 | + | |
| 6 | 9 | .i3GEOarvCamTemaIE { |
| 7 | - text-align:left; | |
| 8 | - font-size:11px; | |
| 9 | - vertical-align:middle; | |
| 10 | - display:table-cell; | |
| 10 | + text-align: left; | |
| 11 | + font-size: 11px; | |
| 12 | + vertical-align: middle; | |
| 13 | + display: table-cell; | |
| 14 | +} | |
| 15 | + | |
| 16 | +.i3GEOarvCamTema span, .i3GEOarvCamTemaIE span { | |
| 17 | + vertical-align: top; | |
| 18 | + cursor:move; | |
| 11 | 19 | } |
| 12 | 20 | |
| 21 | +.i3GEOarvCamTema .Download, .i3GEOarvCamTemaIE .Download { | |
| 22 | + background-image: url("../imagens/oxygen/22x22/download.png"); | |
| 23 | + width: 15px; | |
| 24 | + height: 15px; | |
| 25 | + background-size: 15px; | |
| 26 | + position: relative; | |
| 27 | + top: 1px; | |
| 28 | + margin-left: 2px; | |
| 29 | +} | |
| 30 | + | |
| 31 | +.i3GEOarvCamTema .Fonte, .i3GEOarvCamTemaIE .Fonte { | |
| 32 | + background-image: url("../imagens/oxygen/22x22/help-contents.png"); | |
| 33 | + width: 15px; | |
| 34 | + height: 15px; | |
| 35 | + background-size: 15px; | |
| 36 | + position: relative; | |
| 37 | + top: 1px; | |
| 38 | + margin-left: 2px; | |
| 39 | +} | |
| 40 | + | |
| 41 | + | |
| 13 | 42 | .i3GEObalaoInfo { |
| 14 | 43 | position : absolute; |
| 15 | 44 | zIndex : 5000; | ... | ... |
interface/openlayersdebug.htm
| ... | ... | @@ -110,7 +110,7 @@ |
| 110 | 110 | <div id="i3GEOguiaMovelConteudo" style='top: 10px; overflow: auto; display: none; position: absolute; border-color: gray; border-width: 0px 0 0px 0px; left: 0px; height: 0px; background-color: white'> |
| 111 | 111 | <div id='guia1obj' style='display: none;'> |
| 112 | 112 | <!-- Esta div acrescenta a opção de busca rápida, caso vc queira colocá-la em um lugar específico --> |
| 113 | - <div style='left: 5px; top: 10px; width: 150px;' id=buscaRapida></div> | |
| 113 | + <div style='left:5px;top:10px;width:150px;' id=buscaRapida ></div> | |
| 114 | 114 | <!-- Esta div acrescenta a lista de propriedades do mapa --> |
| 115 | 115 | <div id=listaPropriedades style='top: 15px;'></div> |
| 116 | 116 | <!-- Esta div acrescenta a lista de de camadas do tipo 'baselayers' específicas da interface Openlayers. Veja também a opção i3GEO.Interface.openlayers.GADGETS.LayerSwitcher --> | ... | ... |