mirror of https://github.com/Sonarr/Sonarr
more add series styling
This commit is contained in:
parent
783ad3502c
commit
92f4f20ecc
|
@ -0,0 +1,14 @@
|
||||||
|
.search {
|
||||||
|
margin-top: 20px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.search input {
|
||||||
|
height: 40px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.search .add-on {
|
||||||
|
font-size: 30px;
|
||||||
|
height: 30px;
|
||||||
|
width: 40px;
|
||||||
|
padding-top: 14px;
|
||||||
|
}
|
|
@ -48,7 +48,7 @@ namespace NzbDrone.Web
|
||||||
bundle => bundle.AddReference("/" + BASE_SCRIPT));
|
bundle => bundle.AddReference("/" + BASE_SCRIPT));
|
||||||
|
|
||||||
|
|
||||||
|
bundles.AddPerSubDirectory<StylesheetBundle>("AddSeries", bundle => bundle.AddReference("/" + BASE_STYLE));
|
||||||
|
|
||||||
|
|
||||||
bundles.Add<StylesheetBundle>(FILEBROWSER_STYLE, new[]{
|
bundles.Add<StylesheetBundle>(FILEBROWSER_STYLE, new[]{
|
||||||
|
|
|
@ -33,6 +33,7 @@ body {
|
||||||
|
|
||||||
#main-region {
|
#main-region {
|
||||||
min-height: 600px;
|
min-height: 600px;
|
||||||
|
text-align: center;
|
||||||
}
|
}
|
||||||
|
|
||||||
#footer {
|
#footer {
|
||||||
|
|
|
@ -190,6 +190,7 @@
|
||||||
<Compile Include="Helpers\Validation\RequiredIfAnyAttribute.cs" />
|
<Compile Include="Helpers\Validation\RequiredIfAnyAttribute.cs" />
|
||||||
<Compile Include="Helpers\Validation\RequiredIfAttribute.cs" />
|
<Compile Include="Helpers\Validation\RequiredIfAttribute.cs" />
|
||||||
<Content Include="AddSeries\Views\addSeriesView.js" />
|
<Content Include="AddSeries\Views\addSeriesView.js" />
|
||||||
|
<Content Include="AddSeries\Views\addSeries.css" />
|
||||||
<Content Include="app.js" />
|
<Content Include="app.js" />
|
||||||
<Content Include="Content2\base.css" />
|
<Content Include="Content2\base.css" />
|
||||||
<Content Include="Content2\bootstrap-metro.css" />
|
<Content Include="Content2\bootstrap-metro.css" />
|
||||||
|
|
|
@ -1,6 +1,8 @@
|
||||||
@{
|
@using Cassette.Stylesheets
|
||||||
|
@{
|
||||||
ViewBag.Title = "Add Series";
|
ViewBag.Title = "Add Series";
|
||||||
Layout = "~/Views/Shared/_Bootstrap.cshtml";
|
Layout = "~/Views/Shared/_Bootstrap.cshtml";
|
||||||
|
Bundles.Reference<StylesheetBundle>("AddSeries\\Views\\");
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
@ -9,10 +11,17 @@
|
||||||
<ul class="nav nav-tabs" id="myTab">
|
<ul class="nav nav-tabs" id="myTab">
|
||||||
<li class="active"><a href="#add-new">Add New Series</a></li>
|
<li class="active"><a href="#add-new">Add New Series</a></li>
|
||||||
<li><a href="#import-existing">Import Existing Series</a></li>
|
<li><a href="#import-existing">Import Existing Series</a></li>
|
||||||
|
<li><a href="#root-folders">Root Folders</a></li>
|
||||||
</ul>
|
</ul>
|
||||||
<div class="tab-content">
|
<div class="tab-content">
|
||||||
<div class="tab-pane active" id="add-new"> Add new series!</div>
|
<div class="tab-pane active" id="add-new">
|
||||||
<div class="tab-pane" id="import-existing">Import exisintg.</div>
|
<div class="input-prepend search">
|
||||||
|
<i class="add-on icon-search"></i>
|
||||||
|
<input type="text" class="span7" placeholder="Start typing the name of series you want to add ...">
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="tab-pane" id="import-existing">Import existing.</div>
|
||||||
|
<div class="tab-pane" id="root-folders">Manage root folders</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
@*
|
@*
|
||||||
|
|
Loading…
Reference in New Issue