Advertisement
Guest User

userChrome.css

a guest
May 13th, 2015
347
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.10 KB | None | 0 0
  1. /* This Source Code Form is subject to the terms of the Mozilla Public
  2. * License, v. 2.0. If a copy of the MPL was not distributed with this
  3. * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
  4.  
  5. /*
  6. * Edit this file and copy it as userChrome.css into your
  7. * profile-directory/chrome/
  8. */
  9.  
  10. /*
  11. * This file can be used to customize the look of Mozilla's user interface
  12. * You should consider using !important on rules which you want to
  13. * override default settings.
  14. */
  15.  
  16. /*
  17. * Do not remove the @namespace line -- it's required for correct functioning
  18. */
  19. @namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"); /* set default namespace to XUL */
  20.  
  21.  
  22. /*
  23. * Some possible accessibility enhancements:
  24. */
  25. /*
  26. * Make all the default font sizes 20 pt:
  27. *
  28. * * {
  29. * font-size: 20pt !important
  30. * }
  31. */
  32. /*
  33. * Make menu items in particular 15 pt instead of the default size:
  34. *
  35. * menupopup > * {
  36. * font-size: 15pt !important
  37. * }
  38. */
  39. /*
  40. * Give the Location (URL) Bar a fixed-width font
  41. *
  42. * #urlbar {
  43. * font-family: monospace !important;
  44. * }
  45. */
  46.  
  47. /*
  48. * Eliminate the throbber and its annoying movement:
  49. *
  50. * #throbber-box {
  51. * display: none !important;
  52. * }
  53. */
  54.  
  55. /*
  56. * For more examples see http://www.mozilla.org/unix/customizing.html
  57. */
  58.  
  59. /*
  60. * Hide toolbar grippies
  61. */
  62.  
  63. toolbargrippy {
  64. display: none;
  65. }
  66.  
  67. .toolbar-holder {
  68. border-left: none !important;
  69. }
  70.  
  71. /*
  72. * Set toolbar height to match GTK theme
  73. */
  74.  
  75. #compose-toolbar-menubar2,
  76. #download-menubar,
  77. #mail-toolbar-menubar2,
  78. #mainmenu,
  79. #main-menubar,
  80. #mbrInspectorMain,
  81. #toolbar-menubar,
  82. #viewSource-main-menubar {
  83. min-height: 24px !important;
  84. max-height: 24px !important;
  85. }
  86.  
  87.  
  88. /* MERGE STOP AND RELOAD BUTTONS
  89. STOP MUST BE PLACED BEFORE RELOAD TO WORK */
  90.  
  91. #stop-button[disabled="true"],
  92. #stop-button:not([disabled]) + #reload-button {
  93. display:none !important;
  94. }
  95.  
  96. /* HIDE SUPERFLUOUS ELEMENTS */
  97.  
  98. .autocomplete-history-dropmarker,
  99. .search-go-button,
  100. .star-button,
  101. .toolbarbutton-menubutton-dropmarker {
  102. display:none !important;
  103. }
  104.  
  105. /*
  106. * Hide toolbar and tabbar in fullscreen mode
  107. */
  108.  
  109. /*
  110. #main-window[sizemode=fullscreen] #navigator-toolbox:not(:hover) > #nav-bar {
  111. visibility :collapse !important;
  112. }
  113. #main-window[sizemode=fullscreen] #navigator-toolbox {
  114. padding-top: 0.1px !important;
  115. background : transparent !important;
  116. }
  117.  
  118. #main-window[sizemode=fullscreen] hbox tabbrowser .tabbrowser-strip:not(:hover) {
  119. height: 2px;
  120. }
  121.  
  122. #main-window[sizemode=fullscreen] hbox tabbrowser .tabbrowser-strip:not(:hover) .tabbrowser-tabs {
  123. visibility :collapse !important;
  124. }
  125.  
  126. #main-window[sizemode=fullscreen] hbox tabbrowser .tabbrowser-strip {
  127. padding-top : 0.1px !important;
  128. background-color : rgba(10, 10, 10, 0.95) !important;
  129. position : fixed !important;
  130. left : 0%;
  131. bottom : 0%;
  132. width : 100%;
  133. margin-bottom : -1px;
  134. }
  135.  
  136. #main-window[sizemode=fullscreen] .tabbrowser-tabs {
  137. width: 100%;
  138. }
  139. */
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement