Cosmetic : readonly background and section payment means

This commit is contained in:
sparkyx 2026-03-02 09:32:15 +01:00
parent 5181b70558
commit 8b94bad646
4 changed files with 12 additions and 8 deletions

View file

@ -75,6 +75,7 @@ BODY {
--end-level1:#eb7c7e;
--border-color:#b7b7b7;
--bg-white:white;
--bg-readonly:#f9f9f9;
}
input{
font-family: 'OpenSansRegular';
@ -809,8 +810,7 @@ a.document:hover {
}
.input_text_ro {
border:1px solid #0000FF;
background-color: var(--bg-white);
color:var(--border-color);
background-color:var(--bg-readonly);
border-radius: 5px;
margin:1px;
}

View file

@ -25,6 +25,10 @@ namespace Noalyss\XMLDocument;
* @file
* @brief answer to an inplace object
*/
/**
\pure
\brief Abstract class
*/
abstract class XML_Reader
{

View file

@ -256,7 +256,7 @@ try
$Ledger->id=$p_jrn_predef;
$p_post['p_jrn']=$Ledger->id;
echo $Ledger->input($p_post);
echo '<div class="content">';
echo '<div class="">';
echo $Ledger->input_paid($payment,$acompte,$date_payment,$comm_payment);
echo '</div>';
echo '<script>';
@ -273,7 +273,7 @@ try
echo HtmlInput::hidden("sa", "p");
echo HtmlInput::hidden("action_gestion",$action_id);
echo $Ledger->input($array);
echo '<div class="content">';
echo '<div class="">';
echo $Ledger->input_paid($payment,$acompte,$date_payment,$comm_payment);
echo '</div>';
echo '<script>';
@ -285,7 +285,7 @@ try
echo $Ledger->input($array);
echo HtmlInput::hidden("p_action", "ach");
echo HtmlInput::hidden("sa", "p");
echo '<div class="content">';
echo '<div class="">';
echo $Ledger->input_paid($payment,$acompte,$date_payment,$comm_payment);
echo '</div>';
echo '<script>';

View file

@ -395,7 +395,7 @@ try
$Ledger->id=$http->request('p_jrn_predef');
echo $Ledger->input($p_post);
echo '<div class="content">';
echo '<div class="">';
echo $Ledger->input_paid($payment);
echo '</div>';
echo '<script>';
@ -412,7 +412,7 @@ try
echo HtmlInput::hidden("sa", "p");
echo HtmlInput::hidden("action_gestion",$action_id);
echo $Ledger->input($array);
echo '<div class="content">';
echo '<div class="">';
echo $Ledger->input_paid($payment,$acompte,$date_payment,$comm_payment);
echo '</div>';
echo '<script>';
@ -427,7 +427,7 @@ try
$action_id=$http->get('ag_id',"string","");
echo HtmlInput::hidden("action_gestion",$action_id);
echo $Ledger->input($array);
echo '<div class="content">';
echo '<div class="">';
echo $Ledger->input_paid($payment,$acompte,$date_payment,$comm_payment);
echo '</div>';
echo '<script>';