Skip to content

Commit

Permalink
Fixed issue #10108: accordion option larger for small screens
Browse files Browse the repository at this point in the history
  • Loading branch information
LouisGac committed Dec 11, 2015
1 parent 02166ea commit 892d1f9
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions application/views/admin/survey/Question/editQuestion_view.php
Expand Up @@ -31,12 +31,12 @@
<?php if(!$adding):?>

<!-- The tabs & tab-fanes -->
<div class="col-lg-8 content-right">
<div class="col-lg-8 col-md-6 col-sm-5 content-right">
<?php $this->renderPartial('./survey/Question/question_subviews/_tabs',array('eqrow'=>$eqrow,'addlanguages'=>$addlanguages, 'surveyid'=>$surveyid, 'gid'=>NULL, 'qid'=>NULL, 'adding'=>$adding, 'aqresult'=>$aqresult, 'action'=>$action )); ?>
</div>

<!-- The Accordion -->
<div class="col-lg-4" id="accordion-container" style="background-color: #fff;">
<div class="col-lg-4 col-md-6 col-sm-7" id="accordion-container" style="background-color: #fff;">
<?php
// TODO : find why the $groups can't be generated from controller
?>
Expand Down
4 changes: 2 additions & 2 deletions application/views/admin/survey/Question/newQuestion_view.php
Expand Up @@ -16,12 +16,12 @@
<?php echo CHtml::form(array("admin/database/index"), 'post',array('class'=>'form30 form-horizontal','id'=>'frmeditquestion','name'=>'frmeditquestion')); ?>

<!-- The tabs & tab-fanes -->
<div class="col-lg-8 content-right">
<div class="col-lg-8 col-md-6 col-sm-5 content-right">
<?php $this->renderPartial('./survey/Question/newQuestion_subviews/_tabs',array('eqrow'=>$eqrow,'addlanguages'=>$addlanguages, 'surveyid'=>$surveyid, 'gid'=>NULL, 'qid'=>NULL, 'action'=>'addquestion' ));?>
</div>

<!-- The Accordion -->
<div class="col-lg-4" id="accordion-container" style="background-color: #fff;">
<div class="col-lg-4 col-md-6 col-sm-7" id="accordion-container" style="background-color: #fff;">
<?php
// TODO : find why the $groups can't be generated from controller
// $this->renderPartial('./survey/Question/newQuestion_subviews/_accordion_container', $accordionDatas);
Expand Down

0 comments on commit 892d1f9

Please sign in to comment.