Skip to content

Commit

Permalink
Dev: fixed some icons to be better looking
Browse files Browse the repository at this point in the history
  • Loading branch information
lacrioque committed Jun 29, 2017
1 parent caa799c commit 2a91e84
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 2 deletions.
7 changes: 6 additions & 1 deletion application/views/admin/survey/surveySummary_view.php
Expand Up @@ -23,7 +23,12 @@
?>
<?php $this->renderPartial('/admin/survey/breadcrumb', array('oSurvey'=>$oSurvey)); ?>
<!-- Quick Actions -->
<h3 id="survey-action-title"><?php eT('Survey quick actions'); ?><span data-url="<?php echo Yii::app()->urlManager->createUrl("admin/survey/sa/togglequickaction/");?>" id="survey-action-chevron" class="fa fa-chevron-right"></span></h3>
<h3 id="survey-action-title">
<button data-url="<?php echo Yii::app()->urlManager->createUrl("admin/survey/sa/togglequickaction/");?>" id="survey-action-chevron" class="btn btn-default btn-tiny">
<i class="fa fa-caret-down"></i>
</button>&nbsp;&nbsp;
<?php eT('Survey quick actions'); ?>
</h3>
<div class="row welcome survey-action" id="survey-action-container" style="<?php if($quickactionstate==0){echo 'display:none';}?>">
<div class="col-sm-12 content-right">

Expand Down
2 changes: 1 addition & 1 deletion assets/scripts/admin/admin_core.js
Expand Up @@ -99,7 +99,7 @@ $(document).ready(function(){
$('#survey-action-container').animate({
"height": "toggle", "opacity": "toggle"
});
$('#survey-action-chevron').toggleClass('fa-chevron-right').toggleClass('fa-chevron-down');
$('#survey-action-chevron').find('i').toggleClass('fa-caret-up').toggleClass('fa-caret-down');
},
error : function(html, statut){
alert('error');
Expand Down

0 comments on commit 2a91e84

Please sign in to comment.