重写侧边栏逻辑,小屏幕全屏显示菜单
This commit is contained in:
parent
9374d7fc94
commit
592bc6f721
|
@ -100,6 +100,7 @@
|
||||||
</Reference>
|
</Reference>
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
|
<Content Include="Content\css\admin-responsive.css" />
|
||||||
<Content Include="Content\css\admin.css" />
|
<Content Include="Content\css\admin.css" />
|
||||||
<Content Include="Content\css\blue.css" />
|
<Content Include="Content\css\blue.css" />
|
||||||
<Content Include="Content\css\bootstrap-select.css" />
|
<Content Include="Content\css\bootstrap-select.css" />
|
||||||
|
|
|
@ -0,0 +1,71 @@
|
||||||
|
@media (min-width: 990px) {
|
||||||
|
.modal-dialog {
|
||||||
|
width: 800px;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
@media (max-width: 768px) {
|
||||||
|
#sidebar {
|
||||||
|
display: none;
|
||||||
|
overflow-y: auto;
|
||||||
|
position: absolute;
|
||||||
|
width: auto;
|
||||||
|
padding-right: 20px;
|
||||||
|
z-index: 2;
|
||||||
|
}
|
||||||
|
|
||||||
|
#main-content {
|
||||||
|
margin-left: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
.bs-bars {
|
||||||
|
display: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
.toolbar {
|
||||||
|
display: inline-block;
|
||||||
|
}
|
||||||
|
|
||||||
|
.modal-dialog {
|
||||||
|
width: 540px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.fb-timeliner {
|
||||||
|
display: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
.icon-body {
|
||||||
|
margin-right: 0 !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
.modal-body div.checkbox {
|
||||||
|
min-width: 190px;
|
||||||
|
overflow: hidden;
|
||||||
|
white-space: nowrap;
|
||||||
|
text-overflow: ellipsis;
|
||||||
|
}
|
||||||
|
|
||||||
|
.modal-body .checkbox label input[type='checkbox'] {
|
||||||
|
top: 4px;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
@media (max-width: 548px) {
|
||||||
|
.modal-dialog {
|
||||||
|
width: 460px;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
@media (max-width: 480px) {
|
||||||
|
.modal-dialog {
|
||||||
|
width: 300px;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
@media (min-height: 700px) {
|
||||||
|
#sidebar {
|
||||||
|
padding-top: 94px;
|
||||||
|
height: 100%;
|
||||||
|
padding-bottom: 54px;
|
||||||
|
}
|
||||||
|
}
|
|
@ -1,9 +1,4 @@
|
||||||
#main-content {
|
.has-error input {
|
||||||
margin-left: 210px;
|
|
||||||
height: auto;
|
|
||||||
}
|
|
||||||
|
|
||||||
.has-error input {
|
|
||||||
background-repeat: no-repeat;
|
background-repeat: no-repeat;
|
||||||
background-image: url('../images/error.png');
|
background-image: url('../images/error.png');
|
||||||
background-position: right 8px center;
|
background-position: right 8px center;
|
||||||
|
@ -23,16 +18,18 @@
|
||||||
border-color: #3c763d;
|
border-color: #3c763d;
|
||||||
}
|
}
|
||||||
|
|
||||||
.sidebar-closed > #sidebar > ul {
|
|
||||||
display: none;
|
#main-content {
|
||||||
|
margin-left: 210px;
|
||||||
|
height: auto;
|
||||||
}
|
}
|
||||||
|
|
||||||
.sidebar-closed #main-content {
|
.sidebar-closed #main-content {
|
||||||
margin-left: 0px;
|
margin-left: 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
.sidebar-closed #sidebar {
|
.sidebar-closed #sidebar {
|
||||||
margin-left: -210px;
|
display: none !important;
|
||||||
}
|
}
|
||||||
|
|
||||||
#sidebar {
|
#sidebar {
|
||||||
|
|
|
@ -1,56 +1,7 @@
|
||||||
@media (min-width: 990px) {
|
@media (max-width: 930px) {
|
||||||
.modal-dialog {
|
/*#main-content {
|
||||||
width: 800px;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
@media (max-width: 990px) {
|
|
||||||
}
|
|
||||||
|
|
||||||
@media (min-width: 768px) {
|
|
||||||
}
|
|
||||||
|
|
||||||
@media (max-width: 768px) {
|
|
||||||
.modal-dialog {
|
|
||||||
width: 540px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.sidebar-close #sidebar {
|
|
||||||
height: auto;
|
|
||||||
overflow: hidden;
|
|
||||||
overflow-y: auto;
|
|
||||||
position: absolute;
|
|
||||||
z-index: 1;
|
|
||||||
display: block;
|
|
||||||
padding-bottom: inherit;
|
|
||||||
}
|
|
||||||
|
|
||||||
#sidebar {
|
|
||||||
display: none;
|
|
||||||
}
|
|
||||||
|
|
||||||
#main-content {
|
|
||||||
margin: 0px !important;
|
margin: 0px !important;
|
||||||
}
|
}*/
|
||||||
|
|
||||||
.fb-timeliner {
|
|
||||||
display: none;
|
|
||||||
}
|
|
||||||
|
|
||||||
.icon-body {
|
|
||||||
margin-right: 0 !important;
|
|
||||||
}
|
|
||||||
|
|
||||||
.modal-body div.checkbox {
|
|
||||||
min-width: 190px;
|
|
||||||
overflow: hidden;
|
|
||||||
white-space: nowrap;
|
|
||||||
text-overflow: ellipsis;
|
|
||||||
}
|
|
||||||
|
|
||||||
.modal-body .checkbox label input[type='checkbox'] {
|
|
||||||
top: 4px;
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
@media (max-width: 666px) {
|
@media (max-width: 666px) {
|
||||||
|
@ -63,18 +14,6 @@
|
||||||
.top-menu .search {
|
.top-menu .search {
|
||||||
display: none;
|
display: none;
|
||||||
}
|
}
|
||||||
|
|
||||||
.modal-dialog {
|
|
||||||
width: 460px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.bs-bars {
|
|
||||||
display: none;
|
|
||||||
}
|
|
||||||
|
|
||||||
.toolbar {
|
|
||||||
display: inline-block;
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
@media (max-width: 480px) {
|
@media (max-width: 480px) {
|
||||||
|
@ -82,10 +21,6 @@
|
||||||
display: none;
|
display: none;
|
||||||
}
|
}
|
||||||
|
|
||||||
.modal-dialog {
|
|
||||||
width: 300px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.top-menu > li {
|
.top-menu > li {
|
||||||
float: right;
|
float: right;
|
||||||
}
|
}
|
||||||
|
@ -99,18 +34,12 @@
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@media (min-height: 600px) {
|
@media (min-height: 700px) {
|
||||||
html, body {
|
html, body {
|
||||||
height: 100%;
|
height: 100%;
|
||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
}
|
}
|
||||||
|
|
||||||
#sidebar {
|
|
||||||
padding-top: 94px;
|
|
||||||
height: 100%;
|
|
||||||
padding-bottom: 54px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.header {
|
.header {
|
||||||
position: fixed;
|
position: fixed;
|
||||||
top: 0;
|
top: 0;
|
||||||
|
|
|
@ -11,27 +11,9 @@ $(function () {
|
||||||
// cookie: 'dcjq-accordion-1',
|
// cookie: 'dcjq-accordion-1',
|
||||||
classExpand: 'dcjq-current-parent'
|
classExpand: 'dcjq-current-parent'
|
||||||
});
|
});
|
||||||
//$.slidebars();
|
|
||||||
|
|
||||||
// sidebar toggle
|
|
||||||
function responsiveView() {
|
|
||||||
var wSize = $(window).width();
|
|
||||||
if (wSize <= 768) {
|
|
||||||
$('#container').addClass('sidebar-close');
|
|
||||||
$('#sidebar > ul').hide();
|
|
||||||
}
|
|
||||||
|
|
||||||
if (wSize > 768) {
|
|
||||||
$('#container').removeClass('sidebar-close');
|
|
||||||
$('#sidebar > ul').show();
|
|
||||||
}
|
|
||||||
}
|
|
||||||
$(window).on('load', responsiveView);
|
|
||||||
$(window).on('resize', responsiveView);
|
|
||||||
});
|
});
|
||||||
|
|
||||||
(function ($) {
|
(function ($) {
|
||||||
|
|
||||||
// sidebar dropdown menu auto scrolling
|
// sidebar dropdown menu auto scrolling
|
||||||
$('#sidebar .sub-menu > a').click(function () {
|
$('#sidebar .sub-menu > a').click(function () {
|
||||||
var o = ($(this).offset());
|
var o = ($(this).offset());
|
||||||
|
@ -43,25 +25,11 @@ $(function () {
|
||||||
});
|
});
|
||||||
|
|
||||||
$('.sidebar-toggle-box').click(function () {
|
$('.sidebar-toggle-box').click(function () {
|
||||||
|
if ($('#sidebar').is(":visible") === true) {
|
||||||
if ($('#sidebar > ul').is(":visible") === true) {
|
$(".sidebar").addClass("sidebar-closed");
|
||||||
$('#main-content').css({
|
|
||||||
'margin-left': '0px'
|
|
||||||
});
|
|
||||||
$('#sidebar').css({
|
|
||||||
'margin-left': '-210px'
|
|
||||||
});
|
|
||||||
$('#sidebar > ul').hide();
|
|
||||||
$("#container").addClass("sidebar-closed");
|
|
||||||
} else {
|
} else {
|
||||||
$('#main-content').css({
|
$(".sidebar").removeClass("sidebar-closed");
|
||||||
'margin-left': '210px'
|
$("#sidebar").show();
|
||||||
});
|
|
||||||
$('#sidebar > ul').show();
|
|
||||||
$('#sidebar').css({
|
|
||||||
'margin-left': '0'
|
|
||||||
});
|
|
||||||
$("#container").removeClass("sidebar-closed");
|
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
|
|
|
@ -1,13 +1,13 @@
|
||||||
@model NavigatorBarModel
|
@model NavigatorBarModel
|
||||||
<aside>
|
<aside>
|
||||||
<div id="sidebar" class="nav-collapse ">
|
<div id="sidebar" class="nav-collapse">
|
||||||
<!-- sidebar menu start-->
|
<!-- sidebar menu start-->
|
||||||
<ul class="sidebar-menu" id="nav-accordion">
|
<ul class="sidebar-menu" id="nav-accordion">
|
||||||
@foreach (var menu in Model.Navigations)
|
@foreach (var menu in Model.Navigations)
|
||||||
{
|
{
|
||||||
<li class="sub-menu">
|
<li class="sub-menu">
|
||||||
<a href="@Url.Content(menu.Url)" class="@menu.Active"><i class="@menu.Icon"></i><span>@menu.Name</span></a>
|
<a href="@Url.Content(menu.Url)" class="@menu.Active"><i class="@menu.Icon"></i><span>@menu.Name</span></a>
|
||||||
@if(menu.Menus.Count() > 0)
|
@if (menu.Menus.Count() > 0)
|
||||||
{
|
{
|
||||||
@Html.Partial("SubNavigation", menu.Menus)
|
@Html.Partial("SubNavigation", menu.Menus)
|
||||||
}
|
}
|
||||||
|
|
|
@ -7,6 +7,7 @@
|
||||||
<link href="~/Content/css/site.css" rel="stylesheet" />
|
<link href="~/Content/css/site.css" rel="stylesheet" />
|
||||||
<link href="~/Content/css/admin.css" rel="stylesheet" />
|
<link href="~/Content/css/admin.css" rel="stylesheet" />
|
||||||
<link href="~/Content/css/site-responsive.css" rel="stylesheet" />
|
<link href="~/Content/css/site-responsive.css" rel="stylesheet" />
|
||||||
|
<link href="~/Content/css/admin-responsive.css" rel="stylesheet" />
|
||||||
@RenderSection("css", false)
|
@RenderSection("css", false)
|
||||||
}
|
}
|
||||||
@section javascript {
|
@section javascript {
|
||||||
|
@ -18,7 +19,7 @@
|
||||||
<script src="~/Content/js/framework.js"></script>
|
<script src="~/Content/js/framework.js"></script>
|
||||||
@RenderSection("Javascript", false)
|
@RenderSection("Javascript", false)
|
||||||
}
|
}
|
||||||
<section>
|
<section class="sidebar">
|
||||||
@RenderSection("header", false)
|
@RenderSection("header", false)
|
||||||
@RenderSection("navigator", false)
|
@RenderSection("navigator", false)
|
||||||
<section id="main-content">
|
<section id="main-content">
|
||||||
|
|
Loading…
Reference in New Issue