This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // @name Sélecteur de Thème Mozaïk (Menu Natif V2) | |
| // @namespace http://tampermonkey.net/ | |
| // @version 4.0 | |
| // @description Ajoute une option "Thème" invisiblement intégrée avec Popup | |
| // @author Willixau | |
| // @match *://*.mozaikportail.ca/* | |
| // @grant none | |
| // ==/UserScript== | |
| (function() { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| @import url('https://googleapis.com'); | |
| @keyframes glissement { | |
| 0% { | |
| transform: translateX(-100%); | |
| opacity: 0; /* Invisible au départ */ | |
| } | |
| 100% { | |
| transform: translateX(0); | |
| opacity: 1; |