重构_Layout.cshtml移除Fix.css样式文件
This commit is contained in:
parent
46a633e542
commit
3f11ea2778
|
@ -108,7 +108,6 @@
|
||||||
<Content Include="Content\css\api.css" />
|
<Content Include="Content\css\api.css" />
|
||||||
<Content Include="Content\css\bootstrap-datetimepicker.css" />
|
<Content Include="Content\css\bootstrap-datetimepicker.css" />
|
||||||
<Content Include="Content\css\bootstrap-datetimepicker.min.css" />
|
<Content Include="Content\css\bootstrap-datetimepicker.min.css" />
|
||||||
<Content Include="Content\css\fix.css" />
|
|
||||||
<Content Include="Content\css\IE8.css" />
|
<Content Include="Content\css\IE8.css" />
|
||||||
<Content Include="Content\css\nprogress.css" />
|
<Content Include="Content\css\nprogress.css" />
|
||||||
<Content Include="Content\html\api.html" />
|
<Content Include="Content\html\api.html" />
|
||||||
|
|
|
@ -1,11 +0,0 @@
|
||||||
.tooltip-inner {
|
|
||||||
max-width: 768px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.tooltip.has-error .tooltip-inner {
|
|
||||||
background-color: #a94442;
|
|
||||||
}
|
|
||||||
|
|
||||||
.tooltip.has-error .tooltip-arrow {
|
|
||||||
border-top-color: #a94442;
|
|
||||||
}
|
|
|
@ -562,3 +562,15 @@ ul.breadcrumb {
|
||||||
background-image: url('../images/bg.jpg');
|
background-image: url('../images/bg.jpg');
|
||||||
background-size: 100% 100%;
|
background-size: 100% 100%;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.tooltip-inner {
|
||||||
|
max-width: 768px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.tooltip.has-error .tooltip-inner {
|
||||||
|
background-color: #a94442;
|
||||||
|
}
|
||||||
|
|
||||||
|
.tooltip.has-error .tooltip-arrow {
|
||||||
|
border-top-color: #a94442;
|
||||||
|
}
|
||||||
|
|
|
@ -2,10 +2,7 @@
|
||||||
Layout = "~/Views/Shared/_Layout.cshtml";
|
Layout = "~/Views/Shared/_Layout.cshtml";
|
||||||
}
|
}
|
||||||
@section css {
|
@section css {
|
||||||
<link href="~/Content/css/font-awesome.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/admin-responsive.css" rel="stylesheet" />
|
<link href="~/Content/css/admin-responsive.css" rel="stylesheet" />
|
||||||
@RenderSection("css", false)
|
@RenderSection("css", false)
|
||||||
}
|
}
|
||||||
|
|
|
@ -10,7 +10,9 @@
|
||||||
<link href="~/Content/css/bootstrap.css" rel="stylesheet">
|
<link href="~/Content/css/bootstrap.css" rel="stylesheet">
|
||||||
<link href="~/Content/css/bootstrap-theme.css" rel="stylesheet">
|
<link href="~/Content/css/bootstrap-theme.css" rel="stylesheet">
|
||||||
<link href="~/Content/css/nprogress.css" rel="stylesheet" />
|
<link href="~/Content/css/nprogress.css" rel="stylesheet" />
|
||||||
<link href="~/Content/css/fix.css" rel="stylesheet" />
|
<link href="~/Content/css/font-awesome.css" rel="stylesheet" />
|
||||||
|
<link href="~/Content/css/site.css" rel="stylesheet" />
|
||||||
|
<link href="~/Content/css/site-responsive.css" rel="stylesheet" />
|
||||||
<!--[if lte IE 9 ]>
|
<!--[if lte IE 9 ]>
|
||||||
<link href="../Content/css/IE8.css" rel="stylesheet" />
|
<link href="../Content/css/IE8.css" rel="stylesheet" />
|
||||||
<![endif]-->
|
<![endif]-->
|
||||||
|
|
|
@ -2,11 +2,8 @@
|
||||||
Layout = "~/Views/Shared/_Layout.cshtml";
|
Layout = "~/Views/Shared/_Layout.cshtml";
|
||||||
}
|
}
|
||||||
@section css {
|
@section css {
|
||||||
<link href="~/Content/css/font-awesome.css" rel="stylesheet" />
|
|
||||||
<link href="~/Content/css/bootstrap-table.css" rel="stylesheet" />
|
<link href="~/Content/css/bootstrap-table.css" rel="stylesheet" />
|
||||||
<link href="~/Content/css/sweetalert.css" rel="stylesheet" />
|
<link href="~/Content/css/sweetalert.css" rel="stylesheet" />
|
||||||
<link href="~/Content/css/site.css" rel="stylesheet" />
|
|
||||||
<link href="~/Content/css/site-responsive.css" rel="stylesheet" />
|
|
||||||
@RenderSection("css", false)
|
@RenderSection("css", false)
|
||||||
}
|
}
|
||||||
@section javascript {
|
@section javascript {
|
||||||
|
|
Loading…
Reference in New Issue