Skip to content

Commit

Permalink
fix city dropdown colors
Browse files Browse the repository at this point in the history
  • Loading branch information
Grace-Amondi committed Nov 14, 2023
1 parent 7c5e640 commit 9d4998f
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 1 deletion.
10 changes: 10 additions & 0 deletions nmhs_cms/static/css/nmhs_cms.css
Original file line number Diff line number Diff line change
Expand Up @@ -111,3 +111,13 @@ body {
}

}


/* Style the selected option */
select#city-option {
color: #ffffff; /* Change the text color of the selected option */
}

select#city-option option{
color: black;
}
2 changes: 1 addition & 1 deletion pages/products/templates/products/product_detail.html
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ <h2 class="section-title center">{{ page.title }}</h2>
{% for product_item in item_products_dict.products %}
<li class="product-item-date-tab {% if forloop.first %}is-active{% endif %}"
data-target="{{ slug }}-{{ product_item.value.product_type }}-{{ product_item.value.product_date_str }}">
<a>
<a style="color:white !important">
<span class="icon is-small">
<i class="far fa-calendar" aria-hidden="true"></i>
</span>
Expand Down

0 comments on commit 9d4998f

Please sign in to comment.