Advertisement
Guest User

userstyle

a guest
Apr 15th, 2011
226
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 3.59 KB | None | 0 0
  1. @namespace url(http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul);
  2.  
  3. #navigator-toolbox > #TabsToolbar
  4.   { -moz-binding: url("chrome://global/content/bindings/toolbar.xml#toolbar") !important; }
  5. toolbarspacer
  6.   { -moz-binding: url("chrome://global/content/bindings/toolbar.xml#toolbar-drag") !important; }
  7.  
  8. #bookmarks-menu-button-container,
  9. #feedback-menu-button,
  10. .tabbrowser-arrowscrollbox > .scrollbutton-up,
  11. .tabbrowser-arrowscrollbox > .scrollbutton-down,
  12. .tab-close-button,
  13. #alltabs-button,
  14. .autocomplete-history-dropmarker,
  15. #identity-box,
  16. #urlbar-icons,
  17. .urlbar-origin-label,
  18. #addonbar-closebutton,
  19. #browser-border-start,
  20. #browser-border-end,
  21. #titlebar-buttonbox-container
  22.   { display: none !important; }
  23.  
  24. tab *{
  25. color: #fff !important;
  26. }
  27.  
  28. #titlebar
  29.   { height: 2px !important;
  30.     -moz-appearance: none !important; }
  31.  
  32. #navigator-toolbox
  33.   { margin: 0 !important; }
  34.  
  35. #TabsToolbar
  36.   { background: none !important; }
  37. #tabbrowser-tabs
  38.   { padding-left: 0 !important;
  39.     margin-left: -1px !important;}
  40.  
  41. #browser-bottombox
  42.   { border: none !important; }
  43.  
  44. .tabbrowser-tab
  45.   { background: -moz-linear-gradient(rgba(0,0,0,.075), rgba(0,0,0,0)) !important;
  46.     border: none !important;
  47.     border-radius: 0px 0px 0 0/ 0px 0px 0 0 !important;
  48.     padding: 1px 5px 0 1px !important;
  49.     margin: 0 2px 0 0 !important;}
  50.  
  51. .tabbrowser-tab[selected="true"]
  52.   { background: -moz-linear-gradient(rgba(0,0,0,.5), rgba(0,0,0,0)) !important;}
  53.  
  54. #appmenu-button-container
  55.   { position: fixed !important;
  56.     right: 110px !important;
  57.     top: 2px !important; }
  58. #appmenu-button
  59.   { border: 1px solid rgba(0,0,0,.3) !important;
  60.     height: 18px !important;
  61.     padding: 0 6px 0 1px !important;
  62.     box-shadow: inset 0 0 0px 1px rgba(255,255,255,.2) !important;
  63.     -moz-border-radius:3px !important;
  64.     background: -moz-linear-gradient(rgba(0,0,0,0), rgba(0,0,0,.1)) !important;
  65.     text-shadow: 0 -1px 0px rgba(255,255,255,.8), 0 0 2px rgba(0,0,0,.7), 0 0 0 rgba(0,0,0,.7) !important;
  66.     color: transparent !important;
  67.     font-weight: normal !important;
  68.     min-width: 0 !important; }
  69. #appmenu-button:hover
  70.   { background: -moz-linear-gradient(rgba(0,0,0,.4), rgba(255,255,255,0)) !important; }
  71. #appmenu-button .box-inherit.button-box > .box-inherit { display: none !important; }
  72. #appmenu-button .button-menu-dropmarker:before { content: 'menu' !important; }
  73. #appmenu-button .dropmarker-icon { width: 0 !important; }
  74. #appmenuPrimaryPane { border: none !important; }
  75.  
  76. #urlbar
  77.   { margin: 0px 152px 0px -2px !important;
  78.     color: white !important;
  79.     text-shadow: 1px 1px 2px #000 !important;
  80.     -moz-border-radius: 0 !important;
  81.     border: none !important;
  82.     background: none !important;
  83.     -moz-box-shadow: none !important;}
  84.  
  85. #addon-bar
  86.   { position: fixed;
  87.     top: 2px !important;
  88.     right: 150px  !important;
  89.     background: none !important;
  90.     border: none !important; }
  91.  
  92. statusbarpanel, #addon-bar > toolbarbutton
  93.   { -moz-appearance: none !important;
  94.     border: none !important;
  95.     opacity: .0;
  96.     -moz-transition: opacity .5s .5s !important; }
  97. statusbarpanel:hover, #addon-bar > toolbarbutton:hover
  98.   { opacity: 1;
  99.     -moz-transition: opacity .1s !important; }
  100.  
  101. #statusbar-display
  102.   { position: fixed !important;
  103.     top: -10px !important;
  104.     right: 152px !important;
  105.     left: auto !important;
  106.     margin-top: 0 !important;
  107.     text-align: right !important;
  108.     -moz-transition: none !important; }
  109. .statuspanel-label
  110.   { border-radius: 0 !important;
  111.     background: none !important;
  112.     border: none !important;
  113.     color: #fff !important; }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement