summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--app/helpers/application_helper.rb13
-rw-r--r--app/views/layouts/base.rhtml2
2 files changed, 14 insertions, 1 deletions
diff --git a/app/helpers/application_helper.rb b/app/helpers/application_helper.rb
index e40758969..d6fd16a6e 100644
--- a/app/helpers/application_helper.rb
+++ b/app/helpers/application_helper.rb
@@ -393,6 +393,19 @@ module ApplicationHelper
end
end
+ # Returns the theme, controller name, and action as css classes for the
+ # HTML body.
+ def body_css_classes
+ css = []
+ if theme = Redmine::Themes.theme(Setting.ui_theme)
+ css << 'theme-' + theme.name
+ end
+
+ css << 'controller-' + params[:controller]
+ css << 'action-' + params[:action]
+ css.join(' ')
+ end
+
def accesskey(s)
Redmine::AccessKeys.key_for s
end
diff --git a/app/views/layouts/base.rhtml b/app/views/layouts/base.rhtml
index 9521457d6..2daae7cb9 100644
--- a/app/views/layouts/base.rhtml
+++ b/app/views/layouts/base.rhtml
@@ -19,7 +19,7 @@
<!-- page specific tags -->
<%= yield :header_tags -%>
</head>
-<body>
+<body class="<%= body_css_classes %>">
<div id="wrapper">
<div id="wrapper2">
<div id="top-menu">