December SPECIAL! For a limited time only. Get 20% discount on a LIFETIME PRO account!Want more features on Pastebin? Sign Up, it's FREE!
tweet
Guest

Quick and dirty palemoon CSS 3

By: a guest on Oct 16th, 2015  |  syntax: CSS  |  size: 2.93 KB  |  views: 71  |  expires: Never
download  |  raw  |  embed  |  report abuse  |  print  |  QR code  |  clone
Text below is selected. Please press Ctrl+C to copy to your clipboard. (⌘+C on Mac)
  1. @namespace url(http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul);
  2.  
  3. /*tab Ricing*/
  4.  
  5. #TabsToolbar {
  6.     background: #D6D2AF !important;
  7.     border-bottom: #5E978F 0px solid !important;
  8.     height: 22px !important;
  9. }
  10.  
  11. .tabbrowser-tab {
  12.     border: none !important;
  13.     border-radius: 0 !important;
  14.     margin-left: 0px !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 0px solid !important;
  21.     border-left: #5E978F 2px solid !important;
  22.     border-right: #5E978F 2px solid !important;
  23.     border-bottom: #5E978F 2px solid !important;
  24.     background: #D6D2AF  !important;
  25.     background-image: url(file:///path/to/tile/image)!important;
  26.     background-attachment: fixed;
  27.     background-repeat: repeat;
  28.     color: #3B5F5A !important;
  29. }
  30.  
  31. .tabbrowser-tab:not([selected="true"]) {
  32.     border: #777 0px solid !important;
  33.     border-top: none !important;
  34.     border-bottom: #5E978F 2px solid !important;
  35.     background: #D6D2AF !important;
  36.     background-image: url(file:///path/to/tile/image)!important;
  37.     background-attachment: fixed;
  38.     background-repeat: repeat;
  39.     color: #46787F  !important;
  40. }
  41.  
  42. .tabs-newtab-button {
  43.     background: transparent !important;
  44.     border: none !important;
  45.     border-radius: 0 !important;
  46.     padding: 0 6px 0 6px !important
  47. }
  48.  
  49. .tabbrowser-tab:not(:hover) .tab-close-button {
  50.     display: none !important;
  51. }
  52.  
  53. /*quick and dirty way to hide palemoon menu panel*/
  54.  
  55. #appmenu-button {
  56.     display: none;
  57. }
  58.  
  59. #TabsToolbar {
  60.     margin-left: -90px;
  61. }
  62.  
  63. #menubar-items {
  64.     margin-left: -5px;
  65. }
  66.  
  67. /*hide bullshit on urlbar*/
  68.  
  69. #identity-box {
  70.     display: none;
  71. }
  72.  
  73. #notification-popup-box {
  74.     display: none;
  75. }
  76.  
  77. #page-proxy-favicon {
  78.     display: none;
  79. }
  80.  
  81. #urlbar-reload-button {
  82.     display: none !important;
  83. }
  84.  
  85. .urlbar-history-dropmarker {
  86.     display: none !important;
  87. }
  88.  
  89. #urlbar-icons {
  90.     display: none !important;
  91. }
  92.  
  93. /*urlbar ricing*/
  94.  
  95. #searchbar > .searchbar-textbox,
  96. #urlbar {
  97.     box-shadow: none !important;
  98.     background: #D6D2AF !important;
  99.     background-image: url(file:///path/to/tile/image)!important;
  100.     background-attachment: fixed;
  101.     background-repeat: repeat;
  102.     color: #CC7D95  !important;
  103.     text-align: left !important;
  104. }
  105.  
  106. .textbox-input-box.urlbar-input-box {
  107.  
  108.     /*background: #D6D2AF !important;*/
  109.     background-image: url(file:///path/to/tile/image)!important;
  110.     background-attachment: fixed;
  111.     background-repeat: repeat;
  112.     border: none !important;
  113.     border-radius: 0em;
  114.     border-top: #102533 0px solid !important;
  115.     border-bottom: #5E978F 2px solid !important;
  116.     margin-top: -5px !important;
  117.     margin-bottom: -5px !important;
  118.     margin-left: -07px !important;
  119.     margin-right: -7px !important;
  120.     padding-left: 4px !important;
  121.     padding-top: 2px !important;
  122.  
  123.    
  124. }
clone this paste RAW Paste Data
Top