Skip to content

Commit

Permalink
Fixed issue: Added Shadow to Theme options
Browse files Browse the repository at this point in the history
- Added Shadow
- Removed unnecessary div
- Adjusted the tablist
  • Loading branch information
thedirtypanda committed Jun 4, 2021
1 parent 6a4b8aa commit 4d88ebb
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions application/views/themeOptions/update.php
Original file line number Diff line number Diff line change
Expand Up @@ -8,23 +8,24 @@
?>
<?php if (empty($model->sid)): ?>
<!-- This is only visible when we're not in survey view. -->
<div class='container-fluid'>
<div class='menubar' id='theme-options-bar'>
<div class='row' style="margin-top: 10px;">
<div class='text-right'>
<div class='menubar' id='theme-options-bar' style="box-shadow: 3px 3px 3px #35363f; margin-bottom: 10px;" >
<div class='row'>
<div class='text-right' style="margin: 10px 0 10px 0;">

<?php
$sThemeOptionUrl = App()->createUrl("themeOptions");
$sGroupEditionUrl = App()->createUrl("admin/surveysgroups/sa/update", array("id"=>$gsid, "#" => 'templateSettingsFortThisGroup'));
$sUrl = (is_null($gsid))?$sThemeOptionUrl:$sGroupEditionUrl;
?>

<!-- Back -->
<a class="btn btn-default" href="<?php echo $sUrl; ?>" role="button">
<span class="fa fa-backward"></span>
<?php eT('Back'); ?>
</a>


<a class="btn btn-success" href="#" role="button" id="save-form-button" data-form-id="template-options-form">
<!-- Save -->
<a class="btn btn-success" href="#" role="button" id="save-form-button" data-form-id="template-options-form" style="margin-right: 30px;">
<span class="fa fa-floppy-o"></span>
<?php eT('Save'); ?>
</a>
Expand All @@ -36,7 +37,7 @@
<?php endif; ?>
<!-- Using bootstrap tabs to differ between just hte options and advanced direct settings -->
<div class="row">
<div class="col-sm-12" id="theme-options-tabs">
<div class="col-sm-12" id="theme-options-tabs" style="margin-top: 10px;">
<!-- Nav tabs -->
<ul class="nav nav-tabs" role="tablist">
<?php
Expand Down Expand Up @@ -258,7 +259,6 @@
</div>
</div>
</div>
</div>

<!-- Form for image file upload -->
<div class="hidden">
Expand Down

0 comments on commit 4d88ebb

Please sign in to comment.