修复菜单顺序以及父级菜单在不足768高度显示器上无法显示的问题

This commit is contained in:
Argo-Lenovo 2016-11-04 11:31:04 +08:00
parent 96fcc6f904
commit cd0b914aa0
3 changed files with 11 additions and 0 deletions

View File

@ -171,6 +171,7 @@
<Content Include="Content\fonts\fontawesome-webfont.eot" />
<Content Include="Content\fonts\fontawesome-webfont.woff2" />
<Content Include="Content\fonts\FontAwesome.otf" />
<Content Include="Content\css\fa.responsive.css" />
<None Include="Scripts\_references.js" />
<Content Include="Content\js\framework.js" />
<Content Include="Views\Shared\Readme.txt" />

View File

@ -0,0 +1,9 @@
@media (max-height: 768px) {
.menu-content {
position: absolute;
margin-top: inherit;
left: 50%;
margin-left: -300px;
top: 50px;
}
}

View File

@ -5,6 +5,7 @@
}
@section css {
<link href="~/Content/css/fa.css" rel="stylesheet" />
<link href="~/Content/css/fa.responsive.css" rel="stylesheet" />
<link href="~/Content/css/jquery.nestable.css" rel="stylesheet" />
}
@section Javascript {