Skip to content

Commit

Permalink
Merge branch 'hotfix-2025-11-10'
Browse files Browse the repository at this point in the history
Fixes minor coloring issues regarding the new A.I. features, as well as
some changes to the ticket edit window
  • Loading branch information
ejunga committed Nov 10, 2025
2 parents 79b17f5 + 67064c3 commit 4826aeb
Showing 1 changed file with 19 additions and 2 deletions.
21 changes: 19 additions & 2 deletions tdx-enhanced.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
// ==UserScript==
// @name tdx-enhanced
// @namespace purdue-it
// @version 2025-08-07-01
// @version 2025-11-10-00
// @description enhanced tdx coloring & formatting. follows system color scheme.
// @author Purdue STEM IT - it@purdue.edu
// @match https://service.purdue.edu/TDWorkManagement*
Expand Down Expand Up @@ -2463,6 +2463,10 @@ div.input-group .input-group-btn .btn-file:last-child {
border-color: var(--border-0) !important;
}
.k-input {
background-color: var(--bg-0) !important;
}
.k-input-solid {
background-color: var(--bg-0);
}
Expand Down Expand Up @@ -3774,7 +3778,7 @@ body .tdworkmgmt.table>tbody>tr:not(.tdx-grid__group-header):not(.TDGridHeader):
}
.list-group-item {
background-color: var(--bg-0);
background-color: var(--bg-0) !important;
border-color: var(--border-0);
}
Expand All @@ -3799,6 +3803,7 @@ body .tdworkmgmt.table>tbody>tr:not(.tdx-grid__group-header):not(.TDGridHeader):
.cke_combo_text {
color: var(--txt-2) !important;
background-color: var(--bg-0) !important;
}
.cke_panel_grouptitle {
Expand Down Expand Up @@ -3974,6 +3979,18 @@ div.profile-image.red-bg, div.profile-image.green-bg, div.profile-image.red-bg,
color: var(--col-300) !important;
}
.icon-button {
color: var(--col-400) !important;
}
.tdx-view-ticket-summary #divSummaryHeading a {
color: var(--col-400);
}
.tdx-view-ticket-summary #divSummaryHeading a #spnCopySummaryIcon {
color: var(--col-400);
}
/* Icons + Filters */
.tdx-dropdown__menu-icon,
.tdx-dropdown--headline:after,
Expand Down

0 comments on commit 4826aeb

Please sign in to comment.