felixhahnweilheim / humhub-dark-mode

Dark Mode for HumHub
https://marketplace.humhub.com/module/dark-mode/description
GNU Affero General Public License v3.0
7 stars 4 forks source link

support vcard module #45

Closed felixhahnweilheim closed 10 months ago

felixhahnweilheim commented 10 months ago

see https://community.humhub.com/comment/perma?id=47472

Gilbertdelyon commented 10 months ago

+1 Same issue on our side temporary workarround: Add the following at the end of you theme.css file

.vcardBody{
color:#000;
}
felixhahnweilheim commented 10 months ago

I've added a PR to the Popover VCard module. Let's see if it gets merged. It would be the simplest and best solution.

Gilbertdelyon commented 10 months ago

Another workarround (but not a good practice!) in protected/modules/popover-vcard/ressources/humhub.vcard.popover.css you can replace

.vcardBody {
    padding: 6px;
    border-top: 1px solid #c5c5c5;
}

with

.vcardBody {
    padding: 6px;
    border-top: 1px solid #c5c5c5;
    color:#000;
}
felixhahnweilheim commented 10 months ago

It will be solved in the next release of the VCard Popover module.