Hovered link colours in Cassiopeia are sometimes hard to see

Everything to do with Joomla! 4.x templates and templating.

Moderator: General Support Moderators

Forum rules
Forum Rules
Absolute Beginner's Guide to Joomla! <-- please read before posting, this means YOU.
Forum Post Assistant - If you are serious about wanting help, you will use this tool to help you post.
Windows Defender SmartScreen Issues <-- please read this if using Windows 10.
Post Reply
nacc
Joomla! Explorer
Joomla! Explorer
Posts: 266
Joined: Mon Jul 03, 2023 7:08 pm

Hovered link colours in Cassiopeia are sometimes hard to see

Post by nacc » Thu Sep 21, 2023 7:09 pm

This may be more a comment than a question: I find the link colours (when hovered) are sometimes difficult to see, particularly in the footer and article pagination areas. I wonder if other people have noticed these things and also think the hovered link colours (grey against dark purple) are hard to see?

I know how to construct the CSS to give a better contrast to the links when you hover your mouse over them; I am not asking how to do that. My question is whether other people have noticed this too? The following image demonstrates the issue:

j4Cassiopeia_linkColours-footer.png
.
You do not have the required permissions to view the files attached to this post.

User avatar
ceford
Joomla! Hero
Joomla! Hero
Posts: 2288
Joined: Mon Feb 24, 2014 10:38 pm
Location: Edinburgh, Scotland
Contact:

Re: Hovered link colours in Cassiopeia are sometimes hard to see

Post by ceford » Fri Sep 22, 2023 8:00 am

This is a bug for which there is a pull request that needs testing: https://issues.joomla.org/tracker/joomla-cms/41749

nacc
Joomla! Explorer
Joomla! Explorer
Posts: 266
Joined: Mon Jul 03, 2023 7:08 pm

Re: Hovered link colours in Cassiopeia are sometimes hard to see

Post by nacc » Fri Sep 22, 2023 9:34 am

Thanks. I wonder what are the chances of this change being made to J! 4.x? Probably less than even money would be my guess. We live in hope.

nacc
Joomla! Explorer
Joomla! Explorer
Posts: 266
Joined: Mon Jul 03, 2023 7:08 pm

Re: Hovered link colours in Cassiopeia are sometimes hard to see

Post by nacc » Wed Oct 18, 2023 11:18 pm

Still broken in J! 4.4.0.

ibtevolve
Joomla! Fledgling
Joomla! Fledgling
Posts: 1
Joined: Thu Oct 19, 2023 6:51 am

Re: Hovered link colours in Cassiopeia are sometimes hard to see

Post by ibtevolve » Thu Oct 19, 2023 6:58 am

Offcanvas Menu for Cassiopeia

<?php
/**
* @package Joomla.Site
* @subpackage mod_menu
*
* @copyright (C) 2021 Open Source Matters, Inc. <https://www.joomla.org>
* @license GNU General Public License version 2 or later; see LICENSE.txt
*/

defined('_JEXEC') or die;

use Joomla\CMS\HTML\HTMLHelper;
use Joomla\CMS\Language\Text;

HTMLHelper::_('bootstrap.offcanvas');
?>

<nav class="navbar navbar-expand-lg">
<button class="navbar-toggler navbar-toggler-right" type="button" data-bs-toggle="offcanvas" data-bs-target="#navbar<?php echo $module->id; ?>" aria-controls="navbar<?php echo $module->id; ?>" aria-expanded="false" aria-label="<?php echo Text::_('MOD_MENU_TOGGLE'); ?>">
<span class="icon-menu" aria-hidden="true"></span>
</button>
<div class="offcanvas offcanvas-start" id="navbar<?php echo $module->id; ?>">
<div class="offcanvas-header">
<button type="button" class="btn-close btn-close-white" data-bs-dismiss="offcanvas" aria-label="Close"></button>
</div>
<div class="offcanvas-body">
<?php require __DIR__ . '/dropdown-metismenu.php'; ?>
</div>
</div>
</nav>


Post Reply

Return to “Templates for Joomla! 4.x”