Project

General

Profile

Actions

Feature #15633

closed

Allow CSS overriding for (3rd party) module's stylesheets

Added by Anonymous over 10 years ago. Updated 17 days ago.

Status:
Closed
Priority:
Normal
Assignee:
-
Category:
Themes
Target version:
-
Start date:
Due date:
% Done:

0%

Estimated time:
Resolution:
Wont fix

Description

I use some plugins and now I want to customize one plugin's output via my own redmine theme (application.css)

Overriding the plugin's classes with a theme specific application.css is not possible because the css of the plugin is included after the theme stylesheet is included.

If the theme stylesheet loads after all plugin stylesheets were loaded overriding would be possible in an easy way.

So I request a change of base.html.erb that the stylesheet of the theme is linked after all plugin stylesheets.

Actions #1

Updated by Arthur Andersen about 10 years ago

Most of the time plugins are build on top of the base theme overriding values from the base theme.
I suggest writing a custom plugin, which overrides all those stylesheets. As far as I remember the
plugins are loaded alphabetically, so you would have to choose the name of the plugin accordingly.

Actions #2

Updated by Holger Just 17 days ago

  • Status changed from New to Closed
  • Resolution set to Wont fix

CSS has builtin specificity rules which results in more specific rules to be applied in top of less specific rules. Often, you can just leverage those CSS rules for your desired effect. If that is not possible in specific cases, you can also use the !important flag on your custom rules to set them with maximum specificity.

Alternatively, you can also contact the plugin authors to adjust their styles for better themability.

As such, I don't think it is necessary to change this behavior. If this assessment is wrong, please provide more details about your specific use-case and explain how this can;t be solved with the existing customization options.

Actions

Also available in: Atom PDF