Project

General

Profile

Patch #819 » redmine_add_body_id_and_css_fixes.patch

Ale Muñoz, 2008-03-09 20:29

View differences:

/Users/ale/Documents/Code/redmine/app/views/layouts/base.rhtml (working copy)
17 17

  
18 18
<!-- page specific tags --><%= yield :header_tags %>
19 19
</head>
20
<body>
20
<body id="<%= @controller.controller_name %>" class="<%= @controller.action_name %>">
21 21
<div id="wrapper">
22 22
<div id="top-menu">
23
    <div id="account">
23
    <div id="account_menu">
24 24
        <%= render_menu :account_menu -%>
25 25
    </div>
26 26
    <%= content_tag('div', "#{l(:label_logged_as)} #{User.current.login}", :id => 'loggedas') if User.current.logged? %>
/Users/ale/Documents/Code/redmine/app/views/settings/plugin.rhtml (working copy)
1 1
<h2><%= l(:label_settings) %>: <%=h @plugin.name %></h2>
2 2

  
3
<div id="settings">
3
<div id="plugin_settings">
4 4
<% form_tag({:action => 'plugin'}) do %>
5 5
<div class="box tabular">
6 6
<%= render :partial => @partial, :locals => {:settings => @settings}%>
/Users/ale/Documents/Code/redmine/public/stylesheets/application.css (working copy)
21 21
#top-menu a {color: #fff; padding-right: 4px;}
22 22
#top-menu #loggedas { float: right; margin-right: 0.5em; color: #fff; }
23 23

  
24
#account {float:right;}
24
#account_menu {float:right;}
25 25

  
26 26
#header {height:5.3em;margin:0;background-color:#507AAA;color:#f8f8f8; padding: 4px 8px 0px 6px; position:relative;}
27 27
#header a {color:#f8f8f8;}
(2-2/2)