Advertisement
Guest User

firefox css w/ stylish

a guest
Sep 27th, 2013
56
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 3.17 KB | None | 0 0
  1. pace url(http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul);
  2.  
  3. @-moz-document url(chrome://browser/content/browser.xul) {
  4.     /* TABS */
  5.     tab, .tabs-alltabs-button, .tabbrowser-arrowscrollbox > .scrollbutton-up, .tabbrowser-arrowscrollbox > .scrollbutton-down {
  6.         border: 2px solid #1F1A28 !important;
  7.         border-left-width: 3px !important;
  8.         border-radius: 0 !important;
  9.         background: #2B2835 !important;
  10.         font-size: 8pt; font-family: "Lemon","Tamsyn",monospace;
  11.         color: #9A93A3 !important;
  12.         margin-left: -2px !important;
  13.         line-height: 22px !important; min-height: 22px !important;
  14.     }
  15.     .tabbrowser-tab label { padding-left: 4px !important; padding-right: 4px !important; padding-top: 0px !important; }
  16.    
  17.     .tabbrowser-tab[selected="true"] .tab-stack {
  18.         background: #464156 !important;
  19.         height: 22px !important;
  20.         color: #E0D3F2 !important;
  21.     }
  22.     .tabs-newtab-button, .tab-close-button, .tab-close, .tab-throbber, .tab-icon-image { display: none !important; }
  23.    
  24.     #TabsToolbar { height: 24px !important; min-height: 24px !important; -moz-appearance: none !important; }
  25.     #navigator-toolbox { padding: 0 !important; margin-bottom: -1px !important; border: 0 !important; }
  26.    
  27.    
  28.     /* URL INPUT */
  29.     #urlbar-container {
  30.         width: 280px !important;
  31.         max-width: 279px !important;
  32.         min-width: 279px !important;
  33.         max-height: 24px !important;
  34.         margin: -2px !important;
  35.         padding: 1px !important;
  36.         padding-top: 2px !important;
  37.         margin-right: 0px !important;
  38.     }
  39.     #urlbar {
  40.         -moz-appearance: none !important;
  41.         width: 273px !important;
  42.         max-width: 273px !important;
  43.         min-width: 273px !important;
  44.         min-height: 18px !important;
  45.         font-size: 8pt !important;
  46.         margin: 0 !important;
  47.         padding: 0 !important;
  48.         margin-left: 3px !important;
  49.     }
  50.     #urlbar * {
  51.         background: #464156 !important;
  52.         color: #E0D3F2 !important;
  53.         font-family: "Lemon","Tamsyn",monospace;
  54.         padding-bottom: 0px !important;
  55.         padding-left: 1px !important;
  56.     }
  57.     .urlbar-history-dropmarker, #go-button, #urlbar-go-button, .urlbar-icon, #urlbar-icons, #identity-box, #notification-popup-box { display: none !important; }
  58.    
  59.    
  60.     /* HIDE ORANGE MENU BUTTON */
  61.     #appmenu-toolbar-button, #appmenu-button-container {display: none}
  62.    
  63.    
  64.     /* HIDE STATUS BAR */
  65.     #status-bar { display: none; }
  66. }
  67.  
  68. @-moz-document url-prefix(http://),url-prefix(https://) {
  69.     /*  SCROLL BAR */
  70.     scrollbar { -moz-appearance: none !important; background: #1F1A28 !important; }
  71.     thumb,scrollbarbutton { -moz-appearance: none !important; background-color: #464156 !important; border: 0 !important; }
  72.      
  73.     scrollbarbutton { display: none !important; }
  74.      
  75.     scrollbar[orient="vertical"] { min-width: 3px !important; max-width: 3px !important; border-left: 1px solid #1F1A28 !important; }
  76.     scrollbar[orient="horizontal"] { min-height: 3px !important; max-height: 3px !important; border-top: 1px solid #1F1A28 !important; }
  77. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement