Advertisement
Guest User

Untitled

a guest
Jul 16th, 2018
108
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.74 KB | None | 0 0
  1. /* Frank edited file - you are good to go...*/
  2.  
  3. /*
  4. * Do not remove the @namespace line -- it's required for correct functioning
  5. */
  6. @namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"); /* set default namespace to XUL */
  7.  
  8. /* /* Frank edited file - you are good to go...*/
  9.  
  10.  
  11. @namespace url(http://www.w3.org/1999/xhtml);
  12.  
  13. @-moz-document url-prefix("moz-extension://f309e4a9-3788-4906-a85e-da8bd787ee57/") {
  14. body { background-color: #222 !important; color: #ccc !important; }
  15. a { color: #8ad !important; }
  16. h2 { background-color: #444 !important; color: #eee !important; }
  17. code { background-color: #555 !important; }
  18. #switch .fa { color: #369 !important; }
  19. body.off #switch .fa { color: #555 !important; }
  20. .tool { color: #999 !important; }
  21. .tool.enabled:hover { color: #8ad !important; }
  22. .permatoolbar { background-color: #333 !important; }
  23. .permatoolbar .button { background-color: #444 !important; }
  24. .permatoolbar .button:hover { background-color: #666 !important; }
  25. #tooltip { background-color: #ccc !important; border: 1px solid #111 !important; color: #111 !important; }
  26. #firewallContainer > div { background-color: #333 !important; }
  27. #firewallContainer > div:hover { background-color: #444 !important; }
  28. #firewallContainer > div > span { color: #eee !important; border-bottom: 1px solid #111 !important; }
  29. #firewallContainer > div > span:first-of-type ~ span { border-left: 1px solid #111 !important; }
  30. #extraTools { background-color: #444 !important; }
  31. #extraTools > span:hover { color: #8ad !important; }
  32. #dashboard-nav-widgets { background-color: #111 !important; border-bottom: 1px solid #666 !important; }
  33. .tabButton { background-color: #444 !important; border: 1px solid #666 !important; border-bottom: 1px solid #666 !important; color: #eee !important; }
  34. .tabButton.selected { background-color: #222 !important; border-bottom: 1px solid #222 !important; }
  35. #diff li { background-color: #555 !important; }
  36. #diff li:nth-child(even) { background-color: #666 !important; }
  37. #diff textarea { background-color: #333 !important; color: #ccc !important; }
  38. }
  39.  
  40. #main-window #PersonalToolbar {
  41. visibility: collapse !important;
  42. opacity:0 !important;
  43. margin-top: -23px !important;
  44. transition: all 0.2s ease 0.2s !important;
  45. }
  46.  
  47. #main-window[title^="Mozilla Firefox"] #PersonalToolbar,
  48. #main-window[title^="about:newtab"] #PersonalToolbar,
  49. #main-window[title^="New Tab"] #PersonalToolbar,
  50. #main-window[title^="Firefox"] #PersonalToolbar,
  51. #main-window[title^="Nightly"] #PersonalToolbar {
  52. visibility: visible !important;
  53. margin-top: 0px !important;
  54. transition: all 0.2s ease 0.2s !important;
  55. opacity: 1 !important;
  56. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement