From 2dc7d19571bb8922f2b54f14546332519e3d0353 Mon Sep 17 00:00:00 2001 From: Nafies Luthfi Date: Wed, 2 Jan 2019 22:53:23 +0800 Subject: [PATCH] Add table-hover class on index tables --- src/stubs/resources/views/full/index-bs3.stub | 2 +- src/stubs/resources/views/full/index-formfield-bs3.stub | 2 +- src/stubs/resources/views/full/index-formfield.stub | 2 +- src/stubs/resources/views/full/index.stub | 2 +- src/stubs/resources/views/simple/index-bs3.stub | 2 +- src/stubs/resources/views/simple/index-formfield-bs3.stub | 2 +- src/stubs/resources/views/simple/index-formfield.stub | 2 +- src/stubs/resources/views/simple/index.stub | 2 +- tests/CommandOptions/FullCrudBs3OptionsTest.php | 2 +- tests/CommandOptions/FullCrudFormfieldBs3OptionsTest.php | 2 +- tests/CommandOptions/FullCrudFormfieldOptionsTest.php | 2 +- tests/CommandOptions/SimpleCrudBs3OptionsTest.php | 2 +- tests/CommandOptions/SimpleCrudFormfieldBs3OptionsTest.php | 2 +- tests/CommandOptions/SimpleCrudFormfieldOptionsTest.php | 2 +- tests/Generators/Simple/ViewsGeneratorTest.php | 2 +- tests/Generators/ViewsGeneratorTest.php | 2 +- 16 files changed, 16 insertions(+), 16 deletions(-) diff --git a/src/stubs/resources/views/full/index-bs3.stub b/src/stubs/resources/views/full/index-bs3.stub index 1e3b610..d6a512c 100644 --- a/src/stubs/resources/views/full/index-bs3.stub +++ b/src/stubs/resources/views/full/index-bs3.stub @@ -25,7 +25,7 @@ {{ __('app.reset') }} - +
diff --git a/src/stubs/resources/views/full/index-formfield-bs3.stub b/src/stubs/resources/views/full/index-formfield-bs3.stub index c3b6872..095c4ac 100644 --- a/src/stubs/resources/views/full/index-formfield-bs3.stub +++ b/src/stubs/resources/views/full/index-formfield-bs3.stub @@ -22,7 +22,7 @@ {{ link_to_route('masters.index', __('app.reset')) }} {{ Form::close() }} -
{{ __('app.table_no') }}
+
diff --git a/src/stubs/resources/views/full/index-formfield.stub b/src/stubs/resources/views/full/index-formfield.stub index a48fdec..35df527 100644 --- a/src/stubs/resources/views/full/index-formfield.stub +++ b/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() }} -
{{ __('app.table_no') }}
+
diff --git a/src/stubs/resources/views/full/index.stub b/src/stubs/resources/views/full/index.stub index 0baaba4..961ff64 100644 --- a/src/stubs/resources/views/full/index.stub +++ b/src/stubs/resources/views/full/index.stub @@ -25,7 +25,7 @@ {{ __('app.reset') }} -
{{ __('app.table_no') }}
+
diff --git a/src/stubs/resources/views/simple/index-bs3.stub b/src/stubs/resources/views/simple/index-bs3.stub index 64f14fd..add09ed 100644 --- a/src/stubs/resources/views/simple/index-bs3.stub +++ b/src/stubs/resources/views/simple/index-bs3.stub @@ -25,7 +25,7 @@ {{ __('app.reset') }} -
{{ __('app.table_no') }}
+
diff --git a/src/stubs/resources/views/simple/index-formfield-bs3.stub b/src/stubs/resources/views/simple/index-formfield-bs3.stub index 79d78ff..1890e3e 100644 --- a/src/stubs/resources/views/simple/index-formfield-bs3.stub +++ b/src/stubs/resources/views/simple/index-formfield-bs3.stub @@ -22,7 +22,7 @@ {{ link_to_route('masters.index', __('app.reset')) }} {{ Form::close() }} -
{{ __('app.table_no') }}
+
diff --git a/src/stubs/resources/views/simple/index-formfield.stub b/src/stubs/resources/views/simple/index-formfield.stub index 2cd5c5e..aa6b356 100644 --- a/src/stubs/resources/views/simple/index-formfield.stub +++ b/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() }} -
{{ __('app.table_no') }}
+
diff --git a/src/stubs/resources/views/simple/index.stub b/src/stubs/resources/views/simple/index.stub index e94565b..6b84a0c 100644 --- a/src/stubs/resources/views/simple/index.stub +++ b/src/stubs/resources/views/simple/index.stub @@ -25,7 +25,7 @@ {{ __('app.reset') }} -
{{ __('app.table_no') }}
+
diff --git a/tests/CommandOptions/FullCrudBs3OptionsTest.php b/tests/CommandOptions/FullCrudBs3OptionsTest.php index ced2695..823f3eb 100644 --- a/tests/CommandOptions/FullCrudBs3OptionsTest.php +++ b/tests/CommandOptions/FullCrudBs3OptionsTest.php @@ -69,7 +69,7 @@ class FullCrudBs3OptionsTest extends TestCase table_name}.index') }}\">{{ __('app.reset') }} -
{{ __('app.table_no') }}
+
diff --git a/tests/CommandOptions/FullCrudFormfieldBs3OptionsTest.php b/tests/CommandOptions/FullCrudFormfieldBs3OptionsTest.php index be87d39..758b7b8 100644 --- a/tests/CommandOptions/FullCrudFormfieldBs3OptionsTest.php +++ b/tests/CommandOptions/FullCrudFormfieldBs3OptionsTest.php @@ -66,7 +66,7 @@ class FullCrudFormfieldBs3OptionsTest extends TestCase {{ link_to_route('{$this->table_name}.index', __('app.reset')) }} {{ Form::close() }} -
{{ __('app.table_no') }}
+
diff --git a/tests/CommandOptions/FullCrudFormfieldOptionsTest.php b/tests/CommandOptions/FullCrudFormfieldOptionsTest.php index a2c6bc8..262f7d2 100644 --- a/tests/CommandOptions/FullCrudFormfieldOptionsTest.php +++ b/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() }} -
{{ __('app.table_no') }}
+
diff --git a/tests/CommandOptions/SimpleCrudBs3OptionsTest.php b/tests/CommandOptions/SimpleCrudBs3OptionsTest.php index 712fc2e..f3f7aa3 100644 --- a/tests/CommandOptions/SimpleCrudBs3OptionsTest.php +++ b/tests/CommandOptions/SimpleCrudBs3OptionsTest.php @@ -67,7 +67,7 @@ class SimpleCrudBs3OptionsTest extends TestCase table_name}.index') }}\">{{ __('app.reset') }} -
{{ __('app.table_no') }}
+
diff --git a/tests/CommandOptions/SimpleCrudFormfieldBs3OptionsTest.php b/tests/CommandOptions/SimpleCrudFormfieldBs3OptionsTest.php index 1b4f93d..2ead7b4 100644 --- a/tests/CommandOptions/SimpleCrudFormfieldBs3OptionsTest.php +++ b/tests/CommandOptions/SimpleCrudFormfieldBs3OptionsTest.php @@ -64,7 +64,7 @@ class SimpleCrudFormfieldBs3OptionsTest extends TestCase {{ link_to_route('{$this->table_name}.index', __('app.reset')) }} {{ Form::close() }} -
{{ __('app.table_no') }}
+
diff --git a/tests/CommandOptions/SimpleCrudFormfieldOptionsTest.php b/tests/CommandOptions/SimpleCrudFormfieldOptionsTest.php index 97c6643..48b9386 100644 --- a/tests/CommandOptions/SimpleCrudFormfieldOptionsTest.php +++ b/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() }} -
{{ __('app.table_no') }}
+
diff --git a/tests/Generators/Simple/ViewsGeneratorTest.php b/tests/Generators/Simple/ViewsGeneratorTest.php index 20c4b42..0d36c1b 100644 --- a/tests/Generators/Simple/ViewsGeneratorTest.php +++ b/tests/Generators/Simple/ViewsGeneratorTest.php @@ -41,7 +41,7 @@ class ViewsGeneratorTest extends TestCase table_name}.index') }}\" class=\"btn btn-link\">{{ __('app.reset') }} -
{{ __('app.table_no') }}
+
diff --git a/tests/Generators/ViewsGeneratorTest.php b/tests/Generators/ViewsGeneratorTest.php index 6fa1d32..d30fd36 100644 --- a/tests/Generators/ViewsGeneratorTest.php +++ b/tests/Generators/ViewsGeneratorTest.php @@ -41,7 +41,7 @@ class ViewsGeneratorTest extends TestCase table_name}.index') }}\" class=\"btn btn-link\">{{ __('app.reset') }} -
{{ __('app.table_no') }}
+
{{ __('app.table_no') }}