mirror of
https://github.com/nix-community/home-manager
synced 2024-11-10 07:04:17 +00:00
firefox: fix userChrome example
Example CSS wasn't valid for Firefox 69+.
This commit is contained in:
parent
d34aaf7b3b
commit
4fcd54df7c
1 changed files with 1 additions and 1 deletions
|
@ -402,7 +402,7 @@ in {
|
|||
description = "Custom ${name} user chrome CSS.";
|
||||
example = ''
|
||||
/* Hide tab bar in FF Quantum */
|
||||
@-moz-document url("chrome://browser/content/browser.xul") {
|
||||
@-moz-document url(chrome://browser/content/browser.xul), url(chrome://browser/content/browser.xhtml) {
|
||||
#TabsToolbar {
|
||||
visibility: collapse !important;
|
||||
margin-bottom: 21px !important;
|
||||
|
|
Loading…
Reference in a new issue