Make colors less aggressive
This commit is contained in:
parent
c4361c7737
commit
2285e0d780
@ -768,7 +768,11 @@ if (!empty($valid_dashboardlines))
|
|||||||
|
|
||||||
$weatherDashBoard= '<div class="box-flex-item '.$appendClass.'">'."\n";
|
$weatherDashBoard= '<div class="box-flex-item '.$appendClass.'">'."\n";
|
||||||
$weatherDashBoard.= ' <div class="info-box '.$openedDashBoardSize.' info-box-weather info-box-weather-level'.$weather->level.'">'."\n";
|
$weatherDashBoard.= ' <div class="info-box '.$openedDashBoardSize.' info-box-weather info-box-weather-level'.$weather->level.'">'."\n";
|
||||||
$weatherDashBoard.= ' <span class="info-box-icon"><i class="fa fa-weather-level'.$weather->level.'"></i></span>'."\n";
|
$weatherDashBoard.= ' <span class="info-box-icon">';
|
||||||
|
|
||||||
|
$weatherDashBoard.= ' <i class="fa fa-weather-level'.$weather->level.'"></i>';
|
||||||
|
|
||||||
|
$weatherDashBoard.= ' </span>'."\n";
|
||||||
$weatherDashBoard.= ' <div class="info-box-content">'."\n";
|
$weatherDashBoard.= ' <div class="info-box-content">'."\n";
|
||||||
$weatherDashBoard.= ' <span class="info-box-title">'.$langs->trans('GlobalOpenedElemView').'</span>' . "\n";
|
$weatherDashBoard.= ' <span class="info-box-title">'.$langs->trans('GlobalOpenedElemView').'</span>' . "\n";
|
||||||
|
|
||||||
|
|||||||
@ -3414,6 +3414,10 @@ a.impayee:hover { font-weight: bold; color: #550000; }
|
|||||||
* Other
|
* Other
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
.opened-dash-board-wrap {
|
||||||
|
margin-bottom: 25px;
|
||||||
|
}
|
||||||
|
|
||||||
div.boximport {
|
div.boximport {
|
||||||
min-height: unset;
|
min-height: unset;
|
||||||
}
|
}
|
||||||
@ -5250,7 +5254,6 @@ div.tabsElem a.tab {
|
|||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
/* ============================================================================== */
|
/* ============================================================================== */
|
||||||
/* Public */
|
/* Public */
|
||||||
/* ============================================================================== */
|
/* ============================================================================== */
|
||||||
|
|||||||
@ -120,32 +120,32 @@ a.info-box-text{ text-decoration: none;}
|
|||||||
background-color: #605ca8 !important;
|
background-color: #605ca8 !important;
|
||||||
}
|
}
|
||||||
.bg-infoxbox-action{
|
.bg-infoxbox-action{
|
||||||
background-color: #d81b60 !important;
|
background-color: #d84b80 !important;
|
||||||
}
|
}
|
||||||
.bg-infoxbox-propal,
|
.bg-infoxbox-propal,
|
||||||
.bg-infoxbox-facture,
|
.bg-infoxbox-facture,
|
||||||
.bg-infoxbox-commande{
|
.bg-infoxbox-commande{
|
||||||
background-color: #dd4b39 !important;
|
background-color: #abb87b !important;
|
||||||
}
|
}
|
||||||
.bg-infoxbox-supplier_proposal,
|
.bg-infoxbox-supplier_proposal,
|
||||||
.bg-infoxbox-invoice_supplier,
|
.bg-infoxbox-invoice_supplier,
|
||||||
.bg-infoxbox-order_supplier{
|
.bg-infoxbox-order_supplier{
|
||||||
background-color: #00c0ef !important;
|
background-color: #40b0cf !important;
|
||||||
}
|
}
|
||||||
.bg-infoxbox-contrat{
|
.bg-infoxbox-contrat{
|
||||||
background-color: #00a65a !important;
|
background-color: #20a68a !important;
|
||||||
}
|
}
|
||||||
.bg-infoxbox-bank_account{
|
.bg-infoxbox-bank_account{
|
||||||
background-color: #f39c12 !important;
|
background-color: #e39c42 !important;
|
||||||
}
|
}
|
||||||
.bg-infoxbox-adherent{
|
.bg-infoxbox-adherent{
|
||||||
//background-color: #f39c12 !important;
|
//background-color: #f39c12 !important;
|
||||||
}
|
}
|
||||||
.bg-infoxbox-expensereport{
|
.bg-infoxbox-expensereport{
|
||||||
background-color: #a55114 !important;
|
background-color: #755114 !important;
|
||||||
}
|
}
|
||||||
.bg-infoxbox-holiday{
|
.bg-infoxbox-holiday{
|
||||||
background-color: #cbd81b !important;
|
background-color: #755114 !important;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
@ -78,9 +78,9 @@ $toolTipFontColor='#333';
|
|||||||
$badgePrimary ='#007bff';
|
$badgePrimary ='#007bff';
|
||||||
$badgeSecondary ='#999999';
|
$badgeSecondary ='#999999';
|
||||||
$badgeSuccess ='#28a745';
|
$badgeSuccess ='#28a745';
|
||||||
$badgeDanger ='#dc3545';
|
$badgeDanger ='#9f4705';
|
||||||
$badgeWarning ='#ffc107';
|
$badgeWarning ='#ffc107';
|
||||||
$badgeInfo ='#17a2b8';
|
$badgeInfo ='#aaaabb';
|
||||||
$badgeDark ='#343a40';
|
$badgeDark ='#343a40';
|
||||||
$badgeLight ='#f8f9fa';
|
$badgeLight ='#f8f9fa';
|
||||||
|
|
||||||
|
|||||||
@ -3449,6 +3449,10 @@ a.impayee:hover { font-weight: bold; color: #550000; }
|
|||||||
* Other
|
* Other
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
.opened-dash-board-wrap {
|
||||||
|
margin-bottom: 25px;
|
||||||
|
}
|
||||||
|
|
||||||
div.boximport {
|
div.boximport {
|
||||||
min-height: unset;
|
min-height: unset;
|
||||||
}
|
}
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user