[#692] Fix issue history styles

This commit is contained in:
Eric Davis 2011-12-09 17:55:47 -08:00
parent f76c922dd8
commit f9a2e30b9f
5 changed files with 6 additions and 7 deletions

View File

@ -58,7 +58,7 @@ module JournalsHelper
end end
end end
content_tag("div", "#{header}#{details}", :id => "change-#{journal.id}", :class => "journal") return "#{header}#{details}"
end end
def render_notes(model, journal, options={}) def render_notes(model, journal, options={})

View File

@ -108,7 +108,7 @@
<% if @journals.present? %> <% if @journals.present? %>
<div id="history"> <div id="history">
<h3><%=l(:label_history)%></h3> <h3 class="rounded-background"><%=l(:label_history)%></h3>
<%= render :partial => 'history', :locals => { :issue => @issue, :journals => @journals } %> <%= render :partial => 'history', :locals => { :issue => @issue, :journals => @journals } %>
</div> </div>
<% end %> <% end %>

Binary file not shown.

Before

Width:  |  Height:  |  Size: 286 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 228 B

View File

@ -1806,14 +1806,9 @@ table.files {
font-size:12px; font-size:12px;
font-weight:normal; font-weight:normal;
margin-bottom:-1px; margin-bottom:-1px;
padding-bottom:12px;
background:url(../images/speech-white.png) no-repeat 30px bottom;
position:relative; position:relative;
z-index:5; z-index:5;
} }
.journal.question h4 {
background-image:url(../images/speech-blue.png);
}
.journal h4 .history-id { .journal h4 .history-id {
float:right; float:right;
color:#999; color:#999;
@ -2472,6 +2467,10 @@ a.has-thumb img {
#more-menu.drop-down ul li a.projects { border-top:1px solid #555; } #more-menu.drop-down ul li a.projects { border-top:1px solid #555; }
/* Adds a simple rounded corner background */
.rounded-background { background: #E6E5E5; -moz-border-radius:5px; -webkit-border-radius:5px; border-radius:5px; }
/************************************************************************* /*************************************************************************
Additional wiki styles Additional wiki styles
*************************************************************************/ *************************************************************************/