Skip to content

Commit

Permalink
Change product's price color away from link color
Browse files Browse the repository at this point in the history
  - product price is the same color as a link but it is not a link
    - links should be distinct to improve usability
  - chosen color variable $product_price_text_color
  • Loading branch information
notapatch committed Aug 24, 2017
1 parent aa0a905 commit 919924c
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ $link_text_color: #00ADEE !default;
$product_background_color: #FFFFFF !default;
$product_title_text_color: #404042 !default;
$product_body_text_color: #404042 !default;
$product_price_text_color: #252525 !default;
$product_link_text_color: #BBBBBB !default;

/*--------------------------------------*/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -452,7 +452,7 @@ nav#taxonomies {

%price_text {
font-weight: bold;
color: $link_text_color;
color: $product_price_text_color;
}

span.price {
Expand Down Expand Up @@ -520,7 +520,7 @@ ul#products {
}

.price {
color: $link_text_color;
color: $product_price_text_color;
font-size: $product_list_price_font_size;
padding-top: 5px;
display: block;
Expand Down

0 comments on commit 919924c

Please sign in to comment.