Actions
Defect #6663
closedBug in CSS of theme "Modula Martini"
Status:
Closed
Priority:
Normal
Assignee:
-
Category:
UI
Target version:
-
Start date:
2010-10-13
Due date:
% Done:
0%
Estimated time:
Resolution:
Invalid
Affected version:
Description
When chosing a subproject the parent project is not shown in the title. It appears as "invisible" (it takes space but it is not visible).
I've inspected the CSS and the problem is that Redmine "application.css" contains:
#header a {color:#f8f8f8;}
This is not overriden in Modula Martini CSS so it matches the background color. The solution is adding the following to Modula Martini's "application.css":
#header a {color: #515151;}
The HTML code causing this is:
<h1><a href="PROJECT_URL" class="root">PARENT_PROJECT_NAME</a> » SUBPROJECT_NAME</h1>
Actions