mirror of https://github.com/Radarr/Radarr
moved bootstrap to none responsive.
This commit is contained in:
parent
92f4f20ecc
commit
61688d7aef
|
@ -11,4 +11,5 @@
|
|||
height: 30px;
|
||||
width: 40px;
|
||||
padding-top: 14px;
|
||||
padding-left: 10px;
|
||||
}
|
||||
|
|
|
@ -24,7 +24,7 @@ namespace NzbDrone.Web
|
|||
|
||||
bundles.Add<StylesheetBundle>(BASE_STYLE, new[]{
|
||||
"content2\\Bootstrap\\bootstrap.less",
|
||||
"content2\\Bootstrap\\responsive.less",
|
||||
//"content2\\Bootstrap\\responsive.less",
|
||||
//"content2\\bootstrap-metro.css",
|
||||
"content2\\base.css",
|
||||
"content2\\menu.css",
|
||||
|
|
|
@ -250,8 +250,8 @@
|
|||
|
||||
// Default 940px grid
|
||||
// -------------------------
|
||||
@gridColumns: 12;
|
||||
@gridColumnWidth: 60px;
|
||||
@gridColumns: 20;
|
||||
@gridColumnWidth: 50px;
|
||||
@gridGutterWidth: 20px;
|
||||
@gridRowWidth: (@gridColumns * @gridColumnWidth) + (@gridGutterWidth * (@gridColumns - 1));
|
||||
|
||||
|
|
|
@ -33,11 +33,13 @@ body {
|
|||
|
||||
#main-region {
|
||||
min-height: 600px;
|
||||
}
|
||||
|
||||
.nz-center {
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
#footer {
|
||||
text-align: center;
|
||||
font-size: 16px;
|
||||
text-decoration: none;
|
||||
font-weight: lighter;
|
||||
|
|
|
@ -28,9 +28,8 @@
|
|||
<body>
|
||||
@RenderBody()
|
||||
<div class="container">
|
||||
|
||||
<div id="menu" class="row">
|
||||
<div class="span12">
|
||||
<div class="span20">
|
||||
<ul>
|
||||
@MvcHtmlString.Create(Html.CurrentControllerLink("Series", "Index", "Series"))
|
||||
@MvcHtmlString.Create(Html.CurrentControllerLink("Upcoming", "Index", "Upcoming"))
|
||||
|
@ -46,22 +45,22 @@
|
|||
</div>
|
||||
</div>
|
||||
<div id="logo" class="row">
|
||||
<div class="span10 offset1">
|
||||
<div class="span18 offset2">
|
||||
@ViewBag.Title
|
||||
</div>
|
||||
</div>
|
||||
<div id="content" class="row">
|
||||
<div class="span12">
|
||||
<div class="span20">
|
||||
<div class="row sub-menu">
|
||||
@RenderSection("ActionMenu", required: false)
|
||||
</div>
|
||||
<div class="row">
|
||||
<div id="main-region" class="span12"></div>
|
||||
<div id="main-region" class="span20 nz-center"></div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div id="footer" class="row">
|
||||
<div class="span12">
|
||||
<div id="footer" class="row nz-center">
|
||||
<div class="span20">
|
||||
@{Html.RenderAction("Footer", "Shared");}
|
||||
</div>
|
||||
</div>
|
||||
|
|
Loading…
Reference in New Issue