Advertisement
Guest User

userchrome.css

a guest
Jul 20th, 2018
110
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 1.41 KB | None | 0 0
  1. @namespace url(http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul);
  2.  
  3. toolbarbutton#alltabs-button {
  4.     -moz-binding: url("userChrome.xml#js");
  5. }
  6.  
  7.  
  8. #titlebar {margin-bottom: -22px !important;}
  9. #tabbrowser-tabs {visibility: collapse !important;}
  10.  
  11. #titlebar-buttonbox {
  12.   position: relative !important;
  13.   overflow-x: hidden !important;
  14.   height: 10px !important;
  15.   -moz-transition: all .2s ease-out .2s !important;
  16. }
  17.  
  18. #titlebar-buttonbox:hover {
  19.   margin-top: -15px !important;
  20.   margin-bottom: 5px !important;
  21.   height: 60px !important;  
  22. }
  23.  
  24.  
  25. [privatebrowsingmode="temporary"] #titlebar {margin-bottom: -22px !important;}
  26. [privatebrowsingmode="temporary"] #tabbrowser-tabs {visibility: collapse !important;}
  27.  
  28. [privatebrowsingmode="temporary"] #titlebar-buttonbox {
  29.   position: relative !important;
  30.   overflow-x: hidden !important;
  31.   height: 10px !important;
  32.   -moz-transition: all .2s ease-out .2s !important;
  33. }
  34. [privatebrowsingmode="temporary"] #titlebar-buttonbox:hover {
  35.   margin-top: -15px !important;
  36.   margin-bottom: 5px !important;
  37.   height: 60px !important;  
  38. }
  39.  
  40. [privatebrowsingmode="temporary"] #TabsToolbar {
  41.     visibility: collapse !important;
  42. }
  43. [privatebrowsingmode="temporary"] #titlebar-spacer {
  44.   background-image: url("chrome://browser/skin/private-browsing.svg");
  45.   background-repeat: no-repeat;
  46.   background-position: right;
  47. }  
  48.  
  49. #sidebar-header { display: none; }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement