This commit is contained in:
sparkyx 2022-11-27 17:03:15 +01:00
parent 789f073f5d
commit be0de15511
4 changed files with 37 additions and 13 deletions

View file

@ -56,7 +56,7 @@ a.mtitle span.notice {
}
table.sortable, table.table_large, table.result ,table.resultfooter {
width:99%;
border-spacing: 0px;
border-spacing: 0px 2px;
border-collapse:collapse;
border:1px solid #5D90CD;
@ -75,13 +75,20 @@ table.sortable th, table.table_large th,table.result th {
font-family: Arial, Helvetica, "Liberation Sans", FreeSans, sans-serif;
font-family: 'OpenSansRegular';
border-bottom:2px #5d90cd groove;
border-top:0;
border-top:0px;
color:#0C106D;
text-align: left;
font-style: normal;
}
/* LarGe */
@media (min-width: 992px) {
table.sortable , table.table_large, table.result {
border-collapse: separate;
border-spacing: 1px 3px;
}
}
h2.title {
border-radius: 0px;
margin: 0px;
@ -3272,22 +3279,23 @@ li.li-active {
position: relative;
left: 0px;
top: 10px;
background: rgb(176, 173, 230);
box-shadow: navy 1px 1px 40px;
background: rgb(176, 173, 230);
box-shadow: #a7a7b3 1px 1px 40px;
border-radius: 5px;
}
@keyframes turn-color{
0% { transform : rotate(0deg);opacity:0.1;}
50% { transform : rotate(90deg);opacity:0.9}
100% { transform : rotate(180deg);opacity:0.1}
@keyframes turn-color{
0% { transform : rotate(0deg);opacity:0.1;transform:scale( 0.3);background-color:navy}
50% { transform : rotate(90deg);opacity:0.9;; }
100% { transform : rotate(180deg);opacity:0.1;transform:scale( 1.3)}
}
/**
* style in TEXTAREA wysiwyg
* style in TEXTAREA wysiwyg must be encapsuled in div with the class nicEdit-main
*
*/
div.nicEdit-main>blockquote {
div.nicEdit-main blockquote {
margin-left:2rem !important;
}
@ -3298,4 +3306,15 @@ li.li-active {
margin-right:5% !important;
background-size:1px !important;
height:2px;
}
div.nicEdit-main h2 {
margin: 0px;
padding: 0px;
font-size: 1.6em;
font-style: normal;
margin-bottom: .5rem;
font-size: 2rem !important;
background-color: white;
color: navy;
}

View file

@ -91,7 +91,6 @@ function compute_total_table(p_table, seq)
tot += rounded_value
}
console.log(`total computed (compute_total_table) ${p_table} ${tot/100}`)
return tot/100;
}
catch (e)

View file

@ -27,7 +27,7 @@ class Dbg
public static function echo_function($msg,$print=true)
{
if (DEBUGNOALYSS > 1) {
$r = '<span style="font-size:12px;color:lightgreen;background-color:lightyellow;">';
$r = '<span style="font-size:12px;color:brown;background-color:bisque;">';
$r.="[FILE: $msg]";
$r.= '</span>';

View file

@ -221,6 +221,12 @@ class HtmlInput
{
if ($p_id=="")
$p_id=$p_name;
if ( DEBUGNOALYSS > 2) {
return '<span style="font-size:80%;color:blue;background-color:lightgoldenrodyellow">'.
$p_id .
'= <INPUT TYPE="text" id="'.strip_tags($p_id).'" NAME="'.$p_name.'" VALUE="'.strip_tags($p_value).'" style="color:blue;font-size:80%">'.
'</span>';
}else
return '<INPUT TYPE="hidden" id="'.strip_tags($p_id).'" NAME="'.$p_name.'" VALUE="'.strip_tags($p_value).'">';
}