Skip to content

Commit

Permalink
ncp-web: add hover text for ncp admin header icons
Browse files Browse the repository at this point in the history
  • Loading branch information
Corey Wilson authored and nachoparker committed Sep 16, 2018
1 parent 6a755c3 commit fcbd661
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 18 deletions.
10 changes: 8 additions & 2 deletions changelog.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@

[v0.59.7](https://github.com/nextcloud/nextcloudpi/commit/bb2eb48) (2018-08-22) Rename DDNS apps so they show up together
[v0.59.10](https://github.com/nextcloud/nextcloudpi/commit/e17f56b) (2018-09-04) ncp-web: add hover text for ncp admin header icons

[v0.59.9 ](https://github.com/nextcloud/nextcloudpi/commit/6a755c3) (2018-09-16) nc-prettyURL: fixes

[v0.59.8](https://github.com/nextcloud/nextcloudpi/commit/a00cd0b) (2018-09-15) nc-format-USB: drive number was off by one (#631)

[v0.59.7 ](https://github.com/nextcloud/nextcloudpi/commit/e26a834) (2018-08-22) Rename DDNS apps so they show up together

[v0.59.6 ](https://github.com/nextcloud/nextcloudpi/commit/1210517) (2018-09-12) wizard: fix instructions for BTRFS

Expand All @@ -13,7 +19,7 @@

[v0.59.1 ](https://github.com/nextcloud/nextcloudpi/commit/378ca60) (2018-09-10) nc-datadir: support specifying the root of the mountpoint

[v0.59.0](https://github.com/nextcloud/nextcloudpi/commit/9113ab2) (2018-08-31) update to NC 13.0.6
[v0.59.0 ](https://github.com/nextcloud/nextcloudpi/commit/9113ab2) (2018-08-31) update to NC 13.0.6

[v0.58.1 ](https://github.com/nextcloud/nextcloudpi/commit/dad9900) (2018-07-25) nc-datadir: backup existing datadir after checks

Expand Down
28 changes: 12 additions & 16 deletions ncp-web/index.php
Original file line number Diff line number Diff line change
Expand Up @@ -131,27 +131,27 @@
?>
</div>
<div id="header-right">
<a href="https://ownyourbits.com" id="nextcloud-btn" target="_blank" tabindex="1">
<a href="https://ownyourbits.com" id="nextcloud-btn" target="_blank" tabindex="1" title="<?php echo $l->__("Launch Nextcloud"); ?>">
<div id="nc-button">
<div id="expand">
<div class="icon-nc-white"></div>
</div>
</div>
</a>
<div id="dashboard-btn">
<div id="dashboard-btn" title="<?php echo $l->__("View System Info"); ?>">
<div id="expand">
<div class="icon-dashboard"></div>
</div>
</div>
<div id="config-btn">
<div id="config-btn" title="<?php echo $l->__("Nextcloud Configuration"); ?>">
<div id="expand">
<div class="icon-config"></div>
</div>
</div>
<?php
<?php
if ( file_exists( 'wizard' ) )
echo <<<HTML
<a href="wizard">
<a href="wizard" title="{$l->__("NextCloudPi Wizard")}">
<div class="wizard-btn">
<div id="expand">
<div class="icon-wizard-white"></div>
Expand All @@ -160,22 +160,18 @@
</a>
HTML;
?>
<a href="https://github.com/nextcloud/nextcloudpi/wiki" target="_blank" tabindex="1">
<a href="https://github.com/nextcloud/nextcloudpi/wiki" target="_blank" tabindex="1" title="<?php echo $l->__("NextCloudPi Wiki"); ?>">
<div id="nc-button">
<div id="expand">
<div class="icon-nc-info"></div>
</div>
</div>
</a>
<?php
echo <<<HTML
<div id="poweroff">
<div id="expand">
<div class="icon-power-white"></div>
</div>
</div>
HTML;
?>
<div id="poweroff" title="<?php echo $l->__("Power Off"); ?>">
<div id="expand">
<div class="icon-power-white"></div>
</div>
</div>
</div>
</header>

Expand Down Expand Up @@ -233,7 +229,7 @@
{
echo "<td>$key</td>";
echo "<td><table>";
foreach ( $val as $k => $v )
foreach ( $val as $k => $v )
echo "<tr><td>$k</td><td class=\"val-field\">$v</td></tr>";
echo '</table></td>';
}
Expand Down

0 comments on commit fcbd661

Please sign in to comment.