Skip to content

Commit

Permalink
RWD: accessibility improvements: made the red color a bit darker and …
Browse files Browse the repository at this point in the history
…added titles to important links (#3912)
  • Loading branch information
fballiano authored Mar 29, 2024
1 parent 4af8e48 commit 1197c2b
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
}
?>

<a href="<?php echo $this->helper('checkout/cart')->getCartUrl(); ?>" data-target-element="#header-cart" class="skip-link skip-cart <?php if($_cartQty <= 0): ?> no-count<?php endif ?>">
<a href="<?php echo $this->helper('checkout/cart')->getCartUrl(); ?>" data-target-element="#header-cart" class="skip-link skip-cart <?php if($_cartQty <= 0): ?> no-count<?php endif ?>" title="<?php echo $this->__('Cart'); ?>">
<span class="icon"></span>
<span class="label"><?php echo $this->__('Cart'); ?></span>
<span class="count"><?php echo $_cartQty; ?></span>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -48,13 +48,13 @@
<span class="label"><?php echo $this->__('Menu'); ?></span>
</a>

<a href="#header-search" class="skip-link skip-search">
<a href="#header-search" class="skip-link skip-search" title="<?php echo $this->__('Search'); ?>">
<span class="icon"></span>
<span class="label"><?php echo $this->__('Search'); ?></span>
</a>

<div class="account-cart-wrapper">
<a href="<?php echo $this->helper('customer')->getAccountUrl(); ?>" data-target-element="#header-account" class="skip-link skip-account">
<a href="<?php echo $this->helper('customer')->getAccountUrl(); ?>" data-target-element="#header-account" class="skip-link skip-account" title="<?php echo $this->__('Account'); ?>">
<span class="icon"></span>
<span class="label"><?php echo $this->__('Account'); ?></span>
</a>
Expand Down
2 changes: 1 addition & 1 deletion skin/frontend/rwd/default/css/styles.css
Original file line number Diff line number Diff line change
Expand Up @@ -9818,7 +9818,7 @@ div.paypal-logo span > img {
* Pricing Conditions
* ============================================ */
.price-box .minimal-price-link .label {
color: #cf5050;
color: #cd4848;
font-family: "Raleway", "Helvetica Neue", Verdana, Arial, sans-serif;
font-size: 12px;
text-transform: uppercase;
Expand Down
2 changes: 1 addition & 1 deletion skin/frontend/rwd/default/scss/_var.scss
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ $c-blue: #0472ad;
$c-green: #0f8900;
$c-pink: #D85378;
$c-orange: #F3793B;
$c-red: #CF5050;
$c-red: #cd4848;
$c-yellow: #FFDD15;
$c-black: #000000;
$c-gray: #333333;
Expand Down

0 comments on commit 1197c2b

Please sign in to comment.