Advertisement
Guest User

Quick and dirty palemoon CSS

a guest
Jul 9th, 2015
596
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.36 KB | None | 0 0
  1. @namespace url(http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul);
  2.  
  3. /*tab Ricing*/
  4.  
  5. #TabsToolbar {
  6. background: #102533 !important;
  7. border-bottom: #777 0px solid !important;
  8. height: 22px !important;
  9. }
  10.  
  11. .tabbrowser-tab {
  12. border: none !important;
  13. border-radius: 0 !important;
  14. margin-left: -1px !important;
  15. padding: 0 6px 0 6px !important
  16. }
  17.  
  18. .tabbrowser-tab[selected="true"] {
  19. border: #777 0px solid !important;
  20. border-top: #BB4D66 2px solid !important;
  21. border-left: #BB4D66 2px solid !important;
  22. border-right: #BB4D66 3px solid !important;
  23. border-bottom: none !important;
  24. background: #102533 !important;
  25. color: #BB4D66 !important;
  26. }
  27.  
  28. .tabbrowser-tab:not([selected="true"]) {
  29. border: #777 0px solid !important;
  30. border-top: none !important;
  31. border-bottom: #BB4D66 2px solid !important;
  32. background: #102533 !important;
  33. color: #46787F !important;
  34. }
  35.  
  36. .tabs-newtab-button {
  37. background: transparent !important;
  38. border: none !important;
  39. border-radius: 0 !important;
  40. padding: 0 6px 0 6px !important
  41. }
  42.  
  43. .tabbrowser-tab:not(:hover) .tab-close-button {
  44. display: none !important;
  45. }
  46.  
  47. /*quick and dirty way to hide palemoon menu panel*/
  48.  
  49. #appmenu-button {
  50. display: none;
  51. }
  52.  
  53. #TabsToolbar {
  54. margin-left: -88px;
  55. }
  56.  
  57. #menubar-items {
  58. margin-left: -5px;
  59. }
  60.  
  61. /*hide bullshit on urlbar*/
  62.  
  63. #identity-box {
  64. display: none;
  65. }
  66.  
  67. #notification-popup-box {
  68. display: none;
  69. }
  70.  
  71. #page-proxy-favicon {
  72. display: none;
  73. }
  74.  
  75. #urlbar-reload-button {
  76. display: none !important;
  77. }
  78.  
  79. .urlbar-history-dropmarker {
  80. display: none !important;
  81. }
  82.  
  83. #urlbar-icons {
  84. display: none !important;
  85. }
  86.  
  87. /*urlbar ricing*/
  88.  
  89. #searchbar > .searchbar-textbox,
  90. #urlbar {
  91. box-shadow: none !important;
  92. background: #102533 !important;
  93. color: #FEE193 !important;
  94. text-align: left !important;
  95. }
  96.  
  97. .textbox-input-box.urlbar-input-box {
  98.  
  99. background: #102533 !important;
  100. border: none !important;
  101. border-radius: 0em;
  102. border-top: #102533 0px solid !important;
  103. border-bottom: #BB4D66 2px solid !important;
  104. margin-top: -5px !important;
  105. margin-bottom: -5px !important;
  106. margin-left: -07px !important;
  107. margin-right: -7px !important;
  108. padding-left: 4px !important;
  109.  
  110. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement