Commit b3c6cd256401b7de7a250fd8edc7bec6ddc3bb6f

Authored by Edmar Moretti
1 parent 5cf7dc76

Correção nos estilos dos ícones da árvore de camadas

classesjs/classe_arvoredecamadas.js
... ... @@ -48,6 +48,7 @@
48 48 if (typeof (i3GEO) === 'undefined') {
49 49 var i3GEO = {};
50 50 }
  51 +//TODO ncluir opcao para adicionar a arvore as camadas de fundo
51 52 i3GEO.arvoreDeCamadas =
52 53 {
53 54 /**
... ...
css/black.css
... ... @@ -181,5 +181,29 @@ Menu superior de opcoes
181 181 color: black;
182 182 }
183 183 /*janelas flutuantes*/
  184 +/*arvore de camadas*/
  185 +.i3GEOarvCam .ygtvcell .ygtvlp, .i3GEOarvCam .ygtvlp {
  186 + background: url("../css/treeview-sprite.gif") no-repeat scroll 0 -8897px transparent;
  187 +}
  188 +.i3GEOarvCam .ygtvcell .ygtvlph, .i3GEOarvCam .ygtvlph {
  189 + background: url("../css/treeview-sprite.gif") no-repeat scroll 0 -8917px transparent;
  190 +}
  191 +.i3GEOarvCam .ygtvcell .ygtvlm, .i3GEOarvCam .ygtvlm {
  192 + background: url("../css/treeview-sprite.gif") no-repeat scroll 0 -8937px transparent;
  193 +}
  194 +.i3GEOarvCam .ygtvcell .ygtvlmh, .i3GEOarvCam .ygtvlmh {
  195 + background: url("../css/treeview-sprite.gif") no-repeat scroll 0 -8957px transparent;
  196 +}
184 197  
185   -
  198 +.i3GEOarvCam .ygtvcell .ygtvtp, .i3GEOarvCam .ygtvtp {
  199 + background: url("../css/treeview-sprite.gif") no-repeat scroll 0 -8897px transparent;
  200 +}
  201 +.i3GEOarvCam .ygtvcell .ygtvtph, .i3GEOarvCam .ygtvtph {
  202 + background: url("../css/treeview-sprite.gif") no-repeat scroll 0 -8917px transparent;
  203 +}
  204 +.i3GEOarvCam .ygtvcell .ygtvtm, .i3GEOarvCam .ygtvtm {
  205 + background: url("../css/treeview-sprite.gif") no-repeat scroll 0 -8937px transparent;
  206 +}
  207 +.i3GEOarvCam .ygtvcell .ygtvtmh, .i3GEOarvCam .ygtvtmh {
  208 + background: url("../css/treeview-sprite.gif") no-repeat scroll 0 -8957px transparent;
  209 +}
... ...
css/treeview-sprite.gif

3.78 KB | W: | H:

4.59 KB | W: | H:

  • 2-up
  • Swipe
  • Onion skin
ferramentas/preferencias/dicionario.js
... ... @@ -445,23 +445,23 @@ i3GEOF.preferencias.dicionario = {
445 445 en : "",
446 446 es : ""
447 447 } ],
448   - 89 : [ {
449   - pt : "",
  448 + 'noTemasIconesExpanded' : [ {
  449 + pt : "O nó de opções cada tema é mostrado de forma expandida",
450 450 en : "",
451 451 es : ""
452 452 } ],
453   - 90 : [ {
454   - pt : "",
  453 + 'noTemasIconesHasIcon' : [ {
  454 + pt : "O nó de opções cada tema possuí um ícone que permite expandir/contrair",
455 455 en : "",
456 456 es : ""
457 457 } ],
458   - 91 : [ {
459   - pt : "",
  458 + 'noTemasExpanded' : [ {
  459 + pt : "O nó de cada tema é mostrado de forma expandida",
460 460 en : "",
461 461 es : ""
462 462 } ],
463   - 92 : [ {
464   - pt : "",
  463 + 'noTemasHasIcon' : [ {
  464 + pt : "O nó de cada tema possuí um ícone que permite expandir/contrair",
465 465 en : "",
466 466 es : ""
467 467 } ]
... ...
ferramentas/preferencias/index.js
... ... @@ -147,6 +147,22 @@ i3GEOF.preferencias = {
147 147 tipo: "boolean",
148 148 elemento: "i3GEO.arvoreDeCamadas.VERIFICAABRANGENCIATEMAS"
149 149 },{
  150 + titulo: $trad('noTemasExpanded',i3GEOF.preferencias.dicionario),
  151 + tipo: "boolean",
  152 + elemento: "i3GEO.arvoreDeCamadas.NOTEMA.expanded"
  153 + },{
  154 + titulo: $trad('noTemasHasIcon',i3GEOF.preferencias.dicionario),
  155 + tipo: "boolean",
  156 + elemento: "i3GEO.arvoreDeCamadas.NOTEMA.hasIcon"
  157 + },{
  158 + titulo: $trad('noTemasIconesExpanded',i3GEOF.preferencias.dicionario),
  159 + tipo: "boolean",
  160 + elemento: "i3GEO.arvoreDeCamadas.NOTEMAICONES.expanded"
  161 + },{
  162 + titulo: $trad('noTemasIconesHasIcon',i3GEOF.preferencias.dicionario),
  163 + tipo: "boolean",
  164 + elemento: "i3GEO.arvoreDeCamadas.NOTEMAICONES.hasIcon"
  165 + },{
150 166 titulo: $trad('mostraApenasLegenda',i3GEOF.preferencias.dicionario),
151 167 tipo: "boolean",
152 168 elemento: "i3GEO.arvoreDeCamadas.EXPANDESOLEGENDA"
... ...