diff --git a/InvenTree/InvenTree/static/css/inventree.css b/InvenTree/InvenTree/static/css/inventree.css
index 18e772acfd..9a7847e8df 100644
--- a/InvenTree/InvenTree/static/css/inventree.css
+++ b/InvenTree/InvenTree/static/css/inventree.css
@@ -1,6 +1,6 @@
:root {
--primary-color: #335d88;
- --secondary-color: #e4dfdf;
+ --secondary-color: #f7f5ee;
--highlight-color: #f5efe8;
--border-color: #ccc;
@@ -11,7 +11,7 @@
--label-grey: #aaa;
--label-yellow: #fdc82a;
- --bs-body-color: #555;
+ --bs-body-color: #68686a;
}
.login-screen {
@@ -441,7 +441,7 @@
float: right;
}
-.badge {
+.badge-right {
float: right;
}
diff --git a/InvenTree/templates/js/translated/company.js b/InvenTree/templates/js/translated/company.js
index a14badc5f5..0e71ad99b1 100644
--- a/InvenTree/templates/js/translated/company.js
+++ b/InvenTree/templates/js/translated/company.js
@@ -501,7 +501,7 @@ function loadManufacturerPartTable(table, url, options) {
}
if (!row.part_detail.active) {
- html += `{% trans "Inactive" %}`;
+ html += `{% trans "Inactive" %}`;
}
return html;
@@ -758,7 +758,7 @@ function loadSupplierPartTable(table, url, options) {
}
if (!row.part_detail.active) {
- html += `{% trans "Inactive" %}`;
+ html += `{% trans "Inactive" %}`;
}
return html;
diff --git a/InvenTree/templates/js/translated/model_renderers.js b/InvenTree/templates/js/translated/model_renderers.js
index a1602f42c4..38ea7b70f0 100644
--- a/InvenTree/templates/js/translated/model_renderers.js
+++ b/InvenTree/templates/js/translated/model_renderers.js
@@ -172,7 +172,7 @@ function renderPart(name, data, parameters, options) {
}
if (!data.active) {
- extra += `{% trans "Inactive" %}`;
+ extra += `{% trans "Inactive" %}`;
}
html += `
diff --git a/InvenTree/templates/js/translated/part.js b/InvenTree/templates/js/translated/part.js
index 4a1df9647a..2d18033c23 100644
--- a/InvenTree/templates/js/translated/part.js
+++ b/InvenTree/templates/js/translated/part.js
@@ -451,7 +451,7 @@ function makePartIcons(part) {
}
if (!part.active) {
- html += `{% trans "Inactive" %}`;
+ html += `{% trans "Inactive" %}`;
}
return html;
@@ -528,7 +528,7 @@ function loadPartVariantTable(table, partId, options={}) {
}
if (!row.active) {
- html += `{% trans "Inactive" %}`;
+ html += `{% trans "Inactive" %}`;
}
return html;