Browse Source

Add table-hover class on index tables

tags/1.3.0 1.2.11
Nafies Luthfi 7 years ago
parent
commit
2dc7d19571
  1. 2
      src/stubs/resources/views/full/index-bs3.stub
  2. 2
      src/stubs/resources/views/full/index-formfield-bs3.stub
  3. 2
      src/stubs/resources/views/full/index-formfield.stub
  4. 2
      src/stubs/resources/views/full/index.stub
  5. 2
      src/stubs/resources/views/simple/index-bs3.stub
  6. 2
      src/stubs/resources/views/simple/index-formfield-bs3.stub
  7. 2
      src/stubs/resources/views/simple/index-formfield.stub
  8. 2
      src/stubs/resources/views/simple/index.stub
  9. 2
      tests/CommandOptions/FullCrudBs3OptionsTest.php
  10. 2
      tests/CommandOptions/FullCrudFormfieldBs3OptionsTest.php
  11. 2
      tests/CommandOptions/FullCrudFormfieldOptionsTest.php
  12. 2
      tests/CommandOptions/SimpleCrudBs3OptionsTest.php
  13. 2
      tests/CommandOptions/SimpleCrudFormfieldBs3OptionsTest.php
  14. 2
      tests/CommandOptions/SimpleCrudFormfieldOptionsTest.php
  15. 2
      tests/Generators/Simple/ViewsGeneratorTest.php
  16. 2
      tests/Generators/ViewsGeneratorTest.php

2
src/stubs/resources/views/full/index-bs3.stub

@ -25,7 +25,7 @@
<a href="{{ route('masters.index') }}">{{ __('app.reset') }}</a>
</form>
</div>
<table class="table table-condensed">
<table class="table table-condensed table-hover">
<thead>
<tr>
<th class="text-center">{{ __('app.table_no') }}</th>

2
src/stubs/resources/views/full/index-formfield-bs3.stub

@ -22,7 +22,7 @@
{{ link_to_route('masters.index', __('app.reset')) }}
{{ Form::close() }}
</div>
<table class="table table-condensed">
<table class="table table-condensed table-hover">
<thead>
<tr>
<th class="text-center">{{ __('app.table_no') }}</th>

2
src/stubs/resources/views/full/index-formfield.stub

@ -22,7 +22,7 @@
{{ link_to_route('masters.index', __('app.reset'), [], ['class' => 'btn btn-link']) }}
{{ Form::close() }}
</div>
<table class="table table-sm table-responsive-sm">
<table class="table table-sm table-responsive-sm table-hover">
<thead>
<tr>
<th class="text-center">{{ __('app.table_no') }}</th>

2
src/stubs/resources/views/full/index.stub

@ -25,7 +25,7 @@
<a href="{{ route('masters.index') }}" class="btn btn-link">{{ __('app.reset') }}</a>
</form>
</div>
<table class="table table-sm table-responsive-sm">
<table class="table table-sm table-responsive-sm table-hover">
<thead>
<tr>
<th class="text-center">{{ __('app.table_no') }}</th>

2
src/stubs/resources/views/simple/index-bs3.stub

@ -25,7 +25,7 @@
<a href="{{ route('masters.index') }}">{{ __('app.reset') }}</a>
</form>
</div>
<table class="table table-condensed">
<table class="table table-condensed table-hover">
<thead>
<tr>
<th class="text-center">{{ __('app.table_no') }}</th>

2
src/stubs/resources/views/simple/index-formfield-bs3.stub

@ -22,7 +22,7 @@
{{ link_to_route('masters.index', __('app.reset')) }}
{{ Form::close() }}
</div>
<table class="table table-condensed">
<table class="table table-condensed table-hover">
<thead>
<tr>
<th class="text-center">{{ __('app.table_no') }}</th>

2
src/stubs/resources/views/simple/index-formfield.stub

@ -22,7 +22,7 @@
{{ link_to_route('masters.index', __('app.reset'), [], ['class' => 'btn btn-link']) }}
{{ Form::close() }}
</div>
<table class="table table-sm table-responsive-sm">
<table class="table table-sm table-responsive-sm table-hover">
<thead>
<tr>
<th class="text-center">{{ __('app.table_no') }}</th>

2
src/stubs/resources/views/simple/index.stub

@ -25,7 +25,7 @@
<a href="{{ route('masters.index') }}" class="btn btn-link">{{ __('app.reset') }}</a>
</form>
</div>
<table class="table table-sm table-responsive-sm">
<table class="table table-sm table-responsive-sm table-hover">
<thead>
<tr>
<th class="text-center">{{ __('app.table_no') }}</th>

2
tests/CommandOptions/FullCrudBs3OptionsTest.php

@ -69,7 +69,7 @@ class FullCrudBs3OptionsTest extends TestCase
<a href=\"{{ route('{$this->table_name}.index') }}\">{{ __('app.reset') }}</a>
</form>
</div>
<table class=\"table table-condensed\">
<table class=\"table table-condensed table-hover\">
<thead>
<tr>
<th class=\"text-center\">{{ __('app.table_no') }}</th>

2
tests/CommandOptions/FullCrudFormfieldBs3OptionsTest.php

@ -66,7 +66,7 @@ class FullCrudFormfieldBs3OptionsTest extends TestCase
{{ link_to_route('{$this->table_name}.index', __('app.reset')) }}
{{ Form::close() }}
</div>
<table class=\"table table-condensed\">
<table class=\"table table-condensed table-hover\">
<thead>
<tr>
<th class=\"text-center\">{{ __('app.table_no') }}</th>

2
tests/CommandOptions/FullCrudFormfieldOptionsTest.php

@ -66,7 +66,7 @@ class FullCrudFormfieldOptionsTest extends TestCase
{{ link_to_route('{$this->table_name}.index', __('app.reset'), [], ['class' => 'btn btn-link']) }}
{{ Form::close() }}
</div>
<table class=\"table table-sm table-responsive-sm\">
<table class=\"table table-sm table-responsive-sm table-hover\">
<thead>
<tr>
<th class=\"text-center\">{{ __('app.table_no') }}</th>

2
tests/CommandOptions/SimpleCrudBs3OptionsTest.php

@ -67,7 +67,7 @@ class SimpleCrudBs3OptionsTest extends TestCase
<a href=\"{{ route('{$this->table_name}.index') }}\">{{ __('app.reset') }}</a>
</form>
</div>
<table class=\"table table-condensed\">
<table class=\"table table-condensed table-hover\">
<thead>
<tr>
<th class=\"text-center\">{{ __('app.table_no') }}</th>

2
tests/CommandOptions/SimpleCrudFormfieldBs3OptionsTest.php

@ -64,7 +64,7 @@ class SimpleCrudFormfieldBs3OptionsTest extends TestCase
{{ link_to_route('{$this->table_name}.index', __('app.reset')) }}
{{ Form::close() }}
</div>
<table class=\"table table-condensed\">
<table class=\"table table-condensed table-hover\">
<thead>
<tr>
<th class=\"text-center\">{{ __('app.table_no') }}</th>

2
tests/CommandOptions/SimpleCrudFormfieldOptionsTest.php

@ -64,7 +64,7 @@ class SimpleCrudFormfieldOptionsTest extends TestCase
{{ link_to_route('{$this->table_name}.index', __('app.reset'), [], ['class' => 'btn btn-link']) }}
{{ Form::close() }}
</div>
<table class=\"table table-sm table-responsive-sm\">
<table class=\"table table-sm table-responsive-sm table-hover\">
<thead>
<tr>
<th class=\"text-center\">{{ __('app.table_no') }}</th>

2
tests/Generators/Simple/ViewsGeneratorTest.php

@ -41,7 +41,7 @@ class ViewsGeneratorTest extends TestCase
<a href=\"{{ route('{$this->table_name}.index') }}\" class=\"btn btn-link\">{{ __('app.reset') }}</a>
</form>
</div>
<table class=\"table table-sm table-responsive-sm\">
<table class=\"table table-sm table-responsive-sm table-hover\">
<thead>
<tr>
<th class=\"text-center\">{{ __('app.table_no') }}</th>

2
tests/Generators/ViewsGeneratorTest.php

@ -41,7 +41,7 @@ class ViewsGeneratorTest extends TestCase
<a href=\"{{ route('{$this->table_name}.index') }}\" class=\"btn btn-link\">{{ __('app.reset') }}</a>
</form>
</div>
<table class=\"table table-sm table-responsive-sm\">
<table class=\"table table-sm table-responsive-sm table-hover\">
<thead>
<tr>
<th class=\"text-center\">{{ __('app.table_no') }}</th>

Loading…
Cancel
Save