cosmetic : padding inner_box

This commit is contained in:
sparkyx 2025-11-22 08:42:59 +01:00
parent 544beb2cda
commit c236776db7
2 changed files with 10 additions and 5 deletions

View file

@ -1266,8 +1266,8 @@ div.inner_box {
border:1px solid #00008B;
-moz-box-shadow: 10px 10px 5px #888;
box-shadow: 15px 15px 15px #888;
font-size:90%;
font-size:0.9rem;
font-size:100%;
font-size:1rem;
width: 100%;
left:0px ;
}
@ -1285,8 +1285,8 @@ div.inner_box {
border:1px solid #00008B;
-moz-box-shadow: 10px 10px 5px #888;
box-shadow: 15px 15px 15px #888;
font-size:90%;
font-size:0.9rem;
font-size:100%;
font-size:1rem;
width: 50%;
left:22% ;
}
@ -1340,6 +1340,10 @@ div.inner_box {
border-radius: 7px;
}
}
div.inner_box div.content,div.inner_box2 div.content {
padding:5px;
}
/***********************************************************************************/
div.op_detail_title {
background-color:#888;

View file

@ -1384,6 +1384,7 @@ function check()
ob_start();
echo HtmlInput::title_box($this->getTitle(), $this->dialog_box,"close","","y","y");
print '<div class="content">';
printf('<form id="frm%s_%s" method="POST" onsubmit="%s.save(\'frm%s_%s\');return false;">',
$this->object_name, $this->table->get_pk_value(),
$this->object_name, $this->object_name,
@ -1409,7 +1410,7 @@ function check()
'</li>',
'</ul>';
echo "</form>";
print "</div>";
$html=ob_get_contents();
ob_end_clean();