diff --git a/blackboardfix.user.js b/blackboardfix.user.js new file mode 100644 index 0000000..e45ecec --- /dev/null +++ b/blackboardfix.user.js @@ -0,0 +1,34 @@ +// ==UserScript== +// @name Blackboard fix +// @namespace https://srchub.org +// @version 0.1 +// @description Fixes the grade center to actually be usable +// @author Nathan Adams +// @match hhttps://lewisuniversity.blackboard.com/* +// @updateURL https://srchub.org/p/blackboardfix/source/file/master/blackboardfix.user.js +// @downloadURL https://srchub.org/p/blackboardfix/source/file/master/blackboardfix.user.js +// @grant none +// ==/UserScript== +// License: MIT +// +// If you feel this script was useful please send BTC donations to this address: +// 1kqfr9hYPHTwGdMev9b538sSeyLa5h4FR +// + +@-moz-document domain(lewisuniversity.blackboard.com) { + + .gbtable tbody tr td, + + .gbtable tbody tr th, + + .gbtable_header th, + + .gbtable thead th { + + padding: 0px !important; + + height: 0px !important; + + } + +} \ No newline at end of file