Vous avez décidé de m'énerver?
Vous avez décidé de m'énerver?
Code : #
// ==UserScript==
// @description "Largeur navbartop prtbanners"
// @name largeur navbar-top PRTbanners
// @namespace *
// @match https://www.andlil.com/forum/*
// @match https://andlil.com/forum/*
// @match https://www.andlil.com/forum/
// @version 1
// @grant none
// ==/UserScript==
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);
}
// a partir de 1200px de large : Setting à 99%
addGlobalStyle(' @media (min-width:1200px) { .container { width: 95%; } } ');
//Modification de la taille de la font du texte des boutons
addGlobalStyle(' @media (max-width:400px) { .btn { font-size: 9px; } } ');
// Ajout du mode inline pour le list-pagination pour eviter une reour chariot
addGlobalStyle(' .list-pagination { display: inline-block; } ');
//form-control : suppression du height
addGlobalStyle(' .form-control { height: 100%; } ');