Advertisement
Guest User

Untitled

a guest
May 8th, 2014
313
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.78 KB | None | 0 0
  1. @namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"); /* set default namespace to XUL */
  2.  
  3. /* Autohide bookmark toolbar */
  4. #PersonalToolbar {
  5. visibility: collapse !important;
  6. }
  7.  
  8. #navigator-toolbox:hover > #PersonalToolbar {
  9. visibility: visible !important;
  10. margin-top: -8px !important;
  11. margin-bottom: -8px !important;
  12. }
  13. /* Kill bookmark icons in the Personal Toolbar */
  14. toolbarbutton.bookmark-item > .toolbarbutton-icon {
  15. display: none;
  16. }
  17.  
  18. /* Kill "normal" bookmark icons in the bookmarks menu */
  19. menuitem.bookmark-item > .menu-iconic-left {
  20. display: none;
  21. }
  22.  
  23. /* Tab bar */
  24. .tab-background {
  25. opacity: 0!important;
  26. }
  27.  
  28. #tabbrowser-tabs {
  29. min-height: 16px !important;
  30. height: 16px !important;
  31. }
  32.  
  33. .tab-content {
  34. margin-top: -10px !important;
  35. }
  36. #TabsToolbar {
  37. margin-bottom: 1px !important;
  38. }
  39. .tabbrowser-tab {
  40. border-top: 0px #F0F0F0 solid !important;
  41. border-radius: 5px !important ;
  42. background: #090909 !important;
  43. }
  44.  
  45. .tabbrowser-tab[selected] {
  46. background: #323232 !important;
  47. }
  48.  
  49. .tabs-newtab-button {
  50. display: -moz-box !important;
  51. visibility: visible !important;
  52. margin-top: -10px !important;
  53. background: unset!important;}
  54.  
  55. .tabbrowser-tab:not([selected]):hover {
  56. text-decoration: underline !important;}
  57.  
  58. /*Frank Small Icon Mode...*/
  59. /*
  60. #back-button > .toolbarbutton-icon {
  61. border-radius: 0px !important;
  62. -moz-image-region: rect(0, 54px, 18px, 36px) !important;
  63. padding-top: 0px !important;
  64. padding-bottom: 0px !important;
  65. }
  66. */
  67. osearchbar er-tabs {max-height : 10px !important;}
  68. .tab-content,.tabs-newtab-button { margin-bottom: 5px !important;}
  69.  
  70. autocomplete-textbox::-moz-placeholder,#urlbar .autocomplete-textbox::-moz-placeholder { color: transparent !important; }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement