From 467f9f9ab1b97ae9149dfc556abd4fff52810add Mon Sep 17 00:00:00 2001 From: Argo-Lenovo Date: Sat, 19 Nov 2016 18:54:12 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E6=94=B9BUG=EF=BC=9A=E7=94=B5?= =?UTF-8?q?=E8=84=91=E7=89=88=E7=BC=A9=E5=B0=8F=E5=B1=8F=E5=B9=95=E6=95=88?= =?UTF-8?q?=E6=9E=9C=E4=B8=8D=E7=90=86=E6=83=B3=EF=BC=8C=E8=B0=83=E6=95=B4?= =?UTF-8?q?=E4=B8=BA=E7=94=B5=E8=84=91=E7=89=88=E4=B8=8E=E7=A7=BB=E5=8A=A8?= =?UTF-8?q?=E7=89=88=E4=B8=8D=E5=90=8C=E6=A0=B7=E5=BC=8F?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Bootstrap.Admin/Content/css/admin.css | 7 ++++++ Bootstrap.Admin/Content/css/site.css | 26 ++++++++++++++++++++ Bootstrap.Admin/Content/js/Longbow.Common.js | 2 ++ Bootstrap.Admin/Views/Shared/_Layout.cshtml | 2 +- 4 files changed, 36 insertions(+), 1 deletion(-) diff --git a/Bootstrap.Admin/Content/css/admin.css b/Bootstrap.Admin/Content/css/admin.css index 79ae8c1e..771a4460 100644 --- a/Bootstrap.Admin/Content/css/admin.css +++ b/Bootstrap.Admin/Content/css/admin.css @@ -153,6 +153,13 @@ position: relative; } +.desktop #sidebar { + top: 94px; + bottom: 40px; + position: absolute; + overflow-y: auto; +} + ul.sidebar-menu { padding: 20px 0 15px 0; margin-bottom: 0; diff --git a/Bootstrap.Admin/Content/css/site.css b/Bootstrap.Admin/Content/css/site.css index c9640bb3..932be73d 100644 --- a/Bootstrap.Admin/Content/css/site.css +++ b/Bootstrap.Admin/Content/css/site.css @@ -83,6 +83,32 @@ a, a:hover, a:focus { padding: 10px 4px; height: 40px; } + +.desktop .header { + position: fixed; + top: 0; + left: 0; + right: 0; + z-index: 50; +} + +.desktop .site-footer { + position: fixed; + left: 0; + bottom: 0; + right: 0; + z-index: 50; +} + +.desktop #main-content { + margin-top: 0; + position: fixed; + left: 0; + bottom: 40px; + right: 0; + top: 94px; + overflow: auto; +} /*end title*/ .go-top { diff --git a/Bootstrap.Admin/Content/js/Longbow.Common.js b/Bootstrap.Admin/Content/js/Longbow.Common.js index 9cf7647d..bb568fc4 100644 --- a/Bootstrap.Admin/Content/js/Longbow.Common.js +++ b/Bootstrap.Admin/Content/js/Longbow.Common.js @@ -208,4 +208,6 @@ $(function () { return this.optional(element) || /^(25[0-5]|2[0-4][0-9]|[0-1]{1}[0-9]{2}|[1-9]{1}[0-9]{1}|[1-9])\.(25[0-5]|2[0-4][0-9]|[0-1]{1}[0-9]{2}|[1-9]{1}[0-9]{1}|[1-9]|0)\.(25[0-5]|2[0-4][0-9]|[0-1]{1}[0-9]{2}|[1-9]{1}[0-9]{1}|[1-9]|0)\.(25[0-5]|2[0-4][0-9]|[0-1]{1}[0-9]{2}|[1-9]{1}[0-9]{1}|[0-9])$/.test(value); }, "请填写正确的IP地址"); } + + if ($.browser.versions.mobile) { $('body').removeClass('desktop'); } }); \ No newline at end of file diff --git a/Bootstrap.Admin/Views/Shared/_Layout.cshtml b/Bootstrap.Admin/Views/Shared/_Layout.cshtml index 6ec49f26..1fd0dfbe 100644 --- a/Bootstrap.Admin/Views/Shared/_Layout.cshtml +++ b/Bootstrap.Admin/Views/Shared/_Layout.cshtml @@ -10,7 +10,7 @@ @RenderSection("css", false) - + @RenderBody()