Code:
|
* Windows 9x/Me : C:\Windows\Application Data\Mozilla\Firefox\Profiles\chrome\<Nom du profil>\chrome\ ou C:\Windows\Profiles\<Windows login/pseudonyme>\Application Data\Mozilla\Firefox\Profiles\<Nom du profil>\chrome\
* Windows NT 4.x : C:\Winnt\Profiles\<Windows login/pseudonyme>\Application Data\Mozilla\Firefox\Profiles\<Nom du profil>\chrome\
* Windows 2000/XP : C:\Documents and Settings\<Windows login/pseudonyme>\Application Data\Mozilla\Firefox\Profiles\<Nom du profil>\chrome\
* Windows Vista : C:\Utilisateurs\<Windows login/pseudonyme>\Appdata\Roaming\Mozilla\Firefox\<Nom du profil>\chrome\
⚠ Ce dossier est par défaut caché par Windows, vous devez activer afficher les dossiers et fichiers cachés dans l’explorateur, via le menu Outils > Options puis l’onglet Affichage.
* Unix/Linux : ~/.mozilla/firefox/<Nom du profil>/chrome/
* Mac OS X : ~/Library/Mozilla/Firefox/Profiles/<Nom du profil>/chrome/ ou ~/Library/Application Support/Mozilla/Firefox/Profiles/<Nom du profil>/chrome/
|
Code:
|
/* Opacifier les bannières publicitaires by Woxo*/
[src*="ads."], [src*="ads/"],
[src*="doubleclick"],
[href*="doubleclick."] *,
[href*="rd.yahoo.com"] [src*="yimg.com"],
[width="60"][height="468"],
[width="468"][height="60"],
[width="120"][height="600"]
{
-moz-outline: thin dotted red;
-moz-opacity: 0.1;
}
[src*="ads."]:hover, [src*="ads/"]:hover,
[src*="doubleclick"]:hover,
[href*=".doubleclick."] *:hover,
[href*="rd.yahoo.com"] [src*="yimg.com"]:hover,
[width="60"][height="468"]:hover,
[width="468"][height="60"]:hover,
[width="120"][height="600"]:hover
{
-moz-outline: thin dashed red;
-moz-opacity: 1;
}
---------------------------------------------------------------------------
/* Modifier le curseur de la souris sur les liens ouvrant une nouvelle fenêtre */
:link[target="_blank"],
:link[target="_new"],
:visited[target="_blank"],
:visited[target="_new"] { cursor: crosshair; }
--------------------------------------------------------------------------
/* Modifier le curseur de la souris sur les liens JavaScript */
a[href^="javascript:"] { cursor: move; }
----------------------------------------------------------------------------
/* phpBB - Centrer les avatars en largeur */
td.row1Poster img,
td.row2Poster img {
display: block !important;
margin: auto !important;
margin-top: 10px !important;
}
-----------------------------------------------------------------------------
/* Cacher les pubs sur Yahoo! Search */
#yschsec, .yschspns, #yschiy { display: none !important; }
-------------------------------------------------------------------------
/* La barre d'onglets en bas de l'écran */
#content > tabbox
{
-moz-box-direction: reverse;
}
----------------------------------------------------------------------------
/* Centrer horizontalement l'image appelée par
le menu contextuel "Afficher l'image" */
html > body:only-child { background-color: #FFE !important; }
html > body:only-child > img:only-child {
display: block !important;
margin: auto !important;
}
|