diff --git a/html/js/acc_ledger.js b/html/js/acc_ledger.js index 7bf3a33d5..8e45bdb26 100644 --- a/html/js/acc_ledger.js +++ b/html/js/acc_ledger.js @@ -774,13 +774,9 @@ function modifyOperation(p_value, dossier) { layer++; id = 'det' + layer; - var popup = {'id': - id, 'cssclass': 'inner_box' - , 'html': - loading(), 'drag': - true}; - querystring = 'gDossier=' + dossier + '&act=de&jr_id=' + p_value + '&div=' + id; - add_div(popup); + waiting_box(); + var querystring = 'gDossier=' + dossier + '&act=de&jr_id=' + p_value + '&div=' + id; + var action = new Ajax.Request( "ajax_ledger.php", { @@ -788,6 +784,10 @@ function modifyOperation(p_value, dossier) parameters: querystring, onFailure: error_box, onSuccess: function(xml, txt) { + var popup = {'id':id, 'cssclass': 'inner_box' + , 'html':"", 'drag':true}; + remove_waiting_box(); + add_div(popup); success_box(xml, txt); g(id).style.top = calcy(100 + (layer * 3)); g(id).style.left = '10%'; @@ -953,11 +953,9 @@ function op_save(obj) { try { var queryString=$(obj).serialize(); - queryString+="&lib="+obj.lib.value; queryString+="&gDossier="+obj.gDossier.value; var rapt2="rapt"+obj.whatdiv.value; queryString+="&rapt="+g(rapt2).value; - queryString+="&npj="+obj.npj.value; queryString+='&jr_id='+obj.jr_id.value; queryString+='&div='+obj.whatdiv.value; queryString+='&act=save'; diff --git a/html/style-color.css b/html/style-color.css index 766730912..9997befa6 100644 --- a/html/style-color.css +++ b/html/style-color.css @@ -792,11 +792,11 @@ span.todo { } input[disabled], textarea[disabled], option[disabled], optgroup[disabled], select[disabled] { --moz-user-focus:ignore; --moz-user-input:disabled; background-color:lightgrey; color:black; cursor:inherit; +-moz-user-focus:ignore; +-moz-user-input:disabled; } a#anchorbutton, .button, a.button,div.content a.button { @@ -820,7 +820,7 @@ a#anchorbutton, .button, a.button,div.content a.button { margin-top:3px; cursor:pointer; margin:1 2 1 2; - border-radius: 4px; + border-radius: 4px; -moz-border-radius:4px; } @@ -1147,3 +1147,12 @@ div.myfieldset margin-right: 5px; border:lightgrey 2px groove; } +#info_div { + display:none; + background-color: yellow; + color:black; + z-index: 15; + position: absolute; + top:20; + left:20; +} \ No newline at end of file diff --git a/html/style-epad.css b/html/style-epad.css index 7c4b96faf..3c8223e0d 100644 --- a/html/style-epad.css +++ b/html/style-epad.css @@ -1150,7 +1150,8 @@ div.myfieldset #info_div { display:none; background-color: yellow; - color:red; + font-size:120%; + color:black; z-index: 15; position: absolute; top:0; diff --git a/html/style-light.css b/html/style-light.css index e75720058..a15a1509d 100644 --- a/html/style-light.css +++ b/html/style-light.css @@ -800,11 +800,11 @@ background-color: teal; a#anchorbutton, .button, a.button,div.content a.button { font-size:10px; - color:lightblue; + color:white; font-weight: bold; border:1px black outset ; -background-image: url("image/bg-submit5.png"); +background-image: url("image/bg-submit3.gif"); background-repeat: repeat-x; background-position: left; text-decoration:none; @@ -819,6 +819,8 @@ background-repeat: repeat-x; margin-left:3px; cursor:pointer; font-size:1.1em; + border-radius: 8px; + -moz-border-radius:8px; } a#anchorbutton:hover, .button:hover,a.button:hover,div.content a.button:hover { @@ -828,12 +830,13 @@ a#anchorbutton:hover, .button:hover,a.button:hover,div.content a.button:hover { margin-bottom:3px; margin-right:3px; margin-left:3px; - + border-radius: px; + -moz-border-radius:8px; border:1px #90f979 inset; } td.tool { border: solid 1px gray; - background-color:lightgrey; + border-bottom-width: 3px; } div.topmenu { @@ -1143,8 +1146,8 @@ div.myfieldset } #info_div { display:none; - background-color: yellow; - color:red; + background-color: blue; + color:white; z-index: 15; position: absolute; top:0; diff --git a/html/style.css b/html/style.css index 3ac78ee7c..99344403b 100644 --- a/html/style.css +++ b/html/style.css @@ -835,7 +835,7 @@ a#anchorbutton:hover, .button:hover,a.button:hover,div.content a.button:hover { td.tool { border: solid 1px gray; background-color: white; - + border-bottom-width: 2px; } div.topmenu { margin-top:2px; @@ -1150,9 +1150,9 @@ div.myfieldset #info_div { display:none; background-color: yellow; - color:red; + color:black; z-index: 15; position: absolute; top:0; - left:0; + left:45%; } \ No newline at end of file