Tache 0001743: Une couleur par dossier , ajout title boite dialogue

This commit is contained in:
sparkyx 2022-08-15 10:28:27 +02:00
parent bc5355dfa1
commit dfefdacac4
3 changed files with 12 additions and 2 deletions

View file

@ -39,6 +39,7 @@ class Noalyss_Appearance
'TR-ODD'=>'#DCE7F5',
'TR-EVEN'=>'#e4e7ed',
'INNER-BOX'=>'#DCE1EF',
'INNER-BOX-TITLE'=>'#023575',
'FONT-MENU1' => '#ffffff',
'FONT-MENU2' => '#ffffff',
'FONT-TABLE' => '#222bd0',
@ -59,6 +60,7 @@ class Noalyss_Appearance
'TR-ODD'=>_("Ligne impaire"),
'TR-EVEN'=>_("Ligne paire"),
'INNER-BOX'=>_("Fond Boîte dialogue"),
'INNER-BOX-TITLE'=>_("Fond titre dialogue"),
'FOLDER' => _("Couleur dossier"),
'FONT-MENU1' => _("Couleur police menu principale"),
'FONT-MENU2' => _("Couleur police menu second"),
@ -119,6 +121,7 @@ class Noalyss_Appearance
$tr_odd=$this->aColor['TR-ODD'];
$tr_even=$this->aColor['TR-EVEN'];
$inner_box=$this->aColor['INNER-BOX'];
$inner_box_title=$this->aColor['INNER-BOX-TITLE'];
echo <<<EOF
<style>
@ -131,7 +134,10 @@ class Noalyss_Appearance
color:{$font_default} !important;
}
h2 , hr {
background-color: {$h2} !important;
background-color: {$h2} ;
}
h2.title {
background-color: {$inner_box_title} ;
}
.nav-fill .nav-item {
background: {$menu1};

View file

@ -115,7 +115,7 @@ if (!defined("NOALYSS_PACKAGE_REPOSITORY")) {
if (!defined("SYSINFO_DISPLAY")) {
define("SYSINFO_DISPLAY", TRUE);
}
define("DBVERSION", 174);
define("DBVERSION", 176);
define("MONO_DATABASE", 25);
define("DBVERSIONREPO", 20);
define('NOTFOUND', '--not found--');

View file

@ -0,0 +1,4 @@
begin;
insert into parm_appearance values ('INNER-BOX-TITLE' , '#023575');
insert into version (val,v_description) values (176,'Folder Appearance : dialog box');
commit;