Advertisement
Guest User

Untitled

a guest
Apr 14th, 2017
71
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 0.87 KB | None | 0 0
  1. @namespace url(http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul);
  2.  
  3.  
  4. /* remove borders */
  5.  
  6. * {
  7.          border: none !important;
  8. }
  9.  
  10.  
  11. /* remove scroll bar */
  12.  
  13. browser {
  14.     margin-right: -15px !important;
  15.     margin-bottom: -15px !important;
  16. }
  17.  
  18.  
  19. /* change colors */
  20.  
  21.  
  22. #nav-bar, .tabbrowser-tab[selected] {
  23.         background: #f2f2f2 !important;
  24. }
  25.  
  26.  
  27. /* resize tabs */
  28.  
  29. .tabbrowser-tab[fadein] {
  30.     max-width: 100px  !important;
  31. }
  32.  
  33.  
  34. /* make tabs square */
  35.  
  36. .arrowscrollbox-scrollbox {
  37.     padding: 0 !important;
  38. }
  39.  
  40. .tabs-newtab-button {
  41.     background: transparent !important;
  42. }
  43.  
  44. .tab-background {
  45.     margin: 0 !important;
  46.     background: transparent !important;
  47. }
  48.  
  49. .tab-background-start, .tab-background-end {
  50.     display: none !important;
  51. }
  52.  
  53. .tab-background-middle {
  54.     margin: -4px -2px !important;
  55.     background: transparent !important;
  56. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement