css
This commit is contained in:
parent
b957f768cb
commit
a703aa6b0f
4 changed files with 10 additions and 3 deletions
|
|
@ -62,6 +62,7 @@ require_once DOL_DOCUMENT_ROOT.'/admin/remotestore/class/externalModules.class.p
|
|||
$langs->loadLangs(array("errors", "admin", "modulebuilder"));
|
||||
|
||||
$action = GETPOST('action', 'aZ09');
|
||||
$page = GETPOSTINT('page');
|
||||
$page_y = GETPOSTINT('page_y');
|
||||
$optioncss = GETPOST('optioncss', 'aZ09');
|
||||
$sortfield = GETPOST('sortfield', 'aZ09');
|
||||
|
|
@ -520,7 +521,7 @@ $i = 0; // is a sequencer of modules found
|
|||
$j = 0; // j is module number. Automatically affected if module number not defined.
|
||||
$modNameLoaded = array();
|
||||
|
||||
//if ($mode == 'common' || $mode == 'commonkanban') {
|
||||
|
||||
// Load $modules (required for the badge count)
|
||||
foreach ($modulesdir as $dir) {
|
||||
// Load modules attributes in arrays (name, numero, orders) from dir directory
|
||||
|
|
@ -1213,7 +1214,7 @@ if ($mode == 'common' || $mode == 'commonkanban') {
|
|||
print "</td>\n";
|
||||
|
||||
// Desc
|
||||
print '<td class="valignmiddle tdoverflowmax300 minwidth200imp">';
|
||||
print '<td class="valignmiddle tdoverflowmax300 minwidth200imp opacitylow">';
|
||||
print nl2br($objMod->getDesc());
|
||||
print "</td>\n";
|
||||
|
||||
|
|
|
|||
|
|
@ -2683,7 +2683,7 @@ class DolibarrModules // Can not be abstract, because we need to instantiate it
|
|||
|
||||
$return .= '</div>
|
||||
<div class="info-box-content info-box-text-module'.(!getDolGlobalString($const_name) ? '' : ' info-box-module-enabled'.($versiontrans ? ' info-box-content-warning' : '')).'">
|
||||
<span class="info-box-title">'.$this->getName().'</span>
|
||||
<span class="info-box-title noopacity">'.$this->getName().'</span>
|
||||
<span class="info-box-desc twolinesmax opacitymedium" title="'.dol_escape_htmltag($this->getDesc()).'">'.nl2br($this->getDesc()).'</span>';
|
||||
|
||||
$return .= '<div class="valignmiddle inline-block info-box-more">';
|
||||
|
|
|
|||
|
|
@ -773,6 +773,9 @@ input.pageplusone {
|
|||
.opacitytransp {
|
||||
opacity: 0;
|
||||
}
|
||||
.noopacity {
|
||||
opacity: unset !important;
|
||||
}
|
||||
.colorwhite {
|
||||
color: var(--colorwhite);
|
||||
}
|
||||
|
|
|
|||
|
|
@ -944,6 +944,9 @@ input.pageplusone {
|
|||
.opacitytransp {
|
||||
opacity: 0;
|
||||
}
|
||||
.noopacity {
|
||||
opacity: unset !important;
|
||||
}
|
||||
.colorwhite {
|
||||
color: var(--colorwhite);
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue