From 0ef7fe298d726c8f9040f13522c90e02457c8102 Mon Sep 17 00:00:00 2001 From: Alex Aragon Date: Tue, 22 Mar 2016 16:06:22 -0500 Subject: [PATCH] fix css table responsive plataform CT#8150 --- app/Resources/public/css/base.css | 3 +++ main/inc/lib/sortable_table.class.php | 9 +++++---- 2 files changed, 8 insertions(+), 4 deletions(-) diff --git a/app/Resources/public/css/base.css b/app/Resources/public/css/base.css index e33c812e99..9b98efb754 100644 --- a/app/Resources/public/css/base.css +++ b/app/Resources/public/css/base.css @@ -4719,6 +4719,9 @@ div#chat-remote-video video { #children .parent .big-icon .sequence-deleted{ font-size: 12px; } +.form-search{ + padding-bottom: 50px; +} /* INSTALL CHAMILO */ #page-install .logo{ text-align: center; diff --git a/main/inc/lib/sortable_table.class.php b/main/inc/lib/sortable_table.class.php index 99a08d494a..39e5e36168 100755 --- a/main/inc/lib/sortable_table.class.php +++ b/main/inc/lib/sortable_table.class.php @@ -126,7 +126,7 @@ class SortableTable extends HTML_Table $table_id = $table_name.uniqid(); } $this->table_id = $table_id; - parent::__construct(array('class' => 'table table-bordered', 'id' => $table_id)); + parent::__construct(array('class' => 'data_table table', 'id' => $table_id)); $this->table_name = $table_name; $this->additional_parameters = array(); $this->param_prefix = $table_name.'_'; @@ -231,9 +231,9 @@ class SortableTable extends HTML_Table */ public function display() { - echo '
'; + echo $this->return_table(); - echo '
'; + } /** @@ -337,7 +337,8 @@ class SortableTable extends HTML_Table $html .= ''; } } - return $html; + + return '
' . $html . '
'; } /**