<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" media="screen" href="/~d/styles/rss2full.xsl"?><?xml-stylesheet type="text/css" media="screen" href="http://feeds.feedburner.com/~d/styles/itemcontent.css"?><rss xmlns:atom="http://www.w3.org/2005/Atom" xmlns:openSearch="http://a9.com/-/spec/opensearch/1.1/" xmlns:georss="http://www.georss.org/georss" xmlns:gd="http://schemas.google.com/g/2005" xmlns:thr="http://purl.org/syndication/thread/1.0" xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0" version="2.0"><channel><atom:id>tag:blogger.com,1999:blog-7378590437549294728</atom:id><lastBuildDate>Fri, 17 Feb 2012 00:59:30 +0000</lastBuildDate><title>alct+</title><description>&amp;lt; Place where I tell a little bit more than on Twitter /&amp;gt;</description><link>http://alctplus.blogspot.com/</link><managingEditor>noreply@blogger.com (alct)</managingEditor><generator>Blogger</generator><openSearch:totalResults>5</openSearch:totalResults><openSearch:startIndex>1</openSearch:startIndex><openSearch:itemsPerPage>25</openSearch:itemsPerPage><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" type="application/rss+xml" href="http://feeds.feedburner.com/alct" /><feedburner:info uri="alct" /><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com/" /><item><guid isPermaLink="false">tag:blogger.com,1999:blog-7378590437549294728.post-6170019130753623577</guid><pubDate>Thu, 22 Jul 2010 10:30:00 +0000</pubDate><atom:updated>2010-10-21T04:06:57.964+02:00</atom:updated><title>Firefox 4 (beta) : how to move the orange button</title><description>&lt;p&gt;Firefox 4 (beta) release came out with a brand new &lt;acronym title="User Interface"&gt;UI&lt;/acronym&gt; layout. Whether you like it or not, there's something you've got to deal with : the blank space at the top of the tabs, next to the orange "Firefox" (application menu) button.&lt;/p&gt;&lt;p&gt;&lt;img alt="Picture uploaded with Upic" height="154px" src="http://omicronlab.net/upic/4c48196e-d4f.png" width="154px" /&gt; &lt;img alt="Picture uploaded with Upic" height="154px" src="http://omicronlab.net/upic/4c481019-b6d.png" width="154px" /&gt;&lt;/p&gt;&lt;p&gt;There's a quite simple way to get rid of this wasted blank space (and by the way, optimize the viewport).&lt;/p&gt;&lt;p&gt;Indeed, fixing the position (thanks to Chrome custom &lt;acronym title="Cascading Style Sheets"&gt;CSS&lt;/acronym&gt;) of the appmenu and setting a small value for tabs top margin will solve our problem.&lt;/p&gt;&lt;p&gt;&lt;img alt="Picture uploaded with Upic" height="154px" src="http://omicronlab.net/upic/4c48199c-1ed9.png" width="154px" /&gt; &lt;img alt="Picture uploaded with Upic" height="154px" src="http://omicronlab.net/upic/4c4819af-2434.png" width="154px" /&gt;&lt;/p&gt;&lt;p&gt;First you'll have to locate your Firefox chrome folder.&lt;br /&gt;
On Windows :&lt;/p&gt;&lt;blockquote&gt;C:\Users\&lt;span style="font-weight: bold; font-style: italic;"&gt;username&lt;/span&gt;\AppData\Roaming\Mozilla\Firefox\Profiles\&lt;span style="font-weight: bold; font-style: italic;"&gt;randomChars&lt;/span&gt;.default\chrome&lt;br /&gt;
&lt;/blockquote&gt;&lt;p&gt;Then, create a new file that you name "userChrome.css" in which you add this piece of code :&lt;/p&gt;&lt;blockquote&gt;#appmenu-button-container {&lt;br /&gt;
position: fixed !important;&lt;br /&gt;
}&lt;br /&gt;
#appmenu-button {&lt;br /&gt;
padding: 3px 10px !important;&lt;br /&gt;
margin-top: -1px !important;&lt;br /&gt;
margin-left: 1px !important;&lt;br /&gt;
}&lt;br /&gt;
#navigator-toolbox[tabsontop="true"] #TabsToolbar {&lt;br /&gt;
padding-left: 80px !important;&lt;br /&gt;
padding-top: 3px !important;&lt;br /&gt;
padding-right: 110px !important;&lt;br /&gt;
}&lt;/blockquote&gt;&lt;p&gt;Save the file. Restart Firefox and that's it.&lt;/p&gt;&lt;p&gt;&lt;strong&gt;Edit (2010/07/23 - 00:37 AM CEST) :&lt;/strong&gt; of course, since you can use CSS on this element, you can give it the style you want, add picture and/or replace the text.&lt;/p&gt;&lt;p&gt;&lt;img src="http://omicronlab.net/upic/4c494643-21c9.png" width="154px" height="154px" alt="Picture uploaded with Upic" /&gt; &lt;img src="http://omicronlab.net/upic/4c4948ea-26d5.png" width="154px" height="154px" alt="Picture uploaded with Upic" /&gt;&lt;/p&gt;&lt;p&gt;And here comes the CSS,&lt;/p&gt;&lt;blockquote&gt;#appmenu-button-container {&lt;br /&gt;
position: fixed !important;&lt;br /&gt;
}&lt;br /&gt;
#appmenu-button {&lt;br /&gt;
padding: 3px 10px !important;&lt;br /&gt;
margin-top: -1px !important;&lt;br /&gt;
margin-left: 1px !important;&lt;br /&gt;
background: url('http://omicronlab.net/upic/4c48c3d1-f83.png') #e4780e no-repeat -5px -5px !important;&lt;br /&gt;
border: 2px solid !important;&lt;br /&gt;
border-top: none !important;&lt;br /&gt;
-moz-border-radius: 0 0 4px 4px !important;&lt;br /&gt;
-moz-border-left-colors: rgba(255,255,255,.5) rgba(83,42,6,.9) !important;&lt;br /&gt;
-moz-border-bottom-colors: rgba(255,255,255,.5) rgba(83,42,6,.9) !important;&lt;br /&gt;
-moz-border-right-colors: rgba(255,255,255,.5) rgba(83,42,6,.9) !important;&lt;br /&gt;
-moz-box-shadow: 0 1px 0 rgba(255,255,255,.25) inset, 0 0 0 1px rgba(255,255,255,.40) inset !important;&lt;br /&gt;
}&lt;br /&gt;
#appmenu-button:-moz-window-inactive {&lt;br /&gt;
-moz-box-shadow: 0 1px 0 rgba(255,255,255,.25) inset, 0 0 0 1px rgba(255,255,255,.35) inset !important;&lt;br /&gt;
background-color: transparent !important;&lt;br /&gt;
}&lt;br /&gt;
#appmenu-button:hover:not(:active):not([open]),&lt;br /&gt;
#appmenu-button:hover:-moz-window-inactive:not(:active):not([open]) {&lt;br /&gt;
-moz-box-shadow: 0 1px 0 rgba(255,255,255,.1) inset, 0 0 2px 1px rgba(250,234,169,.7) inset, 0 -1px 0 rgba(250,234,169,.5) inset !important;&lt;br /&gt;
}&lt;br /&gt;
#navigator-toolbox[tabsontop="true"] #TabsToolbar {&lt;br /&gt;
padding-left: 80px !important;&lt;br /&gt;
padding-top: 3px !important;&lt;br /&gt;
padding-right: 110px !important;&lt;br /&gt;
}&lt;br /&gt;
#appmenu-button .button-text {&lt;br /&gt;
display: none !important;&lt;br /&gt;
}&lt;br /&gt;
#appmenu-button dropmarker:before {&lt;br /&gt;
content: "MFx " !important;&lt;br /&gt;
}&lt;/blockquote&gt;&lt;p&gt;&lt;strong id="beta5-update"&gt;Edit (2010/09/09 - 07:25 PM CEST) :&lt;/strong&gt; updated version of the previous code. Now it works on &lt;em&gt;Mozilla Firefox 4 &lt;span style="color: darkred;"&gt;beta 5&lt;/span&gt;&lt;/em&gt;&lt;/p&gt;&lt;blockquote&gt;#appmenu-button-container {&lt;br /&gt;
position: fixed !important;&lt;br /&gt;
}&lt;br /&gt;
#appmenu-button {&lt;br /&gt;
padding: 3px 10px !important;&lt;br /&gt;
margin-top: -1px !important;&lt;br /&gt;
margin-left: 1px !important;&lt;br /&gt;
background: url('http://omicronlab.net/upic/4c48c3d1-f83.png') #e4780e no-repeat -5px -5px !important;&lt;br /&gt;
border: 2px solid !important;&lt;br /&gt;
border-top: none !important;&lt;br /&gt;
-moz-border-radius: 0 0 4px 4px !important;&lt;br /&gt;
-moz-border-left-colors: rgba(255,255,255,.5) rgba(83,42,6,.9) !important;&lt;br /&gt;
-moz-border-bottom-colors: rgba(255,255,255,.5) rgba(83,42,6,.9) !important;&lt;br /&gt;
-moz-border-right-colors: rgba(255,255,255,.5) rgba(83,42,6,.9) !important;&lt;br /&gt;
-moz-box-shadow: 0 1px 0 rgba(255,255,255,.25) inset, 0 0 0 1px rgba(255,255,255,.40) inset !important;&lt;br /&gt;
}&lt;br /&gt;
#appmenu-button:-moz-window-inactive {&lt;br /&gt;
-moz-box-shadow: 0 1px 0 rgba(255,255,255,.25) inset, 0 0 0 1px rgba(255,255,255,.35) inset !important;&lt;br /&gt;
background-color: transparent !important;&lt;br /&gt;
}&lt;br /&gt;
#appmenu-button:hover:not(:active):not([open]),&lt;br /&gt;
#appmenu-button:hover:-moz-window-inactive:not(:active):not([open]) {&lt;br /&gt;
-moz-box-shadow: 0 1px 0 rgba(255,255,255,.1) inset, 0 0 2px 1px rgba(250,234,169,.7) inset, 0 -1px 0 rgba(250,234,169,.5) inset !important;&lt;br /&gt;
}&lt;br /&gt;
#navigator-toolbox[tabsontop="true"] #TabsToolbar {&lt;br /&gt;
padding: 3px 110px 0 80px !important;&lt;br /&gt;
margin-top: -29px;&lt;br /&gt;
}&lt;br /&gt;
#main-window[sizemode=maximized] #navigator-toolbox[tabsontop="true"] #TabsToolbar {&lt;br /&gt;
margin-top: -24px;&lt;br /&gt;
}&lt;br /&gt;
#appmenu-button .button-text {&lt;br /&gt;
display: none !important;&lt;br /&gt;
}&lt;br /&gt;
#appmenu-button dropmarker:before {&lt;br /&gt;
content: "MFx " !important;&lt;br /&gt;
}&lt;/blockquote&gt;&lt;br /&gt;
&lt;p&gt;&lt;strong id="beta8-update"&gt;Edit (2010/09/21 - 02:12 AM CEST) :&lt;/strong&gt; updated version of the previous code. Since the Orange button margin top layout bug has been fixed, the -1px margin hack is no more needed (this value is now set to 0). &lt;em&gt;Mozilla Firefox 4 &lt;span style="color: darkred;"&gt;beta 8&lt;/span&gt;&lt;/em&gt;&lt;/p&gt;&lt;blockquote&gt;#appmenu-button-container {&lt;br /&gt;
position: fixed !important;&lt;br /&gt;
}&lt;br /&gt;
#appmenu-button {&lt;br /&gt;
padding: 3px 10px !important;&lt;br /&gt;
margin-top: 0 !important;&lt;br /&gt;
margin-left: 1px !important;&lt;br /&gt;
background: url('http://omicronlab.net/upic/4c48c3d1-f83.png') #e4780e no-repeat -5px -5px !important;&lt;br /&gt;
border: 2px solid !important;&lt;br /&gt;
border-top: none !important;&lt;br /&gt;
-moz-border-radius: 0 0 4px 4px !important;&lt;br /&gt;
-moz-border-left-colors: rgba(255,255,255,.5) rgba(83,42,6,.9) !important;&lt;br /&gt;
-moz-border-bottom-colors: rgba(255,255,255,.5) rgba(83,42,6,.9) !important;&lt;br /&gt;
-moz-border-right-colors: rgba(255,255,255,.5) rgba(83,42,6,.9) !important;&lt;br /&gt;
-moz-box-shadow: 0 1px 0 rgba(255,255,255,.25) inset, 0 0 0 1px rgba(255,255,255,.40) inset !important;&lt;br /&gt;
}&lt;br /&gt;
#appmenu-button:-moz-window-inactive {&lt;br /&gt;
-moz-box-shadow: 0 1px 0 rgba(255,255,255,.25) inset, 0 0 0 1px rgba(255,255,255,.35) inset !important;&lt;br /&gt;
background-color: transparent !important;&lt;br /&gt;
}&lt;br /&gt;
#appmenu-button:hover:not(:active):not([open]),&lt;br /&gt;
#appmenu-button:hover:-moz-window-inactive:not(:active):not([open]) {&lt;br /&gt;
-moz-box-shadow: 0 1px 0 rgba(255,255,255,.1) inset, 0 0 2px 1px rgba(250,234,169,.7) inset, 0 -1px 0 rgba(250,234,169,.5) inset !important;&lt;br /&gt;
}&lt;br /&gt;
#navigator-toolbox[tabsontop="true"] #TabsToolbar {&lt;br /&gt;
padding: 3px 110px 0 80px !important;&lt;br /&gt;
margin-top: -29px;&lt;br /&gt;
}&lt;br /&gt;
#main-window[sizemode=maximized] #navigator-toolbox[tabsontop="true"] #TabsToolbar {&lt;br /&gt;
margin-top: -24px;&lt;br /&gt;
}&lt;br /&gt;
#appmenu-button .button-text {&lt;br /&gt;
display: none !important;&lt;br /&gt;
}&lt;br /&gt;
#appmenu-button dropmarker:before {&lt;br /&gt;
content: "MFx " !important;&lt;br /&gt;
}&lt;/blockquote&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7378590437549294728-6170019130753623577?l=alctplus.blogspot.com' alt='' /&gt;&lt;/div&gt;</description><link>http://feedproxy.google.com/~r/alct/~3/NKK7h39rGlQ/firefox-4-beta-how-to-move-orange.html</link><author>noreply@blogger.com (alct)</author><thr:total>18</thr:total><feedburner:origLink>http://alctplus.blogspot.com/2010/07/firefox-4-beta-how-to-move-orange.html</feedburner:origLink></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-7378590437549294728.post-6867972665282056864</guid><pubDate>Tue, 22 Sep 2009 16:39:00 +0000</pubDate><atom:updated>2009-09-22T20:37:09.891+02:00</atom:updated><title>Social Engineering</title><description>&lt;p&gt;&lt;a href="http://plus7.arte.tv/fr/1697660,CmC=2848364,scheduleId=2809450.html"&gt;Reportage ARTE - Les YES Men refont le monde&lt;/a&gt;&lt;/p&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7378590437549294728-6867972665282056864?l=alctplus.blogspot.com' alt='' /&gt;&lt;/div&gt;</description><link>http://feedproxy.google.com/~r/alct/~3/7CsNt5A4jVE/hacking-citoyen.html</link><author>noreply@blogger.com (alct)</author><thr:total>0</thr:total><feedburner:origLink>http://alctplus.blogspot.com/2009/09/hacking-citoyen.html</feedburner:origLink></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-7378590437549294728.post-6545043491260907679</guid><pubDate>Thu, 17 Sep 2009 23:01:00 +0000</pubDate><atom:updated>2009-09-18T01:02:43.850+02:00</atom:updated><title>Astuce (new website post)</title><description>&lt;p&gt;&lt;a href="http://andreloconte.com/articles/miniatures-des-fichiers-photoshop-psd-sous-windows.html"&gt;&lt;strong&gt;Miniatures des fichiers Photoshop (.psd) sous Windows&lt;/strong&gt;&lt;/a&gt;&lt;/p&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7378590437549294728-6545043491260907679?l=alctplus.blogspot.com' alt='' /&gt;&lt;/div&gt;</description><link>http://feedproxy.google.com/~r/alct/~3/FRPhWZW1lVs/new-tip.html</link><author>noreply@blogger.com (alct)</author><thr:total>0</thr:total><feedburner:origLink>http://alctplus.blogspot.com/2009/09/new-tip.html</feedburner:origLink></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-7378590437549294728.post-1266421900770193095</guid><pubDate>Thu, 10 Sep 2009 16:20:00 +0000</pubDate><atom:updated>2010-07-23T11:44:04.919+02:00</atom:updated><title>Ménage et mise en forme Blogger</title><description>&lt;p&gt;Les modèles d'habillage proposés par Blogger &lt;strike&gt;étant plus laids les uns que les autres&lt;/strike&gt; ne comblant pas mes attentes, j'ai personnalisé le thème de base (minima) pour le rendre réellement simple.&lt;/p&gt;&lt;p&gt;La barre de navigation dédiée (en haut de page) et le watermark Google (sous le formulaire de recherche) ont été retirés grâce à une astuce CSS :&lt;/p&gt;&lt;blockquote&gt;#navbar-iframe {&lt;br /&gt;
display: none !important;&lt;br /&gt;
}&lt;br /&gt;
.gsc-branding {&lt;br /&gt;
display: none !important;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
/* Variable definitions&lt;/blockquote&gt;&lt;p&gt;J'utiliserai ce blog majoritairement en remplacement à &lt;a href="http://tinypaste.com/"&gt;TinyPaste&lt;/a&gt; afin de palier au peu de nombre de caractères autorisés dans Twitter.&lt;/p&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7378590437549294728-1266421900770193095?l=alctplus.blogspot.com' alt='' /&gt;&lt;/div&gt;</description><link>http://feedproxy.google.com/~r/alct/~3/pwwu-Emcx_E/menage-et-mise-en-forme-blogger.html</link><author>noreply@blogger.com (alct)</author><thr:total>0</thr:total><feedburner:origLink>http://alctplus.blogspot.com/2009/09/menage-et-mise-en-forme-blogger.html</feedburner:origLink></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-7378590437549294728.post-2595624427346435923</guid><pubDate>Thu, 10 Sep 2009 11:32:00 +0000</pubDate><atom:updated>2009-09-10T18:22:24.651+02:00</atom:updated><title>Hello world</title><description>Enjoy your stay&amp;nbsp; !&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7378590437549294728-2595624427346435923?l=alctplus.blogspot.com' alt='' /&gt;&lt;/div&gt;</description><link>http://feedproxy.google.com/~r/alct/~3/diarYtTzrig/hello-world.html</link><author>noreply@blogger.com (alct)</author><thr:total>0</thr:total><feedburner:origLink>http://alctplus.blogspot.com/2009/09/hello-world.html</feedburner:origLink></item></channel></rss>

