diff --git a/Bootstrap.Admin/Bootstrap.Admin.csproj b/Bootstrap.Admin/Bootstrap.Admin.csproj index 147f9dc4..a777a468 100644 --- a/Bootstrap.Admin/Bootstrap.Admin.csproj +++ b/Bootstrap.Admin/Bootstrap.Admin.csproj @@ -107,6 +107,7 @@ + diff --git a/Bootstrap.Admin/Content/css/IE8.css b/Bootstrap.Admin/Content/css/IE8.css new file mode 100644 index 00000000..fcce5ea3 --- /dev/null +++ b/Bootstrap.Admin/Content/css/IE8.css @@ -0,0 +1,11 @@ +.alert { + position: absolute; + top: 15px; + left: 15px; + right: 15px; + z-index: 10; +} + + .alert div { + display: inline-block; + } diff --git a/Bootstrap.Admin/Content/js/Longbow.Common.js b/Bootstrap.Admin/Content/js/Longbow.Common.js index e20051f4..76b4197d 100644 --- a/Bootstrap.Admin/Content/js/Longbow.Common.js +++ b/Bootstrap.Admin/Content/js/Longbow.Common.js @@ -306,7 +306,7 @@ showToggle: true, //是否显示详细视图和列表视图的切换按钮 cardView: false, //是否显示详细视图 detailView: false, //是否显示父子表 - clickToSelect: false, + clickToSelect: false }, options); $(this).bootstrapTable(settings); $('div.toolbar').insertBefore($('div.bootstrap-table > div.fixed-table-toolbar > div.bs-bars')); diff --git a/Bootstrap.Admin/Views/Shared/_Layout.cshtml b/Bootstrap.Admin/Views/Shared/_Layout.cshtml index 08de2ff8..3848dc88 100644 --- a/Bootstrap.Admin/Views/Shared/_Layout.cshtml +++ b/Bootstrap.Admin/Views/Shared/_Layout.cshtml @@ -9,9 +9,18 @@ + @RenderSection("css", false) + @RenderBody()