more bootstrap layout changes.
This commit is contained in:
parent
6eb1d5acf2
commit
adb6f849f7
|
@ -51,7 +51,7 @@
|
|||
|
||||
@baseFontSize: 20px;
|
||||
@baseFontFamily: @sansFontFamily;
|
||||
@baseLineHeight: 30px;
|
||||
@baseLineHeight: 20px;
|
||||
@altFontFamily: @serifFontFamily;
|
||||
|
||||
@headingsFontFamily: inherit; // empty to use BS default, @baseFontFamily
|
||||
|
@ -256,7 +256,7 @@
|
|||
@gridRowWidth: (@gridColumns * @gridColumnWidth) + (@gridGutterWidth * (@gridColumns - 1));
|
||||
|
||||
// 1200px min
|
||||
@gridColumnWidth1200: 70px;
|
||||
@gridColumnWidth1200: 90px;
|
||||
@gridGutterWidth1200: 30px;
|
||||
@gridRowWidth1200: (@gridColumns * @gridColumnWidth1200) + (@gridGutterWidth1200 * (@gridColumns - 1));
|
||||
|
||||
|
|
|
@ -6,8 +6,8 @@
|
|||
|
||||
#menu ul
|
||||
{
|
||||
margin: 0;
|
||||
padding: 5px 0px 5px 0px;
|
||||
margin: 10 0 0 -30;
|
||||
padding: 5px 0 5px 0;
|
||||
list-style: none;
|
||||
line-height: normal;
|
||||
}
|
||||
|
|
|
@ -4,6 +4,7 @@
|
|||
background: rgb(75, 75, 75);
|
||||
color: rgb(169, 169, 169);
|
||||
padding: 4px;
|
||||
font-size: 13px;
|
||||
}
|
||||
|
||||
body
|
||||
|
|
|
@ -238,6 +238,9 @@
|
|||
<Content Include="Content2\Bootstrap\layouts.less" />
|
||||
<Content Include="Content2\Bootstrap\mixins.css" />
|
||||
<Content Include="Content2\Bootstrap\mixins.less" />
|
||||
<Content Include="Content2\Bootstrap\mixins.min.css">
|
||||
<DependentUpon>mixins.less</DependentUpon>
|
||||
</Content>
|
||||
<Content Include="Content2\Bootstrap\modals.less" />
|
||||
<Content Include="Content2\Bootstrap\navbar.less" />
|
||||
<Content Include="Content2\Bootstrap\navs.less" />
|
||||
|
|
|
@ -5,4 +5,22 @@
|
|||
|
||||
|
||||
Hello World
|
||||
|
||||
<br>
|
||||
<br>
|
||||
<br>
|
||||
<br>
|
||||
<br>
|
||||
<br>
|
||||
<br>
|
||||
<br>
|
||||
<br>
|
||||
<br>
|
||||
<br>
|
||||
<br>
|
||||
<br>
|
||||
<br>
|
||||
<br>
|
||||
<br>
|
||||
<br>
|
||||
<br>
|
||||
<br>
|
||||
|
|
|
@ -1,10 +1,12 @@
|
|||
@using NzbDrone.Web.Helpers
|
||||
@model NzbDrone.Web.Models.SystemSettingsModel
|
||||
|
||||
|
||||
@{
|
||||
Layout = "_SettingsLayout.cshtml";
|
||||
Layout = "~/Views/Shared/_Bootstrap.cshtml";
|
||||
}
|
||||
|
||||
|
||||
<div class="infoBox">
|
||||
You must manually restart NzbDrone for these changes to take effect. (Automatic restart coming soon!)
|
||||
</div>
|
||||
|
|
|
@ -45,9 +45,11 @@
|
|||
@MvcHtmlString.Create(Html.CurrentControllerLink("Missing", "Index", "Missing"))
|
||||
@MvcHtmlString.Create(Html.CurrentControllerLink("Settings", "Index", "Settings"))
|
||||
@MvcHtmlString.Create(Html.CurrentControllerLink("System", "Index", "System"))
|
||||
<li id="donate" title="Donate to support the development of NzbDrone"><a href="https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=KRTE52U3XJDSQ" target="_blank">Donate</a></li>
|
||||
<li id="donate" title="Donate to support the development of NzbDrone">
|
||||
<a href="https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=KRTE52U3XJDSQ" target="_blank">Donate</a>
|
||||
</li>
|
||||
</ul>
|
||||
<input id="localSeriesLookup" type="text" class="pull-right" />
|
||||
<input id="localSeriesLookup" type="text" class="pull-right" placeholder="Search..." />
|
||||
</div>
|
||||
</div>
|
||||
<div id="logo" class="row">
|
||||
|
|
Loading…
Reference in New Issue