1
0
mirror of https://github.com/chylex/Transparent-Twitch-Chat.git synced 2025-04-10 22:15:45 +02:00

What the fuck am I even doing

This commit is contained in:
chylex 2017-05-04 03:10:33 +02:00
parent c394e9fcb7
commit 3bc7aa0d06

View File

@ -17,17 +17,15 @@ function tryRemoveElement(ele){
}
function generateCSS(){
tryRemoveElement(document.getElementById("chylex-ttc-style"));
let style = document.createElement("style");
style.id = "chylex-ttc-style";
document.head.appendChild(style);
let settings = {
chatWidth: 350
};
for(let rule of `
tryRemoveElement(document.getElementById("chylex-ttc-style"));
let style = document.createElement("style");
style.id = "chylex-ttc-style";
style.innerHTML = `
// simulate expandRight style
.theatre .ct-bar--active.ct-bar--ember, .theatre #main_col {
@ -90,17 +88,9 @@ function generateCSS(){
.theatre .chat-container:not(:hover) .chat-interface {
opacity: 0.6;
}`.split("}")){
if (rule.length){
let parsed = rule.replace(/^\/\/(.*?)$/gm, "")+"}";
try{
style.sheet.insertRule(parsed, 0);
}catch(e){
alert("[TransparentTwitchChat] Error adding rule: "+parsed);
}
}
}
}`.replace(/^\/\/(.*?)$/gm, "");
document.head.appendChild(style);
}
generateCSS();