Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/shop/templates/shop_base.html
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@

<div class="row">
<div class="col-12">
<nav style="--bs-breadcrumb-divider: '';" aria-label="breadcrumb" class="bg-light">
<nav aria-label="breadcrumb" class="bg-dark-subtle text-secondary">
<ol class="breadcrumb">
<li class="breadcrumb-item"><a href="{% url 'shop:index' %}">Shop</a></li>
{% if product %}
Expand Down
7 changes: 7 additions & 0 deletions src/static_src/css/theme-slate.css
Original file line number Diff line number Diff line change
Expand Up @@ -61,6 +61,13 @@
--bs-navbar-toggler-border-color: rgba(255, 255, 255, 0.1);
--bs-btn-close-filter: invert(1) grayscale(100%) brightness(200%);

.table-secondary {
--bs-table-striped-bg: rgba(var(--bs-secondary-bg-rgb), 0.9);
--bs-table-hover-bg: rgba(var(--bs-secondary-color-rgb), 0.2);
--bs-table-bg: rgba(var(--bs-secondary-bg-rgb), 0.8);
--bs-table-color: var(--bs-body-color);
}

/* Default state */
.accordion-button::after {
background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z' fill='%23yourColourHere'/%3e%3c/svg%3e");
Expand Down
7 changes: 7 additions & 0 deletions src/static_src/css/theme-solar.css
Original file line number Diff line number Diff line change
Expand Up @@ -74,6 +74,13 @@
--bs-navbar-toggler-border-color: rgba(255, 255, 255, 0.1);
--bs-btn-close-filter: invert(1) grayscale(100%) brightness(200%);

.table-secondary {
--bs-table-striped-bg: rgba(var(--bs-secondary-bg-rgb), 0.9);
--bs-table-hover-bg: rgba(var(--bs-secondary-color-rgb), 0.2);
--bs-table-bg: rgba(var(--bs-secondary-bg-rgb), 0.8);
--bs-table-color: var(--bs-body-color);
}

/* Default state */
.accordion-button::after {
background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z' fill='%23yourColourHere'/%3e%3c/svg%3e");
Expand Down
7 changes: 7 additions & 0 deletions src/static_src/css/theme-system-dark.css
Original file line number Diff line number Diff line change
Expand Up @@ -63,6 +63,13 @@
--bs-navbar-toggler-border-color: rgba(255, 255, 255, 0.1);
--bs-btn-close-filter: invert(1) grayscale(100%) brightness(200%);

.table-secondary {
--bs-table-striped-bg: rgba(var(--bs-secondary-bg-rgb), 0.9);
--bs-table-hover-bg: rgba(var(--bs-secondary-color-rgb), 0.2);
--bs-table-bg: rgba(var(--bs-secondary-bg-rgb), 0.8);
--bs-table-color: var(--bs-body-color);
}

/* Default state */
.accordion-button::after {
background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z' fill='%23yourColourHere'/%3e%3c/svg%3e");
Expand Down
Loading