Advertisement
Guest User

Untitled

a guest
Mar 22nd, 2018
1,253
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 2.37 KB | None | 0 0
  1. /* Adjust Colors */
  2. .tab-background:not([selected=true]),
  3. .tab-background[selected="true"],
  4. #titlebar-buttonbox,
  5. #TabsToolbar,
  6. #PersonalToolbar,
  7. #urlbar,
  8. #nav-bar {
  9.   background: #31363b !important;
  10. }
  11. #PanelUI-menu-button{
  12.   margin-right: 6px !important;
  13. }
  14. #back-button {
  15.   margin-left: 6px !important;
  16. }
  17.  
  18. /* No Black Line */
  19. #navigator-toolbox{
  20.   margin-top: -1px !important;
  21. }
  22.  
  23. /* Height */
  24. #nav-bar {
  25.   min-height: 40px !important;
  26.   z-index: 3
  27. }
  28. #urlbar {
  29.   margin-left: 85px !important;
  30.   border: none !important;
  31.   box-shadow: none !important;
  32.   min-height: 30px !important;
  33. }
  34.  
  35. /* Adjust Pinned Tab Width */
  36. .tabbrowser-tab[pinned="true"] {
  37.   min-width: 40px;
  38. }
  39. label[pinned="true"] {
  40.   display: none !important;
  41. }
  42. .tab-icon-image[pinned="true"] {
  43.   margin-left: 4px
  44. }
  45.  
  46. /* Clean Up */
  47. .urlbar-icon,
  48. .tab-close-button.tab-close-button,
  49. #page-action-buttons,
  50. #identity-box {
  51.   display: none;
  52. }
  53. #urlbar .urlbar-input-box {
  54.     text-align: center;
  55. }
  56. .urlbar-input-box > .urlbar-input::placeholder {
  57.   opacity: 0 !important;
  58. }
  59.  
  60. /* Autohide Tabs */
  61. #TabsToolbar {
  62.   min-height: 40px !important;
  63.     margin-top: -40px !important;
  64.   transition: all 0.3s ease 0s !important;
  65.     -moz-box-ordinal-group: 2 !important;
  66. }
  67. #navigator-toolbox {
  68.   transition: all 0.3s ease 0s !important;
  69. }
  70. #navigator-toolbox:hover {
  71.   margin-bottom: -39px !important;
  72.   transition: all 0.3s ease 0s !important;
  73. }
  74. #navigator-toolbox:hover > #TabsToolbar {
  75.   margin-top: -1px !important;
  76.   transition: all 0.3s ease 0s !important;
  77. }
  78.  
  79. /* Remove Tab Borders */
  80. .tabbrowser-tab::after, .tabbrowser-tab::before {
  81.    border-left: none !important;
  82. }
  83. :root {
  84.   --tabs-border: transparent !important;
  85. }
  86.  
  87. /* Tab Line At Bottom */
  88. .tab-line {
  89.   -moz-box-ordinal-group: 2;
  90.   min-height: 3px;
  91. }
  92.  
  93. /* Tabs don't move when dragging. */
  94. #TabsToolbar[movingtab] {
  95.   padding-bottom: -0px !important;
  96. }
  97. #TabsToolbar[movingtab] > .tabbrowser-tabs {
  98.   padding-bottom: -0px !important;
  99.   margin-bottom: -0px !important;
  100. }
  101. #TabsToolbar[movingtab] + #nav-bar {
  102.   margin-top: -0px !important;
  103.   pointer-events: none;
  104. }
  105.  
  106. /* Client Side Decorations */
  107. #titlebar-buttonbox {
  108.   height: 40px !important;
  109. }
  110. #nav-bar {
  111.   margin-right: 84px;
  112.   box-shadow: none !important;
  113. }
  114. #titlebar-buttonbox {
  115.   z-index: 3 !important;
  116. }
  117. .titlebar-placeholder {
  118.   display:none !important;
  119. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement