git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/branches/1.0-stable@3961
e93f8b46-1217-0410-a6f0-
8f06a7374b81
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
<!-- page specific tags -->
<%= yield :header_tags -%>
</head>
-<body>
+<body class="<%= body_css_classes %>">
<div id="wrapper">
<div id="wrapper2">
<div id="top-menu">