Advertisement
difool2nice

bottom bar Firefox

May 21st, 2018
707
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 0.95 KB | None | 0 0
  1. /* This change the color of the bottombar
  2. to dark, don't use this if you want default color (white) */
  3. #bottom-toolbar-vbox {
  4. background-color: black !important;
  5. }
  6. #bottom-toolbar {
  7. height: 30px !important;
  8. /* The value should be between 24-40px */
  9. direction: rtl !important;
  10. /* This makes the toolbar buttons
  11. positioned from right to left
  12. Should be used with the pseudo Separators below */
  13. }
  14. /* Pseudo Separators
  15. This technically transforms the flexible spaces to separators
  16. whenever they are put to the bottombar.
  17. The down side is that
  18. you cannot use flexible spaces on bottombar anymore */
  19. #bottom-toolbar toolbarspring {
  20. background: transparent !important;
  21. max-width: 0px !important;
  22. min-width: 0px !important;
  23. width: 0px !important;
  24. border-left: 1px solid white !important;
  25. border-right: 1px solid black !important;
  26. margin-top: 4px !important;
  27. margin-bottom: 4px !important;
  28. margin-left: 3px !important;
  29. margin-right: 3px !important;
  30. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement