Skip to content

Commit

Permalink
modified color changes
Browse files Browse the repository at this point in the history
  • Loading branch information
mart2070 committed May 1, 2024
1 parent 2e1686b commit 680c527
Showing 1 changed file with 11 additions and 3 deletions.
14 changes: 11 additions & 3 deletions tdx-enhanced.js
Original file line number Diff line number Diff line change
Expand Up @@ -219,7 +219,7 @@

let cell = modDate.cell
cell.style.background = `rgba(255,0,0,${alpha}`
cell.classList.add(alpha > 0.5 ? "light" : "dark")
//cell.style.color = alpha > 0.7 ? "#000" : "#fff"
}

//find user replies & last modified by internal
Expand Down Expand Up @@ -297,8 +297,16 @@
});
}

function changeTitle() {
let title = document.querySelector(".organization-link a")
if (title) {
title.innerText = "Purdue University - STEM IT v1"
}
}

getHeadings()
parseTicket()
changeTitle()

GM.addStyle(`
Expand Down Expand Up @@ -350,7 +358,7 @@
--col-highlight-1: #fff3c4;
--col-highlight-2: #e3c4ff;
--col-currentuser: #5de2ad;
--col-modified: #ffd8b2;
--col-modified: #ffe8d1;
}
/* Colors */
Expand Down Expand Up @@ -403,7 +411,7 @@
--col-highlight-1: #625714;
--col-highlight-2: #311462;
--col-currentuser: #09482f;
--col-modified: #66390d;
--col-modified: #30241c;
}
::selection {
Expand Down

0 comments on commit 680c527

Please sign in to comment.