jqh 5 年之前
父節點
當前提交
8f85fee177

+ 1 - 1
resources/views/grid/table.blade.php

@@ -67,7 +67,7 @@
             @if ($grid->rows()->isEmpty())
                 <tr>
                     <td colspan="{!! count($grid->getColumnNames()) !!}">
-                        <div style="margin:5px 0 0 10px;"><span class="help-block" style="margin-bottom:0"><i class="fa fa-info-circle"></i>&nbsp;{{ trans('admin.no_data') }}</span></div>
+                        <div style="margin:5px 0 0 10px;"><span class="help-block" style="margin-bottom:0"><i class="feather icon-alert-circle"></i>&nbsp;{{ trans('admin.no_data') }}</span></div>
                     </td>
                 </tr>
             @endif

+ 1 - 1
resources/views/grid/table2.blade.php

@@ -67,7 +67,7 @@
             @if ($grid->rows()->isEmpty())
                 <tr>
                     <td colspan="{!! count($grid->getColumnNames()) !!}">
-                        <div style="margin:5px 0 0 10px;"><span class="help-block" style="margin-bottom:0"><i class="fa fa-info-circle"></i>&nbsp;{{ trans('admin.no_data') }}</span></div>
+                        <div style="margin:5px 0 0 10px;"><span class="help-block" style="margin-bottom:0"><i class="feather icon-alert-circle"></i>&nbsp;{{ trans('admin.no_data') }}</span></div>
                     </td>
                 </tr>
             @endif

+ 1 - 1
resources/views/tree.blade.php

@@ -43,7 +43,7 @@
                     @include($branchView)
                 @endforeach
             @else
-                <span class="help-block" style="margin-bottom:0"><i class="fa fa-info-circle"></i>&nbsp;{{ trans('admin.no_data') }}</span>
+                <span class="help-block" style="margin-bottom:0"><i class="feather icon-alert-circle"></i>&nbsp;{{ trans('admin.no_data') }}</span>
             @endif
         </ol>
     </div>

+ 1 - 1
src/Form/Field.php

@@ -587,7 +587,7 @@ class Field implements Renderable
      *
      * @return $this
      */
-    public function help($text = '', $icon = 'fa-info-circle')
+    public function help($text = '', $icon = 'feather icon-help-circle')
     {
         $this->help = compact('text', 'icon');
 

+ 1 - 1
src/Grid/Column/Help.php

@@ -55,7 +55,7 @@ class Help implements Renderable
         }
 
         return <<<HELP
-&nbsp;<a href="javascript:void(0);" class="{$class} feather icon-alert-circle" data-title="{$this->message}"></a>
+&nbsp;<a href="javascript:void(0);" class="{$class} feather icon-help-circle" data-title="{$this->message}"></a>
 HELP;
     }
 }