css
This commit is contained in:
parent
4d04ca2a93
commit
d35e374584
@ -32,7 +32,7 @@ If you try to find bug on Dolibarr, we recommend to append to your user-agent he
|
||||
|
||||
### Account access
|
||||
|
||||
You can install the web application yourself on your on platform so you get full access. Download the zip of the files to put into your own web server virtual host from https://www.dolibarr.org/download
|
||||
You can install the web application yourself on your own platform/server so you get full access to application and sources. Download the zip of the files to put into your own web server virtual host from https://www.dolibarr.org/download
|
||||
|
||||
|
||||
## Eligibility and Responsible Disclosure
|
||||
|
||||
@ -1203,7 +1203,7 @@ if (($id > 0 || !empty($ref)) || $projectidforalltimes > 0)
|
||||
if (!empty($arrayfields['t.task_label']['checked'])) print '<td class="liste_titre"><input type="text" class="flat maxwidth100" name="search_task_label" value="'.dol_escape_htmltag($search_task_label).'"></td>';
|
||||
}
|
||||
// Author
|
||||
if (!empty($arrayfields['author']['checked'])) print '<td class="liste_titre">'.$form->select_dolusers(($search_user > 0 ? $search_user : -1), 'search_user', 1, null, 0, '', '', 0, 0, 0, '', 0, '', 'maxwidth200').'</td>';
|
||||
if (!empty($arrayfields['author']['checked'])) print '<td class="liste_titre">'.$form->select_dolusers(($search_user > 0 ? $search_user : -1), 'search_user', 1, null, 0, '', '', 0, 0, 0, '', 0, '', 'maxwidth150').'</td>';
|
||||
// Note
|
||||
if (!empty($arrayfields['t.note']['checked'])) print '<td class="liste_titre"><input type="text" class="flat maxwidth100" name="search_note" value="'.dol_escape_htmltag($search_note).'"></td>';
|
||||
// Duration
|
||||
@ -1390,7 +1390,7 @@ if (($id > 0 || !empty($ref)) || $projectidforalltimes > 0)
|
||||
if (!empty($arrayfields['value']['checked']))
|
||||
{
|
||||
print '<td class="nowraponall right">';
|
||||
$value = price2num($task_time->thm * $task_time->task_duration / 3600);
|
||||
$value = price2num($task_time->thm * $task_time->task_duration / 3600, 'MT');
|
||||
print price($value, 1, $langs, 1, -1, -1, $conf->currency);
|
||||
print '</td>';
|
||||
if (!$i) $totalarray['nbfield']++;
|
||||
@ -1524,7 +1524,7 @@ if (($id > 0 || !empty($ref)) || $projectidforalltimes > 0)
|
||||
{
|
||||
if ((empty($id) && empty($ref)) || !empty($projectidforalltimes)) // Not a dedicated task
|
||||
{
|
||||
print '<td class="nowrap">';
|
||||
print '<td>';
|
||||
print $task_time->label;
|
||||
print '</td>';
|
||||
}
|
||||
|
||||
@ -2719,7 +2719,7 @@ li.expanded > a.fmdirlia.jqft.ecmjqft {
|
||||
/* ============================================================================== */
|
||||
div.tabs {
|
||||
text-align: <?php print $left; ?>;
|
||||
padding-top: 10px;
|
||||
margin-top: 10px;
|
||||
padding-left: 6px;
|
||||
padding-right: 6px;
|
||||
clear:both;
|
||||
@ -4074,7 +4074,7 @@ div.titre {
|
||||
text-decoration: none;
|
||||
padding-top: 5px;
|
||||
padding-bottom: 5px;
|
||||
text-transform: capitalize;
|
||||
/* text-transform: capitalize; */
|
||||
}
|
||||
div.fiche > table.table-fiche-title:first-of-type div {
|
||||
color: var(--colortexttitlenotab);
|
||||
|
||||
Loading…
Reference in New Issue
Block a user