Advertisement
Guest User

Quick and dirty palemoon CSS 1 rev Oct

a guest
Nov 11th, 2015
161
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 1.99 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: none !important;
  8. }
  9.  
  10. .tabbrowser-tab {
  11.   border: none !important;
  12.   border-radius: 0 !important;
  13.   margin-left: -1px !important;
  14.   padding: 0 6px 0 6px !important
  15. }
  16.  
  17. .tabbrowser-tab[selected="true"] {
  18.   border-top: #BB4D66 2px solid !important;
  19.   border-left: #BB4D66 2px solid !important;
  20.   border-right: #BB4D66 3px solid !important;
  21.   border-bottom: none !important;
  22.   background: #102533  !important;
  23.   color: #BB4D66 !important;
  24. }
  25.  
  26. .tabbrowser-tab:not([selected="true"]) {
  27.   border-top: none !important;
  28.   border-bottom: #BB4D66 2px solid !important;
  29.   background: #102533 !important;
  30.   color: #46787F  !important;
  31. }
  32.  
  33. .tabs-newtab-button {
  34.   background: transparent !important;
  35.   border: none !important;
  36.   border-radius: 0 !important;
  37.   padding: 0 6px 0 6px !important
  38. }
  39.  
  40. .tabbrowser-tab:not(:hover) .tab-close-button {
  41.   display: none !important;
  42. }
  43.  
  44.  
  45. /*quick and dirty way to hide palemoon menu panel*/
  46.  
  47. #appmenu-button {
  48.   display: none !important;
  49. }
  50.  
  51. #TabsToolbar {
  52.   margin-left: -88px !important;
  53. }
  54.  
  55. #menubar-items {
  56.   margin-left: -5px !important;
  57. }
  58.  
  59.  
  60. /*hide bullshit on urlbar*/
  61.  
  62. #identity-box, #notification-popup-box, #page-proxy-favicon, #urlbar-reload-button, .urlbar-history-dropmarker, #urlbar-icons {
  63.   display: none !important;
  64. }
  65.  
  66.  
  67. /*urlbar ricing*/
  68.  
  69. #searchbar > .searchbar-textbox,
  70. #urlbar {
  71.   box-shadow: none !important;
  72.   background: #102533 !important;
  73.   color: #FEE193  !important;
  74.   text-align: left !important;
  75.   padding: 0 0 0 0 !important;
  76. }
  77.  
  78.  
  79. .textbox-input-box.urlbar-input-box {
  80.   background: #102533 !important;
  81.   border: none !important;
  82.   border-radius: 0em;
  83.   border-top: #102533 0px solid !important;
  84.   border-bottom: #BB4D66 2px solid !important;
  85.   padding: 0 0 0 4px !important;
  86.   margin: -5px -7px -5px -7px !important;
  87. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement