From 21d776a1e4a7cbc0040a52516648a7147e584115 Mon Sep 17 00:00:00 2001 From: ejunga Date: Wed, 19 Nov 2025 09:22:53 -0500 Subject: [PATCH 1/2] Force contrastive color for description text --- tdx-enhanced.js | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/tdx-enhanced.js b/tdx-enhanced.js index 014219e..9b2e327 100644 --- a/tdx-enhanced.js +++ b/tdx-enhanced.js @@ -3989,6 +3989,10 @@ div.profile-image.red-bg, div.profile-image.green-bg, div.profile-image.red-bg, color: var(--col-400) !important; } +.ticket-desc *:not(a), .ticket-desc *:not(a) { + color: var(--txt-1) !important; +} + .tdx-view-ticket-summary #divSummaryHeading a { color: var(--col-400); } From 0d2dfd94e6f0ac3357e3d54e719f71276098521d Mon Sep 17 00:00:00 2001 From: ejunga Date: Tue, 25 Nov 2025 09:24:29 -0500 Subject: [PATCH 2/2] Fix for short descriptions --- tdx-enhanced.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tdx-enhanced.js b/tdx-enhanced.js index 9b2e327..837a37e 100644 --- a/tdx-enhanced.js +++ b/tdx-enhanced.js @@ -3989,7 +3989,7 @@ div.profile-image.red-bg, div.profile-image.green-bg, div.profile-image.red-bg, color: var(--col-400) !important; } -.ticket-desc *:not(a), .ticket-desc *:not(a) { +.wrap-text *:not(a), .moreToggle *:not(a), .lessToggle *:not(a) { color: var(--txt-1) !important; }