Advertisement
hu6

australis 32 gf userchrome [elune]

hu6
May 5th, 2014
252
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 3.66 KB | None | 0 0
  1. /* AGENT SHEET */
  2.  
  3.  
  4.  
  5. /* General Browser/Navbar */
  6.  
  7. #tab-view-deck {
  8.  /* Expand right, bottom, left window frame width and add gray bottom border */
  9.     margin-right:2px !important;
  10.     margin-bottom:2px !important;
  11.     margin-left:2px !important;
  12.     border-bottom:1px solid transparent !important;
  13. }
  14.  
  15. #browser, #browser-bottombox {
  16.  /* Gray side borders for content area and bottom toolbars */
  17.     border-left:1px solid transparent !important;
  18.     border-right:1px solid transparent !important;
  19. }
  20.  
  21. #navigator-toolbox {
  22.  /* Invisible side borders for upper toolbar and tab bar area */
  23.     border-left:1px solid transparent !important;
  24.     border-right:1px solid transparent !important;
  25. }
  26.  
  27. #titlebar-buttonbox-container {
  28.  /*Push min/max/close buttons in from the right same total margin + border width*/
  29.     margin-right:0px !important;
  30.     display: none !important;
  31. }
  32.  
  33.  
  34.  
  35. /* Tabs */
  36.  
  37. #tabbrowser-tabs {
  38.     margin-top: -14px !important;
  39.     margin-right: 90px !important;
  40. }
  41.  
  42. .tabbrowser-arrowscrollbox {
  43.     margin-right:-99px !important;
  44. }
  45.  
  46. #new-tab-button {
  47.     margin-top: -15px !important;
  48.     margin-left:89px !important;
  49. /*margin-right:20px !important;*/
  50.     margin-right:0px !important;
  51. }
  52.  
  53. #alltabs-button {
  54.     margin-top: -15px !important;
  55.     /*margin-right: 85px !important;*/
  56.     margin-right:3px !important;
  57. }
  58.  
  59. #PanelUI-menu-button {
  60.     margin-left: -2px !important;
  61.     margin-right: 2px !important;
  62. }
  63.  
  64. #TabsToolbar:not(:-moz-lwtheme) {
  65.     /* box-shadow: none !important;*/
  66.     margin-right:75px !important;
  67. }
  68.  
  69. .scrollbutton-down {
  70.     margin-right:-80px !important;
  71.    
  72. }
  73.  
  74.  
  75.  
  76. /* Fullscreen */
  77.  
  78. #main-window[sizemode="maximized"] #tabbrowser-tabs tab,
  79. #main-window[sizemode="fullscreen"] #tabbrowser-tabs tab
  80. {
  81.     margin-top: 15px !important;
  82. }
  83.  
  84. #main-window[sizemode="maximized"] .scrollbutton-down,
  85. #main-window[sizemode="fullscreen"] .scrollbutton-down
  86. {
  87.     margin-top: 12px !important;
  88.     /* margin-right: -40px !important;*/
  89.    
  90. }
  91.  
  92. #main-window[sizemode="maximized"] .scrollbutton-up,
  93. #main-window[sizemode="fullscreen"] .scrollbutton-up
  94. {
  95.     margin-top: 12px !important;
  96.     /* margin-right: -40px !important;*/
  97.    
  98. }
  99.  
  100. #main-window[sizemode="maximized"] #alltabs-button,
  101. #main-window[sizemode="fullscreen"] #alltabs-button
  102. {
  103.     margin-top: -2px !important;
  104.     margin-right: 7px !important;
  105. }
  106.  
  107. #main-window[sizemode="maximized"] #new-tab-button,
  108. #main-window[sizemode="fullscreen"]  #new-tab-button
  109. {
  110.    margin-top: -2px !important;
  111.  
  112.  
  113. }
  114.  
  115. #main-window[sizemode="maximized"] .tabs-newtab-button,
  116. #main-window[sizemode="fullscreen"] .tabs-newtab-button
  117. {
  118.     margin-top:14px !important;
  119. }
  120.  
  121.  
  122.  
  123. /*Scrollbars
  124.   @see https://gist.github.com/4003205
  125.   @see chrome://browser/skin/devtools/floating-scrollbars.css (Fx 18+)
  126.   @see http://userstyles.org/styles/76999/glow-scrollbar
  127. */
  128.  
  129. scrollbar scrollbarbutton ,
  130. scrollbar gripper {
  131.   visibility: collapse;
  132. }
  133. scrollbar ,
  134. scrollbar thumb {
  135.   -moz-appearance: none !important;
  136. }
  137. scrollbar[orient="vertical"] {
  138.   -moz-margin-start: -4px;
  139.   min-width: 4px;
  140.   max-width: 4px;
  141. }
  142. scrollbar[orient="horizontal"] {
  143.   margin-top: -4px;
  144.   min-height: 4px;
  145.   max-height: 4px;
  146. }
  147. scrollbar {
  148.   position: relative;
  149.   background-image: none;
  150.   z-index: 2147483647;
  151.   background-color: transparent;
  152. }
  153. scrollbar:hover {
  154.   background-color: ButtonHighlight;
  155. }
  156. scrollbar thumb {
  157.   border: none !important;
  158.   border-radius: 1.5px !important;
  159.   background-color: #92969b;
  160.   opacity: .55;
  161. }
  162. scrollbar:hover thumb {
  163.   opacity: 1;
  164. }
  165. scrollbar thumb:active ,
  166. scrollbar thumb:hover {
  167.   opacity: 1;
  168.   background-color: ButtonShadow;
  169. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement