Merge branch '17.0' of git@github.com:Dolibarr/dolibarr.git into 17.0

This commit is contained in:
Laurent Destailleur 2022-12-27 12:57:02 +01:00
commit 64d4342132

View File

@ -54,6 +54,8 @@
--productlinestocktoolow: #884400; --productlinestocktoolow: #884400;
--infoboxmoduleenabledbgcolor : linear-gradient(0.4turn, #fff, #fff, #fff, #e4efe8); --infoboxmoduleenabledbgcolor : linear-gradient(0.4turn, #fff, #fff, #fff, #e4efe8);
--tablevalidbgcolor: rgb(252, 248, 227); --tablevalidbgcolor: rgb(252, 248, 227);
--colorblack: #000;
--colorwhite: #fff;
} }
<?php <?php
@ -107,6 +109,8 @@ if (!empty($conf->global->THEME_DARKMODEENABLED)) {
--amountremaintopaybackcolor:rbg(245,130,46); --amountremaintopaybackcolor:rbg(245,130,46);
--infoboxmoduleenabledbgcolor : linear-gradient(0.4turn, #000, #000, #000, #274231); --infoboxmoduleenabledbgcolor : linear-gradient(0.4turn, #000, #000, #000, #274231);
--tablevalidbgcolor: rgb(80, 64, 33); --tablevalidbgcolor: rgb(80, 64, 33);
--colorblack: #fff;
--colorwhite: #000;
} }
body, button { body, button {
@ -492,13 +496,13 @@ input.pageplusone {
opacity: 0; opacity: 0;
} }
.colorwhite { .colorwhite {
color: #fff; color: var(--colorwhite);
} }
.colorgrey { .colorgrey {
color: #888 !important; color: #888 !important;
} }
.colorblack { .colorblack {
color: #000; color: var(--colorblack);
} }
.fontsizeunset { .fontsizeunset {
font-size: unset !important; font-size: unset !important;