修复菜单顺序以及父级菜单在不足768高度显示器上无法显示的问题
This commit is contained in:
parent
96fcc6f904
commit
cd0b914aa0
|
@ -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" />
|
||||
|
|
|
@ -0,0 +1,9 @@
|
|||
@media (max-height: 768px) {
|
||||
.menu-content {
|
||||
position: absolute;
|
||||
margin-top: inherit;
|
||||
left: 50%;
|
||||
margin-left: -300px;
|
||||
top: 50px;
|
||||
}
|
||||
}
|
|
@ -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 {
|
||||
|
|
Loading…
Reference in New Issue