I want to change the background color according to the status
Added by 4sungnu 4sungnu over 5 years ago
I want to change the background color according to the status
Replies (2)
RE: I want to change the background color according to the status
-
Added by Bernhard Rohloff over 5 years ago
There are many different elements on the user interface so I think it could be beneficial if you could tell us which elements background you would like to change.
The whole page or just the status field, or the issues background. I don't have a clue right now.
Kind regards,
Bernhard
RE: I want to change the background color according to the status
-
Added by Marcel B over 5 years ago
Bernhard Rohloff wrote:
There are many different elements on the user interface so I think it could be beneficial if you could tell us which elements background you would like to change.
The whole page or just the status field, or the issues background. I don't have a clue right now.Kind regards,
Bernhard
Maybe what you want is to edit or create a Theme? Take a look at https://www.redmine.org/projects/redmine/wiki/Themes
An example of a CSS you can add to the application.css of your theme:
/* Redmine draft status */
.status-1 td{
color: #454546;
background-color: #ddd
}
/* custom 11 status */
.status-11 /*+ .even*/ {
color: #F18F20;
}
/* 14 status */
.status-14 {
color: #21376C;
}
/* 13 status */
.status-13 {
background-color: #FDF499;
}