-
-
-
-
+
+
+
-
diff --git a/Bootstrap.Admin/wwwroot/css/admin.css b/Bootstrap.Admin/wwwroot/css/admin.css
index 5ee8afda..ee2f07d0 100644
--- a/Bootstrap.Admin/wwwroot/css/admin.css
+++ b/Bootstrap.Admin/wwwroot/css/admin.css
@@ -1,12 +1,8 @@
-.lgbDropdown {
- display: inline-block;
+.lgbDropdown .dropdown-menu > li > a:hover {
+ background: #007AC0;
+ color: #fff;
}
- .lgbDropdown .dropdown-menu > li > a:hover {
- background: #007AC0;
- color: #fff;
- }
-
.logTs, .logSql, .logDbExcep {
color: red;
font-weight: 600;
diff --git a/Bootstrap.Admin/wwwroot/css/site.css b/Bootstrap.Admin/wwwroot/css/site.css
index 0a80bd43..096914ea 100644
--- a/Bootstrap.Admin/wwwroot/css/site.css
+++ b/Bootstrap.Admin/wwwroot/css/site.css
@@ -498,3 +498,7 @@ label.dropdown-item:first-child {
.fixed-table-toolbar .bs-bars, .fixed-table-toolbar .search, .fixed-table-toolbar .columns {
line-height: normal;
}
+
+.form-inline .form-row, .form-inline .row {
+ width: 100%;
+}
diff --git a/Bootstrap.Admin/wwwroot/js/Longbow.Common.js b/Bootstrap.Admin/wwwroot/js/Longbow.Common.js
index e7ba7749..6560fd24 100644
--- a/Bootstrap.Admin/wwwroot/js/Longbow.Common.js
+++ b/Bootstrap.Admin/wwwroot/js/Longbow.Common.js
@@ -410,7 +410,7 @@
}, options);
settings.url = $.formatUrl(settings.url);
this.bootstrapTable(settings);
- $(settings.toolbar).removeClass('hidden').find('.toolbar').on('click', 'a', function (e) {
+ $(settings.toolbar).removeClass('d-none').find('.toolbar').on('click', 'a', function (e) {
e.preventDefault();
$('#' + $(this).attr('id').replace('tb_', 'btn_')).trigger("click");
}).insertBefore(this.parents('.bootstrap-table').find('.fixed-table-toolbar > .bs-bars'));
@@ -431,7 +431,7 @@
$(this).on('click', '.dropdown-menu a', { $parent: $(this) }, function (event) {
event.preventDefault();
var $op = $(this);
- event.data.$parent.children('button').attr('data-val', $op.attr('data-val')).children(':first').text($op.text());
+ event.data.$parent.children('button').attr('data-val', $op.attr('data-val')).text($op.text());
});
});
}