Project

General

Profile

Issue and workaround to get PurpleMind2 theme working with redmine 6.04

Added by Jeremos Angelos 14 days ago

The redmine 6 version has new div tables instead of old html tables.
Icon and cells in PurpleMind2 are so big on the screen.

The PurpleMind versio nI use is
https://github.com/mrliptontea/PurpleMine2/tree/build-on-node-20

My workaround is to add a custom.css thru the redmine_x_client plugin with :
https://www.redmine-x.com/redmine-css-js-overrides

#list-definition {
margin: 0 15px;
width: auto !important;
}

#list-definition > div .field {
width: 160px;
}

#query_form_content > fieldset {
min-width: 0;
max-width: 100%;
}

Cheers