New NzbDrone logo.

This commit is contained in:
kay.one 2013-07-06 15:46:11 -07:00
parent fa6888e964
commit c83a67c9e2
10 changed files with 32 additions and 4 deletions

View File

@ -114,6 +114,10 @@ module.exports = function (grunt) {
src : 'UI/**/*.jpg',
dest: '_output/'
},
icon : {
src : 'UI/**/*.ico',
dest: '_output/'
},
fontAwesome : {
src : 'UI/**/FontAwesome/*.*',
dest: '_output/'
@ -160,6 +164,10 @@ module.exports = function (grunt) {
files: '<%= copy.jpg.src %>',
tasks: ['copy:jpg']
},
copyJpg : {
files: '<%= copy.icon.src %>',
tasks: ['copy:icon']
},
copyFontAwesome : {
files: '<%= copy.fontAwesome.src %>',
tasks: ['copy:fontAwesome']

View File

@ -74,6 +74,14 @@ namespace NzbDrone.Api
Conventions.StaticContentsConventions.Add(processors.ProcessStaticResourceRequest);
}
protected override byte[] FavIcon
{
get
{
return null;
}
}
public void Shutdown()
{
ApplicationContainer.Resolve<IMessageAggregator>().PublishEvent(new ApplicationShutdownRequested());

View File

@ -56,8 +56,7 @@
<IntermediateOutputPath>C:\Users\Mark\AppData\Local\Temp\vs1A55.tmp\x86\Release\</IntermediateOutputPath>
</PropertyGroup>
<PropertyGroup>
<ApplicationIcon>
</ApplicationIcon>
<ApplicationIcon>..\NzbDrone\NzbDrone.ico</ApplicationIcon>
</PropertyGroup>
<PropertyGroup>
<StartupObject>NzbDrone.Console.AppMain</StartupObject>

View File

@ -172,7 +172,6 @@
<Reference Include="System.Drawing" />
<Reference Include="System.ServiceModel" />
<Reference Include="System.Web" />
<Reference Include="System.Web.Extensions" />
<Reference Include="System.XML" />
<Reference Include="System.Xml.Linq" />
</ItemGroup>

Binary file not shown.

Before

Width:  |  Height:  |  Size: 76 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 76 KiB

After

Width:  |  Height:  |  Size: 17 KiB

BIN
UI/Content/Images/logo.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.3 KiB

View File

@ -15,11 +15,22 @@
}
#in-sub-nav li a:focus {
text-decoration: none;
text-decoration : none;
}
#in-sub-nav {
margin-bottom : 80px;
.span12 {
margin-left : 0px;
}
.logo {
margin-top : 25px;
vertical-align : middle;
height : 70px;
width : 70px;
}
}
.backdrop #in-sub-nav {

View File

@ -21,6 +21,9 @@
<div class="container">
<div class="row">
<div class="span12">
<div class="pull-left logo">
<img src="/Content/Images/logo.png" alt="">
</div>
<ul id="main-menu-region">
<li>
<a href="/">

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.4 KiB

After

Width:  |  Height:  |  Size: 5.3 KiB