Advertisement
Guest User

Untitled

a guest
Aug 30th, 2014
310
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.96 KB | None | 0 0
  1. #browser-bottombox {
  2. border-color: #000 !important;
  3. background: #000 !important;
  4. }
  5. #browser /* This is the "page" element. The content is displayed inside this. */ {
  6. border-top: 1px solid #000 !important; /* set a 1px thin black border on top of it */
  7. margin-top: 1px !important; /* sets a margin, making it 1px away from the top */
  8. }
  9. .tabbrowser-tabs tab /* This is the tab element. This will change a tab's appearance. */ {
  10. border: solid #000 !important;
  11. border-width: 1px 1px 0px 0px !important;
  12. background: #FFF !important;
  13. transition: all .5s !important; /* CSS transitions, you should read about it */
  14. height: 21px !important;
  15. max-height: 21px !important;
  16. min-height: 21px !important;
  17. padding: 3px !important;
  18. padding-top: 3px !important;
  19. text-align: center !important;
  20. margin-top: 0px !important;
  21. line-height: 21px !important;
  22. }
  23. /*.tabbrowser-tabs tab:hover {
  24. background: #fffce4 !important;
  25. } I'm not using this anymore. */
  26. .tabbrowser-tabs tab[selected] /* The [selected] thing here states that this is the appearance of the active tab. The one you're looking at right now. */ {
  27. background: #eee !important;
  28. }
  29. .tabbrowser-tabs tab:first-child /* The first-child selector will change the appearance for the first child of tab. The rest will follow the default one. */ {
  30. border-left: 1px solid #000 !important;
  31. }
  32. /*.tabbrowser-tabs tab:last-child nth-child(2) changes appearance for the second tab child, like the first-child selector does to the first one {
  33. border-right: 1px solid #000 !important;
  34. }*/
  35. .tabbrowser-tabs tab:only-child /* For when there is only ONE tab, this will change its appearance. */ {
  36. background: #FFF !important;
  37. opacity: 0 !important; /* I am making this tab invisible. */
  38. height: 0px !important; /* So it doesn't occupy any space */
  39. min-height: 0px !important;
  40. max-height: 0px !important;
  41. overflow: hidden !important; /* If something inside the element seems to stay outside of it, hide that. Like a straw coming out of a cup. overflow: hidden would hide the part of the straw that stands outside of it. */
  42. transition: all .4s linear, opacity .23s ease !important; /* Different durations for different properties. Read on CSS transitions. */
  43. margin-top: -1px !important; /* So it doesn't keep a 1px line from the top. */
  44. }
  45. .tabbrowser-tabs /* This is the tab container, also known as Tab bar. */ {
  46. background: #e8eac6 !important;
  47. /* border-right: 1px solid #000 !important;*/
  48. margin-left: -4px !important; /* Here I'm adjusting it to fit the whole width of the window */
  49. margin-right: -4px !important; /* Same as above. */
  50. }
  51. #main-window /* The entire window element. This treats the whole window as a "CSS box". Edit it carefully. */ {
  52. background: #000 !important;
  53. margin-top: -18px !important;
  54. border-color: #000 !important;
  55. }
  56. .tabs-newtab-button /* New tab button. The name says it all. */ {
  57. display: none !important; /* Getting rid of it completely. */
  58. }
  59. #browser-border-start, #browser-border-end /* These are annoying borders set on the sides. */ {
  60. background: #000 !important;
  61. border-color: #000 !important;
  62. }
  63. .tab-close-button /* The name says it all. Got rid of it. */ {
  64. display: none !important;
  65. }
  66. #main-window #tabbrowser-tabs tab .tab-throbber,
  67. #main-window #tabbrowser-tabs tab .tab-icon-image,
  68. .tabbrowser-tab:not([pinned]) .tab-icon-image /* This will get rid of the favicons in all tabs. */ {
  69. display: none !important;
  70. }
  71. #addonbar-closebutton /* Close button for the addon-bar, that is hidden by default. Ctrl + / to toggle it. */ {
  72. display: none !important;
  73. }
  74. #urlbar /* URL bar. The name says it all. This is where the address for the current page is displayed. */ {
  75. border: none !important;
  76. font: 8pt Open Sans !important;
  77. height: 20px !important;
  78. padding: 0px !important;
  79. padding-left: 0px !important;
  80. margin-top: 0px !important;
  81. text-align: center !important;
  82. }
  83. #addon-bar /* The addon-bar style. */ {
  84. border-top: 1px solid #000 !important;
  85. height: 20px !important;
  86. background: #FFF !important;
  87. }
  88. #navigator-toolbox:after /* This is a pseudo-selector. There is a line after the navigation bar, be it hidden or not. Here, I'm getting rid of it. */ {
  89. background: #e8eac6 !important;
  90. height: 0px !important;
  91. }
  92. #notification-popup-box,
  93. #identity-box,
  94. #urlbar-reload-button,
  95. #urlbar-stop-button,
  96. #star-button,
  97. #go-button,
  98. .autocomplete-history-dropmarker /* These remove elements from the url bar to give space for just the address. */ {
  99. display: none !important;
  100. }
  101. statuspanel[type="overLink"] /* This gets rid of the bottom panel for when you hover a link. */ {
  102. display: none !important;
  103. }
  104. statuspanel .statuspanel-label /* This styles the bottom panel. It appears when connecting to servers, etc. */ {
  105. border-color: #000 !important;
  106. background: #FFF !important;
  107. color: #000 !important;
  108. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement