diff options
author | Alex Legler <alex@a3li.li> | 2011-10-16 22:19:01 +0200 |
---|---|---|
committer | Alex Legler <alex@a3li.li> | 2011-10-16 22:19:01 +0200 |
commit | 8eeef13e864dfcb5d7ac796e1e4a014bdfb20bee (patch) | |
tree | 786d294f4ad1785e09d24d5d5c8ba931198bf39d | |
parent | Remove exception notification tool again for debugging (diff) | |
download | glsamaker-8eeef13e864dfcb5d7ac796e1e4a014bdfb20bee.tar.gz glsamaker-8eeef13e864dfcb5d7ac796e1e4a014bdfb20bee.tar.bz2 glsamaker-8eeef13e864dfcb5d7ac796e1e4a014bdfb20bee.zip |
Fix comment box overlap hopefully for good
-rw-r--r-- | app/views/glsa/_comments.html.erb | 4 | ||||
-rw-r--r-- | app/views/glsa/show.html.erb | 1 |
2 files changed, 2 insertions, 3 deletions
diff --git a/app/views/glsa/_comments.html.erb b/app/views/glsa/_comments.html.erb index 28f757f..5a58af9 100644 --- a/app/views/glsa/_comments.html.erb +++ b/app/views/glsa/_comments.html.erb @@ -1,4 +1,4 @@ - <div class="box" id="comments"> + <div class="box" id="comments" style="margin-bottom: 4em;"> <%= box_title('Comments', :icon => 'icons/comment.png', :toolbar => [ {:title => 'Add comment', :uri => "javascript:addCommentDialog(#{@glsa.id})", :icon => 'icons/plus.png'}, @@ -8,4 +8,4 @@ <ul id="commentslist"> <%= render :partial => "comment", :collection => @glsa.comments %> </ul> - </div>
\ No newline at end of file + </div> diff --git a/app/views/glsa/show.html.erb b/app/views/glsa/show.html.erb index 20e8e49..fad6118 100644 --- a/app/views/glsa/show.html.erb +++ b/app/views/glsa/show.html.erb @@ -148,4 +148,3 @@ </table> <br style="break: both;" /> -<br style="break: both;" />
\ No newline at end of file |