Skip to content

Commit

Permalink
#1696 Fix icon alignment consistency
Browse files Browse the repository at this point in the history
  • Loading branch information
Studio384 committed Jun 28, 2018
1 parent 5a7a3dc commit 323e0c3
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 5 deletions.
2 changes: 2 additions & 0 deletions backstage/about.php
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,8 @@
<li><div class="stater"><em class="state state-fixed"><?php _e('Fixed', 'luna') ?></em></div><?php _e('The default user group can now be changed again', 'luna') ?></li>
<li><div class="stater"><em class="state state-fixed"><?php _e('Fixed', 'luna') ?></em></div><?php _e('Enabling debug mode now works correctly for PostgreSQL', 'luna') ?></li>
<li><div class="stater"><em class="state state-fixed"><?php _e('Fixed', 'luna') ?></em></div><?php _e('Updating to Luna 2.0 no longer causes \'o_custom_css\' to start with "NULL" as value', 'luna') ?></li>
<li><div class="stater"><em class="state state-fixed"><?php _e('Fixed', 'luna') ?></em></div><?php _e('Fixes a PHP error with receivers in Inbox not being countable', 'luna') ?></li>
<li><div class="stater"><em class="state state-fixed"><?php _e('Fixed', 'luna') ?></em></div><?php _e('The paper plane icons in Inbox are now properly alligned', 'luna') ?></li>
</ul>
</div>
</section>
Expand Down
4 changes: 2 additions & 2 deletions include/version.php
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,9 @@
*/

class Version {
const LUNA_VERSION = '2.0.10-alpha';
const LUNA_VERSION = '2.0.10-beta';
const LUNA_BRANCH = '2.0';
const LUNA_CORE_VERSION = '2.0.5816';
const LUNA_CORE_VERSION = '2.0.5818';
const LUNA_CODE_NAME = 'Emerald';

// The database version number, every change in the database requires this number to go one up
Expand Down
2 changes: 1 addition & 1 deletion themes/Fifteen/views/inbox-new.php
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@
?>
<form class="form-horizontal" method="post" id="comment" action="new_inbox.php" onsubmit="return process_form(this)">
<div class="title-block title-block-primary">
<h2><i class="fa fa-paper-plane-o"></i> <?php _e('Inbox', 'luna') ?></h2>
<h2><i class="fa fa-fw fa-paper-plane-o"></i> <?php _e('Inbox', 'luna') ?></h2>
</div>
<div class="tab-content new-inbox">
<fieldset>
Expand Down
2 changes: 1 addition & 1 deletion themes/Fifteen/views/inbox-view.php
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
</div>
<div class="col-xs-12 col-sm-9">
<div class="title-block title-block-primary">
<h2><i class="fa fa-paper-plane-o"></i> <?php _e('Inbox', 'luna') ?><span class="pull-right"><a type="button" class="btn btn-default" href="new_inbox.php?reply=<?php echo $tid ?>"><span class="fa fa-fw fa-reply"></span> <?php _e('Reply', 'luna') ?></a></span></h2>
<h2><i class="fa fa-fw fa-paper-plane-o"></i> <?php _e('Inbox', 'luna') ?><span class="pull-right"><a type="button" class="btn btn-default" href="new_inbox.php?reply=<?php echo $tid ?>"><span class="fa fa-fw fa-reply"></span> <?php _e('Reply', 'luna') ?></a></span></h2>
</div>
<?php
echo $paging_links;
Expand Down
2 changes: 1 addition & 1 deletion themes/Fifteen/views/inbox.php
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
<form method="post" action="inbox.php">
<fieldset>
<div class="title-block title-block-primary">
<h2><i class="fa fa-paper-plane-o"></i> <?php _e('Inbox', 'luna') ?></h2>
<h2><i class="fa fa-fw fa-paper-plane-o"></i> <?php _e('Inbox', 'luna') ?></h2>
</div>
<div class="tab-content">
<div class="btn-toolbar btn-toolbar-profile">
Expand Down

0 comments on commit 323e0c3

Please sign in to comment.