Guest User

Untitled

a guest
Feb 27th, 2017
179
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 5.70 KB | None | 0 0
  1. @namespace url(http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul);
  2.  
  3.  
  4. /*fix pinned*/
  5.  
  6. /*.tabbrowser-tabs:not([drag=detach]) > .tabbrowser-tab:not([pinned])[fadein] {
  7. min-width: 30px !important;
  8. max-width: 100% !important;
  9. }/**/
  10.  
  11.  
  12. /* removes ugly cloud thing */
  13. #TabsToolbar:not(:-moz-lwtheme)::after {display: none;}
  14. /* Remove the following line if you want the text color of unselected tabs to be black (Firefox default) */
  15. /*#TabsToolbar .tabbrowser-tab:not([selected]) {color: rgba(255,255,255,0.9);}/**/
  16.  
  17. #TabsToolbar {
  18.     background: transparent !important;
  19.     margin-bottom: 0 !important;
  20. }
  21.  
  22.  
  23.  
  24. #TabsToolbar .tabbrowser-tabs {
  25.     min-height: 30px !important;
  26.     margin-top: 0px !important;
  27.     margin-bottom: 3px !important;
  28.     text-align: center !important;
  29.     margin-left: -17px !important;
  30.     margin-right: -16px !important;
  31. }/**/
  32.  
  33. #TabsToolbar .tabbrowser-tab:not([selected]) .tab-close-button {
  34.     display: none !important;
  35. }/**/
  36.  
  37. .tabbrowser-tab:not([pinned]) .tab-icon-image {
  38. display: none !important;
  39. }/**/
  40.  
  41. #TabsToolbar .tabbrowser-tabs {
  42.     width: 30px !important;
  43. }/**/
  44.  
  45. /*.tabbrowser-tab .tab-text {
  46.     display: none !important
  47. }/**/
  48.  
  49. #TabsToolbar .tabbrowser-tab {
  50.     -moz-border-top-colors: none !important;
  51.     -moz-border-left-colors: none !important;
  52.     -moz-border-right-colors: none !important;
  53.     -moz-border-bottom-colors: none !important;
  54.     border-style: solid !important;
  55.     border-color: rgba(0,0,0,.1) !important;
  56.     border-width: 1px 1px 1px 1px !important;/**/
  57.     text-shadow: 0 0 4px rgba(255,255,255,.75) !important;/**/
  58.     padding: 4px 0px !important;
  59.     border-radius: 3px !important;
  60.     background: rgba(251,251,251,0) !important;
  61.     background-clip: padding-box !important;
  62.     transition: all .1s !important;
  63.     margin-left: 2px !important;
  64.     color: rgb(249,72,125) !important;/**/
  65.     font-family: 'Segoe UI' !important;
  66.     font-size: 13px !important;
  67. }
  68.  
  69.  
  70. #TabsToolbar .tabbrowser-tab[afterselected] {
  71.    border-left-color: rgba(0,0,0,.25) !important;
  72. }/**/
  73.  
  74. #TabsToolbar .tabbrowser-tab[selected] {
  75.     color: rgba(120,120,120,1) !important;
  76.     background: rgba(251,251,251,1) !important;
  77.     background-clip: padding-box !important;
  78.     border-color: rgba(0,0,0,.15) !important;
  79.     text-shadow: 0 0 4px rgba(255,255,255,.2) !important;
  80.    
  81. }
  82.  
  83. #TabsToolbar .tabs-newtab-button:hover,
  84. #TabsToolbar .tabbrowser-tab:hover:not([selected]) {
  85.     border-color: rgba(0,0,0,.2) !important;
  86.     background-color: rgba(255,255,255,.55) !important;
  87. }
  88.  
  89. #TabsToolbar .tab-background {
  90.     margin: 0 !important;
  91.     background: transparent !important;
  92. }/**/
  93.  
  94. #TabsToolbar .tab-background-start,
  95. #TabsToolbar .tab-background-end {
  96.     display: none !important;
  97. }
  98.  
  99. #TabsToolbar .tab-background-middle {
  100.     margin: -4px -2px !important;
  101.     background: transparent !important;
  102. }
  103.  
  104. #TabsToolbar .tabbrowser-tab:after,
  105. #TabsToolbar .tabbrowser-tab:before {
  106.     display: none !important;
  107. }
  108.  
  109. #TabsToolbar .tabs-newtab-button {
  110.     border-width: 1px 1px 0 1px !important;
  111.     margin: 0 !important;
  112.     width: auto !important;
  113.     padding: 0 5px !important;
  114. }
  115.  
  116. #addon-bar,
  117. #PersonalToolbar,
  118. #nav-bar {
  119.     background: #EAF2FA !important;
  120.     box-shadow: none !important;
  121.     background-clip: padding-box !important;
  122.     border-color: rgba(0,0,0,.25) !important;
  123.     border-radius: 0 !important;
  124. }
  125.  
  126. .subviewbutton.panel-subview-footer {
  127.     padding-top: 6px !important;
  128.     padding-bottom: 6px !important;
  129. }
  130.  
  131.  
  132. /* URL BAR */
  133.  
  134. /* remove back/fwd */
  135.  
  136. #nav-bar  #back-button > .toolbarbutton-icon {
  137.  display: none !important;
  138. }
  139.  #forward-button {
  140.  display: none !important;
  141. }
  142.  
  143. /*styling*/
  144. #searchbar > .searchbar-textbox,
  145.  
  146. #urlbar {
  147.  
  148.     border: 1px solid #FBFBFB !important;
  149.     text-align: center !important;;
  150.     background: rgba(251,251,251,0) !important;
  151.     margin-top: 0px !important;
  152.     margin-left: 0px !important;
  153.     border-radius: 1px;
  154.     padding: 0px !important;
  155.     color: rgb(130,130,130) !important;
  156. }
  157.  
  158.  
  159. #nav-bar {
  160.     height: 30px;
  161.     background-color: rgba(251,251,251,1) !important;
  162.     border-bottom: 1px solid #aaaaaa !important;
  163.     margin-bottom: -1px !important;
  164.     margin-top: 1px !important;
  165.     box-shadow: 0px 3px 3px #aaaaaa !important;
  166. }
  167.    
  168.   #PanelUI-button, #customization-panel-container,
  169.   #customization-panelWrapper .panel-arrow,
  170.   #ctr_panelui-button,
  171.   #wrapper-ctr_panelui-button {
  172.  
  173.     -moz-box-ordinal-group: 0
  174.  
  175.   }
  176.  
  177.  
  178. #PanelUI-button {
  179.  
  180.     background-position: 100% 0, calc(100% - 1px) 0, calc(100% - 2px) 0;
  181.     background: url('http://i.imgur.com/NEflko3.png') !important;
  182.     background-repeat: no-repeat !important;
  183.     background-position: center !important;
  184.     box-shadow: none !important;
  185.     width: 10px !important;
  186.     /*display: none !important; /*COMMENT THIS LINE FOR A MENU BUTTON*/
  187.   }
  188. #PanelUI-button .button-icon,
  189. #PanelUI-button .button-text {
  190.     display: none !important;
  191. }
  192. #PanelUI-menu-button {
  193.     opacity: 0 !important;
  194.     width: 10px !important;
  195.     margin-right: 0px !important;
  196. }
  197.  
  198. #identity-box, #dropmarker-icon, #historydropmarker, #autocomplete-history-dropmarker, #urlbar-history-dropmarker, #dropmarker {
  199.     display: none !important;
  200. }
  201.  
  202. #autocomplete-history-dropmarker, #urlbar-history-dropmarker, #urlbar-reload-button {
  203.     display: none !important;
  204. }
  205.  
  206. .autocomplete-history-dropmarker.urlbar-history-dropmarker {
  207.     display: none !important;
  208. }
  209.  
  210. #plugins-notification-icon, #notification-anchor-icon, #notification-popup-box {
  211.     display: none !important;
  212.    
  213. }
  214.  
  215. /* remove tab scrolling */
  216.  
  217. .scrollbutton-up, .scrollbutton-down, #alltabs-button {
  218.     display: none !important;
  219. }
Advertisement
Add Comment
Please, Sign In to add comment