Fix: Add style nohover to avoid having meteo with hover.
This commit is contained in:
parent
d87e0eaae0
commit
c685fd2f2e
@ -1,6 +1,6 @@
|
||||
<?php
|
||||
/* 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) 2011 Juanjo Menent <jmenent@2byte.es>
|
||||
*
|
||||
@ -500,7 +500,7 @@ foreach($dashboardlines as $key => $board)
|
||||
print '</td>';
|
||||
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='';
|
||||
if ($totallate > 0) $text=$langs->transnoentitiesnoconv("WarningYouHaveAtLeastOneTaskLate").' ('.$langs->transnoentitiesnoconv("NActionsLate",$totallate).')';
|
||||
$options='height="64px"';
|
||||
|
||||
@ -1363,7 +1363,8 @@ table.noborder {
|
||||
|
||||
tr.liste_titre {
|
||||
height: 25px;
|
||||
background-repeat: repeat-x;
|
||||
background-repeat: no-repeat;
|
||||
background-color: #C8C8C8;
|
||||
color: #333333;
|
||||
font-family: <?php print $fontlist ?>;
|
||||
font-weight: normal;
|
||||
@ -1462,7 +1463,6 @@ padding: 5px;
|
||||
}
|
||||
|
||||
.impair {
|
||||
/* background: #d0d4d7; */
|
||||
background: #eaeaea;
|
||||
font-family: <?php print $fontlist ?>;
|
||||
border: 0px;
|
||||
@ -1473,23 +1473,29 @@ background: #c0c4c7;
|
||||
border: 0px;
|
||||
}
|
||||
|
||||
tr.impair td.nohover {
|
||||
background: #eaeaea;
|
||||
}
|
||||
|
||||
.pair {
|
||||
/* background: #e6ebed; */
|
||||
background: #FFFFFF;
|
||||
font-family: <?php print $fontlist ?>;
|
||||
border: 0px;
|
||||
}
|
||||
|
||||
.pair td, .impair td {
|
||||
padding: 2px 3px !important;
|
||||
}
|
||||
|
||||
.pair:hover {
|
||||
background: #c0c4c7;
|
||||
border: 0px;
|
||||
}
|
||||
|
||||
tr.pair td.nohover {
|
||||
background: #FFFFFF;
|
||||
}
|
||||
|
||||
.pair td, .impair td
|
||||
{
|
||||
padding: 2px 3px !important;
|
||||
}
|
||||
|
||||
|
||||
/*
|
||||
|
||||
Loading…
Reference in New Issue
Block a user