Advertisement
Guest User

Untitled

a guest
Aug 23rd, 2019
87
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.93 KB | None | 0 0
  1. @import "global/variables.css";
  2. @import "global/global.css";
  3. @import "icons/icons.css";
  4. @import "tabbar/tabbar.css";
  5. @import "navbar/navbar.css";
  6. @import "personalbar/personalbar.css";
  7. @import "popup/popup.css";
  8. @import "popup/urlbar-results.css";
  9.  
  10. :root {
  11. --sidebar-width: 180px;
  12. --toolbar-height: 0;
  13. --menubar-height: -40px;
  14. --toolmenubar-height: -40px; /* sum of previous two */
  15. }
  16.  
  17. /* show bookmarks toolbar on new tab only */
  18. #main-window #PersonalToolbar {
  19. visibility: collapse !important;
  20. z-index: 1!important;
  21. position: relative!important;
  22. margin-left: var(--sidebar-width); /* shift toolbar to the right out of the way of the sidebar */
  23. margin-top: var(--toolbar-height) !important;
  24. }
  25.  
  26. #main-window[title^="Firefox Developer Edition"] #PersonalToolbar {
  27. visibility: visible !important;
  28. margin-top: -1px !important;
  29. }
  30.  
  31. /* lock sidebar to height by doing the inverse margin of the toolbar element */
  32. #sidebar-box {
  33. z-index: 1000 !important;
  34. position: relative!important;
  35. margin-top: var(--menubar-height) !important;
  36. border-right: none !important;
  37. }
  38.  
  39. #main-window[title^="Firefox Developer Edition"] #sidebar-box {
  40. margin-top: var(--toolmenubar-height) !important;
  41. }
  42.  
  43. /* lock sidebar to specified width */
  44. #sidebar-box, #sidebar-box #sidebar {
  45. min-width: var(--sidebar-width) !important;
  46. max-width: var(--sidebar-width) !important;
  47. }
  48.  
  49. /* hide sidebar header for tree style tabs sidebar */
  50. #sidebar-box[sidebarcommand="treestyletab_piro_sakura_ne_jp-sidebar-action"] #sidebar-header {
  51. display: none;
  52. }
  53.  
  54. /* Hide the title bar */
  55. #titlebar{ visibility: collapse; }
  56.  
  57. /* hide normal horizontal tab bar */
  58. #TabsToolbar { visibility: collapse; }
  59.  
  60. #sidebar { border-right: none !important; }
  61.  
  62. toolbar#nav-bar {
  63. padding-top: 12px;
  64. padding-bottom: 7px;
  65. margin-left: var(--sidebar-width);
  66. padding-left: 7px;
  67. }
  68.  
  69. /* separator color */
  70. .sidebar-placesTree treechildren::-moz-tree-separator {
  71. border: 5px solid #ffffff !important;
  72. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement