hack: workaround for css not loading

This commit is contained in:
nafunii 2022-01-10 11:46:25 +08:00
parent fded1aa0e0
commit 3a640b0a3d
No known key found for this signature in database
GPG key ID: 0A82862EF6000AE3

View file

@ -1,5 +1,5 @@
chrome.storage.sync.get('a1', ({ a1 }) => {
setTimeout(function() {
document.querySelector(':root').style.setProperty('--color-calendar-graph-day-L4-bg', a1 + "ff", "important");
document.querySelector(':root').style.setProperty('--color-calendar-graph-day-L3-bg', a1 + "c5", "important");
document.querySelector(':root').style.setProperty('--color-calendar-graph-day-L2-bg', a1 + "8a", "important");
@ -12,4 +12,5 @@ chrome.storage.sync.get('a1', ({ a1 }) => {
for (let i = 0; i < document.querySelectorAll('.Progress-item.rounded-2').length; i++) {
document.querySelectorAll('.Progress-item.rounded-2')[i].style.setProperty('background-color', a1 + "ff", "important");
}
}, 1000);
});