Skip to content
Snippets Groups Projects
Commit c685fd2f authored by Laurent Destailleur's avatar Laurent Destailleur
Browse files

Fix: Add style nohover to avoid having meteo with hover.

parent d87e0eaa
Branches
Tags
No related merge requests found
<?php <?php
/* Copyright (C) 2001-2004 Rodolphe Quiedeville <rodolphe@quiedeville.org> /* Copyright (C) 2001-2004 Rodolphe Quiedeville <rodolphe@quiedeville.org>
* Copyright (C) 2004-2011 Laurent Destailleur <eldy@users.sourceforge.net> * Copyright (C) 2004-2012 Laurent Destailleur <eldy@users.sourceforge.net>
* Copyright (C) 2005-2012 Regis Houssin <regis@dolibarr.fr> * Copyright (C) 2005-2012 Regis Houssin <regis@dolibarr.fr>
* Copyright (C) 2011 Juanjo Menent <jmenent@2byte.es> * Copyright (C) 2011 Juanjo Menent <jmenent@2byte.es>
* *
...@@ -500,7 +500,7 @@ foreach($dashboardlines as $key => $board) ...@@ -500,7 +500,7 @@ foreach($dashboardlines as $key => $board)
print '</td>'; print '</td>';
if ($showweather) if ($showweather)
{ {
print '<td rowspan="'.$rowspan.'" width="80" style="border-left: 1px solid #DDDDDD" align="center">'; print '<td class="nohover" rowspan="'.$rowspan.'" width="80" style="border-left: 1px solid #DDDDDD" align="center">';
$text=''; $text='';
if ($totallate > 0) $text=$langs->transnoentitiesnoconv("WarningYouHaveAtLeastOneTaskLate").' ('.$langs->transnoentitiesnoconv("NActionsLate",$totallate).')'; if ($totallate > 0) $text=$langs->transnoentitiesnoconv("WarningYouHaveAtLeastOneTaskLate").' ('.$langs->transnoentitiesnoconv("NActionsLate",$totallate).')';
$options='height="64px"'; $options='height="64px"';
......
...@@ -1363,7 +1363,8 @@ table.noborder { ...@@ -1363,7 +1363,8 @@ table.noborder {
tr.liste_titre { tr.liste_titre {
height: 25px; height: 25px;
background-repeat: repeat-x; background-repeat: no-repeat;
background-color: #C8C8C8;
color: #333333; color: #333333;
font-family: <?php print $fontlist ?>; font-family: <?php print $fontlist ?>;
font-weight: normal; font-weight: normal;
...@@ -1462,7 +1463,6 @@ padding: 5px; ...@@ -1462,7 +1463,6 @@ padding: 5px;
} }
.impair { .impair {
/* background: #d0d4d7; */
background: #eaeaea; background: #eaeaea;
font-family: <?php print $fontlist ?>; font-family: <?php print $fontlist ?>;
border: 0px; border: 0px;
...@@ -1473,23 +1473,29 @@ background: #c0c4c7; ...@@ -1473,23 +1473,29 @@ background: #c0c4c7;
border: 0px; border: 0px;
} }
tr.impair td.nohover {
background: #eaeaea;
}
.pair { .pair {
/* background: #e6ebed; */
background: #FFFFFF; background: #FFFFFF;
font-family: <?php print $fontlist ?>; font-family: <?php print $fontlist ?>;
border: 0px; border: 0px;
} }
.pair td, .impair td {
padding: 2px 3px !important;
}
.pair:hover { .pair:hover {
background: #c0c4c7; background: #c0c4c7;
border: 0px; border: 0px;
} }
tr.pair td.nohover {
background: #FFFFFF;
}
.pair td, .impair td
{
padding: 2px 3px !important;
}
/* /*
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment