Commit 509e9f19dbff60bd3d30ce914c3f783fd63a7f98
1 parent
7f47aa85
Exists in
master
and in
7 other branches
--no commit message
Showing
3 changed files
with
18 additions
and
4 deletions
Show diff stats
css/corrigeyui_geral.css
| ... | ... | @@ -231,3 +231,14 @@ td.ygtvcell { |
| 231 | 231 | background: url(../imagens/oxygen/16x16/svn-commit.png) 5% 50% no-repeat; |
| 232 | 232 | width: 250px; |
| 233 | 233 | } |
| 234 | + | |
| 235 | +.abrir .first-child button { | |
| 236 | + background: url(../imagens/oxygen/16x16/task-delegate.png) 5% 50% no-repeat; | |
| 237 | + width: 250px; | |
| 238 | +} | |
| 239 | + | |
| 240 | +.abrir150 .first-child button { | |
| 241 | + background: url(../imagens/oxygen/16x16/task-delegate.png) 5% 50% no-repeat; | |
| 242 | + width: 150px; | |
| 243 | +} | |
| 244 | + | ... | ... |
ferramentas/inserexy2/index.js
| ... | ... | @@ -87,6 +87,7 @@ i3GEOF.inserexy = { |
| 87 | 87 | */ |
| 88 | 88 | inicia: function(iddiv){ |
| 89 | 89 | try{ |
| 90 | + var b; | |
| 90 | 91 | $i(iddiv).innerHTML += i3GEOF.inserexy.html(); |
| 91 | 92 | i3GEO.guias.mostraGuiaFerramenta("i3GEOinserexyguia0","i3GEOinserexyguia"); |
| 92 | 93 | //eventos das guias |
| ... | ... | @@ -125,14 +126,16 @@ i3GEOF.inserexy = { |
| 125 | 126 | "i3GEOinserexybotaodd", |
| 126 | 127 | {onclick:{fn: i3GEOF.inserexy.inserirdd}} |
| 127 | 128 | ); |
| 128 | - new YAHOO.widget.Button( | |
| 129 | + b = new YAHOO.widget.Button( | |
| 129 | 130 | "i3GEOinserexybotaocriatema", |
| 130 | 131 | {onclick:{fn: i3GEOF.inserexy.criatemaeditavel}} |
| 131 | 132 | ); |
| 132 | - new YAHOO.widget.Button( | |
| 133 | + b.addClass("rodar"); | |
| 134 | + b = new YAHOO.widget.Button( | |
| 133 | 135 | "i3GEOinserexybotaoperfil", |
| 134 | 136 | {onclick:{fn: i3GEOF.inserexy.graficoPerfil}} |
| 135 | 137 | ); |
| 138 | + b.addClass("abrir"); | |
| 136 | 139 | |
| 137 | 140 | new YAHOO.widget.Button( |
| 138 | 141 | "i3GEOinserexybotao2", |
| ... | ... | @@ -198,8 +201,8 @@ i3GEOF.inserexy = { |
| 198 | 201 | ' <p class=paragrafo >'+$trad('selecionaTema',i3GEOF.inserexy.dicionario)+':</p>' + |
| 199 | 202 | ' <div class="styled-select" id=i3GEOinserexyshapefile >' + |
| 200 | 203 | ' </div><br>' + |
| 201 | - ' <p class=paragrafo ><input id=i3GEOinserexybotaocriatema type="button" size=18 value="'+$trad('criaTemaEditavel',i3GEOF.inserexy.dicionario)+'" />' + | |
| 202 | - ' <input id=i3GEOinserexybotaoperfil type="button" size=18 value="'+$trad('graficoPerfil',i3GEOF.inserexy.dicionario)+'" /></p>' + | |
| 204 | + ' <p class=paragrafo ><input id=i3GEOinserexybotaocriatema type="button" size=18 value="'+$trad('criaTemaEditavel',i3GEOF.inserexy.dicionario)+'" /></p>' + | |
| 205 | + ' <p class=paragrafo ><input id=i3GEOinserexybotaoperfil type="button" size=18 value="'+$trad('graficoPerfil',i3GEOF.inserexy.dicionario)+'" /></p>' + | |
| 203 | 206 | |
| 204 | 207 | ' <div id=i3GEOinserexyopcitens style=display:none;left:0px;text-align:left; >' + |
| 205 | 208 | ' <p class=paragrafo >'+$trad('selecionaItem',i3GEOF.inserexy.dicionario)+':</p>' + | ... | ... |
789 Bytes