mirror of
https://github.com/Radarr/Radarr.git
synced 2024-11-04 10:02:40 +01:00
New NzbDrone logo.
This commit is contained in:
parent
fa6888e964
commit
c83a67c9e2
@ -114,6 +114,10 @@ module.exports = function (grunt) {
|
|||||||
src : 'UI/**/*.jpg',
|
src : 'UI/**/*.jpg',
|
||||||
dest: '_output/'
|
dest: '_output/'
|
||||||
},
|
},
|
||||||
|
icon : {
|
||||||
|
src : 'UI/**/*.ico',
|
||||||
|
dest: '_output/'
|
||||||
|
},
|
||||||
fontAwesome : {
|
fontAwesome : {
|
||||||
src : 'UI/**/FontAwesome/*.*',
|
src : 'UI/**/FontAwesome/*.*',
|
||||||
dest: '_output/'
|
dest: '_output/'
|
||||||
@ -160,6 +164,10 @@ module.exports = function (grunt) {
|
|||||||
files: '<%= copy.jpg.src %>',
|
files: '<%= copy.jpg.src %>',
|
||||||
tasks: ['copy:jpg']
|
tasks: ['copy:jpg']
|
||||||
},
|
},
|
||||||
|
copyJpg : {
|
||||||
|
files: '<%= copy.icon.src %>',
|
||||||
|
tasks: ['copy:icon']
|
||||||
|
},
|
||||||
copyFontAwesome : {
|
copyFontAwesome : {
|
||||||
files: '<%= copy.fontAwesome.src %>',
|
files: '<%= copy.fontAwesome.src %>',
|
||||||
tasks: ['copy:fontAwesome']
|
tasks: ['copy:fontAwesome']
|
||||||
|
@ -74,6 +74,14 @@ protected override void ConfigureConventions(NancyConventions nancyConventions)
|
|||||||
Conventions.StaticContentsConventions.Add(processors.ProcessStaticResourceRequest);
|
Conventions.StaticContentsConventions.Add(processors.ProcessStaticResourceRequest);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
protected override byte[] FavIcon
|
||||||
|
{
|
||||||
|
get
|
||||||
|
{
|
||||||
|
return null;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
public void Shutdown()
|
public void Shutdown()
|
||||||
{
|
{
|
||||||
ApplicationContainer.Resolve<IMessageAggregator>().PublishEvent(new ApplicationShutdownRequested());
|
ApplicationContainer.Resolve<IMessageAggregator>().PublishEvent(new ApplicationShutdownRequested());
|
||||||
|
@ -56,8 +56,7 @@
|
|||||||
<IntermediateOutputPath>C:\Users\Mark\AppData\Local\Temp\vs1A55.tmp\x86\Release\</IntermediateOutputPath>
|
<IntermediateOutputPath>C:\Users\Mark\AppData\Local\Temp\vs1A55.tmp\x86\Release\</IntermediateOutputPath>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
<PropertyGroup>
|
<PropertyGroup>
|
||||||
<ApplicationIcon>
|
<ApplicationIcon>..\NzbDrone\NzbDrone.ico</ApplicationIcon>
|
||||||
</ApplicationIcon>
|
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
<PropertyGroup>
|
<PropertyGroup>
|
||||||
<StartupObject>NzbDrone.Console.AppMain</StartupObject>
|
<StartupObject>NzbDrone.Console.AppMain</StartupObject>
|
||||||
|
@ -172,7 +172,6 @@
|
|||||||
<Reference Include="System.Drawing" />
|
<Reference Include="System.Drawing" />
|
||||||
<Reference Include="System.ServiceModel" />
|
<Reference Include="System.ServiceModel" />
|
||||||
<Reference Include="System.Web" />
|
<Reference Include="System.Web" />
|
||||||
<Reference Include="System.Web.Extensions" />
|
|
||||||
<Reference Include="System.XML" />
|
<Reference Include="System.XML" />
|
||||||
<Reference Include="System.Xml.Linq" />
|
<Reference Include="System.Xml.Linq" />
|
||||||
</ItemGroup>
|
</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
BIN
UI/Content/Images/logo.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 1.3 KiB |
@ -15,11 +15,22 @@
|
|||||||
}
|
}
|
||||||
|
|
||||||
#in-sub-nav li a:focus {
|
#in-sub-nav li a:focus {
|
||||||
text-decoration: none;
|
text-decoration : none;
|
||||||
}
|
}
|
||||||
|
|
||||||
#in-sub-nav {
|
#in-sub-nav {
|
||||||
margin-bottom : 80px;
|
margin-bottom : 80px;
|
||||||
|
|
||||||
|
.span12 {
|
||||||
|
margin-left : 0px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.logo {
|
||||||
|
margin-top : 25px;
|
||||||
|
vertical-align : middle;
|
||||||
|
height : 70px;
|
||||||
|
width : 70px;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
.backdrop #in-sub-nav {
|
.backdrop #in-sub-nav {
|
||||||
|
@ -21,6 +21,9 @@
|
|||||||
<div class="container">
|
<div class="container">
|
||||||
<div class="row">
|
<div class="row">
|
||||||
<div class="span12">
|
<div class="span12">
|
||||||
|
<div class="pull-left logo">
|
||||||
|
<img src="/Content/Images/logo.png" alt="">
|
||||||
|
</div>
|
||||||
<ul id="main-menu-region">
|
<ul id="main-menu-region">
|
||||||
<li>
|
<li>
|
||||||
<a href="/">
|
<a href="/">
|
||||||
|
BIN
UI/favicon.ico
BIN
UI/favicon.ico
Binary file not shown.
Before Width: | Height: | Size: 1.4 KiB After Width: | Height: | Size: 5.3 KiB |
Loading…
Reference in New Issue
Block a user