芝浦シラバス修正

シラバスが見にくいのを直します

// ==UserScript==
// @name         芝浦シラバス修正
// @namespace    twitter.com/to_ku_me
// @version      0.1
// @description  シラバスが見にくいのを直します
// @author       とくめいっ!
// @match        http://syllabus.sic.shibaura-it.ac.jp/*
// @icon         https://scombz.shibaura-it.ac.jp/favicon.ico
// @grant        none
// ==/UserScript==


document.querySelector(".table_sticky thead tr td").style.position = "static";
let li = document.querySelectorAll(".table_sticky thead:nth-child(2) tr:nth-child(1) th");
for (let i =0;i<li.length;i++){
li[i].style.position = "static";
}

let li2 = document.querySelectorAll(".table_sticky thead:nth-child(2) tr:nth-child(2) th");
for (let i =0;i<li.length;i++){
li2[i].style.position = "static";
}