Fix v17 darkmode invisible total in list's element

This commit is contained in:
daraelmin 2022-12-27 09:27:27 +01:00 committed by GitHub
parent 3bc86c4841
commit 68583dd7ba
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

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