Skip to content

Commit 292bb47

Browse files
author
hikki
committed
v4.4
1 parent cb069df commit 292bb47

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

resources/assets/component.css

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -329,7 +329,7 @@
329329
.dlp-table .dlp-tbody>.dlp-tr{background:#1e1e1e}
330330
.dlp-table .dlp-tbody>.dlp-tr:nth-child(even){background:#2a2a2a}
331331
.dlp-table .dlp-tbody>.dlp-tr:hover{background:rgb(255 255 255 / 1%)}
332-
.dlp-table .dlp-tfoot>.dlp-tr{height: 40px;border-top: 1px solid #060606;}
332+
.dlp-table .dlp-tfoot>.dlp-tr{max-height: 40px;min-height: 5px;border-top: 1px solid #060606;}
333333
.dlp-table .operate-column{width:45px;text-align: center;line-height: 9px;}
334334
.dlp-table .operate-column>div{display: flex;width: 100%;height: 100%;align-items:center;justify-content: space-around}
335335

resources/assets/component.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -991,8 +991,8 @@ window.ComponentLine = class {
991991
makeFoot(foot) {
992992
let tfoot = document.createElement('tfoot');
993993
tfoot.className = 'dlp-tfoot';
994+
tfoot.insertAdjacentHTML('afterbegin', `<tr class="dlp-tr"></tr>`);
994995
if (!this.OPTIONS.insert) {
995-
tfoot.insertAdjacentHTML('afterbegin', `<tr></tr>`);
996996
this.TABLE_DOM.appendChild(tfoot);
997997
return;
998998
}

src/DLPServiceProvider.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,8 +29,8 @@ public function boot(DLP $extension)
2929
}
3030

3131
Admin::booting(function () {
32-
Admin::css('vendor/dlp/component.min.css?v4.3');
33-
Admin::headerJs('vendor/dlp/component.min.js?v4.3');
32+
Admin::css('vendor/dlp/component.min.css?v4.4');
33+
Admin::headerJs('vendor/dlp/component.min.js?v4.4');
3434
Form::extend('Dot', Dot::class);
3535
Form::extend('CascadeDot', CascadeDot::class);
3636
Form::extend('Linear', Linear::class);

0 commit comments

Comments
 (0)