Get rid of black logo

This commit is contained in:
Dmitriy Zaporozhets 2015-02-24 23:17:11 -08:00
parent 6e559be6c6
commit ee343661e1
3 changed files with 10 additions and 7 deletions

Binary file not shown.

Before

Width:  |  Height:  |  Size: 3.8 KiB

View file

@ -10,8 +10,15 @@
background: #F1F1F1;
border-bottom: 1px solid #DDD;
.app_logo {
background-color: #DDD;
.title {
color: #555;
a {
color: #555;
&:hover {
text-decoration: underline;
}
}
}
.nav > li > a {

View file

@ -16,10 +16,6 @@ module AppearancesHelper
end
def brand_header_logo
if theme_type == 'light_theme'
image_tag 'logo-black.png'
else
image_tag 'logo-white.png'
end
image_tag 'logo-white.png'
end
end