Skip to content

Commit

Permalink
Merge pull request #140 from flipside-org/develop
Browse files Browse the repository at this point in the history
Small fixes
  • Loading branch information
Daniel Silva committed Jul 7, 2014
2 parents 9800e61 + 2f0c634 commit 85fd199
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
8 changes: 4 additions & 4 deletions application/views/login.php
Original file line number Diff line number Diff line change
Expand Up @@ -43,12 +43,12 @@
<?php if (ENVIRONMENT == 'demo') : ?>
<div id="demo-users">
<dl>
<dt>agent</dt>
<dd><span class="highlight">Password:</span> agent</dd>
<dt>User: agent</dt>
<dd><span class="highlight">Pass:</span> agent</dd>
</dl>
<dl>
<dt>moderator</dt>
<dd><span class="highlight">Password:</span> moderator</dd>
<dt>User: moderator</dt>
<dd><span class="highlight">Pass:</span> moderator</dd>
</dl>
More information can be found on the <a href="https://github.com/flipside-org/aw-datacollection/" title="View project on github.">project's github page.</a>
</div>
Expand Down
4 changes: 2 additions & 2 deletions application/views/surveys/survey_page.php
Original file line number Diff line number Diff line change
Expand Up @@ -48,8 +48,8 @@
<ul class="action-dropdown">
<?php if (has_permission('export csv data any survey')) : ?>
<?php $disabled = !$survey->has_xml() || !$survey->status_allows('export csv data any survey') ? 'disabled' : ''; ?>
<li><a href="<?= $survey->get_url_data_export_csv('csv_human'); ?>" class="<?= $disabled; ?>">Results</a></li>
<li><a href="<?= $survey->get_url_data_export_csv('csv_machine'); ?>" class="<?= $disabled; ?>">Results (Raw)</a></li>
<li><a href="<?= $survey->get_url_data_export_csv('csv_human'); ?>" class="<?= $disabled; ?>">Results (CSV)</a></li>
<li><a href="<?= $survey->get_url_data_export_csv('csv_machine'); ?>" class="<?= $disabled; ?>">Results raw (CSV)</a></li>
<?php endif; ?>

<?php if (has_permission('download any survey files')) : ?>
Expand Down
2 changes: 1 addition & 1 deletion src/styles/_demo_styles.scss
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@
overflow: hidden;
background-color: palette(blue);
box-shadow: 0 4px 0 0 rgba(69, 77, 83, 0.1);
transform: rotate(45deg);
@include transform(rotate(-45deg));
white-space: nowrap;

a {
Expand Down

0 comments on commit 85fd199

Please sign in to comment.