Labels |
Added:
?
|
Priority | Medium | ⇒ | Very low |
Status | New | ⇒ | Confirmed |
Build | staging | ⇒ | 4.0-dev |
There's a space in the layout, between the <span>
elements:
<?php if (!empty($data->title)) : ?>
<span>
<?php echo Text::_($data->title); ?>
</span><!-- Span ends here -->
[xxxx]<?php endif; ?>
[xxxx]<span class="<?php echo $icon; ?>" aria-hidden="true"></span>
^^^
whitespace
If you make it all one line:
<?php if (!empty($data->title)) : ?><span><?php echo Text::_($data->title); ?></span><?php endif; ?><span class="ml-1 <?php echo $icon; ?>" aria-hidden="true"></span>
Then it fixes the issue, but will probably fail drone CS tests.
Maybe there's a some PHP magic that can be done
i will take a look - we have had this issue before with cs breaking stuff
Status | Confirmed | ⇒ | Closed |
Closed_Date | 0000-00-00 00:00:00 | ⇒ | 2020-03-04 15:13:44 |
Closed_By | ⇒ | C-Lodder |
There is no space there.
Margin does the same - its because of the markup and I am not sure of a css way to resolve it