Advertisement
Guest User

Untitled

a guest
Dec 6th, 2017
110
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.84 KB | None | 0 0
  1. @namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul");
  2.  
  3. #TabsToolbar .tab-content[pinned] {
  4. padding: 0 9px !important;
  5. }
  6.  
  7. .tabbrowser-arrowscrollbox {
  8. background: #242424 !important;
  9. }
  10.  
  11. /* Move tabs over to right to make room for address bar */
  12.  
  13. #TabsToolbar {
  14. margin: 0 44px 0 40vw !important;
  15. height: 20px !important;
  16. padding-left: 5px !important;
  17. background: #242424 !important;
  18. }
  19.  
  20. /* Move address bar to titlebar with tabs */
  21.  
  22. #nav-bar {
  23. margin: -40px 60vw 0px 0px !important;
  24. height: 40px !important;
  25. }
  26.  
  27. #nav-bar-customization-target {
  28. background: #242424 !important;
  29. }
  30.  
  31. #navigator-toolbox {
  32. background: #242424 !important;
  33. }
  34.  
  35. /* URL bar width adjustments */
  36.  
  37. #urlbar {
  38. background: none !important;
  39. border: none !important;
  40. margin-left: 5px !important;
  41. min-width: 270px !important;
  42. font-size: 12px !important;
  43. background: #353535 !important;
  44. }
  45.  
  46. #urlbar:hover {
  47. background: none !important;
  48. border: none !important;
  49. box-shadow: none !important;
  50. background: #727272 !important;
  51.  
  52. }
  53.  
  54. #urlbar[focused="true"] {
  55. background: none !important;
  56. border: none !important;
  57. box-shadow: none !important;
  58. background: #353535 !important;
  59.  
  60. }
  61.  
  62. /* Hide bookmark folder icons */
  63.  
  64. .bookmark-item > .toolbarbutton-icon {
  65. display: none !important;
  66. }
  67.  
  68. /* Minor bookmarks toolbar spacing adjustments */
  69.  
  70. #personal-bookmarks toolbarbutton.bookmark-item, #personal-bookmarks toolbarbutton {
  71. background: none !important;
  72. box-shadow: none !important;
  73. margin: -1px 0px -1px 2px !important;
  74. padding: 0px 5px !important;
  75. -moz-appearance: none !important;
  76. border: none !important;
  77. }
  78.  
  79. #personal-bookmarks toolbarbutton:hover, #personal-bookmarks toolbarbutton:active {
  80. -moz-appearance: none !important;
  81. background: none !important;
  82. text-shadow: none !important;
  83. color: #aaa !important;
  84. border: none !important;
  85. }
  86.  
  87. #personal-bookmarks {
  88. background: #353535 !important;
  89. }
  90.  
  91. /* Add vibrancy to toolbar, titlebar, and navbar */
  92.  
  93. #TabsToolbar, #titlebar, #nav-bar {
  94. -moz-appearance: -moz-mac-vibrancy-light !important;
  95. }
  96.  
  97.  
  98. /* Remove line under address bar */
  99.  
  100. #navigator-toolbox::after{
  101. content: none;
  102. }
  103.  
  104.  
  105.  
  106. /* Affix hamburger menu to top right */
  107.  
  108. #PanelUI-button{
  109. position: fixed;
  110. top: 2px;
  111. right: 4px;
  112. border-inline-start: none;
  113. }
  114.  
  115. /* Hide titlebar placeholder for caption buttons so that padding between tabs and address bar isn't so ridiculously large */
  116.  
  117. .titlebar-placeholder[type="caption-buttons"] {
  118. -moz-box-ordinal-group: 1 !important;
  119. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement