diff --git a/app/helpers/block_helper.rb b/app/helpers/block_helper.rb
index e5c9b04..8fbe47f 100644
--- a/app/helpers/block_helper.rb
+++ b/app/helpers/block_helper.rb
@@ -3,7 +3,7 @@ module BlockHelper
def block_title(title)
tag_class = 'block-title'
tag_class += ' empty' if title.empty?
- content_tag 'h3', title, :class => tag_class
+ content_tag 'h3', content_tag('span', title), :class => tag_class
end
end
diff --git a/app/views/account/login_block.rhtml b/app/views/account/login_block.rhtml
index 3441655..845e470 100644
--- a/app/views/account/login_block.rhtml
+++ b/app/views/account/login_block.rhtml
@@ -1,7 +1,7 @@
<% unless logged_in? %>
-
<%= _('Login') %>
+
<%= _('Login') %>
diff --git a/public/designs/themes/base/style.css b/public/designs/themes/base/style.css
index cd862c5..83da3c3 100644
--- a/public/designs/themes/base/style.css
+++ b/public/designs/themes/base/style.css
@@ -40,6 +40,9 @@ input.button.with-text {
body {
background: #EEE;
font-family: Liberation Sans, Arial, sans-serif;
+}
+
+#wrap-1, #theme-footer {
width: 960px;
margin: auto;
}
@@ -639,10 +642,6 @@ div#notice {
/********************* Environment Statistics ************************/
-#content .environment-statistics-block .block-title {
- color: #AAA;
- border-bottom: 2px solid #AAA;
-}
#content .environment-statistics-block ul {
margin: 0px 20px;
padding: 0px;
--
libgit2 0.21.2