Skip to content

Commit

Permalink
[3.x] RTL: adapting display of Joomla versions
Browse files Browse the repository at this point in the history
  • Loading branch information
infograf768 committed Nov 18, 2018
1 parent 0da37c6 commit fb664e6
Show file tree
Hide file tree
Showing 5 changed files with 15 additions and 5 deletions.
Expand Up @@ -26,15 +26,15 @@
<?php echo JText::_('COM_JOOMLAUPDATE_VIEW_DEFAULT_INSTALLED'); ?>
</td>
<td>
<?php echo $this->updateInfo['installed']; ?>
<?php echo '&#x200E;' . $this->updateInfo['installed']; ?>
</td>
</tr>
<tr>
<td>
<?php echo JText::_('COM_JOOMLAUPDATE_VIEW_DEFAULT_LATEST'); ?>
</td>
<td>
<?php echo $this->updateInfo['latest']; ?>
<?php echo '&#x200E;' . $this->updateInfo['latest']; ?>
</td>
</tr>
<tr>
Expand Down
Expand Up @@ -98,7 +98,7 @@
<td>
<input class="input_box" id="install_package" name="install_package" type="file" size="57" /><br>
<?php $maxSize = JHtml::_('number.bytes', JUtility::getMaxUploadSize()); ?>
<?php echo JText::sprintf('JGLOBAL_MAXIMUM_UPLOAD_SIZE_LIMIT', $maxSize); ?>
<?php echo JText::sprintf('JGLOBAL_MAXIMUM_UPLOAD_SIZE_LIMIT', '&#x200E;' . $maxSize); ?>
</td>
</tr>
<tr>
Expand Down
4 changes: 4 additions & 0 deletions administrator/templates/isis/css/template-rtl.css
Expand Up @@ -10093,3 +10093,7 @@ a.grid_true {
left: 0;
right: auto;
}
.com_cpanel .well > .row-striped > .row-fluid [class*="span"],
.com_cpanel .well > .list-striped > .row-fluid [class*="span"] {
margin-right: 0;
}
6 changes: 6 additions & 0 deletions administrator/templates/isis/less/template-rtl.less
Expand Up @@ -440,3 +440,9 @@ a.grid_true {
left: 0;
right: auto;
}

/* CPanel Site Information mod_stats_admin */
.com_cpanel .well > .row-striped > .row-fluid [class*="span"],
.com_cpanel .well > .list-striped > .row-fluid [class*="span"] {
margin-right: 0;
}
4 changes: 2 additions & 2 deletions media/plg_quickicon_joomlaupdate/js/jupdatecheck.js
Expand Up @@ -24,9 +24,9 @@ jQuery(document).ready(function() {
} else {
var updateInfo = updateInfoList.shift();
if (updateInfo.version != plg_quickicon_jupdatecheck_jversion) {
var updateString = plg_quickicon_joomlaupdate_text.UPDATEFOUND.replace("%s", updateInfo.version + "");
var updateString = plg_quickicon_joomlaupdate_text.UPDATEFOUND.replace("%s", '\u200E' + updateInfo.version + "");
jQuery('#plg_quickicon_joomlaupdate').find('.j-links-link').html(updateString);
var updateString = plg_quickicon_joomlaupdate_text.UPDATEFOUND_MESSAGE.replace("%s", updateInfo.version + "");
var updateString = plg_quickicon_joomlaupdate_text.UPDATEFOUND_MESSAGE.replace("%s", '\u200E' + updateInfo.version + "");
jQuery('#system-message-container').prepend(
'<div class="alert alert-error alert-joomlaupdate">'
+ updateString
Expand Down

0 comments on commit fb664e6

Please sign in to comment.