Guest User

FF

a guest
Aug 24th, 2017
276
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.45 KB | None | 0 0
  1. @namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul");
  2.  
  3. /* Reduce width of pinned tabs by reducing the left and right padding */
  4.  
  5. #TabsToolbar .tab-content[pinned] {
  6. padding: 0 9px !important;
  7. }
  8.  
  9. /* Move tabs over to right to make room for address bar */
  10.  
  11. #TabsToolbar {
  12. margin: 0 44px 0 35vw !important;
  13. height: 40px !important;
  14. padding-left: 5px !important;
  15. }
  16.  
  17. /* Move address bar to titlebar with tabs */
  18.  
  19. #nav-bar {
  20. margin: -33px 65vw -8px 50px !important;
  21. height: 40px !important;
  22. border-bottom: 1px solid #9E9E9E !important;
  23. border-radius: 0px 0px 10px 10px !important;
  24. }
  25. /* URL bar width adjustments */
  26. browser { background-color: #373739 !important; }
  27. #urlbar {
  28. background: none !important;
  29. border: none !important;
  30. margin-left: none !important;
  31. min-width: 470px !important;
  32. font-size: 12px !important;
  33. }
  34.  
  35. #urlbar:hover {
  36. background: none !important;
  37. border: none !important;
  38. box-shadow: none !important;
  39. }
  40.  
  41. #urlbar[focused="true"] {
  42. background: none !important;
  43. border: none !important;
  44. box-shadow: none !important;
  45. }
  46.  
  47. /* Hide bookmark folder icons */
  48.  
  49. .bookmark-item > .toolbarbutton-icon {
  50. display: none !important;
  51. }
  52. #reader-mode-button,
  53. #readinglist-addremove-button {
  54. display:none !important;
  55. }
  56. /* Increase bookmarks toolbar height */
  57.  
  58. #PersonalToolbar {
  59. margin-top: 2px !important;
  60. height: 28px !important;
  61. border-top: 1px solid #9E9E9E !important;
  62. }
  63.  
  64. /* Minor bookmarks toolbar spacing adjustments */
  65.  
  66. #personal-bookmarks toolbarbutton.bookmark-item, #personal-bookmarks toolbarbutton {
  67. background: none !important;
  68. box-shadow: none !important;
  69. margin: -1px 0px -1px 2px !important;
  70. padding: 0px 5px !important;
  71. -moz-appearance: none !important; }
  72.  
  73. #personal-bookmarks toolbarbutton:hover {
  74. -moz-appearance: none !important;
  75. background: none !important;
  76. text-shadow: none !important;
  77. color: #000 !important; }
  78.  
  79. /* Add vibrancy to toolbar, titlebar, and navbar */
  80.  
  81. #TabsToolbar, #titlebar, #nav-bar {
  82. -moz-appearance: -moz-mac-vibrancy-light !important;
  83. }
  84.  
  85.  
  86.  
  87. /* Affix hamburger menu to top right */
  88.  
  89. #PanelUI-button{
  90. position: fixed;
  91. top: 9px;
  92. left: 4px;
  93. }
  94.  
  95. /* Hide titlebar placeholder for caption buttons so that padding between tabs and address bar isn't so ridiculously large */
  96.  
  97. .titlebar-placeholder[type="caption-buttons"] {
  98. -moz-box-ordinal-group: 1 !important;
  99. }
Add Comment
Please, Sign In to add comment