ChiliProject is not maintained anymore. Please be advised that there will be no more updates.
We do not recommend that you setup new ChiliProject instances and we urge all existing users to migrate their data to a maintained system, e.g. Redmine. We will provide a migration script later. In the meantime, you can use the instructions by Christian Daehn.
chiliproject theme: github CSS for inline <code> tag (Feature #852)
Description
Could you add CSS style used on github site to highlight background of code tag, which now looks only as cursive text when used inline: this is tagged as inline code without pre
.wiki code {
background-color: #F8F8F8;
border: 1px solid #EAEAEA;
border-radius: 3px 3px 3px 3px;
margin: 0 2px;
padding: 0 5px;
white-space: nowrap;
}
Associated revisions
Strip repository urls (closes #852).
git-svn-id: http://redmine.rubyforge.org/svn/trunk@1248 e93f8b46-1217-0410-a6f0-8f06a7374b81
History
Updated by Martin Minka at 2012-02-02 06:50 pm
this is also needed:
.wiki pre code {
border: 0px solid #EAEAEA;
white-space: pre-wrap;
}