Skip to content

Commit

Permalink
fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
dgrammatiko committed Apr 12, 2021
1 parent d1e49ea commit 4c8d651
Show file tree
Hide file tree
Showing 6 changed files with 2 additions and 13 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,8 @@
?>
<?php if ($app->getIdentity()->authorise('core.manage', 'com_postinstall')) : ?>
<a class="header-item-content <?php echo ($hideLinks ? 'disabled' : ''); ?>"
href="<?php echo Route::_('index.php?option=com_postinstall&eid=' . $joomlaFilesExtensionId); ?>" title="<?php echo Text::_('MOD_POST_INSTALLATION_MESSAGES'); ?>">
<?php echo ($hideLinks ? 'disabled' : 'href="' . Route::_('index.php?option=com_postinstall&eid=' . $joomlaFilesExtensionId) . '"'); ?>
title="<?php echo Text::_('MOD_POST_INSTALLATION_MESSAGES'); ?>">
<div class="header-item-icon">
<div class="w-auto">
<span class="icon-bell" aria-hidden="true"></span>
Expand Down
1 change: 0 additions & 1 deletion administrator/templates/atum/component.php
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,6 @@
--atum-text-light: ' . $this->params->get('text-light', '--atum-text-light') . ';
--atum-link-color: ' . $this->params->get('link-color', '--atum-link-color') . ';
--atum-special-color: ' . $this->params->get('special-color', '--atum-special-color') . ';
--atum-sidebar-link-color: ' . $this->params->get('sidebar-link-color', '--atum-sidebar-link-color') . ';
}');

// Override 'template.active' asset to set correct ltr/rtl dependency
Expand Down
3 changes: 0 additions & 3 deletions administrator/templates/atum/error_full.php
Original file line number Diff line number Diff line change
Expand Up @@ -64,16 +64,13 @@
--atum-text-light: ' . $this->params->get('text-light', '--atum-text-light') . ';
--atum-link-color: ' . $this->params->get('link-color', '--atum-link-color') . ';
--atum-special-color: ' . $this->params->get('special-color', '--atum-special-color') . ';
--atum-sidebar-link-color: ' . $this->params->get('sidebar-link-color', '--atum-sidebar-link-color') . ';
}');

// Override 'template.active' asset to set correct ltr/rtl dependency
$wa->registerStyle('template.active', '', [], [], ['template.atum.' . ($this->direction === 'rtl' ? 'rtl' : 'ltr')]);

// Set some meta data
$this->setMetaData('viewport', 'width=device-width, initial-scale=1');
// @TODO sync with _variables.scss
$this->setMetaData('theme-color', '#1c3d5c');

$monochrome = (bool) $this->params->get('monochrome');

Expand Down
3 changes: 0 additions & 3 deletions administrator/templates/atum/error_login.php
Original file line number Diff line number Diff line change
Expand Up @@ -67,16 +67,13 @@
--atum-text-light: ' . $this->params->get('text-light', '--atum-text-light') . ';
--atum-link-color: ' . $this->params->get('link-color', '--atum-link-color') . ';
--atum-special-color: ' . $this->params->get('special-color', '--atum-special-color') . ';
--atum-sidebar-link-color: ' . $this->params->get('sidebar-link-color', '--atum-sidebar-link-color') . ';
}');

// Override 'template.active' asset to set correct ltr/rtl dependency
$wa->registerStyle('template.active', '', [], [], ['template.atum.' . ($this->direction === 'rtl' ? 'rtl' : 'ltr')]);

// Set some meta data
$this->setMetaData('viewport', 'width=device-width, initial-scale=1');
// @TODO sync with _variables.scss
$this->setMetaData('theme-color', '#1c3d5c');

$monochrome = (bool) $this->params->get('monochrome');

Expand Down
2 changes: 0 additions & 2 deletions administrator/templates/atum/index.php
Original file line number Diff line number Diff line change
Expand Up @@ -77,8 +77,6 @@

// Set some meta data
$this->setMetaData('viewport', 'width=device-width, initial-scale=1');
// @TODO sync with _variables.scss
$this->setMetaData('theme-color', '#1c3d5c');

$monochrome = (bool) $this->params->get('monochrome');

Expand Down
3 changes: 0 additions & 3 deletions administrator/templates/atum/login.php
Original file line number Diff line number Diff line change
Expand Up @@ -67,16 +67,13 @@
--atum-text-light: ' . $this->params->get('text-light', '--atum-text-light') . ';
--atum-link-color: ' . $this->params->get('link-color', '--atum-link-color') . ';
--atum-special-color: ' . $this->params->get('special-color', '--atum-special-color') . ';
--atum-sidebar-link-color: ' . $this->params->get('sidebar-link-color', '--atum-sidebar-link-color') . ';
}');

// Override 'template.active' asset to set correct ltr/rtl dependency
$wa->registerStyle('template.active', '', [], [], ['template.atum.' . ($this->direction === 'rtl' ? 'rtl' : 'ltr')]);

// Set some meta data
$this->setMetaData('viewport', 'width=device-width, initial-scale=1');
// @TODO sync with _variables.scss
$this->setMetaData('theme-color', '#1c3d5c');

$monochrome = (bool) $this->params->get('monochrome');

Expand Down

0 comments on commit 4c8d651

Please sign in to comment.