jqh 5 년 전
부모
커밋
60ef7bfaa2
3개의 변경된 파일3개의 추가작업 그리고 3개의 파일을 삭제
  1. 1 1
      src/Grid/Column/Filter/Between.php
  2. 1 1
      src/Grid/Column/Filter/Checkbox.php
  3. 1 1
      src/Grid/Column/Filter/Input.php

+ 1 - 1
src/Grid/Column/Filter/Between.php

@@ -164,7 +164,7 @@ JS;
         $active = empty(array_filter($value)) ? '' : 'active';
 
         return <<<EOT
-&nbsp;<span class="dropdown" style="position:absolute">
+&nbsp;<span class="dropdown">
 <form action="{$this->formAction()}" pjax-container style="display: inline-block;">
     <a href="javascript:void(0);" class="{$active}" data-toggle="dropdown">
         <i class="feather icon-filter"></i>

+ 1 - 1
src/Grid/Column/Filter/Checkbox.php

@@ -42,7 +42,7 @@ JS;
         $pjaxContainer = Admin::$pjaxContainerId;
 
         return <<<HTML
-&nbsp;<span class="dropdown" style="position:absolute;">
+&nbsp;<span class="dropdown">
 <form action="{$this->formAction()}" {$pjaxContainer} style="display: inline-block;">
     <a href="javascript:void(0);" class="{$active}" data-toggle="dropdown">
         <i class="feather icon-filter"></i>

+ 1 - 1
src/Grid/Column/Filter/Input.php

@@ -51,7 +51,7 @@ JS;
         $active = empty($value) ? '' : 'active';
 
         return <<<HTML
-&nbsp;<span class="dropdown" style="position: absolute">
+&nbsp;<span class="dropdown">
     <form action="{$this->formAction()}" pjax-container style="display: inline-block;">
     <a href="javascript:void(0);" class="feather icon-filter {$active}" data-toggle="dropdown">
     </a>