Advertisement
Guest User

userChrome.css

a guest
Apr 29th, 2016
355
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 2.98 KB | None | 0 0
  1. /*
  2. A patchwork userChrome.css designed for use with Treestyle tabs.
  3. If you don't use Treestyle tabs, I can't guarantee that this will look any good.
  4. I also don't know css.
  5. */
  6.  
  7. @namespace url(http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul);
  8. #appcontent,
  9. #appcontent > #content,
  10. #appcontent > #content > tabbox > tabpanels
  11. {
  12.   background: #111111 !important;
  13. }
  14.  
  15. /** TABS **/
  16. tabs#tabbrowser-tabs,
  17. tabs#tabbrowser-tabs *
  18. {
  19.   -moz-appearance: none !important;
  20.   border-radius: 0px !important;
  21.   border: none !important;
  22.   border-bottom: none !important;
  23.   background-image: none !important;
  24.   margin-top: 0px !important;
  25.   margin-bottom: 0px !important;
  26. }
  27.  
  28. .tabbrowser-tab
  29. {
  30.   color: #d1d1d1 !important;
  31.   background: #111111 !important;
  32. }
  33.  
  34. .tabbrowser-tabs .tab-icon-image
  35. {
  36.   display: none !important;
  37. }
  38.  
  39. .tabbrowser-tab[selected=true]
  40. {
  41.   color: #111111 !important;
  42.   background: #d1d1d1 !important;
  43.   border-bottom: 0px !important;
  44.   box-shadow: none !important;
  45. }
  46.  
  47. .tabbrowser-tab .tab-text
  48. {
  49.   margin-left: 0px !important;
  50.   margin-right: 0px !important;
  51.   margin-top: 0px !important;
  52.   padding-top: 0px !important;
  53.   font-family: Terminus !important;
  54.   font-size: 11px !important;
  55. }
  56.  
  57. /** TOP BAR **/
  58. #nav-bar .toolbarbutton-1
  59. {
  60.   background: #111111!important
  61. }
  62.  
  63. #nav-bar
  64. {
  65.   -moz-appearance: none !important;
  66.   background-color: #111111 !important;
  67.   max-height: 20px !important;
  68.   min-height: 20px !important;
  69.   margin: -2px 0 !important;
  70.   padding-left: 0px !important;
  71.   padding-right: 0px !important;
  72.   border: none !important;
  73. }
  74.  
  75. #urlbar-container,
  76. #urlbar
  77. {
  78.   background-color: #111111 !important;
  79.   box-shadow: none !important;
  80.   margin: 0 !important;
  81.   margin-left: 5px !important;
  82.   min-height: 16px !important;
  83.   max-height:20px !Important;
  84.   border:none !important;
  85. }
  86.  
  87. #urlbar
  88. {
  89.   color: #d1d1d1!important;
  90.   font-family: Terminus!important;
  91.   font-size: 8pt !important;
  92.   padding: 0 !important;
  93.   border: none !important;
  94. }
  95.  
  96. #identity-box #identity-icon-label,
  97. #identity-box #identity-icon-labels
  98. {
  99.   font-size: 8px !important;
  100.   font-family: Terminus !important;
  101. }
  102.  
  103. #star-button,
  104. #identity-box,
  105. #notification-popup-box,
  106. #urlbar-icons > image,
  107. #urlbar-container dropmarker,
  108. #appmenu-button .button-text,
  109. #appmenu-button .button-menu-dropmarker,
  110. #back-button,
  111. #forward-button,
  112. #urlbar-go-button,
  113. #urlbar-reload-button,
  114. #urlbar-stop-button,
  115. #developer-button
  116. {
  117.   display:none !important;
  118. }
  119.  
  120. /** URL Dropdown Text **/
  121. .popup-internal-box,
  122. .autocomplete-richlistbox
  123. {
  124.   background-color: #111111 !important;
  125.   border: none !important;
  126.   margin: 0 !important;
  127.   padding: 0 !important;
  128.   font-family: Terminus !important;
  129. }
  130. .ac-url-text
  131. {
  132.   color: #d1d1d1!important;
  133.   font-family: Terminus !important;
  134.   font-size: 11px !important;
  135. }
  136. .autocomplete-richlistitem[selected="true"]
  137. {
  138.   background-color: #d1d1d1!important;
  139.   color: #111111!important;
  140.   font-family: Terminus !important;
  141. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement