Cosmetic : Set color
This commit is contained in:
parent
78b2b40c09
commit
71ae5c0f07
3 changed files with 7 additions and 3 deletions
|
|
@ -29,6 +29,7 @@ BODY {
|
|||
--accent-color:lightblue;
|
||||
--input-color:#4b4b91;
|
||||
--color-red:Crimson;
|
||||
--color-blue2: cornflowerblue;
|
||||
}
|
||||
input{
|
||||
font-family: 'OpenSansRegular';
|
||||
|
|
@ -523,7 +524,7 @@ tr.highlight {
|
|||
color: darkred !important;
|
||||
background-color: lightgoldenrodyellow;
|
||||
color: antiquewhite !important;
|
||||
background-color: lightskyblue;
|
||||
background-color: var(--color-blue2);
|
||||
padding: 2px 10px 2px 10px;
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -33,7 +33,7 @@ class Noalyss_Appearance
|
|||
{
|
||||
static private $aCSSColor = ['H2' => '#9fbcd6',
|
||||
'MENU1' => '#000074',
|
||||
'BODY' => '#ffffff',
|
||||
'BODY' => '#fafafa',
|
||||
'MENU2' => '#3d3d87',
|
||||
'MENU1-SELECTED' => '#000074',
|
||||
'TR-ODD'=>'#DCE7F5',
|
||||
|
|
@ -44,7 +44,7 @@ class Noalyss_Appearance
|
|||
'FONT-MENU2' => '#ffffff',
|
||||
'FONT-TABLE' => '#222bd0',
|
||||
'FONT-DEFAULT' => '#000074',
|
||||
'FOLDER' => '#ffffff',
|
||||
'FOLDER' => '#fafafa',
|
||||
'FONT-TABLE-HEADER' =>'#0C106D',
|
||||
'FONT-FOLDER' => '#000074'];
|
||||
static private $aCSSColorName = array();
|
||||
|
|
|
|||
|
|
@ -1,3 +1,6 @@
|
|||
-- change color selected menu
|
||||
update parm_appearance set a_value='#000074' where a_code='MENU1-SELECTED' and a_value='#7191ea';
|
||||
update parm_appearance set a_value='#FAFAFA' where a_code='BODY' and lower(a_value)='#ffffff';
|
||||
update parm_appearance set a_value='#FAFAFA' where a_code='FOLDER' and lower(a_value)='#ffffff';
|
||||
|
||||
ALTER TABLE public.todo_list ALTER COLUMN tl_date drop NOT NULL;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue