Skip to content

Commit 50bb913

Browse files
committed
Fix Details/Diff buttons' position in Changesets list
Fixes #402
1 parent 1e88439 commit 50bb913

File tree

1 file changed

+6
-5
lines changed

1 file changed

+6
-5
lines changed

Source/Source.ViewAPI.php

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ function Source_View_Changesets( $p_changesets, $p_repos=null, $p_show_repos=tru
5151
. $t_vcs->show_changeset( $t_repo, $t_changeset )
5252
)
5353
?></p>
54-
<p class="no-margin small lighter">
54+
<p class="no-margin small">
5555
<i class="fa fa-clock-o grey"></i>
5656
<?php echo string_display_line( $t_changeset->getLocalTimestamp() ) ?>
5757
</p>
@@ -61,12 +61,12 @@ function Source_View_Changesets( $p_changesets, $p_repos=null, $p_show_repos=tru
6161
<?php
6262
if( $t_committer && $t_committer != $t_author ) {
6363
?>
64-
<br>
65-
<span class="small">
64+
<p class="no-margin small">
6665
<?php echo plugin_lang_get( 'committer', 'Source' ), ': ', $t_committer ?>
67-
</span>
66+
</p>
6867
<?php
6968
}
69+
echo '<br>';
7070

7171
if( $t_use_porting ) {
7272
?>
@@ -78,7 +78,8 @@ function Source_View_Changesets( $p_changesets, $p_repos=null, $p_show_repos=tru
7878
? plugin_lang_get( 'pending', 'Source' )
7979
: plugin_lang_get( 'na', 'Source' )
8080
)
81-
?></p>
81+
?>
82+
</p>
8283
<?php
8384
}
8485

0 commit comments

Comments
 (0)