mirror of
https://github.com/Dolibarr/dolibarr.git
synced 2025-12-14 21:41:23 +01:00
236 lines
6.9 KiB
PHP
236 lines
6.9 KiB
PHP
<?php
|
|
if (! defined('ISLOADEDBYSTEELSHEET')) die('Must be call by steelsheet'); ?>
|
|
/* <style type="text/css" > */
|
|
/*
|
|
Badge style is based on boostrap framework
|
|
*/
|
|
|
|
.badge {
|
|
display: inline-block;
|
|
padding: .1em .35em;
|
|
font-size: 80%;
|
|
font-weight: 700 !important;
|
|
line-height: 1;
|
|
text-align: center;
|
|
white-space: nowrap;
|
|
vertical-align: baseline;
|
|
border-radius: .25rem;
|
|
transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;
|
|
border-width: 2px;
|
|
border-style: solid;
|
|
border-color: rgba(255,255,255,0);
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
.badge-status {
|
|
font-size: 1em;
|
|
padding: .19em .35em; /* more than 0.19 generate a change into heigth of lines */
|
|
}
|
|
|
|
.badge-pill, .tabs .badge {
|
|
padding-right: .5em;
|
|
padding-left: .5em;
|
|
border-radius: 0.25rem;
|
|
}
|
|
|
|
.badge-dot {
|
|
padding: 0;
|
|
border-radius: 50%;
|
|
padding: 0.35em;
|
|
vertical-align: unset;
|
|
}
|
|
|
|
a.badge:focus, a.badge:hover {
|
|
text-decoration: none;
|
|
}
|
|
|
|
.liste_titre .badge:not(.nochangebackground) {
|
|
background-color: <?php print $badgeSecondary; ?>;
|
|
color: #fff;
|
|
}
|
|
|
|
|
|
/* PRIMARY */
|
|
.badge-primary{
|
|
color: #fff !important;
|
|
background-color: <?php print $badgePrimary; ?>;
|
|
}
|
|
a.badge-primary.focus, a.badge-primary:focus {
|
|
outline: 0;
|
|
box-shadow: 0 0 0 0.2rem <?php print colorHexToRgb($badgePrimary, 0.5); ?>;
|
|
}
|
|
a.badge-primary:focus, a.badge-primary:hover {
|
|
color: #fff !important;
|
|
background-color: <?php print colorDarker($badgePrimary, 10); ?>;
|
|
}
|
|
|
|
/* SECONDARY */
|
|
.badge-secondary, .tabs .badge {
|
|
color: #fff !important;
|
|
background-color: <?php print $badgeSecondary; ?>;
|
|
}
|
|
a.badge-secondary.focus, a.badge-secondary:focus {
|
|
outline: 0;
|
|
box-shadow: 0 0 0 0.2rem <?php print colorHexToRgb($badgeSecondary, 0.5); ?>;
|
|
}
|
|
a.badge-secondary:focus, a.badge-secondary:hover {
|
|
color: #fff !important;
|
|
background-color: <?php print colorDarker($badgeSecondary, 10); ?>;
|
|
}
|
|
|
|
/* SUCCESS */
|
|
.badge-success {
|
|
color: #fff !important;
|
|
background-color: <?php print $badgeSuccess; ?>;
|
|
}
|
|
a.badge-success.focus, a.badge-success:focus {
|
|
outline: 0;
|
|
box-shadow: 0 0 0 0.2rem <?php print colorHexToRgb($badgeSuccess, 0.5); ?>;
|
|
}
|
|
a.badge-success:focus, a.badge-success:hover {
|
|
color: #fff !important;
|
|
background-color: <?php print colorDarker($badgeSuccess, 10); ?>;
|
|
}
|
|
|
|
/* DANGER */
|
|
.badge-danger {
|
|
color: #fff !important;
|
|
background-color: <?php print $badgeDanger; ?>;
|
|
}
|
|
a.badge-danger.focus, a.badge-danger:focus {
|
|
outline: 0;
|
|
box-shadow: 0 0 0 0.2rem <?php print colorHexToRgb($badgeDanger, 0.5); ?>;
|
|
}
|
|
a.badge-danger:focus, a.badge-danger:hover {
|
|
color: #fff !important;
|
|
background-color: <?php print colorDarker($badgeDanger, 10); ?>;
|
|
}
|
|
|
|
/* WARNING */
|
|
.badge-warning {
|
|
color: #212529 !important;
|
|
background-color: <?php print $badgeWarning; ?>;
|
|
}
|
|
a.badge-warning.focus, a.badge-warning:focus {
|
|
outline: 0;
|
|
box-shadow: 0 0 0 0.2rem <?php print colorHexToRgb($badgeWarning, 0.5); ?>;
|
|
}
|
|
a.badge-warning:focus, a.badge-warning:hover {
|
|
color: #212529 !important;
|
|
background-color: <?php print colorDarker($badgeWarning, 10); ?>;
|
|
}
|
|
|
|
/* INFO */
|
|
.badge-info {
|
|
color: #fff !important;
|
|
background-color: <?php print $badgeInfo; ?>;
|
|
}
|
|
a.badge-info.focus, a.badge-info:focus {
|
|
outline: 0;
|
|
box-shadow: 0 0 0 0.2rem <?php print colorHexToRgb($badgeInfo, 0.5); ?>;
|
|
}
|
|
a.badge-info:focus, a.badge-info:hover {
|
|
color: #fff !important;
|
|
background-color: <?php print colorDarker($badgeInfo, 10); ?>;
|
|
}
|
|
|
|
/* LIGHT */
|
|
.badge-light {
|
|
color: #212529 !important;
|
|
background-color: <?php print $badgeLight; ?>;
|
|
}
|
|
a.badge-light.focus, a.badge-light:focus {
|
|
outline: 0;
|
|
box-shadow: 0 0 0 0.2rem <?php print colorHexToRgb($badgeLight, 0.5); ?>;
|
|
}
|
|
a.badge-light:focus, a.badge-light:hover {
|
|
color: #212529 !important;
|
|
background-color: <?php print colorDarker($badgeLight, 10); ?>;
|
|
}
|
|
|
|
/* DARK */
|
|
.badge-dark {
|
|
color: #fff !important;
|
|
background-color: <?php print $badgeDark; ?>;
|
|
}
|
|
a.badge-dark.focus, a.badge-dark:focus {
|
|
outline: 0;
|
|
box-shadow: 0 0 0 0.2rem <?php print colorHexToRgb($badgeDark, 0.5); ?>;
|
|
}
|
|
a.badge-dark:focus, a.badge-dark:hover {
|
|
color: #fff !important;
|
|
background-color: <?php print colorDarker($badgeDark, 10); ?>;
|
|
}
|
|
|
|
|
|
/*
|
|
* STATUS BADGES
|
|
*/
|
|
<?php for ($i = 0; $i <= 9; $i++){
|
|
/* Default Status */
|
|
_createStatusBadgeCss($i, '', "STATUS".$i);
|
|
|
|
// create status for accessibility
|
|
_createStatusBadgeCss($i, 'colorblind_deuteranopes_', "COLORBLIND STATUS".$i, 'body[class*="colorblind-"] ');
|
|
}
|
|
|
|
/**
|
|
* Create status badge
|
|
*
|
|
* @param string $statusName name of status
|
|
* @param string $statusVarNamePrefix a prefix for var ${$statusVarNamePrefix.'badgeStatus'.$statusName}
|
|
* @param string $commentLabel a comment label
|
|
* @param string $cssPrefix a css prefix
|
|
* @return void
|
|
*/
|
|
function _createStatusBadgeCss($statusName, $statusVarNamePrefix = '', $commentLabel = '', $cssPrefix = '')
|
|
{
|
|
|
|
global ${$statusVarNamePrefix.'badgeStatus'.$statusName}, ${$statusVarNamePrefix.'badgeStatus_textColor'.$statusName};
|
|
|
|
if(!empty(${$statusVarNamePrefix.'badgeStatus'.$statusName})) {
|
|
print "\n/* " . strtoupper($commentLabel) . " */\n";
|
|
$thisBadgeBackgroundColor = $thisBadgeBorderColor = ${$statusVarNamePrefix . 'badgeStatus' . $statusName};
|
|
|
|
|
|
$TBadgeBorderOnly = array(0, 3, 5, 7);
|
|
$thisBadgeTextColor = colorIsLight(${$statusVarNamePrefix . 'badgeStatus' . $statusName}) ? '#212529' : '#ffffff';
|
|
|
|
if (!empty(${$statusVarNamePrefix . 'badgeStatus_textColor' . $statusName})) {
|
|
$thisBadgeTextColor = ${$statusVarNamePrefix . 'badgeStatus_textColor' . $statusName};
|
|
}
|
|
|
|
if (in_array($statusName, $TBadgeBorderOnly)) {
|
|
$thisBadgeTextColor = '#212529';
|
|
$thisBadgeBackgroundColor = "#fff";
|
|
}
|
|
|
|
if (in_array($statusName, array(0, 5, 9))) $thisBadgeTextColor = '#999999';
|
|
if (in_array($statusName, array(6))) $thisBadgeTextColor = '#777777';
|
|
|
|
print $cssPrefix . ".badge-status" . $statusName . " {\n";
|
|
print " color: " . $thisBadgeTextColor . " !important;\n";
|
|
|
|
if (in_array($statusName, $TBadgeBorderOnly)) {
|
|
print " border-color: " . $thisBadgeBorderColor . ";\n";
|
|
}
|
|
|
|
print " background-color: " . $thisBadgeBackgroundColor . ";\n";
|
|
print "}\n";
|
|
|
|
print $cssPrefix . ".badge-status" . $statusName . ".focus, " . $cssPrefix . ".badge-status" . $statusName . ":focus {\n";
|
|
print " outline: 0;\n";
|
|
print " box-shadow: 0 0 0 0.2rem " . colorHexToRgb($thisBadgeBackgroundColor, 0.5) . ";\n";
|
|
print "}\n";
|
|
|
|
print $cssPrefix . ".badge-status" . $statusName . ":focus, " . $cssPrefix . ".badge-status" . $statusName . ":hover {\n";
|
|
print " color: " . $thisBadgeTextColor . " !important;\n";
|
|
print " background-color: " . colorDarker($thisBadgeBackgroundColor, 10) . ";\n";
|
|
if (in_array($statusName, $TBadgeBorderOnly)) {
|
|
print " border-color: " . colorDarker($thisBadgeBorderColor, 10) . ";\n";
|
|
}
|
|
print "}\n";
|
|
}
|
|
}
|
|
|