corrige les problèmes d'affichage lors de la correction de controles sur le site campus.promotion-sociale.be
目前為
// ==UserScript==
// @name Campus.ieps
// @namespace http://www.gann.be/
// @version 0.4
// @description corrige les problèmes d'affichage lors de la correction de controles sur le site campus.promotion-sociale.be
// @author Morgan Schaefer www.gann.be
// @match *://campus.promotion-sociale.be/*
// @grant none
// ==/UserScript==
(function() {
'use strict';
function addGlobalStyle(css) {
var head, style;
head = document.getElementsByTagName('head')[0];
if (!head) { return; }
style = document.createElement('style');
style.type = 'text/css';
style.innerHTML = css;
head.appendChild(style);
}
addGlobalStyle('.jsenabled .collapsibleregion{ overflow: visible !important; }');
addGlobalStyle('.container-fluid{ width: auto !important; }');
addGlobalStyle('@media (min-width: 768px) .col-md-9 { max-width: 100% !important;}');
addGlobalStyle('.text-nowrap { white-space: normal !important;}');
})();