Created
October 6, 2009 17:41
-
-
Save berdosi/203234 to your computer and use it in GitHub Desktop.
This file contains 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
/* | |
* Do not remove the @namespace line -- it's required for correct functioning | |
*/ | |
@namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"); /* set default namespace to XUL */ | |
/* a menü jobb szélére pakolom a menüt, és felhúzom oda a toolbar nagy részét. A menü csak akkor lesz teljes méretű, ha az egér fölé ér. TinyMenu extension helyett :) */ | |
menubar { | |
width: 24px; | |
overflow: hidden; | |
} | |
menubar:hover { | |
width: 100%; | |
} | |
/* kis customizálás... :) */ | |
#urlbar { | |
-moz-appearance: none !important; | |
-moz-border-radius: 3px !important; | |
padding-right: 1px !important; | |
} | |
/* Remove separators between toolbars*/ | |
#toolbar-menubar { | |
min-height: 12px !important; | |
padding: 0px !important; | |
margin: 0px !important; | |
border: none !important; | |
} | |
#nav-bar { | |
border: none !important; | |
padding: 0px !important; | |
} | |
#PersonalToolbar { | |
border: none !important; | |
} | |
#navigator-toolbox { | |
border: none !important; | |
} | |
/* Remove Stop button when there's nothing to Stop */ | |
#stop-button[disabled="true"] { display: none; } | |
/* Remove Back button when there's nothing to go Back to */ | |
#back-button[disabled="true"] { display: none; } | |
/* Remove Forward button when there's nothing to go Forward to */ | |
#forward-button[disabled="true"] { display: none; } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment