Cosmetic : readonly background and section payment means
This commit is contained in:
parent
2bd431edfc
commit
7eefd11bdc
4 changed files with 12 additions and 8 deletions
|
|
@ -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;
|
||||
}
|
||||
|
|
|
|||
|
|
@ -25,6 +25,10 @@ namespace Noalyss\XMLDocument;
|
|||
* @file
|
||||
* @brief answer to an inplace object
|
||||
*/
|
||||
/**
|
||||
\pure
|
||||
\brief Abstract class
|
||||
*/
|
||||
abstract class XML_Reader
|
||||
{
|
||||
|
||||
|
|
|
|||
|
|
@ -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>';
|
||||
|
|
|
|||
|
|
@ -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>';
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue