Commit ec1b1588 authored by randx's avatar randx

Improved header font

parent caf5b9e5
...@@ -71,10 +71,10 @@ header { ...@@ -71,10 +71,10 @@ header {
float:left; float:left;
margin:0; margin:0;
margin-right:30px; margin-right:30px;
font-size:20px; font-size:24px;
line-height:36px; line-height:36px;
font-weight:bold; font-weight:500;
color:$style_color; color:#567;
text-shadow: 0 1px 1px #FFF; text-shadow: 0 1px 1px #FFF;
} }
......
...@@ -70,7 +70,7 @@ nav.main_menu { ...@@ -70,7 +70,7 @@ nav.main_menu {
} }
&.current { &.current {
background-color:#D5D5D5; background-color:#D5D5D5;
border-bottom: 2px solid #474D57; border-bottom: 1px solid #567;
border-right: 1px solid #BBB; border-right: 1px solid #BBB;
border-left: 1px solid #BBB; border-left: 1px solid #BBB;
border-radius: 0 0 1px 1px; border-radius: 0 0 1px 1px;
......
...@@ -11,7 +11,7 @@ class Settings < Settingslogic ...@@ -11,7 +11,7 @@ class Settings < Settingslogic
end end
def email_from def email_from
self.email['from'] ||= "notify@" + web_host self.email['from'] ||= ("notify@" + web_host)
end end
def url def url
...@@ -49,18 +49,18 @@ class Settings < Settingslogic ...@@ -49,18 +49,18 @@ class Settings < Settingslogic
end end
def git_upload_pack def git_upload_pack
if git_host['upload_pack'] == false if git_host['upload_pack'] != false
false
else
true true
else
false
end end
end end
def git_receive_pack def git_receive_pack
if git_host['receive_pack'] == false if git_host['receive_pack'] != false
false
else
true true
else
false
end end
end end
......
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