Skip to content

Commit

Permalink
Fixed Issue: z-index Problems in Survey Editing
Browse files Browse the repository at this point in the history
  • Loading branch information
markusfluer committed Jul 26, 2016
1 parent ebe4e72 commit cc63d36
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
Expand Up @@ -52,7 +52,7 @@
?>

<!-- settings -->
<div class="col-sm-12 col-md-5" id="accordion-container" style="background-color: #fff; z-index: 2;">
<div class="col-sm-12 col-md-5" id="accordion-container" style="background-color: #fff;">
<?php
if (Permission::model()->hasSurveyPermission($iSurveyID, 'surveysettings', 'read'))
{
Expand Down
5 changes: 4 additions & 1 deletion application/views/admin/survey/editLocalSettings_view.php
Expand Up @@ -96,7 +96,10 @@
$this->widget('yiiwheels.widgets.buttongroup.WhButtonGroup', array(
'name' => 'numberformat_'.$esrow['surveyls_language'],
'value'=> $esrow['surveyls_numberformat'] ,
'selectOptions'=>$aRadixPoint
'selectOptions'=>$aRadixPoint,
'htmlOptions' => array(
"style" => "z-index:-1"
)
));
?>
</div>
Expand Down

0 comments on commit cc63d36

Please sign in to comment.