summaryrefslogtreecommitdiff
path: root/modules/browser/firefox/userChrome.nix
blob: ab93747b8bb32ee1065a20dc33d3fcff128ba739 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
''
  /* sidebar hack to flip contents the way i want them (arrows on the left) */
  #nav-bar-customization-target {
    flex-direction: row-reverse;
  }

  /* remove broken padding from sidebar hack */
  #unified-extensions-button {
    padding-left: 0 !important;
  }

  /* remove padding beside search bar */
  toolbarspring {
    display: none !important;
  }

  /* remove overflow menu and everything in it */
  #nav-bar-overflow-button,
  #firefox-view-button,
  #alltabs-button {
    visibility: collapse;
  }
''