output a space between the text and the left_arrow_indicator
This commit is contained in:
parent
b4678abe12
commit
bd625f0cc1
@ -175,9 +175,10 @@ print anchor ("code/fetch/{$project->id}/${xpar}{$revreq}", $this->lang->line('D
|
||||
printf ('%s: %s', $this->lang->line('Revision'), $file['created_rev']);
|
||||
if (!empty($file['created_tag']))
|
||||
{
|
||||
print ('<span class="left_arrow_indicator">');
|
||||
print htmlspecialchars($file['created_tag']);
|
||||
print ('</span>');
|
||||
print ' ';
|
||||
print ('<span class="left_arrow_indicator">');
|
||||
print htmlspecialchars($file['created_tag']);
|
||||
print ('</span>');
|
||||
}
|
||||
print anchor ("code/blame/{$project->id}/${xpar}/{$file['next_rev']}", '>>');
|
||||
|
||||
|
@ -218,9 +218,10 @@ $this->load->view (
|
||||
printf ('%s: %s', $this->lang->line('Revision'), $file['created_rev']);
|
||||
if (!empty($file['created_tag']))
|
||||
{
|
||||
print ('<span class="left_arrow_indicator">');
|
||||
print htmlspecialchars($file['created_tag']);
|
||||
print ('</span>');
|
||||
print ' ';
|
||||
print ('<span class="left_arrow_indicator">');
|
||||
print htmlspecialchars($file['created_tag']);
|
||||
print ('</span>');
|
||||
}
|
||||
print anchor ("code/file/{$project->id}/${xpar}/{$file['next_rev']}", '>>');
|
||||
|
||||
|
@ -296,6 +296,7 @@ $this->load->view (
|
||||
printf ('%s: %s', $this->lang->line('Revision'), $file['created_rev']);
|
||||
if (!empty($file['created_tag']))
|
||||
{
|
||||
print ' ';
|
||||
print ('<span class="left_arrow_indicator">');
|
||||
print htmlspecialchars($file['created_tag']);
|
||||
print ('</span>');
|
||||
|
@ -123,6 +123,7 @@ $this->load->view (
|
||||
|
||||
if (!empty($h['tag']))
|
||||
{
|
||||
print ' ';
|
||||
print '<span class="left_arrow_indicator">';
|
||||
print htmlspecialchars($h['tag']);
|
||||
print '</span>';
|
||||
|
@ -314,6 +314,7 @@ $history = $file['history'];
|
||||
printf ('%s: %s', $this->lang->line('Revision'), $history['rev']);
|
||||
if (!empty($history['tag']))
|
||||
{
|
||||
print ' ';
|
||||
print ('<span class="left_arrow_indicator">');
|
||||
print htmlspecialchars($history['tag']);
|
||||
print ('</span>');
|
||||
|
@ -705,7 +705,7 @@ pre.prettyprint li.L9 { background: #eee }
|
||||
background: #FA5240;
|
||||
color: #FFFFFF;;
|
||||
font-size: 0.9em;
|
||||
margin-left: 0.5em;
|
||||
margin-left: 0.2em;
|
||||
padding-left: 0.5em;
|
||||
padding-right: 0.5em;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user