Commit a544a1e5 authored by Eric Davis's avatar Eric Davis

Added css classes to the HTML body based on the theme, controller, and action. #819

git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@3911 e93f8b46-1217-0410-a6f0-8f06a7374b81
parent 07cd1297
...@@ -393,6 +393,19 @@ module ApplicationHelper ...@@ -393,6 +393,19 @@ module ApplicationHelper
end end
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) def accesskey(s)
Redmine::AccessKeys.key_for s Redmine::AccessKeys.key_for s
end end
......
...@@ -19,7 +19,7 @@ ...@@ -19,7 +19,7 @@
<!-- page specific tags --> <!-- page specific tags -->
<%= yield :header_tags -%> <%= yield :header_tags -%>
</head> </head>
<body> <body class="<%= body_css_classes %>">
<div id="wrapper"> <div id="wrapper">
<div id="wrapper2"> <div id="wrapper2">
<div id="top-menu"> <div id="top-menu">
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment