Commit edaa0a6ae7fbd5c2695756a6bf2f976f7583bb03
1 parent
ede915b7
Exists in
master
and in
7 other branches
Correção no estilo do botão salvar
Showing
2 changed files
with
16 additions
and
1 deletions
Show diff stats
admin/html/admin.css
... | ... | @@ -268,3 +268,13 @@ fieldset { |
268 | 268 | text-align: left; |
269 | 269 | font-size: 10pt; |
270 | 270 | } |
271 | +.yui-skin-sam .yui-panel .hd { | |
272 | +background: none; | |
273 | +background-color: #F2F2F2; | |
274 | +color: #000000; | |
275 | +font-size: 93%; | |
276 | +font-weight: bold; | |
277 | +line-height: 2; | |
278 | +padding: 0 10px; | |
279 | +} | |
280 | + | ... | ... |
admin/js/core.js
... | ... | @@ -1541,7 +1541,7 @@ function core_montaEditor(funcaoOK,w,h,funcaoClose,titulo,modal,bsalva,bcancela) |
1541 | 1541 | if(bcancela === true){ |
1542 | 1542 | temp += cancelai; |
1543 | 1543 | } |
1544 | - lb.innerHTML = temp + '<span style="margin-left:10px;position:relative;top:-10px;">'+titulo+'</span>'; | |
1544 | + lb.innerHTML = temp + '<span style="margin-left:10px;position:relative;top:-5px">'+titulo+'</span>'; | |
1545 | 1545 | if(bsalva === true){ |
1546 | 1546 | new YAHOO.widget.Button( |
1547 | 1547 | "okcancel_checkboxOK", |
... | ... | @@ -1554,6 +1554,11 @@ function core_montaEditor(funcaoOK,w,h,funcaoClose,titulo,modal,bsalva,bcancela) |
1554 | 1554 | } |
1555 | 1555 | }}} |
1556 | 1556 | ); |
1557 | + var temp = $i("okcancel_checkbox"); | |
1558 | + temp.style.top = "2px"; | |
1559 | + temp.style.position = "relative"; | |
1560 | + var temp = $i("okcancel_checkboxOK-button"); | |
1561 | + temp.style.height = "23px"; | |
1557 | 1562 | } |
1558 | 1563 | if(bcancela === true){ |
1559 | 1564 | new YAHOO.widget.Button( | ... | ... |