quick-search.blade.php 811 B

1234567891011121314151617181920
  1. <style>::-ms-clear,::-ms-reveal{display: none;}</style>
  2. <form action="{!! $action !!}" class="input-no-border d-md-inline-block" pjax-container style="display:none;margin-right: 16px">
  3. <div class="dataTables_filter">
  4. <label style="width: {{ $width }}rem">
  5. <input
  6. type="search"
  7. class="form-control form-control-sm quick-search-input"
  8. placeholder="{{ $placeholder }}"
  9. name="{{ $key }}"
  10. value="{{ $value }}"
  11. auto="{{ $auto ? '1' : '0' }}"
  12. >
  13. </label>
  14. @if (! \Dcat\Admin\Support\Helper::isQQBrowser())
  15. <span class="quick-search-clear" style="{{$value ? 'color:#333;cursor:pointer;' : ''}}">×</span>
  16. @endif
  17. </div>
  18. </form>