From b82854ccd7b00ad67a876e4a0f8c1fc165df02a1 Mon Sep 17 00:00:00 2001 From: Manish Bisht Date: Mon, 19 Jun 2017 15:05:14 +0530 Subject: [PATCH] made prefs_forms responsive Signed-off-by: Manish Bisht --- libraries/config/FormDisplay.tpl.php | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/libraries/config/FormDisplay.tpl.php b/libraries/config/FormDisplay.tpl.php index ac1fdf7632..47e570df1b 100644 --- a/libraries/config/FormDisplay.tpl.php +++ b/libraries/config/FormDisplay.tpl.php @@ -66,7 +66,7 @@ function PMA_displayTabsTop($tabs) $htmlOutput = Template::get('list/unordered')->render( array( - 'class' => 'tabs', + 'class' => 'tabs responsivetable', 'items' => $items, ) ); @@ -245,11 +245,11 @@ function PMA_displayInput($path, $name, $type, $value, $description = '', switch ($type) { case 'text': - $htmlOutput .= ''; break; case 'password': - $htmlOutput .= ''; break; case 'short_text': @@ -271,7 +271,7 @@ function PMA_displayInput($path, $name, $type, $value, $description = '', . ($value ? ' checked="checked"' : '') . ' />'; break; case 'select': - $htmlOutput .= ''; $escape = !(isset($opts['values_escaped']) && $opts['values_escaped']); $values_disabled = isset($opts['values_disabled']) ? array_flip($opts['values_disabled']) : array(); @@ -307,7 +307,7 @@ function PMA_displayInput($path, $name, $type, $value, $description = '', $htmlOutput .= ''; break; case 'list': - $htmlOutput .= ''; break; }