summaryrefslogtreecommitdiff
path: root/app/Datatables.php
diff options
context:
space:
mode:
authorGreg Roach <fisharebest@gmail.com>2018-02-16 14:28:33 +0000
committerGreg Roach <fisharebest@gmail.com>2018-02-16 14:28:33 +0000
commit4b12af72b4eae3ec7bcd8d7c5508b6014bba49d2 (patch)
treec37af3b9ba6946285926b592645327a8afec48ae /app/Datatables.php
parentaadbe49b34822c14abef0fb0f9633552ebdf228a (diff)
downloadwebtrees-4b12af72b4eae3ec7bcd8d7c5508b6014bba49d2.tar.gz
webtrees-4b12af72b4eae3ec7bcd8d7c5508b6014bba49d2.tar.bz2
webtrees-4b12af72b4eae3ec7bcd8d7c5508b6014bba49d2.zip
Remove bootstrap table-responsive
Diffstat (limited to 'app/Datatables.php')
-rw-r--r--app/Datatables.php10
1 files changed, 5 insertions, 5 deletions
diff --git a/app/Datatables.php b/app/Datatables.php
index ac7edbbdd4..e2783002e2 100644
--- a/app/Datatables.php
+++ b/app/Datatables.php
@@ -75,7 +75,7 @@ class Datatables {
*/
public static function eventTableAttributes() {
return Html::attributes([
- 'class' => 'table table-bordered table-sm table-responsive datatables table-event',
+ 'class' => 'table table-bordered table-sm datatables table-event',
//'data-columns' => '[{ type: "text" }, { type: "num" }, { type: "num" }, { type: "text" }]',
'data-columns' => '[null, null, null, null]',
'data-info' => 'false',
@@ -109,7 +109,7 @@ class Datatables {
*/
public static function noteTableAttributes() {
return Html::attributes([
- 'class' => 'table table-bordered table-sm table-responsive datatables table-note',
+ 'class' => 'table table-bordered table-sm datatables table-note',
//'data-columns' => '[{ type: "text" }, { type: "text" }, { type: "num" }, { type: "num" }, { type: "num" }, { type: "text" }, { sorting: false }]',
'data-columns' => '[null, null, null, null, null, null]',
'data-state-save' => 'true',
@@ -123,7 +123,7 @@ class Datatables {
*/
public static function repositoryTableAttributes() {
return Html::attributes([
- 'class' => 'table table-bordered table-sm table-responsive datatables table-repository',
+ 'class' => 'table table-bordered table-sm datatables table-repository',
//'data-columns' => '[{ type: "text" }, { type: "num" }, { type: "text" }, { sorting: false }]',
'data-columns' => '[null, null, null]',
'data-state-save' => 'true',
@@ -137,7 +137,7 @@ class Datatables {
*/
public static function sourceTableAttributes() {
return Html::attributes([
- 'class' => 'table table-bordered table-sm table-responsive datatables table-source',
+ 'class' => 'table table-bordered table-sm datatables table-source',
//'data-columns' => '[{ type: "text" }, { type: "text" }, { type: "num" }, { type: "num" }, { type: "num" }, { type: "num" }, { type: "text" }, { sorting: false }]',
'data-columns' => '[null, null, null, null, null, null, null]',
'data-state-save' => 'true',
@@ -151,7 +151,7 @@ class Datatables {
*/
public static function surnameTableAttributes() {
return Html::attributes([
- 'class' => 'table table-bordered table-sm table-responsive datatables table-surname',
+ 'class' => 'table table-bordered table-sm datatables table-surname',
//'data-columns' => '[{ type: "text" }, { type: "num" }]',
'data-columns' => '[null, null]',
'data-info' => 'false',