diff --git a/html/css/style-classic7.css b/html/css/style-classic7.css index 15cacc56b..2fe646281 100644 --- a/html/css/style-classic7.css +++ b/html/css/style-classic7.css @@ -25,7 +25,7 @@ BODY { color:darkblue !important; background-color:#FCFDFD; --hover : rgba(108, 130, 208, 0.9); - --border-size:4px; + --border-size:6px; --accent-color:lightblue; } input{ @@ -3765,7 +3765,7 @@ h2.h-section { height:var(--border-size); background-color:lightblue; transform:scaleX(0); - transition:transform 300ms ease-in-out; + transition:transform 150ms ease-in-out; } .nav-item.nav-item-underline:hover::before, @@ -3776,7 +3776,7 @@ h2.h-section { .nav-item.li-active.nav-item-underline::before { transform: scale(1); - background-color: darkred; + background-color: #d03100; } /** @@ -3790,7 +3790,7 @@ h2.h-section { left: 0; right: 0; background-color:darkorange; - height: 3px; + height: var(--border-size); } .nav-level3 .nav-link.active::after { diff --git a/include/class/noalyss_appearance.class.php b/include/class/noalyss_appearance.class.php index 27f7b3471..922e7fb02 100644 --- a/include/class/noalyss_appearance.class.php +++ b/include/class/noalyss_appearance.class.php @@ -35,7 +35,7 @@ class Noalyss_Appearance 'MENU1' => '#000074', 'BODY' => '#ffffff', 'MENU2' => '#3d3d87', - 'MENU1-SELECTED' => '#7191ea', + 'MENU1-SELECTED' => '#000074', 'TR-ODD'=>'#DCE7F5', 'TR-EVEN'=>'#ffffff', 'INNER-BOX'=>'#DCE1EF', @@ -170,9 +170,7 @@ class Noalyss_Appearance .nav-pills .nav-link { color: {$menu1_font} !important; } - .nav-link:hover { - background-color:{$menu1_selected}; - } + table.sortable, table.table_large, table.result ,table.resultfooter { color:{$font_table} !important; } diff --git a/sql/upgrade.sql b/sql/upgrade.sql index 139597f9c..bb6c258d0 100644 --- a/sql/upgrade.sql +++ b/sql/upgrade.sql @@ -1,2 +1,3 @@ - +-- change color selected menu +update parm_appearance set a_value='#000074' where a_code='MENU1-SELECTED' and a_value='#7191ea';