jqh 4 years ago
parent
commit
cb34374f36

+ 4 - 1
resources/assets/dcat/sass/components/_dropdown.scss

@@ -1,10 +1,13 @@
+.dropdown-menu {
+  z-index: 20;
+}
+
 .dropdown {
   .dropdown-menu {
     box-shadow: $shadow-100;
     border: 0;
     min-width: 10rem;
     transform: none;
-    z-index: 20;
 
     .dropdown-item:hover {
       background-color: $dark30;

File diff suppressed because it is too large
+ 0 - 0
resources/dist/dcat/css/dcat-app-blue-light.css


File diff suppressed because it is too large
+ 0 - 0
resources/dist/dcat/css/dcat-app-blue.css


File diff suppressed because it is too large
+ 0 - 0
resources/dist/dcat/css/dcat-app-green.css


File diff suppressed because it is too large
+ 0 - 0
resources/dist/dcat/css/dcat-app.css


+ 1 - 1
src/Admin.php

@@ -28,7 +28,7 @@ class Admin
     use HasAssets;
     use HasHtml;
 
-    const VERSION = '2.0.11-beta';
+    const VERSION = '2.0.12-beta';
 
     const SECTION = [
         // 往 <head> 标签内输入内容

+ 2 - 0
tests/Controllers/PainterController.php

@@ -6,6 +6,7 @@ use Dcat\Admin\Form;
 use Dcat\Admin\Grid;
 use Dcat\Admin\Http\Controllers\AdminController;
 use Dcat\Admin\Show;
+use Faker\Factory;
 use Tests\Models\Painter;
 use Tests\Models\Painting;
 
@@ -26,6 +27,7 @@ class PainterController extends AdminController
             $grid->updated_at->sortable();
 
             $grid->filter(function (Grid\Filter $filter) {
+                $filter->between('created_at')->datetime();
                 $filter->equal('id');
             });
         });

Some files were not shown because too many files changed in this diff